/**
 * EMA Accreditations — front-end styles.
 * Matches .accreds from about.html.
 */
.ema-accreds{
    padding: 80px 32px;
    background: #F5EFD9;
    border-top: 2px solid #12110F;
    border-bottom: 2px solid #12110F;
}
.ema-accreds-inner{
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 64px;
    align-items: center;
}
.ema-accreds-label{
    font-family: 'Oswald', 'Arial Narrow', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: .95;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    color: #12110F;
}
.ema-accreds-label em{
    font-style: normal;
    color: #A01428;
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .24em;
    margin-top: 8px;
}
.ema-accreds-list{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.ema-accred-chip{
    padding: 14px 20px;
    background: #12110F;
    color: #F5EFD9;
    font-family: 'Oswald', 'Arial Narrow', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    border: 2px solid #12110F;
    transition: background .2s, color .2s;
}
.ema-accred-chip:hover{
    background: #F5EFD9;
    color: #12110F;
}
.ema-accred-chip.gold{
    background: #A08C50;
    border-color: #A08C50;
    color: #12110F;
}
.ema-accred-chip.gold:hover{
    background: #F5EFD9;
    color: #12110F;
    border-color: #A08C50;
}

@media (max-width: 1100px){
    .ema-accreds-inner{ grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 780px){
    .ema-accreds{ padding: 50px 16px; }
    .ema-accreds-label{ font-size: 22px; }
    .ema-accred-chip{ padding: 11px 16px; font-size: 11px; letter-spacing: .12em; }
}
