/* 
   Editorial Design System
   For: Bahtiyar Lojistik
   Focus: Luxury, Clarity, and Premium Spacing
*/

:root {
    --editorial-bg: #fafafa;
    --editorial-header-bg: #f4f5f8; /* Soft premium cool-gray */
    --editorial-dark: #1a1a1a;
    --editorial-accent: #f89d13;
    --editorial-muted: #888;
    --editorial-serif: 'Playfair Display', serif;
    --editorial-sans: 'Poppins', sans-serif;
}

/* Reset / Base Overrides for About Page */
.editorial-page {
    background-color: var(--editorial-bg);
    color: var(--editorial-dark);
}

/* 1. Navbar Clean State */
.editorial-page .site-main-nav {
    background-color: var(--editorial-header-bg) !important;
    border-bottom: 1px solid rgba(0,0,0,0.04) !important;
}

/* 2. The Editorial Header (Replaces Hero) */
.editorial-header {
    padding: 160px 0 80px;
    background: var(--editorial-header-bg) !important;
    border-bottom: 1px solid rgba(0,0,0,0.04) !important;
}

.editorial-tag {
    display: inline-block;
    font-family: var(--editorial-sans);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--editorial-accent);
    margin-bottom: 20px;
}

.editorial-title {
    font-family: var(--editorial-serif);
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
    color: var(--editorial-dark);
}

.editorial-lead {
    font-family: var(--editorial-sans);
    font-size: 18px;
    line-height: 1.8;
    color: var(--editorial-muted);
    max-width: 600px;
    margin-top: 30px;
}

/* 3. Sophisticated Content Sections */
.editorial-section {
    padding: 100px 0;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    align-items: center;
}

.editorial-img-wrap {
    grid-column: span 5;
    position: relative;
}

.editorial-img-wrap img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.editorial-img-caption {
    font-family: var(--editorial-serif);
    font-style: italic;
    font-size: 14px;
    margin-top: 15px;
    color: var(--editorial-muted);
}

.editorial-content-wrap {
    grid-column: 7 / span 6;
}

/* 3.1 Premium Cards */
.editorial-card {
    padding: 40px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.editorial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--editorial-accent);
}

.editorial-card i, .editorial-card span[class^="icon-"], .editorial-card span[class^="flaticon-"] {
    font-size: 40px;
    color: var(--editorial-accent);
    display: block;
    margin-bottom: 25px;
}

.editorial-card h3 {
    font-family: var(--editorial-serif);
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--editorial-dark);
}

.editorial-card p {
    font-size: 14px;
    color: var(--editorial-muted);
    line-height: 1.7;
    margin: 0;
}

.editorial-subheading {
    font-family: var(--editorial-serif);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.editorial-text {
    font-family: var(--editorial-sans);
    font-size: 16px;
    line-height: 1.9;
    color: #444;
}

/* 4. The "Legacy" Block */
.editorial-legacy-row {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 40px;
}

.legacy-item {
    flex: 1;
}

.legacy-item h4 {
    font-family: var(--editorial-sans);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--editorial-dark);
    margin-bottom: 10px;
}

.legacy-item p {
    font-size: 14px;
    color: var(--editorial-muted);
}

/* Responsive */
@media (max-width: 991px) {
    .editorial-img-wrap, .editorial-content-wrap {
        grid-column: span 12 !important;
    }
    .editorial-content-wrap {
        order: -1 !important;
    }
    .editorial-legacy-row {
        flex-direction: column !important;
        gap: 20px !important;
    }
    .editorial-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
}
