.csr-page {
    padding: 100px 0 3rem;
    background: #fff;
}

.detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.awards-detail__title {
    color: #fb0a01;
    font-size: 2.5rem;
    font-family: zlb;
    margin-bottom: 2rem;
}

.awards-detail__title .date {
    font-family: jkt;
    font-size: 0.7rem;
    color: #fff;
    background-color: #fb0a01;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    display: inline-block;
}

.awards-detail__img-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    padding: 1.25rem 0;
}

.awards-detail__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 1rem;
}

.awards-detail__heading {
    color: #fb0a01;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: zlb;
    margin: 0 auto 1rem;
}

.awards-detail__desc {
    color: #4d4d4d;
    font-size: 0.95rem;
    font-family: jkt;
    line-height: 1.7;
    margin: 0 auto 2rem;
}

.awards-detail__desc h2 {
    color: #fb0a01;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: zlb;
    margin-bottom: 1rem;
}

.awards-detail__desc h3 {
    color: #fb0a01;
    font-size: 1rem;
    font-weight: 700;
    font-family: zlb;
    margin-bottom: 1rem;
}

.awards-detail__desc p {
    margin-bottom: 1rem;
}

.awards-detail__desc p img {
    margin-bottom: 1rem;
    max-width: 100%;
}

.awards-detail__share {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.awards-detail__share-label {
    font-family: jkt;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.9rem;
}

.awards-detail__share-icons {
    display: flex;
    gap: 0.6rem;
}

.awards-detail__share-icons a {
    width: 32px;
    height: 32px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.awards-detail__share-icons a:hover {
    transform: translateY(-4px);
}

/* ===== Sidebar: related items ===== */

.detail-sidebar__title {
    color: #000;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: zlb;
    margin: 0 0 1.5rem;
}

.detail-sidebar__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-sidebar__item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    border-bottom: 1px solid #c7c7c7;
    padding-bottom: 8px;
}

.detail-sidebar__img-wrap {
    width: 150px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

.detail-sidebar__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-sidebar__content {
    flex: 1;
    min-width: 0;
}

.detail-sidebar__item-title {
    font-family: zlb;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.3rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.detail-sidebar__item-desc {
    font-family: jkt;
    font-size: 0.75rem;
    color: #6b6b6b;
    line-height: 1.4;
    margin: 0 0 0.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.detail-sidebar__item-date {
    font-family: jkt;
    font-size: 0.7rem;
    color: #999;
}

.detail-sidebar {
    margin-top: 100px;
}

@media (max-width: 768px) {
    .detail-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .awards-detail__title {
        font-size: 1.8rem;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    .awards-page .container {
        padding: 0 1rem;
    }

    .awards-detail__heading {
        font-size: 1.1rem;
    }

    .awards-detail__desc {
        font-size: 0.85rem;
    }

    .detail-sidebar__title {
        font-size: 1.1rem;
    }
}
