/* =========================
   HERO SECTION
========================= */

.editorialHero{

    width: 100%;
    min-height: 45vh;

    background:
        linear-gradient(
            rgba(15,23,42,0.82),
            rgba(15,23,42,0.82)
        ),
        url(_image/full-background-image-main.jpg)
        center center / cover no-repeat fixed;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 4rem 6%;
}

.heroOverlay{

    text-align: center;
    color: white;
    max-width: 900px;
}

.heroOverlay h1{

    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.heroOverlay p{

    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.9;
}


/* =========================
   SECTIONS
========================= */

.editorialSection{

    width: 100%;
    padding: 4rem 6%;
}

.editorialContainer{

    width: 100%;
    background: white;

    padding: 3rem;

    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);
}

.editorialContainer h2{

    font-size: 2rem;
    color: #0f172a;

    margin-bottom: 2rem;
}


/* =========================
   CARDS
========================= */

.editorialGrid{

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(260px,1fr));

    gap: 2rem;
}

.editorialCard{

    background: #f8fafc;

    padding: 2rem;

    border-radius: 18px;

    border-top: 4px solid #2563eb;

    transition: 0.3s ease;

    box-shadow:
        0 4px 12px rgba(0,0,0,0.06);
}

.editorialCard:hover{

    transform: translateY(-6px);
}

.editorialCard h3{

    color: #0f172a;

    margin-bottom: 1rem;

    line-height: 1.5;
}

.editorialCard p{

    color: #334155;

    margin-bottom: 1rem;
}

.editorialCard span{

    display: block;

    margin-bottom: 1rem;

    color: #2563eb;

    font-weight: 600;
}

.editorialCard a{

    text-decoration: none;

    color: #2563eb;

    font-weight: 600;
}

.editorialCard a:hover{

    text-decoration: underline;
}


/* =========================
   BOARD LIST
========================= */

.boardList{

    display: flex;
    flex-direction: column;

    gap: 1.5rem;
}

.boardItem{

    background: #f8fafc;

    padding: 1.5rem 2rem;

    border-left: 5px solid #2563eb;

    border-radius: 14px;

    transition: 0.3s ease;
}

.boardItem:hover{

    transform: translateX(6px);
}

.boardItem h3{

    color: #0f172a;

    margin-bottom: 0.5rem;
}

.boardItem p{

    color: #475569;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px){

    .heroOverlay h1{

        font-size: 2rem;
    }

    .editorialContainer{

        padding: 2rem;
    }

    .editorialContainer h2{

        font-size: 1.5rem;
    }
}