/* ============================================
   ABOUT (THE TRUTH) PAGE SPECIFIC STYLES
   ============================================ */

/* Hero Section */
.hero-editorial {
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-editorial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

.hero-editorial-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
	margin-top:50px;
}

.eyebrow {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Drop Cap */
.drop-cap::first-letter {
    float: left;
    font-size: 4rem;
    line-height: 0.8;
    margin-right: 0.15em;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    color: var(--text-main);
}

/* Principles Icons */
.principle-icon {
    font-size: 2.5rem;
    color: var(--wild-nettle);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.principle-icon:hover {
    transform: scale(1.1);
}

/* Flow Diagram */
.flow-diagram {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) {
    .flow-diagram {
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
}

.diagram-step {
    border: 1px solid var(--border);
    padding: 30px 20px;
    text-align: center;
    flex: 1;
    background: #fff;
    transition: all 0.3s ease;
}

.diagram-step:hover {
    border-color: var(--text-main);
    transform: translateY(-5px);
}

.diagram-arrow {
    color: var(--border);
    font-size: 1.5rem;
    text-align: center;
    padding: 10px 0;
          transform: rotate(-0deg);
        padding: 0 15px;
}

@media (min-width: 768px) {
    .diagram-arrow {
        transform: rotate(-0deg);
        padding: 0 15px;
    }
}

/* Non-Negotiables List */
.non-negotiables-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.non-negotiables-list li {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.non-negotiables-list li:last-child {
    border-bottom: none;
    font-weight: 600;
}

.non-negotiables-list i {
    color: #b2b2b2;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.non-negotiables-list li:hover i {
    color: var(--wild-nettle);
}

/* Founder Section */
.founder-quote {
    font-style: italic;
    position: relative;
}

.founder-quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -20px;
    color: var(--border);
    font-family: serif;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-editorial {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-editorial-content h1 {
        font-size: 2rem;
    }
    
    .non-negotiables-list li {
        font-size: 1.25rem;
        padding: 1.25rem 0;
    }
}

@media (max-width: 768px) {
    .hero-editorial {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-editorial-content h1 {
        font-size: 1.75rem;
    }
    
    .drop-cap::first-letter {
        font-size: 3rem;
    }
    
    .diagram-step {
        padding: 20px 15px;
    }
    
    .diagram-step h6 {
        font-size: 0.85rem;
    }
    
    .non-negotiables-list li {
        font-size: 1rem;
        padding: 1rem 0;
    }
}

@media (max-width: 576px) {
    .hero-editorial {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-editorial-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-editorial-content h5 {
        font-size: 1rem;
    }
    
    .drop-cap::first-letter {
        font-size: 2.5rem;
    }
    
    .principle-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .diagram-step {
        padding: 15px 10px;
    }
    
    .diagram-step i {
        font-size: 1rem;
    }
    
    .diagram-step h6 {
        font-size: 0.75rem;
    }
    
    .non-negotiables-list li {
        font-size: 0.9rem;
        padding: 0.75rem 0;
        gap: 0.75rem;
    }
    
    .non-negotiables-list i {
        font-size: 0.85rem;
    }
}