.youth-editorial h2 {
    margin: 0 0 .2604rem;
    font-size: .125rem;
    line-height: .1979rem;
    font-weight: 700;
    color: #000000;
}

.youth-editorial-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .1354rem .3125rem;
}

.youth-editorial-item {
    height: .4219rem;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-left: .0104rem solid #9B0D14;
    padding: 0 .2396rem;
    font-size: .1042rem;
    line-height: .1667rem;
    font-weight: 700;
    color: #000000;
}
.youth-editorial-item:hover a{
    color: #9B0D14;
}
.youth-editorial-item  a{
    cursor: pointer;
    text-decoration: none;
    color: #000000;
}


/* 编委会名单（独立类名，不影响青年编委会） */
.committee-board {
    width: 70%;
    padding: .1042rem 0 .1563rem;
    color: #333;
    font-family: 'Microsoft YaHei', 'Source Han Serif CN', sans-serif;
}

.committee-board-wrap {
    width: 100%;
}

.committee-board-list {
    display: flex;
    flex-direction: column;
    gap: .0625rem;
}

.committee-board-row {
    display: grid;
    grid-template-columns: .625rem minmax(0, 1fr);
    column-gap: .0833rem;
    align-items: start;
    line-height: 1.55;
}

.committee-board-role {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
    font-size: .1042rem;
    font-weight: 700;
    color: #9B0D14;
    white-space: nowrap;
    box-sizing: border-box;
}

.committee-board-role::after {
    content: '：';
    flex: 0 0 auto;
}

.committee-board-names {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: .0625rem;
    row-gap: .0104rem;
    font-size: .1042rem;
    color: #333;
}

.committee-board-names span {
    display: inline-block;
    min-width: 0;
    white-space: nowrap;
}

.committee-board-note {
    grid-column: 1 / -1;
    margin: 0;
    font-size: .0885rem;
    color: #888;
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .committee-board-names {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}