﻿/* GEDIAN SPORTS - PUBLIC AWARDS DIRECTORY */
.public-awards-page {
    --g: #5B8C3B;
    --gd: #416b2d;
    --navy: #10273f;
    --txt: #4d5c54;
    --muted: #87928b;
    --border: #dfe7dc;
    --gold: #b88a24;
    min-height: 100vh;
    padding-bottom: 38px;
    color: var(--txt);
    background: radial-gradient(circle at 96% 0%,rgba(91,140,59,.085),transparent 32rem), radial-gradient(circle at 10% 8%,rgba(184,138,36,.055),transparent 24rem), linear-gradient(180deg,#fff 0%,#f7faf6 100%);
    font-family: "Tajawal","Noto Sans Arabic","Segoe UI",Tahoma,Arial,sans-serif
}

.awards-container {
    width: min(1440px,calc(100% - 28px));
    margin-inline: auto
}

.awards-public-strip {
    margin: 15px 0 11px;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid #dde8d7;
    border-radius: 11px;
    background: linear-gradient(90deg,#f2f8ee,#fffaf1)
}

.awards-public-strip-copy {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px
}

.awards-strip-icon {
    flex: 0 0 auto;
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(83,84,45,.08)
}

.awards-public-strip-copy > div {
    min-width: 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 5px;
    color: #6e7b72;
    font-size: .76rem
}

.awards-public-strip-copy strong {
    color: var(--navy);
    font-weight: 900
}

.awards-strip-action {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 6px 11px;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    background: var(--g);
    color: #fff;
    font-size: .73rem;
    font-weight: 900;
    text-decoration: none
}

    .awards-strip-action:hover {
        background: var(--gd);
        color: #fff
    }

.awards-heading {
    margin-bottom: 9px
}

    .awards-heading span {
        color: var(--gd);
        font-size: .64rem;
        font-weight: 900;
        letter-spacing: .04em
    }

    .awards-heading h1 {
        margin: 2px 0 0;
        color: var(--navy);
        font-size: 1.42rem;
        font-weight: 900
    }

    .awards-heading p {
        margin: 3px 0 0;
        color: var(--muted);
        font-size: .78rem
    }

.awards-search-card {
    margin-bottom: 9px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(27,46,31,.025)
}

.awards-search-grid {
    display: grid;
    grid-template-columns: minmax(220px,1.6fr) repeat(6,minmax(110px,.8fr)) auto auto;
    align-items: end;
    gap: 7px
}

.awards-search-field {
    min-width: 0
}

    .awards-search-field label {
        display: block;
        margin-bottom: 4px;
        color: #66736b;
        font-size: .68rem;
        font-weight: 800
    }

    .awards-search-field input, .awards-search-field select {
        width: 100%;
        min-height: 39px;
        padding: 6px 9px;
        border: 1px solid #dfe5dc;
        border-radius: 8px;
        background: #fbfcfa;
        color: #4d5a52;
        font-family: inherit;
        font-size: .74rem;
        outline: 0
    }

        .awards-search-field input:focus, .awards-search-field select:focus {
            border-color: rgba(91,140,59,.65);
            box-shadow: 0 0 0 3px rgba(91,140,59,.09)
        }

.awards-search-button, .awards-search-reset {
    min-height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: inherit;
    font-size: .74rem;
    font-weight: 900
}

.awards-search-button {
    min-width: 64px;
    border: 1px solid var(--g);
    background: var(--g);
    color: #fff
}

.awards-search-reset {
    width: 39px;
    border: 1px solid #dfe4dd;
    background: #fff;
    color: #75827a;
    text-decoration: none;
    font-size: 1rem
}

.awards-result-line {
    min-height: 28px;
    margin: 0 2px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #7a867f;
    font-size: .72rem
}

    .awards-result-line > div {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 5px
    }

    .awards-result-line strong {
        color: var(--navy);
        font-family: Arial,sans-serif;
        font-size: .85rem
    }

    .awards-result-line i {
        color: #b6bdb8;
        font-style: normal
    }

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 12px
}

.award-public-card {
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #dfe6dc;
    border-radius: 15px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 5px 18px rgba(30,49,35,.035);
    transition: transform .15s ease,box-shadow .15s ease,border-color .15s ease
}

    .award-public-card:hover {
        transform: translateY(-3px);
        border-color: #c8d9c0;
        box-shadow: 0 13px 29px rgba(36,66,28,.09);
        color: inherit
    }

    .award-public-card.is-featured {
        border-color: #d9c589
    }

.award-public-cover {
    position: relative;
    height: 150px;
    overflow: hidden;
    background: radial-gradient(circle at 25% 15%,rgba(237,215,156,.45),transparent 32%),linear-gradient(135deg,#10273f,#284d43 56%,#5b8c3b)
}

    .award-public-cover > img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.award-public-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(5,18,28,.08),rgba(5,18,28,.52))
}

.award-category-chip, .award-featured-chip {
    position: absolute;
    z-index: 3;
    top: 9px;
    min-height: 25px;
    padding: 4px 7px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 999px;
    color: #fff;
    backdrop-filter: blur(5px);
    font-size: .61rem;
    font-weight: 900
}

.award-category-chip {
    inset-inline-start: 9px;
    background: rgba(16,39,63,.73)
}

.award-featured-chip {
    inset-inline-end: 9px;
    background: rgba(163,119,22,.88)
}

.award-trophy-mark {
    position: absolute;
    z-index: 3;
    inset-inline-start: 50%;
    bottom: 18px;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 17px;
    background: rgba(255,255,255,.92);
    transform: translateX(50%);
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
    font-size: 1.9rem
}

.award-public-body {
    padding: 12px;
    flex: 1 1 auto
}

.award-public-sport {
    color: var(--gd);
    font-size: .64rem;
    font-weight: 900
}

.award-public-body h2 {
    margin: 3px 0 0;
    color: var(--navy);
    font-size: .95rem;
    font-weight: 900;
    line-height: 1.45
}

.award-public-name-en {
    min-height: 17px;
    margin-top: 1px;
    overflow: hidden;
    color: #98a29c;
    font-family: Arial,sans-serif;
    font-size: .64rem;
    text-overflow: ellipsis;
    white-space: nowrap
}

.award-public-body > p {
    height: 39px;
    margin: 7px 0 0;
    overflow: hidden;
    color: #748078;
    font-size: .67rem;
    line-height: 1.55
}

.award-public-tags {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px
}

    .award-public-tags span {
        min-height: 24px;
        padding: 4px 6px;
        display: inline-flex;
        align-items: center;
        border-radius: 7px;
        background: #f2f6ef;
        color: #66795c;
        font-size: .58rem;
        font-weight: 800
    }

.award-public-latest {
    margin-top: 10px;
    padding: 9px;
    border: 1px solid #e4e9e1;
    border-radius: 9px;
    background: #fafcf9
}

    .award-public-latest > span, .award-public-latest > strong, .award-public-latest > small {
        display: block
    }

    .award-public-latest > span {
        color: #9aa39d;
        font-size: .57rem
    }

    .award-public-latest > strong {
        margin-top: 2px;
        overflow: hidden;
        color: #425349;
        font-size: .68rem;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .award-public-latest > small {
        margin-top: 2px;
        color: #7b897f;
        font-size: .58rem
    }

.award-public-stats {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 5px
}

    .award-public-stats > div {
        min-width: 0;
        padding: 7px 3px;
        border-radius: 8px;
        background: #f7f9f6;
        text-align: center
    }

    .award-public-stats strong, .award-public-stats span {
        display: block
    }

    .award-public-stats strong {
        overflow: hidden;
        color: var(--navy);
        font-family: Arial,"Tajawal",sans-serif;
        font-size: .73rem;
        font-weight: 900;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .award-public-stats span {
        margin-top: 1px;
        color: #8c9791;
        font-size: .55rem
    }

.award-public-footer {
    min-height: 40px;
    padding: 8px 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-top: 1px solid #edf1eb;
    color: #748078;
    font-size: .64rem
}

    .award-public-footer code {
        max-width: 58%;
        overflow: hidden;
        color: #7f8a83;
        font-size: .58rem;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .award-public-footer strong {
        color: var(--gd);
        font-size: .67rem
    }

.js-progressive-item.is-progressive-hidden {
    display: none !important
}

.awards-show-more-wrap {
    padding: 18px 0 3px;
    text-align: center
}

.awards-show-more {
    min-height: 40px;
    padding: 8px 17px;
    border: 1px solid #cfdcc9;
    border-radius: 9px;
    background: #fff;
    color: var(--gd);
    font-family: inherit;
    font-size: .76rem;
    font-weight: 900
}

.awards-message {
    min-height: 220px;
    padding: 30px;
    display: grid;
    place-items: center;
    align-content: center;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    text-align: center
}

    .awards-message > span {
        font-size: 2rem
    }

    .awards-message strong {
        margin-top: 7px;
        color: var(--navy);
        font-size: .95rem
    }

    .awards-message p {
        margin: 4px 0 10px;
        color: var(--muted);
        font-size: .77rem
    }

    .awards-message a {
        color: var(--gd);
        font-size: .75rem;
        font-weight: 900;
        text-decoration: none
    }

    .awards-message.is-error {
        border-color: #ecd6d6
    }

@media(max-width:1199.98px) {
    .awards-search-grid {
        grid-template-columns: repeat(4,minmax(0,1fr))
    }

    .awards-search-field.is-search {
        grid-column: span 2
    }

    .awards-grid {
        grid-template-columns: repeat(3,minmax(0,1fr))
    }
}

@media(max-width:767.98px) {
    .awards-container {
        width: min(100% - 18px,1440px)
    }

    .awards-public-strip {
        align-items: flex-start;
        flex-direction: column
    }

    .awards-strip-action {
        width: 100%;
        justify-content: center
    }

    .awards-search-grid {
        grid-template-columns: 1fr 1fr
    }

    .awards-search-field.is-search {
        grid-column: 1/-1
    }

    .awards-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 9px
    }

    .award-public-cover {
        height: 132px
    }
}

@media(max-width:430px) {
    .awards-search-grid {
        grid-template-columns: 1fr
    }

    .awards-search-field.is-search {
        grid-column: auto
    }

    .awards-search-button, .awards-search-reset {
        width: 100%
    }
}

@media(max-width:360px) {
    .awards-grid {
        grid-template-columns: 1fr
    }

    .award-public-cover {
        height: 155px
    }
}
