/* 
 * Elite Restoration - Specialized Page Template Styles
 * Reduced Hero Gaps & Centered Column
 */

/* 1. Header Clearance Override */
.page-template-page-elite .site-main {
    padding-top: 0 !important;
    /* Remove the pt-24 from header.php */
}

/* 2. Elite Hero (Precise Position) */
.elite-page-hero {
    background-color: #0F0F0F;
    padding-top: 200px !important;
    /* Minimal gap from nav line */
    padding-bottom: 4rem !important;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.elite-page-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.elite-page-hero h1 {
    max-width: 960px;
    margin: 0 auto 1rem auto !important;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    color: #FFFFFF !important;
    letter-spacing: -0.03em;
    padding-top: 2rem;
}

/* Celestial Glows (Cloned from Blog Hero) */
.elite-page-hero .glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}

.elite-page-hero .glow-1 {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.12;
    top: -20rem;
    left: -15rem;
    filter: blur(160px);
}

.elite-page-hero .glow-2 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    opacity: 0.06;
    top: 10rem;
    right: -10rem;
    filter: blur(140px);
}

.elite-page-hero .glow-3 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    opacity: 0.08;
    bottom: -10rem;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(120px);
}

/* 3. Content Area foundations */
.page-template-page-elite #primary {
    background-color: #0F0F0F !important;
    /* Dark Side Gutters */
}

.content-card-wrap.elite-page-layout-860 {
    background-color: #FFFFFF;
    color: #1A1A1A;
    border-radius: 2.5rem 2.5rem 0 0;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    margin-top: -2rem !important;
    /* Sit closer to reduced hero */
    position: relative;
    z-index: 20;
    max-width: 860px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 4. Breadcrumbs Restoration */
.elite-breadcrumb-wrap {
    background: linear-gradient(180deg, #f7f9ff, #f5f7fb);
    padding: 0.5rem;
}

.breadcrumb-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 3rem 0 3rem;
}

.elite-breadcrumb nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
}

.elite-breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
}

.elite-breadcrumb .sep {
    font-size: 10px;
    opacity: 0.7;
    color: #cbd5e1;
}

.elite-breadcrumb .current {
    color: #64748b;
    font-weight: 500;
}

/* 5. Article & Content Readability */
.elite-article-content {
    padding: 4rem 3rem;
}

.content-body {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #334155 !important;
}

@media (max-width: 768px) {
    .elite-page-hero {
        padding-top: 100px !important;
    }

    .elite-article-content {
        padding: 2.5rem 1.5rem;
    }

    .content-card-wrap.elite-page-layout-860 {
        margin-top: -1rem !important;
        border-radius: 1.5rem 1.5rem 0 0;
    }
}