/* Neden Dekosan - Editorial & Text-First CSS */

/* --- Header & Badge (Override for specific image) --- */
.why-header {
    background-color: var(--color-bg-alt);
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&q=80&w=1920');
    /* Architecture/Construction dark */
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding: var(--space-xl) 0 var(--space-md);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.why-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
    z-index: -1;
}

/* --- Typography & Layout --- */
.editorial-container {
    max-width: 1800px;
    /* Greatly increased to push text to edges */
    margin: 0 auto;
    padding: 0 50px;
    /* Safe padding from screen edges */
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 Columns */
    gap: 250px;
    /* Keeping large gap, but container width allows text to breathe now */
}

.editorial-intro {
    display: block;
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--color-text);
    text-align: center;
    max-width: 900px;
    font-weight: 300;
    margin-top: 60px;
    margin-bottom: 100px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.editorial-section {
    margin-bottom: 0px;
    /* Removed massive margin, handled by container gap/padding */
    padding-bottom: 50px;
    padding-left: var(--space-md);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle guide line */
    transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Right column items (Even numbers) */
.editorial-section:nth-child(even) {
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-right: var(--space-md);
    text-align: right;
    /* Aligns content to the right border */
}

.eyebrow {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
    display: block;
    opacity: 0.9;
}

.editorial-heading {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 30px;
    line-height: 1.3;
}

.editorial-text {
    font-size: 1.15rem;
    line-height: 2.0;
    color: var(--color-text-light);
    max-width: 65ch;
    margin-top: 10px;
}

/* --- Visual Breaks (Images) --- */
.editorial-image-break {
    width: 100%;
    height: 400px;
    margin: 50px 0;
    /* Increased margin for better separation from text */
    overflow: hidden;
    position: relative;
}

.editorial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) brightness(0.6);
    /* Desaturated & Darkened */
    transition: transform 10s ease;
    /* Slow zoom effect */
}

.editorial-image-break:hover .editorial-img {
    transform: scale(1.05);
}

/* --- Highlights Section (Cards - Limited) --- */
.highlights-section {
    margin: 100px 0;
    /* Reduced from var(--space-xxl) */
    padding: 30px 0;
    /* Reduced from var(--space-xl) to make it thinner */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    text-align: center;
    /* Center the text inside cards */
    justify-items: center;
    /* Center items in their grid cells */
    max-width: 1200px;
    /* Limit width to keep them grouped centrally if screen is huge */
    margin: 0 auto;
    /* Center the grid itself */
}

.highlight-card {
    background: transparent;
    padding: 0;
}

.highlight-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
    display: block;
}

.highlight-label {
    font-size: 0.95rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- CTA Section --- */
.cta-band {
    margin-top: 200px;
    /* Increased from var(--space-xxl) for better separation */
    text-align: center;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.03), transparent);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-band h3 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

/* Responsive */
@media (max-width: 768px) {
    .editorial-container {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 60px;
    }

    .editorial-heading {
        font-size: 1.75rem;
    }

    .editorial-image-break {
        height: 250px;
    }

    .highlights-grid {
        grid-template-columns: 1fr 1fr;
    }
}