/* ==========================================================================
   SECTION: SIMPLE CONTENT / TEXT SECTION
   Path: template-parts/sections/simple-content/style.css
   ========================================================================== */

.simple-content-section {
    position: relative;
    width: 100%;
    padding: 75px 0 95px 0;
    box-sizing: border-box;
    background-color: #FFFFFF;
}

.simple-content-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.simple-content-box {
    margin: 0 auto;
    width: 100%;
}

/* TIÊU ĐỀ SECTION H2 (MÀU ĐEN ĐẬM THEO ĐÚNG THIẾT KẾ) */
.simple-content-title {
    font-family: var(--font-body, 'Nunito Sans', sans-serif);
    font-size: 26px;
    font-weight: 800;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 40px 0;
    line-height: 1.35;
    text-align: center;
}

/* CÁCH 1: DANH SÁCH MỤC THÔNG TIN (INFO ITEMS) */
.simple-content-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.simple-info-item {
    margin: 0;
}

.simple-info-item__title {
    font-family: var(--font-body, 'Nunito Sans', sans-serif);
    font-size: 17.5px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 6px 0;
    line-height: 1.5;
}

.simple-info-item__text {
    font-family: var(--font-body, 'Nunito Sans', sans-serif);
    font-size: 16.5px;
    line-height: 1.7;
    color: #333333;
}

/* CÁCH 2: NỘI DUNG VĂN BẢN (RICH TEXT / MARKDOWN) */
.simple-content-body {
    font-family: var(--font-body, 'Nunito Sans', sans-serif);
    font-size: 16.5px;
    line-height: 1.8;
    color: #333333;
}

.simple-content-body strong,
.simple-content-body b {
    font-weight: 700;
    color: #000000;
}

.simple-content-body a,
.simple-info-item__text a {
    color: var(--color-primary-second, #456967);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.simple-content-body a:hover,
.simple-info-item__text a:hover {
    color: var(--color-primary-third, #74A59F);
}

/* RESPONSIVE MOBILE (< 768px) */
@media (max-width: 768px) {
    .simple-content-section {
        padding: 50px 0 60px 0;
    }

    .simple-content-container {
        padding: 0 18px;
    }

    .simple-content-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .simple-content-items {
        gap: 22px;
    }

    .simple-info-item__title {
        font-size: 16px;
    }

    .simple-info-item__text,
    .simple-content-body {
        font-size: 15px;
        line-height: 1.65;
    }
}
