/* Awards section — styled cards (profile sidebar) */

.sa-awards {
    margin-bottom: 8px;
}

.sa-awards .gdlr-core-title-item {
    margin-bottom: 0;
}

.sa-awards__intro {
    display: block;
    margin-top: 10px;
    font-style: normal !important;
    letter-spacing: 0 !important;
    font-size: 14px !important;
    line-height: 1.5;
    color: #666 !important;
    max-width: 36em;
}

.sa-awards__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 4px;
}

.sa-awards__card {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 18px;
    margin: 0;
    padding: 18px 18px 18px 20px;
    background: linear-gradient(135deg, #faf9f7 0%, #fff 100%);
    border: 1px solid #e8e2d8;
    border-radius: 6px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.sa-awards__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #b1976b 0%, #d4c4a8 100%);
}

.sa-awards__card:hover {
    border-color: #d4c4a8;
    box-shadow: 0 8px 24px rgba(177, 151, 107, 0.14);
}

.sa-awards__year {
    flex: 0 0 100%;
    display: inline-block;
    width: fit-content;
    margin: 0 0 -4px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a7349;
    background: rgba(177, 151, 107, 0.14);
    border-radius: 3px;
    line-height: 1.3;
}

.sa-awards__media {
    flex: 0 0 160px;
    width: 160px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #eee9e1;
    box-sizing: border-box;
}

.sa-awards__img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
}

.sa-awards__caption {
    flex: 1 1 140px;
    margin: 0;
    min-width: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #323232;
    font-weight: 500;
    text-align: left;
}

@media (max-width: 479px) {
    .sa-awards__card {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .sa-awards__media {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        height: 110px;
    }
}
