/* ========================================
   Default Page — Modern Compact Banner
   ======================================== */

.page-banner {
    background: linear-gradient(135deg, #0f1f35 0%, #1a3a5c 60%, #1e3a5f 100%);
    padding: 28px 20px 24px;
    position: relative;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    box-sizing: border-box;
}

/* Decorative blobs */
.page-banner::before,
.page-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.page-banner::before {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(56,118,183,0.18) 0%, transparent 70%);
    top: -120px; right: 5%;
}
.page-banner::after {
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(74,139,194,0.12) 0%, transparent 70%);
    bottom: -80px; left: 8%;
}

.page-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.page-banner-left { flex: 1; }

/* Breadcrumb */
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.page-breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.page-breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); font-size: 0.75rem; }

/* Title */
.page-banner-title {
    font-family: var(--font-heading) !important;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

/* Subtitle line under title */
.page-banner-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    font-family: var(--font-primary);
    margin: 0;
    line-height: 1.5;
}

/* Right side — phone pill */
.page-banner-right {
    flex-shrink: 0;
}

.page-phone-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 9px 18px 9px 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}

.page-phone-pill:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

.page-phone-icon {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.page-phone-number {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-primary);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Bottom accent line */
.page-banner-accent {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3876b7 30%, #5a9fd4 50%, #3876b7 70%, transparent);
}

/* ── Page Content ── */
.page-content-wrap {
    background: #f4f8fd;
    min-height: 300px;
    padding: 50px 20px 60px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    box-sizing: border-box;
}

.page-content-inner {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 48px 56px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.page-article .entry-content {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
}

.page-article .entry-content h2 {
    font-family: var(--font-heading) !important;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    letter-spacing: -0.02em;
}

.page-article .entry-content h3 {
    font-family: var(--font-heading) !important;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 0.75rem;
}

.page-article .entry-content p { margin-bottom: 1.25rem; }

.page-article .entry-content a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-article .entry-content ul,
.page-article .entry-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.page-article .entry-content li { margin-bottom: 0.5rem; }

/* Responsive */
@media (max-width: 768px) {
    .page-banner { padding: 36px 20px 32px; }
    .page-banner-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .page-banner-title { font-size: 1.6rem; }
    .page-phone-number { font-size: 0.95rem; }
    .page-content-wrap { padding: 30px 16px; }
    .page-content-inner { padding: 28px 24px; border-radius: 12px; }
}

/* Full Width template variant */
.page-content-inner--fullwidth {
    max-width: 1200px;
    padding: 48px 40px;
}

@media (max-width: 768px) {
    .page-content-inner--fullwidth { padding: 28px 20px; }
}
