.njk-editorial {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 15px;
    font-family: Arial, Helvetica, sans-serif;
    color: #202735;
}

.njk-title {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 30px;
    margin-bottom: 45px;
    border-radius: 18px;
    background: linear-gradient(135deg, #17233c, #2b3d5d);
    color: #fff;
}

.njk-title-accent {
    width: 6px;
    height: 70px;
    border-radius: 10px;
    background: #d4af37;
}

.njk-kicker {
    font-size: 12px;
    letter-spacing: 3px;
    color: #d4af37;
    font-weight: bold;
}

.njk-title h2 {
    margin: 5px 0;
    color: #fff;
    font-size: 30px;
}

.njk-title p {
    margin: 0;
    color: rgba(255,255,255,.75);
}

.njk-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 35px 0 20px;
}

.njk-section-title span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(212,175,55,.15);
    color: #a98218;
    font-weight: bold;
}

.njk-section-title h3 {
    margin: 0;
    font-size: 25px;
    color: #17233c;
}

.njk-chief {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 25px rgba(0,0,0,.07);
    border-left: 5px solid #d4af37;
}

.njk-avatar {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#d4af37,#a98218);
    color: white;
    font-size: 30px;
    font-weight: bold;
}

.njk-info {
    flex: 1;
}

.njk-label {
    color: #a98218;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
}

.njk-info h2 {
    margin: 5px 0 12px;
    color: #17233c;
}

.njk-info p {
    margin: 5px 0;
    color: #6b7280;
}

.njk-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 7px 14px;
    border-radius: 30px;
    background: rgba(212,175,55,.12);
    color: #947117;
    font-size: 12px;
    font-weight: bold;
}

.njk-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.njk-person {
    padding: 22px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0,0,0,.05);
    transition: .3s;
}

.njk-person:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,.10);
    border-color: #d4af37;
}

.njk-person-avatar {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 14px;
    background: #f1e6c3;
    color: #927016;
    font-weight: bold;
}

.njk-person-content small {
    color: #a98218;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1.5px;
}

.njk-person-content h3 {
    margin: 7px 0;
    font-size: 17px;
    line-height: 1.4;
    color: #17233c;
}

.njk-person-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
}

@media (max-width: 900px) {
    .njk-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 600px) {

    .njk-editorial {
        padding: 20px 10px;
    }

    .njk-title {
        padding: 22px;
    }

    .njk-title h2 {
        font-size: 23px;
    }

    .njk-chief {
        flex-direction: column;
        text-align: center;
    }

    .njk-grid {
        grid-template-columns: 1fr;
    }
}