.editorial-page {
    padding-bottom: 0;
}

.editorial-info {
    padding-top: 18px;
}

.editorial-panel {
    padding-top: 18px;
    padding-bottom: 18px;
    margin-bottom: 10px;
}

.editorial-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.heading-badge-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    object-fit: contain;
}

.heading-badge {
    color: #c8111f;
    font-size: 22px;
    font-weight: 700;
}

.editorial-heading p {
    margin: 0 0 0 6px;
    color: #8b8b8b;
    font-size: 14px;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.committee-card {
    min-height: 184px;
    padding: 22px 24px 18px;
    border: 1px solid #f0dfda;
    border-radius: 14px;
    background:
        radial-gradient(circle at right bottom, rgba(255, 238, 232, 0.75), rgba(255, 255, 255, 0) 48%),
        rgba(255, 252, 250, 0.92);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.committee-card:hover {
    box-shadow: 0 10px 28px rgba(156, 69, 44, 0.12);
    transform: translateY(-2px);
}

.committee-title-row {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0e2df;
}

.committee-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
}

.committee-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.committee-title-content {
    min-width: 0;
}

.committee-card h2 {
    margin: 0 0 8px;
    color: #c8111f;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.committee-card p {
    margin: 0;
    color: #777;
    font-size: 13px;
}

.committee-expert {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
}

.expert-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
}

.expert-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.expert-info {
    min-width: 0;
}

.expert-info strong {
    display: block;
    color: #2f2f2f;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.expert-info em {
    display: block;
    margin-top: 3px;
    overflow: hidden;
    color: #777;
    font-size: 13px;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.committee-count {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(240, 226, 223, 0.7);
    color: #d44f47;
    font-size: 13px;
    font-weight: 600;
}

.committee-count strong {
    font-size: 14px;
}

.editorial-empty {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    background: #fff;
    border-radius: 12px;
}

.editorial-info .stats-bar {
    padding-bottom: 20px;
}

@media (max-width: 1200px) {
    .committee-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .editorial-heading {
        flex-wrap: wrap;
    }

    .editorial-heading p {
        width: 100%;
        margin-top: 8px;
        margin-left: 42px;
    }

    .committee-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
