/* Main Layout */
main {
    background: var(--bg-gray-4);
}

/* Details Section */
.details-section {
    padding-top: 80px;
}

/* Title Box */
.details-section .title-box {
    font-weight: 500;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 72px;
}

.details-section .title-box h1 {
    font-weight: 500;
    font-size: 1.8rem;
    color: var(--text-color);
    max-width: 800px;
    margin: auto;
}

.details-section .title-box p {
    margin-bottom: 32px;
}

/* Avatar Box */
.details-section .avatar-box img {
    max-width: 100%;
}

/* Content Box */
.details-section .content-box {
    max-width: 800px;
    margin: 80px auto 100px;
    padding: 0 32px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 0.2px;
}

.details-section .content-box .ck-content {
    font-family: averta, sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 0.2px;
}

/* Related Box */
.details-section .related-box {
    clear: both;
    background: var(--bg-gray-3);
    padding: 60px 0;
}

.details-section .related-box h2 {
    font-weight: 300;
    color: var(--text-color);
    margin-bottom: 48px;
}

.details-section .related-box .slider-news {
    width: 100%;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .details-section {
        padding-top: 52px;
    }

    .details-section .title-box {
        margin-bottom: 48px;
    }

    .details-section .title-box h1 {
        font-size: 1.4rem;
    }

    .details-section .avatar-box {
        margin-left: -20px;
        margin-right: -20px;
    }

    .details-section .content-box {
        margin: 32px auto 48px;
        text-align: center;
    }
}
