/* ─────────────────────────────────────────────
   sub-header.css — Common Sub-page Header
   ───────────────────────────────────────────── */

.sub-header-sec {
    position: relative;
    padding: 120px 0 60px;
    text-align: center;
    background: #fdfdfd;
    border-bottom: 1px solid #eaeaea;
    overflow: hidden;
}
.sub-header-sec::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1920px;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(16, 43, 77, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.sub-header-sec h2 {
    font-family: 'GmarketSansBold';
    font-size: 2.8rem;
    color: #111;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 1;
}
.sub-header-sec h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--main-brand);
    margin: 20px auto 0;
}
.sub-header-sec .sub-desc {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    word-break: keep-all;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .sub-header-sec { padding: 60px 0 40px; }
    .sub-header-sec h2 { font-size: 2rem; }
    .sub-header-sec .sub-desc { font-size: 0.95rem; }
}

/* ─────────────────────────────────────────────
   Standard Page Content Styles
   ───────────────────────────────────────────── */

.standard-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.standard-content .block-heading h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 25px;
}

.standard-content .block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.standard-content > div {
    margin-bottom: 40px;
}
