/* board.css 배포일:2026.08.27 21:48:05 */ 
@charset "utf-8";

/* 게시판: 소개 */
.board-intro {
    overflow: hidden;
    background: var(--color-bg-soft);
}

.board-intro__inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 320px;
    padding: 80px 0;
}

.board-intro__text {
    position: relative;
    z-index: 1;
    max-width: 930px;
}

.board-intro h2 {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
}

.board-intro p {
    margin-top: 20px;
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.4;
}

.board-intro__image {
    position: absolute;
    top: -36px;
    right: -155px;
    width: 700px;
    max-width: none;
}

/* 두을성장프로그램: 프로그램 소개 */
.growth-program-overview {
    background: radial-gradient(ellipse 107.06% 107.06% at 50% -7.06%, #ffbc6b 0%, #ffd79f 50%, #fff1d2 100%);
}

.growth-program-overview .layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 64px 0;
}

.growth-program-overview__title {
    align-self: center;
    color: var(--color-text);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    word-break: keep-all;
}

.growth-program-overview__title > span {
    display: block;
}

.growth-program-overview__title mark {
    padding: 0 2px;
    background: var(--color-primary);
    color: var(--color-surface);
}

.growth-program-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(220px, auto);
    gap: 20px;
}

.growth-program-list > li {
    display: flex;
    min-width: 0;
}

.growth-program-card {
    --growth-program-transition: 0.2s ease;
    position: relative;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    min-height: 220px;
    padding: 25px;
    border: 1px solid var(--color-bg-soft);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    transition: border-color var(--growth-program-transition), box-shadow var(--growth-program-transition);
}

.growth-program-card::before,
.growth-program-card__icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--growth-program-transition);
}

.growth-program-card::before {
    inset: -1px;
    background: linear-gradient(180deg, var(--color-primary-gradient-end) 0%, var(--color-primary-gradient-start) 100%);
}

.growth-program-card > * {
    position: relative;
    z-index: 1;
}

.growth-program-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.growth-program-card__title {
    flex: 1 1 auto;
    max-width: 100%;
    min-width: 0;
    color: var(--color-text);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: keep-all;
}

.growth-program-card__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    padding: 8px;
    border-radius: 20px;
    background: linear-gradient(180deg, var(--color-primary-gradient-start) 0%, var(--color-primary-gradient-end) 100%);
    box-shadow: 0 10px 5px rgba(255, 162, 0, 0.4), inset 1px 1px 4px rgba(255, 255, 255, 0.25);
}

.growth-program-card__icon::before {
    background: rgba(255, 255, 255, 0.2);
}

.growth-program-card__icon img {
    position: relative;
    z-index: 1;
    width: 32px;
    height: 32px;
}

.growth-program-card__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 2px;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: keep-all;
}

.growth-program-card__body--stack {
    gap: 10px;
}

.growth-program-card__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.growth-program-card__item strong {
    color: var(--color-text);
    font-weight: 600;
}

.growth-program-card__item span {
    color: var(--color-text-muted);
}

.growth-program-card__title,
.growth-program-card__body,
.growth-program-card__item strong,
.growth-program-card__item span {
    transition: color var(--growth-program-transition);
}

@media (hover: hover) and (pointer: fine) {
    .growth-program-card:hover {
        border-color: transparent;
        box-shadow: 0 10px 10px rgba(255, 132, 0, 0.4);
    }

    .growth-program-card:hover::before,
    .growth-program-card:hover .growth-program-card__icon::before {
        opacity: 1;
    }

    .growth-program-card:hover .growth-program-card__title,
    .growth-program-card:hover .growth-program-card__body,
    .growth-program-card:hover .growth-program-card__item strong,
    .growth-program-card:hover .growth-program-card__item span {
        color: var(--color-surface);
    }
}

.growth-program-card:focus-visible,
.growth-program-card.is-active {
    border-color: transparent;
    box-shadow: 0 10px 10px rgba(255, 132, 0, 0.4);
}

.growth-program-card:focus-visible::before,
.growth-program-card:focus-visible .growth-program-card__icon::before,
.growth-program-card.is-active::before,
.growth-program-card.is-active .growth-program-card__icon::before {
    opacity: 1;
}

.growth-program-card:focus-visible .growth-program-card__title,
.growth-program-card:focus-visible .growth-program-card__body,
.growth-program-card:focus-visible .growth-program-card__item strong,
.growth-program-card:focus-visible .growth-program-card__item span,
.growth-program-card.is-active .growth-program-card__title,
.growth-program-card.is-active .growth-program-card__body,
.growth-program-card.is-active .growth-program-card__item strong,
.growth-program-card.is-active .growth-program-card__item span {
    color: var(--color-surface);
}

/* 게시판: 프로그램 안내 */
.board-program-hero {
    overflow: hidden;
    background: var(--color-bg-soft);
}

.board-program-hero__inner {
    position: relative;
    min-height: 296px;
    padding: 60px 0 52px;
}

.board-program-hero__text {
    position: relative;
    z-index: 1;
    max-width: 590px;
    min-width: 0;
}

.board-program-hero__eyebrow {
    display: inline-block;
    background: linear-gradient(103deg, var(--color-primary-gradient-start) 0%, var(--color-primary-gradient-end) 100%);
    color: var(--color-primary-dark);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.board-program-hero h2 {
    max-width: 100%;
    margin-top: 0;
    color: var(--color-text-muted);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: keep-all;
}

.board-program-hero__info {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin-top: 55px;
}

.board-program-hero__info li {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-width: 0;
    min-height: 52px;
    gap: 12px;
    padding: 8px 0;
    line-height: 1.4;
}

.board-program-hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 88px;
    height: 36px;
    gap: 4px;
    padding: 0 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, var(--color-primary-gradient-start) 0%, var(--color-primary-gradient-end) 100%);
    box-shadow: 0 10px 10px rgba(255, 162, 0, 0.4), inset 1px 1px 4px rgba(255, 255, 255, 0.25);
}

.board-program-hero__badge img {
    display: block;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
}

.board-program-hero__badge strong {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.board-program-hero__value {
    flex: 1 1 auto;
    min-width: 0;
    color: var(--color-text-strong);
    font-size: 16px;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: keep-all;
}

.board-program-hero__visual {
    position: absolute;
    top: -23px;
    right: -113px;
    width: 478px;
    height: 319px;
}

.board-program-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (min-width: 901px) {
    .board-program-hero--centered-art .board-program-hero__text {
        width: calc(100% - 478px);
    }

    .board-program-hero--centered-art .board-program-hero__inner {
        min-height: 296px;
        padding: 60px 0;
    }

    .board-program-hero--centered-art .board-program-hero__info {
        margin-top: 40px;
    }

    .board-program-hero--centered-art .board-program-hero__visual {
        top: 0;
    }
}

/* 게시판: 콘텐츠 및 검색 */
.board-content {
    padding: 80px 0 120px;
    background: #fff;
}

.board-filter {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.board-result {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.board-result strong {
    color: var(--color-primary);
    font-weight: 700;
}

.board-search {
    position: relative;
    display: flex;
    align-items: center;
    width: 420px;
    height: 56px;
    padding: 0 16px;
    border: 1px solid var(--color-line-input);
    border-radius: 1000px;
    background: #fff;
}

.board-search__select {
    position: relative;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.board-search__select::after {
    content: "";
    width: 1px;
    height: 24px;
    margin: 0 8px 0 10px;
    background: var(--color-line);
}

.board-select-button {
    --select-button-icon-size: 20px;
    display: grid;
    grid-template-columns: var(--select-button-icon-size) minmax(0, 1fr) var(--select-button-icon-size);
    align-items: center;
    width: 136px;
    height: 36px;
    padding: 0 4px;
    font-size: 17px;
    line-height: 1.4;
}

.board-select-button::before {
    content: "";
    grid-column: 1;
    width: var(--select-button-icon-size);
}

.board-select-button img {
    grid-column: 3;
    flex-shrink: 0;
    width: var(--select-button-icon-size);
    height: var(--select-button-icon-size);
}

.board-select-button [data-board-select-current] {
    grid-column: 2;
    min-width: 0;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    transform: translateX(-7.5px);
}

.board-select-list {
    display: none;
    position: absolute;
    top: 44px;
    left: -16px;
    z-index: 10;
    width: 160px;
    padding: 8px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.05), 0 4px 4px rgba(0, 0, 0, 0.08);
}

.board-search__select.is-open .board-select-list {
    display: block;
}

.board-select-list button {
    display: block;
    width: 100%;
    min-height: 40px;
    padding: 8px;
    border-radius: 6px;
    text-align: left;
    font-size: 15px;
}

.board-select-list button:hover,
.board-select-list button:focus-visible {
    background: var(--color-bg-soft);
    color: var(--color-primary-dark);
}

.board-search input {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    border: 0;
    color: var(--color-text);
    font-size: 17px;
    line-height: 1.4;
}

.board-search input::placeholder {
    color: var(--color-text-disabled);
}

.board-search input[type="search"]::-webkit-search-cancel-button {
    appearance: none;
}

.board-search__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
}

.board-search__button img {
    width: 24px;
    height: 24px;
}

/* 게시판: 테이블 목록 */
.board-table-wrap {
    overflow-x: auto;
}

.board-table {
    border-top: 1px solid var(--color-line-strong);
    table-layout: fixed;
}

.board-table .col-num {
    width: 80px;
}

.board-table .col-title {
    width: auto;
}

.board-table .col-writer,
.board-table .col-date {
    width: 160px;
}

.board-table .col-view {
    width: 120px;
}

.board-table .col-file {
    width: 100px;
}

.board-table th,
.board-table td {
    height: 72px;
    padding: 8px 16px;
    border-bottom: 1px solid var(--color-line-light);
    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 1.4;
    vertical-align: middle;
    overflow-wrap: anywhere;
    word-break: keep-all;
}

.board-table th {
    height: 64px;
    border-bottom-color: var(--color-line);
    color: #000;
    font-weight: 700;
    text-align: left;
}

.board-table th:not(:nth-child(2)),
.board-table td:not(:nth-child(2)) {
    text-align: center;
}

.board-table td:nth-child(3) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.board-table td:nth-child(4) {
    white-space: nowrap;
}

.board-table tbody tr.is-notice {
    background: var(--color-surface-soft);
}

.board-table tbody tr {
    transition: background-color 0.2s ease;
}

.board-table tbody tr:hover {
    background: var(--color-bg-soft);
}

.board-table__title {
    max-width: 100%;
    min-width: 0;
    padding-right: 0;
    padding-left: 0;
}

.board-table__link {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 29px;
    padding: 0 16px;
    color: var(--color-text-muted);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

.board-table__text {
    position: relative;
    flex: 0 1 auto;
    max-width: 100%;
    min-width: 0;
    line-height: 1;
    white-space: nowrap;
}

.board-table__subject {
    line-height: inherit;
}

.board-table__text.is-truncated {
    width: 100%;
}

.board-table__text.is-truncated:has(> .board-table__comment) {
    padding-right: 28px;
}

.board-table__text.is-truncated > .board-table__subject {
    display: block;
    overflow: hidden;
    max-width: 100%;
    min-width: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.board-table__comment {
    position: relative;
    top: -1px;
    margin-left: 4px;
    color: var(--color-primary);
    line-height: 1;
    white-space: nowrap;
}

.board-table__text.is-truncated > .board-table__comment {
    position: absolute;
    top: 50%;
    right: 0;
    margin-left: 0;
    transform: translateY(-50%);
}

.board-table__link:hover .board-table__subject,
.board-table__link:focus-visible .board-table__subject,
a.board-view__nav-item:hover .board-view__nav-subject,
a.board-view__nav-item:focus-visible .board-view__nav-subject {
    color: var(--color-primary-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.board-table__pin,
.board-table__file img {
    width: 20px;
    height: 20px;
    margin: 0 auto;
}

.board-table__views {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.board-table__views img {
    width: 20px;
    height: 20px;
}

.board-table__file {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: default;
}

/* 게시판: 공통 세로 배치 */
.board-image-list,
.alumni-filter {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 게시판: 이미지/갤러리 목록 */
.board-image-card {
    border: 1px solid var(--color-line-card);
    border-radius: 12px;
    background: #fff;
    transition: border-color 0.2s ease;
}

.board-image-card:hover {
    border-color: var(--color-primary);
}

.board-image-card__link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 275px;
    gap: 40px;
    min-height: 226px;
    padding: 23px;
    border-radius: inherit;
}

.board-image-card__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 8px 0;
}

.board-image-card__number {
    color: var(--color-text-muted);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

.board-image-card__title {
    display: inline-flex;
    align-items: flex-start;
    align-self: flex-start;
    max-width: 100%;
    min-width: 0;
    gap: 8px;
    margin-top: 24px;
    color: var(--color-text);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.35;
}

.board-image-card__title img {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-top: 8px;
}

.board-image-card__title span {
    display: -webkit-box;
    flex: 1 1 auto;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: anywhere;
    word-break: keep-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.board-image-card__summary {
    display: -webkit-box;
    overflow: hidden;
    max-width: 650px;
    margin-top: 13px;
    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 1.4;
    text-overflow: ellipsis;
    overflow-wrap: anywhere;
    word-break: keep-all;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.board-image-card__meta {
    margin-top: 16px;
    color: var(--color-text-disabled);
    font-size: 17px;
    line-height: 1.4;
}

.board-image-card__thumb {
    display: block;
    overflow: hidden;
    align-self: center;
    width: 275px;
    aspect-ratio: 55 / 36;
    border-radius: 10px;
}

.board-image-card__thumb img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 55 / 36;
    object-fit: cover;
    object-position: center;
}

/* 두을성장프로그램: 게시판 */
.growth-program-post__heading,
.growth-program-post__text {
    display: flex;
    flex-direction: column;
}

.growth-program-post__heading {
    gap: 16px;
}

.growth-program-post__text {
    gap: 10px;
}

@media (min-width: 901px) {
    .growth-program-board .board-filter {
        margin-bottom: 24px;
        padding-bottom: 23px;
        border-bottom: 1px solid var(--color-line-strong);
    }

    .growth-program-board .board-image-card__body {
        justify-content: space-between;
        padding: 0;
    }

    .growth-program-board .board-image-card__number {
        color: #000;
        font-size: 15px;
    }

    .growth-program-board .board-image-card__title {
        align-items: center;
        gap: 12px;
        margin-top: 0;
        color: #000;
        font-size: 24px;
        line-height: 1.4;
    }

    .growth-program-board .board-image-card__title img {
        width: 24px;
        height: 24px;
        margin-top: 0;
    }

    .growth-program-board .board-image-card__summary {
        margin-top: 0;
    }

    .growth-program-board .board-image-card__meta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 0;
        color: var(--color-text-muted);
        font-size: 18px;
    }

    .growth-program-board .board-image-card__meta strong {
        font-weight: 700;
    }

    .growth-program-board .board-pagination {
        margin-top: 104px;
    }
}

.board-gallery-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
    gap: 16px;
}

.board-gallery-item {
    min-width: 0;
    border: 1px solid var(--color-line-card);
    border-radius: 12px;
    background: var(--color-surface);
    transition: border-color 0.2s ease;
}

.board-gallery-item:hover {
    border-color: var(--color-primary);
}

.board-gallery-item a {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 19px;
    border-radius: inherit;
}

.board-gallery-item__thumb {
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 94 / 55;
    border-radius: 10px;
    background: var(--color-line-light);
}

.board-gallery-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.board-gallery-item__title {
    display: block;
    overflow: hidden;
    min-width: 0;
    color: var(--color-text);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 동문찾기: 검색과 상세 조건 */
.alumni-filter__bar {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 720px;
    max-width: 100%;
}

.alumni-filter__bar .board-search {
    flex: 1 1 auto;
    width: auto;
    height: 64px;
    padding: 0 24px;
}

.alumni-filter__bar .board-select-button {
    --select-button-icon-size: 24px;
    width: 120px;
    height: 40px;
    font-size: 20px;
    font-weight: 400;
}

.alumni-filter__bar .board-select-button img {
    width: 24px;
    height: 24px;
}

.alumni-filter__bar .board-search__select::after {
    height: 32px;
    margin: 0 16px;
}

.alumni-filter__bar .board-search input {
    font-size: 20px;
}

.alumni-filter__bar .board-search__button img {
    width: 32px;
    height: 32px;
}

.alumni-filter__toggle,
.alumni-detail__reset,
.alumni-card__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    line-height: 1.4;
    white-space: nowrap;
}

.alumni-filter__toggle {
    flex: 0 0 auto;
    height: 40px;
    gap: 4px;
    padding: 0 2px;
    color: var(--color-text);
    font-size: 19px;
    font-weight: 600;
}

.alumni-filter__toggle img {
    width: 18.6px;
    height: 18.6px;
    margin: 2.4px 3px 3px 2.4px;
}

.alumni-detail {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    width: 100%;
    padding: 32px;
    border-radius: 12px;
    background: var(--color-surface-soft);
}

.alumni-detail[hidden] {
    display: none;
}

.alumni-detail__group {
    width: 100%;
    min-width: 0;
    padding: 0 0 16px;
    border-bottom: 1px solid var(--color-line-light);
}

.alumni-detail__group:last-of-type {
    padding-bottom: 0;
    border-bottom: 0;
}

.alumni-detail__row {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    width: 100%;
}

.alumni-detail__title {
    color: var(--color-text);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
}

.alumni-detail__checks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
    min-width: 0;
}

.alumni-detail__check {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    gap: 8px;
    color: #000;
    font-size: 17px;
    line-height: 1.4;
    white-space: nowrap;
    cursor: pointer;
}

.alumni-detail__check input {
    appearance: none;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-line-input);
    border-radius: 4px;
    background-color: var(--color-surface);
    cursor: pointer;
}

.alumni-detail__check input:checked {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    background-image: url("/board/images/icn_alumni_check.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}

.alumni-detail__select {
    width: 360px;
    max-width: 100%;
}

.alumni-detail__select select {
    appearance: none;
    width: 100%;
    height: 48px;
    padding: 0 44px 0 16px;
    border: 1px solid var(--color-line-input);
    border-radius: 8px;
    background-color: var(--color-surface);
    background-image: url("/common/images/icn_arrow_down.svg");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px 20px;
    font-size: 17px;
    line-height: 1.4;
}

.alumni-detail__reset {
    height: 24px;
    gap: 4px;
    padding: 0 2px;
    font-size: 15px;
    font-weight: 600;
}

.alumni-detail__reset img {
    width: 16px;
    height: 16px;
    margin: 2px;
}

/* 동문찾기: 결과와 카드 */
.alumni-results {
    margin-top: 32px;
}

.alumni-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

@media (min-width: 901px) {
    .alumni-content .board-pagination {
        margin-top: 112px;
    }
}

.alumni-card {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 32px;
    min-width: 0;
    min-height: 268px;
    padding: 24px;
    border: 1px solid var(--color-line-card);
    border-radius: 12px;
    background: var(--color-surface);
}

.alumni-card__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 190px;
    height: 220px;
    border-radius: 10px;
    background: var(--color-line-light);
}

.alumni-card__thumb img,
.alumni-profile__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alumni-card__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    min-width: 0;
    padding-top: 8px;
}

.alumni-card__main,
.alumni-card__heading,
.alumni-card__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.alumni-card__main {
    gap: 32px;
}

.alumni-card__heading {
    gap: 12px;
}

.alumni-card__cohort {
    padding: 2px 12px;
    border-radius: 20px;
    background: var(--color-bg-soft);
    color: var(--color-primary-dark);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.alumni-card__name {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.alumni-card__info {
    gap: 8px;
    width: 100%;
}

.alumni-card__info > div {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: start;
    row-gap: 4px;
    width: 100%;
    min-width: 0;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.4;
}

.alumni-card__info dt {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
    align-items: center;
    font-weight: 600;
}

.alumni-card__info dt::after {
    content: "";
    width: 1px;
    height: 8px;
    margin-left: 16px;
    background: var(--color-line);
}

.alumni-card__info dd {
    display: flex;
    grid-column: 2;
    flex-wrap: wrap;
    align-items: center;
    min-width: 0;
    column-gap: 8px;
    margin-left: 16px;
    overflow-wrap: anywhere;
    word-break: keep-all;
}

.alumni-card__info dd span {
    min-width: 0;
    max-width: 100%;
}

.alumni-card__info dd span:nth-child(even) {
    color: var(--color-text-muted);
}

.alumni-card__more {
    align-self: flex-end;
    height: 24px;
    gap: 4px;
    padding: 0 2px;
    font-size: 15px;
    font-weight: 600;
}

.alumni-card__more::after {
    content: "";
    display: block;
    align-self: center;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    background-color: currentColor;
    -webkit-mask: url("/common/images/icn_arrow_right.svg") center / contain no-repeat;
    mask: url("/common/images/icn_arrow_right.svg") center / contain no-repeat;
}

.alumni-card__more:hover,
.alumni-card__more:focus-visible {
    color: var(--color-primary);
}

/* 동문찾기: 반응형 */
@media (max-width: 1200px) {
    .alumni-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .board-content.alumni-content {
        padding: 32px 0 80px;
    }

    .alumni-filter__bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
    }

    .alumni-filter__bar .board-search {
        width: 100%;
        height: 56px;
        padding: 0 16px;
    }

    .alumni-filter__bar .board-select-button {
        --select-button-icon-size: 20px;
        width: 96px;
        height: 32px;
        font-size: 15px;
        font-weight: 500;
    }

    .alumni-filter__bar .board-select-button img {
        width: 20px;
        height: 20px;
    }

    .alumni-filter__bar .board-search__select::after {
        height: 24px;
        margin: 0 8px 0 10px;
    }

    .alumni-filter__bar .board-search input {
        font-size: 15px;
        font-weight: 500;
    }

    .alumni-filter__bar .board-search__button,
    .alumni-filter__bar .board-search__button img {
        width: 24px;
        height: 24px;
    }

    .alumni-filter__toggle {
        height: 32px;
        font-size: 15px;
        font-weight: 500;
    }

    .alumni-filter__toggle img {
        width: 20px;
        height: 20px;
        margin: 0;
    }

    .alumni-detail {
        padding: 24px;
    }

    .alumni-detail__row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .alumni-detail__title {
        font-size: 18px;
        font-weight: 700;
    }

    .alumni-detail__checks {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .alumni-detail__select {
        width: 100%;
    }

    .alumni-detail__reset {
        height: 32px;
        font-size: 17px;
        font-weight: 400;
    }

    .alumni-results {
        margin-top: 48px;
    }

    .alumni-list {
        gap: 20px;
        margin-top: 20px;
    }

    .alumni-card {
        grid-template-areas:
            "content thumb"
            "more more";
        grid-template-columns: minmax(0, 1fr) 121px;
        grid-template-rows: auto 24px;
        gap: 12px 24px;
        min-height: 265px;
        padding: 24px;
    }

    .alumni-card__thumb {
        grid-area: thumb;
        width: 121px;
        height: 140px;
        border-radius: 8px;
    }

    .alumni-card__content {
        display: contents;
    }

    .alumni-card__main {
        grid-area: content;
        gap: 16px;
    }

    .alumni-card__heading {
        gap: 8px;
        width: 100%;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--color-line);
    }

    .alumni-card__cohort {
        padding: 0 8px;
        font-size: 14px;
    }

    .alumni-card__name {
        font-size: 18px;
    }

    .alumni-card__info {
        gap: 16px;
    }

    .alumni-card__info > div {
        grid-template-columns: 1fr;
        row-gap: 2px;
        font-size: 14px;
    }

    .alumni-card__info dt::after {
        display: none;
    }

    .alumni-card__info dd {
        grid-column: 1;
        width: 100%;
        gap: 4px;
        margin-left: 0;
    }

    .alumni-card__more {
        grid-area: more;
        justify-self: end;
        font-weight: 500;
    }

}

/* 게시판: 상세 */
.board-view__head {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-text);
}

.board-view__title {
    max-width: 100%;
    min-width: 0;
    color: var(--color-text-primary);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: keep-all;
}

.board-view__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 12px;
    color: var(--color-text-muted);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.board-view__meta div {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.board-view__meta div + div::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -12px;
    width: 1px;
    height: 10px;
    background: var(--color-line);
    transform: translateY(-50%);
}

.board-view__meta dt {
    color: var(--color-text-disabled);
}

.board-view__meta dd {
    color: var(--color-text);
    font-weight: 600;
}

.board-view__body {
    max-width: 100%;
    min-width: 0;
    padding: 40px 80px;
    overflow-wrap: anywhere;
    word-break: keep-all;
}

.board-view__image {
    height: auto;
}

.board-view__file {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    min-height: 126px;
    padding: 12px;
    background: var(--color-surface-soft);
}

.board-view__file-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-text-muted);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.board-view__file-label img,
.board-view__file-link img {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
}

.board-view__file-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: max-content;
    max-width: 100%;
    min-width: 0;
}

.board-view__file-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    min-height: 33px;
    gap: 10px;
    padding: 5px 8px;
    border: 1px solid var(--color-line);
    border-radius: 6px;
    background: #fff;
    color: var(--color-text-muted);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.board-view__file-link span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.board-view__file-link:hover,
.board-view__file-link:focus-visible {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.board-view__nav {
    margin-top: 64px;
    border-top: 1px solid var(--color-line);
}

.board-view:not(:has(.board-view__file)) + .board-view__nav {
    margin-top: 0;
}

.board-view__nav-item {
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 70px;
    padding: 0 16px;
    border-bottom: 1px solid var(--color-line);
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.4;
}

.board-view__nav-label {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 76px;
    gap: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.board-view__nav-label img {
    width: 20px;
    height: 20px;
}

.board-view__nav-subject {
    flex: 1 1 auto;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    color: var(--color-text);
    text-overflow: ellipsis;
    overflow-wrap: anywhere;
    transition: color 0.2s ease;
    white-space: nowrap;
    word-break: keep-all;
}

.board-view__nav-item.is-disabled .board-view__nav-subject {
    color: var(--color-text-disabled);
}

.board-view__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 64px;
}

/* 게시판: 작성하기 */
.board-content--write {
    padding: 80px 0 120px;
}

.board-write__panel {
    display: grid;
    grid-template-columns: clamp(180px, 25vw, 320px) minmax(0, 1fr);
    gap: 24px;
    min-height: 632px;
    padding: 40px;
    border: 1px solid var(--color-line);
    border-radius: 12px;
    background: #fff;
}

.board-write__title,
.alumni-section-title {
    color: var(--color-text);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
}

.board-write__fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.board-write__field {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
}

.board-write__label {
    display: inline-flex;
    align-items: flex-start;
    gap: 2px;
    min-height: 48px;
    padding: 12px 0;
    color: var(--color-text);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.board-write__required {
    color: var(--color-required);
}

.board-write__control {
    min-width: 0;
}

.board-write__control--writer {
    max-width: 198px;
}

.board-write__input,
.board-write__textarea,
.alumni-question__select {
    display: block;
    width: 100%;
    border: 1px solid var(--color-line-input);
    border-radius: 8px;
    background: #fff;
    color: var(--color-text);
    font-size: 17px;
    line-height: 1.4;
}

.board-write__input,
.alumni-question__select {
    height: 48px;
    padding: 0 16px;
}

.board-write__textarea {
    height: 192px;
    padding: 16px;
    resize: none;
}

.board-write__input::placeholder,
.board-write__textarea::placeholder {
    color: var(--color-text-disabled);
}

.board-write__input[readonly] {
    background: var(--color-line);
    color: var(--color-text-muted);
}

.board-write__counter,
.board-comments__counter {
    display: flex;
    justify-content: flex-end;
    gap: 2px;
    margin-top: 8px;
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.4;
}

.board-write__counter strong,
.board-comments__counter strong {
    color: var(--color-primary);
    font-weight: 400;
}

.board-write__help {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-top: 10px;
    color: var(--color-text-help);
    font-size: 13px;
    line-height: 1.5;
}

.board-write__help img {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 1px;
}

.board-write__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 40px;
}

.board-write__actions .board-button,
.alumni-question__actions .board-button {
    height: 56px;
    font-size: 19px;
    font-weight: 600;
}

.board-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 160px;
    height: 48px;
    padding: 0 16px;
    border: 1px solid var(--color-text-disabled);
    border-radius: 8px;
    background: transparent;
    color: var(--color-text-muted);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
}

.board-button:not(.board-button--primary):hover,
.board-button:not(.board-button--primary):focus-visible {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.board-button--primary {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #fff;
}

/* 동문찾기 상세: 프로필과 이력 */
.board-content.alumni-view {
    padding-top: 64px;
}

.alumni-view__content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.alumni-view__overview {
    display: grid;
    grid-template-columns: 280px minmax(0, 953px);
    align-items: start;
    justify-content: space-between;
    gap: 47px;
}

.alumni-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 280px;
    min-height: 453px;
    padding: 32px 24px;
    border: 1px solid var(--color-line);
    border-radius: 16px;
    background: var(--color-surface-soft);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.05), 0 4px 4px rgba(0, 0, 0, 0.08);
}

.alumni-profile__photo {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 160px;
    height: 205px;
    border: 1px solid var(--color-line);
    border-radius: 10px;
    background: var(--color-line-light);
}

.alumni-profile__detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 199px;
}

.alumni-profile__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.alumni-profile__cohort {
    padding: 0 8px;
    border-radius: 20px;
    background: var(--color-primary);
    color: var(--color-surface);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.alumni-profile__name {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--color-text);
    font-size: 24px;
    line-height: 1.4;
}

.alumni-profile__name strong {
    font-weight: 700;
}

.alumni-profile__name span {
    color: var(--color-text-disabled);
    font-weight: 500;
}

.alumni-profile__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.alumni-profile__info > div {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
    row-gap: 4px;
    width: 100%;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.4;
}

.alumni-profile__info dt {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
    align-items: center;
    font-weight: 600;
    white-space: nowrap;
}

.alumni-profile__info dt::after {
    content: "";
    flex: 0 0 1px;
    width: 1px;
    height: 8px;
    margin-left: 16px;
    background: var(--color-line);
}

.alumni-profile__info dd {
    display: flex;
    grid-column: 2;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 8px;
    min-width: 0;
    margin-left: 16px;
    overflow-wrap: anywhere;
    word-break: keep-all;
}

.alumni-profile__info dd span:nth-child(even) {
    color: var(--color-text-muted);
}

.alumni-history {
    min-width: 0;
}

.alumni-history > .alumni-section-title {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-text);
}

.alumni-history__date-col,
.alumni-history__job-col {
    width: 160px;
}

.alumni-history__table th,
.alumni-history__table td {
    height: 56px;
    padding: 8px 16px;
    border-right: 0;
    text-align: left;
}

.alumni-history__table tbody td {
    color: var(--color-text-muted);
    font-weight: 400;
}

.alumni-history__date-mo {
    display: none;
}

/* 동문찾기 상세: 멘토 질문 */
.alumni-question {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.alumni-question__head {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-text);
}

.alumni-question__head p {
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.4;
}

.alumni-question__field--email {
    width: 928px;
    max-width: 100%;
}

.alumni-question__email {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas: "id at domain preset";
    align-items: center;
    gap: 8px;
}

.alumni-question__email .board-write__input:first-child {
    grid-area: id;
}

.alumni-question__at {
    grid-area: at;
    color: var(--color-text);
    font-size: 17px;
    line-height: 1.4;
}

.alumni-question__email .board-write__input:nth-of-type(2) {
    grid-area: domain;
}

.alumni-question__select {
    appearance: none;
    grid-area: preset;
    padding-right: 44px;
    background-image: url("/common/images/icn_arrow_down.svg");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px 16px;
}

.alumni-question__textarea {
    height: 220px;
}

.alumni-question__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 40px;
}

@media (max-width: 1200px) {
    .alumni-view__overview {
        grid-template-columns: minmax(0, 1fr);
        gap: 80px;
    }

    .alumni-profile {
        justify-self: center;
    }
}

@media (max-width: 900px) {
    .board-content.alumni-view {
        padding: 40px 0;
    }

    .alumni-view__content,
    .alumni-view__overview {
        gap: 40px;
    }

    .alumni-profile {
        justify-self: stretch;
        width: 100%;
        min-height: 478px;
    }

    .alumni-profile__photo {
        width: 180px;
        height: 230px;
    }

    .alumni-history {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .alumni-section-title {
        font-size: 24px;
        line-height: 1.4;
    }

    .alumni-history > .alumni-section-title {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .alumni-history__table {
        display: block;
        table-layout: auto;
        border-top: 1px solid var(--color-text);
    }

    .alumni-history__table colgroup,
    .alumni-history__table thead {
        display: none;
    }

    .alumni-history__table tbody {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .alumni-history__table tbody tr {
        display: grid;
        grid-template-areas:
            "company company"
            "role role"
            "date job";
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 24px;
        width: 100%;
        min-height: 122px;
        padding: 16px 12px;
        border-bottom: 1px solid var(--color-line-light);
    }

    .alumni-history__table th,
    .alumni-history__table td,
    .alumni-history__table tbody tr:last-child td {
        display: block;
        width: auto;
        min-width: 0;
        max-width: 100%;
        height: auto;
        padding: 0;
        border: 0;
        background: transparent;
        text-align: left;
    }

    .alumni-history__company {
        grid-area: company;
        color: var(--color-text);
        font-size: 16px;
        font-weight: 700;
        line-height: 1.4;
    }

    .alumni-history__role {
        grid-area: role;
        margin-top: 6px;
        color: var(--color-text-muted);
        font-size: 16px;
        line-height: 1.4;
    }

    .alumni-history__date,
    .alumni-history__job {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-top: 20px;
        color: var(--color-text);
        font-size: 14px;
        line-height: 1.4;
    }

    .alumni-history__date {
        grid-area: date;
    }

    .alumni-history__job {
        grid-area: job;
    }

    .alumni-history__date::before,
    .alumni-history__job::before {
        content: attr(data-label);
        margin-right: 10px;
        color: var(--color-text-disabled);
    }

    .alumni-history__date-pc {
        display: none;
    }

    .alumni-history__date-mo {
        display: inline;
    }

    .alumni-question {
        padding: 48px 0;
    }

    .alumni-question__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .alumni-question__head p {
        font-size: 14px;
    }

    .alumni-question__email {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        grid-template-areas:
            "id at domain"
            "preset preset preset";
        row-gap: 10px;
    }

    .alumni-question .alumni-question__textarea {
        height: 272px;
    }

    .alumni-question__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-top: 0;
    }

    .alumni-question__actions .board-button {
        width: 100%;
        min-width: 0;
        height: 48px;
        font-size: 17px;
    }
}

/* 게시판: 댓글 */
.board-comments {
    --comment-indent-base: 20px;
    --comment-indent-step: 28px;
    --comment-indent-max: 5;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: 40px;
}

.board-comments__title {
    color: var(--color-text);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.board-comments__form {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-top: 10px;
    padding: 16px;
    border: 1px solid var(--color-line);
    background: var(--color-surface-soft);
}

.board-comments__input {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    height: 160px;
}

.board-comments__input textarea {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    padding: 16px;
    border: 1px solid var(--color-line-input);
    border-radius: 8px;
    background: #fff;
    color: var(--color-text);
    font-size: 17px;
    line-height: 1.4;
    resize: none;
}

.board-comments__input textarea::placeholder {
    color: var(--color-text-disabled);
}

.board-comments__counter span {
    color: var(--color-text-muted);
}

.board-comments__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 120px;
    width: 120px;
    height: 48px;
    padding: 0 16px;
    border-radius: 8px;
    background: var(--color-primary);
    color: #fff;
    font-size: 17px;
    line-height: 1.4;
}

.board-comments__form.board-comments__form--inline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 10px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.board-comments__form--inline .board-comments__user {
    align-self: center;
}

.board-comments__form--inline .board-comments__input {
    grid-column: 1 / -1;
}

.board-comments__submit--inline {
    grid-column: 2;
    grid-row: 1;
    flex-basis: 60px;
    width: 60px;
    height: 32px;
    padding: 0 10px;
    border: 1px solid var(--color-primary-border);
    border-radius: 4px;
    background: var(--color-bg-soft);
    color: var(--color-primary-dark);
    font-size: 15px;
    font-weight: 600;
}

.board-comments__list {
    display: flex;
    flex-direction: column;
}

.board-comments__item {
    display: flex;
    gap: 10px;
    min-width: 0;
    min-height: 88px;
    padding: 16px 20px 16px calc(var(--comment-indent-base) + (min(var(--depth, 0), var(--comment-indent-max)) * var(--comment-indent-step)));
    border-top: 1px solid var(--color-line);
    color: var(--color-text);
}

.board-comments__item:first-child {
    border-top: 0;
}

.board-comments__item:last-child {
    border-bottom: 1px solid var(--color-line);
}

.board-comments__item > .board-comments__body,
.board-comments__item > .board-comments__form {
    flex: 1 1 auto;
    min-width: 0;
}

.board-comments__item--editing,
.board-comments__item--replying {
    background: var(--color-surface-soft);
}

.board-comments__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2px 10px;
    min-width: 0;
}

.board-comments__user {
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: center;
    min-width: 0;
    line-height: 1.4;
    white-space: nowrap;
}

.board-comments__user strong {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 600;
}

.board-comments__user time {
    color: var(--color-text-disabled);
    font-size: 13px;
}

.board-comments__actions {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    gap: 10px;
}

.board-comments__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 60px;
    width: 60px;
    height: 32px;
    padding: 0 10px;
    border: 1px solid var(--color-text-disabled);
    border-radius: 4px;
    color: var(--color-text-muted);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.board-comments__content {
    grid-column: 1 / -1;
    min-width: 0;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.board-comments__reply-icon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    transform: translateY(6px);
}

.board-comments__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    gap: 4px;
    min-width: 134px;
    height: 48px;
    margin-top: 0;
    padding: 0 16px;
    border-radius: 8px;
    color: var(--color-text-muted);
    font-size: 17px;
    line-height: 1.4;
}

.board-comments__more img {
    width: 20px;
    height: 20px;
}

/* 게시판: 목록 액션 */
.board-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 30px;
}

.board-actions + .board-pagination {
    margin-top: 30px;
}

/* 게시판: 페이지네이션 */
.board-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 80px;
}

.board-pagination a,
.board-pagination button,
.board-pagination strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    color: var(--color-text-muted);
    font-size: 17px;
    line-height: 1.4;
}

.board-pagination [aria-current="page"] {
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
}

.board-pagination__num[hidden] {
    display: none;
}

.board-pagination .board-pagination__control {
    width: 32px;
}

.board-pagination__control img {
    width: 20px;
    height: 20px;
}

.board-pagination__control--prev img {
    transform: rotate(90deg);
}

.board-pagination__control--next img {
    transform: rotate(-90deg);
}

.board-pagination__control:disabled,
.board-pagination__control[aria-disabled="true"] {
    opacity: 0.35;
    cursor: default;
}

/* 게시판: 반응형 */
@media (max-width: 1200px) {
    .board-intro__image {
        right: -240px;
        opacity: 0.85;
    }
}

@media (min-width: 901px) and (max-width: 1200px) {
    .board-program-hero--centered-art .board-program-hero__info {
        max-width: 640px;
    }

    .board-program-hero--centered-art .board-program-hero__visual {
        right: -115px;
    }
}

@media (max-width: 900px) {
    .growth-program-overview .layout {
        width: 100%;
        gap: 40px;
        padding: 40px 0 0;
    }

    .growth-program-overview__title {
        align-self: center;
        width: calc(100% - 32px);
        font-size: 20px;
        font-weight: 700;
        line-height: 1.4;
        text-align: left;
    }

    .growth-program-overview__title mark {
        padding: 0 1px;
    }

    .growth-program-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: minmax(176px, auto) minmax(154px, auto) minmax(300px, auto);
        gap: 0;
        width: 100%;
    }

    .growth-program-card {
        justify-content: flex-start;
        min-height: 0;
        gap: 4px;
        padding: 17px;
        border: 0;
        border-right: 1px solid var(--color-bg-soft);
        border-bottom: 1px solid var(--color-bg-soft);
        border-radius: 0;
        background: rgba(255, 255, 255, 0.4);
    }

    .growth-program-list > li:nth-child(odd) .growth-program-card {
        border-left: 1px solid var(--color-bg-soft);
    }

    .growth-program-list > li:nth-child(-n + 2) .growth-program-card {
        border-top: 1px solid var(--color-bg-soft);
    }

    .growth-program-card__head {
        flex-direction: column;
        gap: 10px;
    }

    .growth-program-card__title {
        font-size: 16px;
    }

    .growth-program-card__body {
        margin-top: 8px;
    }

    .growth-program-card__icon {
        order: -1;
        width: 40px;
        height: 40px;
        border-radius: 16px;
    }

    .growth-program-card__icon img {
        width: 24px;
        height: 24px;
    }

    .board-intro__inner {
        min-height: 460px;
        padding: 40px 0;
    }

    .board-intro__text {
        max-width: none;
    }

    .board-intro h2 {
        font-size: 20px;
    }

    .board-intro p {
        margin-top: 20px;
        font-size: 14px;
    }

    .board-intro p br {
        display: none;
    }

    .board-intro__image {
        top: auto;
        right: -16px;
        bottom: 14px;
        left: auto;
        width: 474px;
    }

    .board-program-hero__inner {
        min-height: 522px;
        padding: 32px 0;
    }

    .board-program-hero--centered-art .board-program-hero__inner {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .board-program-hero__text {
        max-width: 328px;
    }

    .board-program-hero__eyebrow {
        font-size: 28px;
        line-height: 1.4;
    }

    .board-program-hero h2 {
        width: 100%;
        max-width: 291px;
        margin-top: 10px;
        font-size: 20px;
        line-height: 1.4;
    }

    .board-program-hero__visual {
        top: 114px;
        right: auto;
        left: -13px;
        width: 392px;
        height: 262px;
    }

    .board-program-hero__info {
        position: absolute;
        right: 0;
        bottom: 32px;
        left: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        max-width: none;
        margin-top: 0;
    }

    .board-program-hero__info li {
        position: relative;
        min-height: 40px;
        gap: 12px;
        padding: 4px 0;
    }

    .board-program-hero__info li:first-child::after {
        content: "";
        position: absolute;
        top: 11px;
        left: 237px;
        width: 63px;
        height: 1px;
        background: var(--color-line);
    }

    .board-program-hero--centered-art .board-program-hero__info li:first-child::after {
        display: none;
    }

    .board-program-hero--centered-art .board-program-hero__info {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        order: 2;
    }

    .board-program-hero--centered-art .board-program-hero__visual {
        position: relative;
        top: auto;
        right: auto;
        left: 50%;
        order: 1;
        transform: translateX(-50%);
    }

    .board-program-hero__badge {
        width: 69px;
        height: 32px;
        padding: 0 12px;
    }

    .board-program-hero__badge img {
        width: 16px;
        height: 16px;
    }

    .board-program-hero__badge strong,
    .board-program-hero__value {
        font-size: 14px;
    }

    .board-content {
        padding: 80px 0;
    }

    .board-content--view {
        padding: 40px 0;
    }

    .board-content--image {
        padding: 24px 0 80px;
    }

    .board-content--gallery {
        padding: 32px 0 80px;
        background: var(--color-surface-soft);
    }

    .board-filter {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        margin-bottom: 0;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--color-line-strong);
    }

    .board-search {
        width: 100%;
    }

    .board-filter .board-search {
        order: 1;
    }

    .board-select-button {
        width: 120px;
        font-size: 15px;
        font-weight: 500;
    }

    .board-search input {
        font-size: 15px;
        font-weight: 500;
    }

    .board-result {
        font-size: 14px;
        font-weight: 600;
    }

    .board-filter .board-result {
        order: 2;
    }

    .board-content--image .board-filter {
        border-bottom: 0;
    }

    .board-content--gallery .board-filter {
        gap: 20px;
        margin-bottom: 20px;
        padding-bottom: 0;
        border-bottom: 0;
    }

    .board-image-list {
        gap: 12px;
    }

    .growth-program-post__text {
        gap: 16px;
    }

    .growth-program-board .board-pagination {
        margin-top: 80px;
    }

    .board-image-card__link {
        display: flex;
        flex-direction: column;
        min-height: 425px;
        gap: 16px;
        padding: 19px;
    }

    .board-image-card__body {
        gap: 16px;
        padding: 0;
    }

    .board-image-card__number {
        color: #000;
        font-size: 15px;
    }

    .board-image-card__title {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 24px;
        align-self: stretch;
        width: 100%;
        gap: 12px;
        margin-top: 0;
        color: #000;
        font-size: 20px;
        line-height: 1.4;
    }

    .board-image-card__title img {
        width: 24px;
        height: 24px;
        margin-top: 0;
    }

    .board-image-card__summary {
        max-width: none;
        margin-top: 0;
        font-size: 16px;
        line-height: 1.4;
    }

    .board-image-card__meta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 0;
        color: var(--color-text-muted);
        font-size: 16px;
    }

    .board-image-card__meta strong {
        font-weight: 700;
    }

    .board-image-card__thumb {
        align-self: center;
        width: 100%;
    }

    .board-gallery-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .board-gallery-item a {
        gap: 16px;
        padding: 15px;
    }

    .board-gallery-item__thumb {
        aspect-ratio: 74 / 55;
    }

    .board-gallery-item__title {
        font-size: 18px;
    }

    .board-table-wrap {
        overflow-x: visible;
    }

    .board-table {
        display: block;
        min-width: 0;
        border-top: 0;
        table-layout: auto;
    }

    .board-table thead {
        position: absolute;
        overflow: hidden;
        width: 1px;
        height: 1px;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .board-table tbody {
        display: block;
    }

    .board-table tr {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: flex-start;
        column-gap: 8px;
        row-gap: 10px;
        min-height: 130px;
        padding: 12px;
        border-bottom: 1px solid var(--color-line-light);
    }

    .board-table td {
        height: auto;
        padding: 0;
        border: 0;
        font-size: 14px;
    }

    .board-table td:not(:nth-child(2)) {
        display: flex;
        align-items: center;
        text-align: left;
    }

    .board-table td:nth-child(1) {
        order: 1;
        color: var(--color-text-muted);
        font-size: 16px;
    }

    .board-table td:nth-child(6) {
        order: 2;
    }

    .board-table td:nth-child(2) {
        order: 3;
        flex: 0 0 100%;
    }

    .board-table td:nth-child(3) {
        order: 4;
        max-width: 100%;
        min-width: 0;
        overflow: visible;
        color: var(--color-text-disabled);
        text-overflow: clip;
        white-space: normal;
    }

    .board-table td:nth-child(4) {
        order: 5;
        color: var(--color-text-disabled);
    }

    .board-table td:nth-child(5) {
        order: 6;
        color: var(--color-text-disabled);
    }

    .board-table__pin {
        margin: 0;
    }

    .board-table__link {
        align-items: flex-start;
        height: auto;
        padding: 0;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.4;
    }

    .board-table__text {
        line-height: 1.4;
        overflow-wrap: anywhere;
        white-space: normal;
        word-break: keep-all;
    }

    .board-table__text.is-truncated > .board-table__subject {
        display: -webkit-box;
        line-height: inherit;
        white-space: normal;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .board-table__comment {
        top: auto;
        margin-left: 4px;
        line-height: inherit;
    }

    .board-table__text.is-truncated > .board-table__comment {
        top: auto;
        right: 0;
        bottom: 0;
        margin-left: 0;
        transform: none;
    }

    .board-actions {
        justify-content: center;
        margin-top: 32px;
    }

    .board-actions + .board-pagination {
        margin-top: 40px;
    }

    .board-table__views {
        gap: 4px;
        color: var(--color-text-disabled);
    }

    .board-table__file {
        width: 20px;
        height: 20px;
    }

    .board-pagination {
        flex-wrap: wrap;
        gap: 4px;
        margin-top: 48px;
    }

    .board-pagination a,
    .board-pagination button,
    .board-pagination strong {
        width: 32px;
        height: 32px;
    }

    .board-view__head {
        padding-bottom: 24px;
    }

    .board-view__title {
        font-size: 20px;
        line-height: 1.4;
    }

    .board-view__meta {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        max-width: 252px;
        margin-top: 12px;
        gap: 4px 16px;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.4;
    }

    .board-view__meta div {
        display: inline-flex;
        gap: 6px;
        margin-top: 0;
    }

    .board-view__meta div + div::before {
        display: block;
        left: -8px;
    }

    .board-view__meta div:nth-child(3) {
        flex-basis: 100%;
    }

    .board-view__meta div:nth-child(3)::before {
        display: none;
    }

    .board-view__meta dd {
        font-weight: 400;
    }

    .board-view__body {
        padding: 20px 16px;
    }

    .board-view__file {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 8px;
        padding: 12px;
    }

    .board-view__file-list {
        width: 100%;
    }

    .board-view__file-link {
        width: 100%;
        min-height: 54px;
        align-items: center;
        padding: 6px 8px;
    }

    .board-view__file-link span {
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .board-view__nav {
        margin-top: 40px;
    }

    .board-view__nav-item {
        display: grid;
        grid-template-columns: 90px minmax(0, 1fr);
        gap: 0;
        min-height: 60px;
        padding: 0 16px;
        font-size: 14px;
    }

    .board-view__nav-label {
        gap: 10px;
        font-weight: 400;
    }

    .board-view__nav-subject {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        white-space: normal;
    }

    .board-view__buttons {
        margin-top: 40px;
    }

    .board-content--write {
        padding: 0;
    }

    .board-content--write .layout {
        width: 100%;
    }

    .board-write__panel {
        display: block;
        min-height: auto;
        padding: 48px 16px;
        border: 0;
        border-radius: 0;
    }

    .board-write__title {
        margin-bottom: 24px;
        font-size: 28px;
        line-height: 1.4;
    }

    .board-write__fields {
        gap: 24px;
        width: 100%;
    }

    .board-write__field {
        display: block;
        min-height: 96px;
    }

    .board-write__field:nth-child(2) {
        min-height: 124px;
    }

    .board-write__field:nth-child(3) {
        min-height: 320px;
    }

    .board-write__field--file {
        min-height: 219px;
    }

    .board-write__label {
        width: 100%;
        min-height: 48px;
    }

    .board-write__control--writer {
        max-width: none;
    }

    .board-write__textarea {
        height: 244px;
    }

    .board-write__field--file .board-write__control {
        margin-top: 8px;
    }

    .board-write__help {
        font-size: 15px;
        font-weight: 500;
        line-height: 1.4;
    }

    .board-write__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 0;
        padding: 40px 16px;
    }

    .board-write__actions .board-button {
        width: 100%;
        min-width: 0;
        height: 48px;
        font-size: 17px;
        font-weight: 400;
    }

    .board-write__actions .board-button--primary {
        font-weight: 700;
    }

    .board-comments {
        --comment-indent-base: 12px;
        --comment-indent-step: 12px;
        --comment-indent-max: 3;
        margin-top: 40px;
    }

    .board-comments__title {
        font-size: 16px;
        line-height: 1.4;
    }

    .board-comments__form {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 16px;
    }

    .board-comments__input {
        width: 100%;
        height: 160px;
    }

    .board-comments__submit {
        flex: 0 0 auto;
        align-self: stretch;
        width: 100%;
    }

    .board-comments__item {
        gap: 8px;
        min-height: 138px;
        padding: 16px 12px 16px calc(var(--comment-indent-base) + (min(var(--depth, 0), var(--comment-indent-max)) * var(--comment-indent-step)));
    }

    .board-comments__body {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .board-comments__user {
        flex-direction: row;
        align-items: center;
        align-self: flex-start;
        gap: 10px;
        white-space: nowrap;
    }

    .board-comments__user strong {
        font-size: 14px;
        font-weight: 600;
    }

    .board-comments__user time {
        font-size: 13px;
        font-weight: 500;
    }

    .board-comments__content {
        font-size: 14px;
    }

    .board-comments__actions {
        align-self: flex-end;
        margin-top: 14px;
    }

    .board-comments__form.board-comments__form--inline {
        display: flex;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }

    .board-comments__form--inline .board-comments__user {
        align-self: flex-start;
    }

    .board-comments__form--inline .board-comments__input {
        margin-top: 10px;
    }

    .board-comments__submit--inline {
        align-self: flex-end;
        width: 60px;
        height: 32px;
        margin-top: 24px;
    }

    .board-comments__reply-icon {
        transform: none;
    }

    .board-comments__more {
        align-self: flex-end;
        width: auto;
        min-width: 134px;
    }

    .board-button {
        min-width: 160px;
        height: 48px;
        font-size: 15px;
        font-weight: 500;
    }
}