/* Info board pages: notice, FAQ, committee, best communicator */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notice-board__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.notice-board__count {
    margin: 0;
    color: #008944;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.notice-search {
    min-height: 50px;
    display: grid;
    grid-template-columns: 118px minmax(286px, 1fr);
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    background: transparent;
}

.notice-search__select,
.notice-search__input {
    min-height: 50px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #dddddd;
    border-radius: 4px;
    background: #ffffff;
}

.notice-search__input {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
}

.notice-search select,
.notice-search input,
.notice-search button {
    min-width: 0;
    height: 100%;
    border: 0;
    background: transparent;
    color: #263241;
    font: inherit;
}

.notice-search select {
    width: 100%;
    padding: 0 34px 0 18px;
    color: #2f3946;
    font-size: 14px;
    font-weight: 600;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23263241' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.notice-search input {
    padding: 0 8px 0 18px;
    color: #172033;
    font-size: 14px;
}

.notice-search input::placeholder {
    color: #9aa3ad;
}

.notice-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6f7b86;
    font-size: 21px;
    cursor: pointer;
}

.notice-search select:focus,
.notice-search input:focus,
.notice-search button:focus-visible {
    outline: none;
}

.notice-board .notice-list {
    border-top: 2px solid #172033;
}

.notice-board .notice-list__item {
    min-height: 78px;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 112px 24px;
    align-items: center;
    gap: 18px;
    padding: 0 15px;
    border-bottom: 1px solid #e1e7ed;
    background: #ffffff;
}

.notice-board .notice-list__item::after {
    content: "";
    width: 18px;
    height: 18px;
    justify-self: end;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23008944' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 18px 18px;
}

.notice-board .notice-list__item:hover,
.notice-board .notice-list__item:focus-visible {
    background: #f7fffb;
    outline: none;
}

.notice-board .notice-list__item:focus-visible {
    outline: 2px solid rgba(0, 137, 68, 0.28);
    outline-offset: 2px;
}

.notice-board .notice-list__item .badge {
    justify-self: start;
    min-width: 58px;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(0, 137, 68, 0.45);
    border-radius: 2px;
    background: #ffffff;
    color: #008944;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.notice-board .notice-list__item strong {
    min-width: 0;
    color: #172033;
    font-size: 18px;
    line-height: 1.42;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice-board .notice-list__item time {
    color: #999999;
    font-size: 16px;
    font-weight: 400;
    text-align: right;
    white-space: nowrap;
}

.notice-board .notice-list .empty-state {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #e1e7ed;
    border-radius: 0;
    background: transparent;
    color: #667085;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.best-communicator {
    display: grid;
    gap: 34px;
}

.best-communicator-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(560px, 0.56fr) minmax(0, 1fr);
    gap: 34px;
    align-items: stretch;
    overflow: hidden;
    padding: 38px 36px;
    border-top: 2px solid #172033;
    border-bottom: 1px solid #dfe7ef;
    background: #ffffff;
}

.best-communicator-hero > * {
    position: relative;
    z-index: 1;
}

.best-communicator-hero__person,
.best-communicator-hero__reason {
    display: grid;
    align-items: center;
}

.best-communicator-hero__person {
    grid-template-columns: 50px minmax(0, 1fr) 50px;
    gap: 28px;
    padding-right: 30px; 
}

.best-communicator-hero__person-content {
    display: grid;
    grid-template-columns: minmax(128px, 0.38fr) minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    min-width: 0;
    text-align: center;
}

.best-left,
.best-right {
    width: 50px;
    height: auto;
    pointer-events: none;
    user-select: none;
}

.best-communicator-hero__meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.best-communicator-hero__meta span {
    color: #008944;
    font-size: 20px;
    font-weight: 700;
}

.best-communicator-hero__meta strong {
    color: #172033;
    font-size: 16px;
    font-weight: 700;
}

.best-communicator-hero__profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding-left: 24px;
    border-left: 1px solid #dfe7ef;
}

.best-communicator-hero__profile p {
    margin: 0;
    color: #667085;
    font-size: 16px;
    font-weight: 600;
}

.best-communicator-hero__profile h3 {
    margin: 0;
    color: #172033;
    font-size: 44px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: 0;
}

.best-communicator-hero__reason {
    align-content: center;
    gap: 16px;
    min-width: 0;
}

.best-communicator-hero__reason strong {
    color: #172033;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 700;
    word-break: keep-all;
}

.best-communicator-hero__reason p {
    margin: 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.75;
    word-break: keep-all;
}

.best-communicator-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.best-communicator-list__item {
    position: relative;
    min-height: 116px;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    overflow: hidden;
    padding: 24px 28px;
    border: 1px solid #dfe7ef;
    border-radius: 4px;
    background: #ffffff;
}

.best-communicator-list__item::before {
    content: attr(data-month);
    position: absolute;
    right: 16px;
    color: rgba(23, 32, 51, 0.035);
    font-size: 58px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
    pointer-events: none;
}

.best-communicator-list__date {
    min-height: 46px;
    display: grid;
    align-items: center;
    padding-right: 20px;
    border-right: 1px solid #e5edf4;
}

.best-communicator-list__item time {
    color: #172033;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.best-communicator-list__profile {
    display: grid;
    gap: 8px;
}

.best-communicator-list__profile strong {
    min-width: 0;
    color: #172033;
    font-size: 30px;
    line-height: 1.18;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.best-communicator-list__profile span {
    color: #667085;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
}

.committee-board__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.committee-board__count {
    margin: 0;
    color: #008944;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.committee-list {
    border-top: 2px solid #172033;
}

.committee-list__item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 132px;
    align-items: center;
    gap: 18px;
    padding: 0 15px;
}

.committee-list__item {
    min-height: 78px;
    border-bottom: 1px solid #e1e7ed;
    background: #ffffff;
}

.committee-list__item:hover,
.committee-list__item:focus-visible {
    background: #f7fffb;
    outline: none;
}

.committee-list__item:focus-visible {
    outline: 2px solid rgba(0, 137, 68, 0.28);
    outline-offset: 2px;
}

.committee-list__no {
    color: #5f6b7a;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.committee-list__item strong {
    min-width: 0;
    color: #172033;
    font-size: 18px;
    line-height: 1.42;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.committee-list__item time {
    color: #999999;
    font-size: 16px;
    font-weight: 400;
    text-align: right;
    white-space: nowrap;
}

.committee-list .empty-state {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #e1e7ed;
    border-radius: 0;
    background: transparent;
    color: #667085;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.board-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
}

.board-pagination a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9e1e8;
    background: #ffffff;
    color: #4b5563;
    font-size: 15px;
    font-weight: 600;
}

.board-pagination a.active {
    border-color: #008944;
    background: #008944;
    color: #ffffff;
}

.board-pagination a.disabled {
    color: #b7c0ca;
    pointer-events: none;
}


.notice-detail {
    border-top: 2px solid #172033;
}

.notice-detail__header {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 112px;
    align-items: center;
    gap: 18px;
    min-height: 86px;
    padding: 0 15px;
    border-bottom: 1px solid #e1e7ed;
}

.notice-detail__header .badge {
    justify-self: start;
    min-width: 58px;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(0, 137, 68, 0.45);
    border-radius: 2px;
    background: #ffffff;
    color: #008944;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.notice-detail__header h2 {
    min-width: 0;
    margin: 0;
    color: #172033;
    font-size: 22px;
    line-height: 1.42;
    font-weight: 600;
}

.notice-detail__header time {
    color: #999999;
    font-size: 16px;
    font-weight: 400;
    text-align: right;
    white-space: nowrap;
}

.notice-detail__content {
    min-height: 260px;
    padding: 36px 15px 54px;
    border-bottom: 1px solid #e1e7ed;
    color: #374151;
    font-size: 17px;
    line-height: 1.8;
}


.notice-detail__files {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 18px 15px;
    border-bottom: 2px solid #d3dce5;
}

.notice-detail__files h3 {
    margin: 0;
    color: #172033;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.notice-detail__files ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
    list-style: none;
}

.notice-detail__files a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    font-size: 16px;
    line-height: 1.45;
}

.notice-detail__files a:hover,
.notice-detail__files a:focus-visible {
    color: #008944;
    outline: none;
}

.notice-detail__files i {
    color: #008944;
    font-size: 18px;
    line-height: 1;
}

.notice-detail__files em {
    color: #999999;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.notice-detail__nav {
    border-bottom: 1px solid #e1e7ed;
}

.notice-detail__nav-row {
    min-height: 58px;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 0 15px;
}

.notice-detail__nav-row + .notice-detail__nav-row {
    border-top: 1px solid #edf1f4;
}

.notice-detail__nav-row span {
    color: #172033;
    font-size: 16px;
    font-weight: 600;
}

.notice-detail__nav-row a,
.notice-detail__nav-row p {
    min-width: 0;
    margin: 0;
    color: #5f6b7a;
    font-size: 16px;
    line-height: 1.5;
}

.notice-detail__nav-row a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice-detail__nav-row a:hover,
.notice-detail__nav-row a:focus-visible {
    color: #008944;
    outline: none;
}

.notice-detail__actions {
    display: flex;
    justify-content: center;
    padding-top: 28px;
}

.notice-detail__actions a {
    min-width: 112px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #008944;
    border-radius: 2px;
    background: #008944;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.committee-detail__header {
    grid-template-columns: minmax(0, 1fr) 132px;
}

.faq-list {
    gap: 0;
    border-top: 2px solid #172033;
}

.faq-item {
    border-bottom: 1px solid #e1e7ed;
    background: #ffffff;
}

.faq-item__question {
    width: 100%;
    min-height: 76px;
    padding: 25px 18px;
    border: 0;
    background: #ffffff;
    color: #172033;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 28px;
    align-items: center;
    column-gap: 18px;
    text-align: left;
    cursor: pointer;
}

.faq-item__question:hover,
.faq-item__question:focus-visible {
    background: #ffffff;
    outline: none;
}

.faq-item__mark,
.faq-answer__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(0, 137, 68, 0.45);
    border-radius: 2px;
    color: #008944;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.faq-item__text {
    min-width: 0;
    color: #172033;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.45;
}

.faq-item__question i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    color: #172033;
    font-size: 22px;
    line-height: 24px;
    transform-origin: 50% 50%;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item__question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer.open {
    grid-template-rows: 1fr;
}

.faq-answer__inner {
    min-height: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: flex-start;
    column-gap: 18px;
    padding: 0 18px 0 15px;
    background: #fbfbfb;
    border-top: 1px solid #edf1f4;
}

.faq-answer__inner p {
    margin: 0;
    padding: 28px 0 30px;
    color: #5f6b7a;
    font-size: 17px;
    line-height: 1.6;
}

.faq-answer__mark {
    margin-top: 24px;
    border-color: #d8e2dc;
    background: #ffffff;
    color: #667085;
}

@media (max-width: 1280px) {
    .faq-item__question {
        min-height: 72px;
        padding: 22px 16px;
        grid-template-columns: 42px minmax(0, 1fr) 26px;
        column-gap: 16px;
    }

    .faq-answer__inner {
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .faq-item__text {
        font-size: 19px;
    }

    .faq-answer__inner p {
        padding: 24px 0 28px;
        font-size: 16px;
    }

    .notice-board__top {
        gap: 14px;
    }

    .notice-search {
        grid-template-columns: 110px minmax(240px, 1fr);
    }

    .notice-board .notice-list__item {
        min-height: 72px;
        grid-template-columns: 64px minmax(0, 1fr) 104px 20px;
        gap: 14px;
        padding: 0 14px;
    }

    .notice-board .notice-list__item .badge {
        min-width: 54px;
        min-height: 32px;
        padding: 0 10px;
        font-size: 15px;
    }

    .notice-board .notice-list__item strong,
    .notice-board .notice-list__item time {
        font-size: 15px;
    }

    .best-communicator-hero {
        grid-template-columns: minmax(460px, 0.54fr) minmax(0, 1fr);
        gap: 24px;
        padding: 28px;
    }

    .best-communicator-hero__person {
        grid-template-columns: 50px minmax(0, 1fr) 50px;
        gap: 20px;
        padding-right: 24px;
    }

    .best-left,
    .best-right {
        width: 50px;
    }

    .best-communicator-hero__person-content {
        grid-template-columns: minmax(110px, 0.38fr) minmax(0, 1fr);
        gap: 20px;
    }

    .best-communicator-hero__profile {
        padding-left: 20px;
    }

    .best-communicator-hero__profile h3 {
        font-size: 38px;
    }
}

@media (max-width: 1024px) {
    .best-communicator-hero {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 26px;
    }

    .best-communicator-hero__person {
        padding: 0 0 24px;
        border-right: 0;
        border-bottom: 1px solid #dfe7ef;
    }

    .best-communicator-hero__reason {
        text-align: center;
    }

    .best-communicator-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .faq-item__question,
    .faq-answer__inner {
        grid-template-columns: 38px minmax(0, 1fr);
        column-gap: 12px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .faq-item__question {
        min-height: 68px;
        grid-template-columns: 38px minmax(0, 1fr) 24px;
    }

    .faq-item__text {
        font-size: 17px;
    }

    .faq-answer__inner p {
        padding: 20px 0 24px;
        font-size: 16px;
    }

    .faq-answer__mark {
        margin-top: 20px;
    }

    .notice-board__top {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 16px;
    }

    .notice-search {
        width: 100%;
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 6px;
    }

    .notice-search,
    .notice-search__select,
    .notice-search__input {
        min-height: 46px;
    }

    .notice-search select {
        padding: 0 28px 0 14px;
        background-position: right 12px center;
    }

    .notice-search input {
        padding-left: 14px;
    }

    .notice-board .notice-list {
        border-top-width: 1px;
    }

    .notice-board .notice-list__item {
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-areas:
            "badge"
            "title"
            "date";
        align-items: start;
        gap: 8px;
        padding: 18px 14px;
    }

    .notice-board .notice-list__item::after {
        display: none;
    }

    .notice-board .notice-list__item .badge {
        grid-area: badge;
        min-width: 50px;
        min-height: 28px;
        padding: 0 10px;
        font-size: 13px;
    }

    .notice-board .notice-list__item strong {
        grid-area: title;
        font-size: 16px;
        white-space: normal;
    }

    .notice-board .notice-list__item time {
        grid-area: date;
        font-size: 14px;
        text-align: left;
    }

    .best-communicator {
        gap: 28px;
    }

    .best-communicator-hero {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 24px 20px;
    }

    .best-communicator-hero__person {
        grid-template-columns: 46px minmax(0, 1fr) 46px;
        gap: 16px;
        padding: 0 0 20px;
        border-right: 0;
        border-bottom: 1px solid #d5e8dd;
    }

    .best-left,
    .best-right {
        width: 46px;
    }

    .best-communicator-hero__person-content {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .best-communicator-hero__meta {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }

    .best-communicator-hero__profile {
        padding-left: 0;
        border-left: 0;
    }

    .best-communicator-hero__profile h3 {
        font-size: 34px;
    }

    .best-communicator-list {
        grid-template-columns: 1fr;
    }

    .best-communicator-list__profile strong {
        white-space: normal;
    }
}

@media (max-width: 640px) {
    .notice-board .notice-list__item,
    .committee-list__item {
        grid-template-columns: 1fr;
    }

    .notice-detail__header {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 18px 15px;
    }

    .notice-detail__header time {
        text-align: left;
    }

    .notice-detail__content {
        padding: 28px 15px 42px;
        font-size: 16px;
    }

    .notice-detail__files,
    .notice-detail__nav-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .notice-detail__files {
        padding: 16px 15px;
    }

    .notice-detail__nav-row {
        min-height: 0;
        padding: 14px 15px;
    }

    .notice-detail__nav-row a {
        white-space: normal;
    }

    /* Committee board */
    .committee-board__top {
        align-items: stretch;
        flex-direction: column;
    }

    .committee-list__item {
        gap: 8px;
        padding: 18px 15px;
    }

    .committee-list__no {
        text-align: left;
    }

    .committee-list__item strong {
        white-space: normal;
    }

    .committee-list__item time {
        text-align: left;
    }

    .committee-detail__header {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .faq-item__question,
    .faq-answer__inner {
        grid-template-columns: 30px minmax(0, 1fr);
        column-gap: 8px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .faq-item__question {
        min-height: 64px;
        padding-top: 18px;
        padding-bottom: 18px;
        grid-template-columns: 30px minmax(0, 1fr) 16px;
    }

    .faq-item__mark,
    .faq-answer__mark {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .faq-item__text {
        font-size: 16px;
        line-height: 1.45;
    }

    .faq-item__question i {
        width: 16px;
        height: 16px;
        font-size: 16px;
        line-height: 16px;
    }

    .faq-answer__inner p {
        padding: 18px 0 22px;
        font-size: 14px;
        line-height: 1.65;
    }

    .faq-answer__mark {
        margin-top: 18px;
    }

    .notice-search {
        grid-template-columns: 90px minmax(0, 1fr);
    }

    .notice-search__select,
    .notice-search__input {
        min-height: 44px;
    }

    .notice-board .notice-list__item {
        grid-template-columns: 1fr;
        grid-template-areas:
            "badge"
            "title"
            "date";
        gap: 8px;
        padding: 16px 12px;
    }

    .notice-board .notice-list__item strong {
        font-size: 15px;
    }

    .notice-board .notice-list__item time {
        font-size: 13px;
    }

    .best-communicator-hero {
        padding: 22px 18px;
    }

    .best-communicator-hero__person {
        grid-template-columns: 40px minmax(0, 1fr) 40px;
        gap: 12px;
    }

    .best-left,
    .best-right {
        width: 40px;
    }

    .best-communicator-hero__meta span {
        font-size: 18px;
    }

    .best-communicator-hero__meta strong {
        font-size: 14px;
    }

    .best-communicator-hero__profile p,
    .best-communicator-hero__reason p {
        font-size: 14px;
    }

    .best-communicator-hero__profile h3 {
        font-size: 30px;
    }

    .best-communicator-hero__reason strong {
        font-size: 19px;
    }

    .best-communicator-list__profile strong {
        font-size: 24px;
    }

    .best-communicator-list__item::before {
        display: none;
    }

    .best-communicator-list__item {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 16px;
        padding: 20px 18px;
    }
}
