/* ==========================================================================
   PAGE HERO BANNER & SUBPAGE LAYOUT
   ========================================================================== */
.page-wrapper {
    padding-bottom: 80px;
    background-color: var(--color-bg-body, #f8fafc);
}

@media (max-width: 992px) {
    .page-wrapper .page-card-wide { padding: 36px 30px; }
}
@media (max-width: 640px) {
    .page-wrapper .page-card-wide { padding: 24px 16px; border-radius: 12px; }
    .page-wrapper .page-hero-title { font-size: 2rem; }
    .page-wrapper .page-hero-banner { padding: 28px 0; margin-bottom: 28px; }
}

.page-hero-banner {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    border-bottom: 1px solid var(--color-border, #e2e8f0);
    padding: 44px 0 36px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.page-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background-image: radial-gradient(rgba(88, 173, 81, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.page-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--color-text-muted, #64748b);
    margin-bottom: 16px;
}

.page-breadcrumbs a {
    color: var(--color-text-muted, #64748b);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

.page-breadcrumbs a:hover {
    color: #58ad51;
}

.page-breadcrumbs .breadcrumb-sep {
    font-size: 0.72rem;
    color: #94a3b8;
}

.page-breadcrumbs .breadcrumb-current {
    color: var(--color-primary, #0f172a);
    font-weight: 600;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(88, 173, 81, 0.12);
    color: #388432;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
    border: 1px solid rgba(88, 173, 81, 0.25);
}

.page-hero-title {
    font-size: 2.65rem;
    font-weight: 800;
    color: var(--color-primary, #0f172a);
    line-height: 1.25;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.page-hero-desc {
    font-size: 1.12rem;
    color: var(--color-text-muted, #64748b);
    max-width: 780px;
    margin: 0 0 16px;
    line-height: 1.65;
}

.page-hero-divider {
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, #58ad51 0%, #38bdf8 100%);
    border-radius: 2px;
    margin-top: 14px;
}

/* Wide Page Card (Full Container Width) */
.page-card-wide {
    background: #ffffff;
    border-radius: 20px;
    padding: 52px 64px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(226, 232, 240, 0.8);
    width: 100%;
    margin: 0 auto;
}

.entry-content {
    font-size: 1.12rem;
    line-height: 1.85;
    color: #334155;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--color-primary, #0f172a);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.35;
}

.entry-content h1 { font-size: 2.2rem; }
.entry-content h2 { font-size: 1.85rem; border-bottom: 1px solid #e2e8f0; padding-bottom: 10px; }
.entry-content h3 { font-size: 1.45rem; }

.entry-content p {
    margin-bottom: 1.4rem;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 24px;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content img {
    border-radius: 12px;
    margin: 24px auto;
    max-width: 100%;
    height: auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.entry-content th,
.entry-content td {
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.entry-content th {
    background: #f1f5f9;
    font-weight: 700;
    color: var(--color-primary, #0f172a);
}

