@charset "utf-8";

/* ==================================================================
 * hub.css - 좋은 변화 제작소(hub) 폴더 전용 스타일
 * hub 폴더의 모든 페이지 스타일을 이 한 파일에서 함께 관리한다.
 *
 *   people.php   함께 만드는 사람들       : Section Head / invite-* / roles-* / experts-*
 *   partners.php 함께 만드는 기관 · 단체  : (추후 추가)
 *   experts.php  전문가 협업 네트워크     : invite-* / roles-* / experts-* / steps-* / fields-*
 *   view.php     전문가 등록 정보 상세    : eview-*
 * ================================================================== */

/* ==================================================================
 * Section Head
 * 페이지별로 css 를 독립 관리하므로 main.css / intro.css / sub_about.css /
 * news.css / content.css 에도 같은 규칙이 각각 들어 있다. 수정 시 함께 맞춘다.
 * ================================================================== */
.sec-head { margin-bottom: 48px; text-align: center; }

.sec-head__en {
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--c-accent);
    margin-bottom: 16px;
}
.sec-head__ko {
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 800;
    line-height: 1.3;
    color: var(--c-ink);
    letter-spacing: -.035em;
}
.sec-head__desc { margin-top: 14px; color: var(--c-sub); }

.sec-head--light .sec-head__ko { color: #fff; }
.sec-head--light .sec-head__en { color: var(--c-accent); }


/* ==================================================================
 * Section Head Responsive
 * ================================================================== */
@media (max-width: 560px) {
    .sec-head { margin-bottom: 34px; }
}


/* ==================================================================
 * ==================================================================
 * experts.php - 전문가 협업 네트워크
 * ==================================================================
 * ================================================================== */

/* ==================================================================
 * Section 1. 초청의 글
 * ================================================================== */
.invite { padding: 90px 0 0; }

/* 상단 서브 배너(.sub-bg)가 이미 짙은 청록이라 같은 색을 쓰면 화면이 무거워진다.
   구성은 그대로 두고 밝은 톤으로 뒤집어 대비를 만든다. */
.invite__box {
    text-align: center;
    color: var(--c-ink);
    border-bottom: 1px solid #eee;
}
.invite__lead {
    font-size: clamp(22px, 3vw, 26px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -.02em;
    margin-bottom: 20px;
    margin-top: 10px;
}
/* 밝은 배경에서는 하늘색이 흐려 보여 딥 틸로 강조한다 */
.invite__lead em {
    color: var(--c-primary);
    background: linear-gradient(transparent 62%, rgba(31, 201, 255, .32) 62%);
    padding: 0 3px;
}

.invite__quote {
    position: relative;
    /* 위아래 선을 글 폭에 맞추려면 폭이 내용에 맞아야 하는데,
       inline-block 으로 두면 뒤따르는 버튼이 옆줄에 붙는다.
       table 은 폭은 내용에 맞추면서 블록으로 동작해 버튼이 아래로 내려간다. */
    display: table;
    margin-inline: auto;
    padding: 26px 0;
    font-size: clamp(15.5px, 1.7vw, 17.5px);
    line-height: 1.4;
    color: var(--c-body);
}
/* 위아래 짧은 선으로 인용 표시 */
.invite__quote::before{
    content: '';
    position: absolute; left: 50%;
    width: 40px; height: 2px;
    border-radius: 2px;
    background: var(--c-accent);
    transform: translateX(-50%);
}
.invite__quote::before { top: 0; }
.invite__quote::after  { bottom: 0; }

/* ==================================================================
 * Section 2. 활동 역할
 * ================================================================== */
.roles { padding: 50px 0 20px; }

.roles__list > li { margin-bottom: 16px; }

.roles__item {
    position: relative;
    height: 100%;
    padding: 34px 26px 30px;
    text-align: center;
    border-radius: var(--radius);
    background: #fbfbfb;
    box-shadow: inset 0 0 0 1px #eceff3;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.roles__item:hover {
    transform: translateY(-5px);
    box-shadow: inset 0 0 0 1px var(--c-accent), var(--shadow-md);
}
/* 클릭 가능한 필터 버튼 — 선택 시 강조 */
.roles__item[role="button"] { cursor: pointer; }
.roles__item[role="button"]:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; }
.roles__item.is-active {
    background: var(--c-primary);
    box-shadow: inset 0 0 0 2px var(--c-primary), var(--shadow-md);
    transform: translateY(-2px);
}
.roles__item.is-active .roles__name { color: #fff; }
.roles__item.is-active .roles__desc { color: rgba(255, 255, 255, .82); }
.roles__item.is-active .roles__icon { background: #fff; color: var(--c-primary); }

.roles__icon {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    margin: 0 auto 16px;
    border-radius: 50%;
    color: #fff;
    background: #54afd1;
    box-shadow: 0 6px 14px rgb(138 150 154 / 30%);
}
/* 채워진(FILL 1) 형태로 써야 원형 배지 안에서 또렷하게 보인다 */
.roles__icon .material-symbols-outlined {
    font-size: 20px;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.roles__name {
    font-size: 19px; font-weight: 800;
    letter-spacing: -.03em;
    color: var(--c-ink);
    margin-bottom: 10px;
}
.roles__desc { font-size: 14.5px; line-height: 1.6; color: var(--c-sub); }


/* ==================================================================
 * Section 3. 등록된 협업 전문가
 * 사진 + 대표 주제 + 소속 · 이름 칩 구성 (참고 : 시니어퓨처 전문가네트워크)
 * ================================================================== */
.experts { padding: 80px 0 20px; }

.experts__list > li { margin-bottom: 24px; }

.experts__item {
    height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--c-line);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.experts__item:hover {
    transform: translateY(-5px);
    box-shadow: inset 0 0 0 1px var(--c-accent), var(--shadow-md);
}

/* ---------- 사진 ---------- */
.experts__photo {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--c-bg-soft);
}
.experts__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    /* 인물 사진이라 얼굴이 잘리지 않도록 위쪽을 기준으로 담는다 */
    object-position: center 22%;
    transition: transform .6s var(--ease);
}
.experts__item:hover .experts__photo img { transform: scale(1.05); }

/* 사진이 없을 때 : 이름 첫 글자 배지
   카드마다 같은 색이면 단조로워 네 가지 톤을 돌려 쓴다. */
.experts__avatar {
    display: grid; place-items: center;
    width: 100%; height: 100%;
    font-size: 46px; font-weight: 800;
    letter-spacing: .02em;
    color: #fff;
    background: linear-gradient(145deg, #12657F 0%, #0B3F53 100%);
}
.experts__list > li:nth-child(4n+2) .experts__avatar {
    background: linear-gradient(145deg, #2F93AE 0%, #14607D 100%);
}
.experts__list > li:nth-child(4n+3) .experts__avatar {
    background: linear-gradient(145deg, #4F8293 0%, #2A5F72 100%);
}
.experts__list > li:nth-child(4n) .experts__avatar {
    background: linear-gradient(145deg, #6FBFD6 0%, #2F93AE 100%);
}

/* ---------- 내용 ---------- */
.experts__body { padding: 20px 20px 22px; }

/* 주제 : 길이가 달라도 카드 높이가 흔들리지 않게 2줄로 제한 */
.experts__topic {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16.5px; font-weight: 700;
    line-height: 1.45;
    letter-spacing: -.03em;
    color: var(--c-ink);
    margin-bottom: 14px;
}

/* ---------- 소속 · 이름 칩 ---------- */
.experts__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.experts__tag {
    padding: 5px 11px;
    border-radius: 6px;
    font-size: 13px; font-weight: 600;
    white-space: nowrap;
}
.experts__tag--name  { color: var(--c-primary); background: var(--c-accent-soft); }

.experts__role {
    margin-top: 12px;
    font-size: 13px;
    color: var(--c-sub);
}

/* ==================================================================
 * 협업 전문가 Responsive
 * ================================================================== */
@media (max-width: 1024px) {
    .experts { padding: 64px 0 16px; }
}
@media (max-width: 640px) {
    .experts__list { max-width: 420px; margin-inline: auto; }
    .experts__body { padding: 18px 18px 20px; }
}

/* ==================================================================
 * Section 4. 등록 절차
 * ================================================================== */
.steps { padding: 80px 0 0; }

.steps__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.steps__item {
    position: relative;
    padding: 34px 30px 32px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--c-line);
}
/* 단계 사이 화살표 */
.steps__item + .steps__item::before {
    content: '';
    position: absolute; left: -17px; top: 50%;
    width: 9px; height: 9px;
    margin-top: -5px;
    border-right: 2px solid var(--c-line);
    border-bottom: 2px solid var(--c-line);
    transform: rotate(-45deg);
}
.steps__no {
    display: grid; place-items: center;
    width: 40px; height: 40px;
    margin-bottom: 16px;
    border-radius: 50%;
    font-size: 13px; font-weight: 800; letter-spacing: .04em;
    color: #fff;
    background: var(--c-primary);
}
.steps__title {
    font-size: 19px; font-weight: 800;
    letter-spacing: -.03em;
    color: var(--c-ink);
    margin-bottom: 8px;
}
.steps__desc { font-size: 15px; line-height: 1.65; color: var(--c-sub); }

.steps__note {
    margin-top: 22px;
    padding: 16px 22px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--c-sub);
    background: var(--c-bg-soft);
}

/* ==================================================================
 * Section 5. 전문가 네트워크 등록 버튼
 * ================================================================== */
.fields__btn {
    display: inline-flex; align-items: center; gap: 9px;
    min-height: 54px;
    padding: 0 32px;
    border-radius: 999px;
    font-size: 16px; font-weight: 700;
    color: #fff;
    background: var(--c-primary);
    transition: background .25s var(--ease), transform .25s var(--ease);
}
.fields__btn svg { width: 18px; height: 18px; }
.fields__btn:hover { background: var(--c-primary-dark); transform: translateY(-2px); }

/* ==================================================================
 * experts.php Responsive
 * ================================================================== */
@media (max-width: 1024px) {
    .invite { padding-top: 70px; }
    .roles { padding: 70px 0 16px; }
    .steps { padding-top: 64px; }
}

@media (max-width: 767.98px) {
    /* 단계는 세로로 쌓고 화살표를 위쪽으로 돌린다 */
    .steps__list { grid-template-columns: 1fr; gap: 26px; }
    .steps__item + .steps__item::before {
        left: 50%; top: -18px;
        margin: 0 0 0 -5px;
        transform: rotate(45deg);
    }
}

@media (max-width: 640px) {
    .invite { padding-top: 56px; }
    .roles__item { padding: 26px 18px 24px; }
    .sec-head { margin-bottom: 34px; }
}


/* ==================================================================
 * 전문가 상세 (hub/view.php)
 * 항목 구성은 <전문가 등록 정보 항목> 문서를 따른다.
 * ================================================================== */
.eview { padding: 90px 0 110px; }

/* 폭은 따로 제한하지 않고 다른 페이지와 같이 .container-xxl(1400px) 를 그대로 쓴다 */

/* ---------- 프로필 사진 + 기본 정보 ---------- */
.eview__head {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 44px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--c-line);
}
.eview__photo {
    align-self: start;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--c-bg-soft);
    box-shadow: var(--shadow-md);
}
.eview__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
}
.eview__avatar {
    display: grid; place-items: center;
    width: 100%; height: 100%;
    font-size: 72px; font-weight: 800;
    color: #fff;
    background: linear-gradient(145deg, #12657F 0%, #0B3F53 100%);
}

.eview__info { min-width: 0; }

/* 활동 역할 (복수) */
.eview__roles { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.eview__roles li {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px; font-weight: 700;
    color: var(--c-primary);
    background: var(--c-accent-soft);
}

.eview__name {
    font-size: clamp(26px, 3.2vw, 34px);
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--c-ink);
}
.eview__name span {
    margin-left: 8px;
    font-size: .6em; font-weight: 700;
    color: var(--c-sub);
}
.eview__org {
    margin-top: 6px;
    font-size: 16px; font-weight: 600;
    color: var(--c-accent);
}

.eview__topic {
    position: relative;
    margin: 20px 0 24px;
    padding-left: 16px;
    font-size: 17px; font-weight: 600;
    line-height: 1.6;
    color: var(--c-body);
}
.eview__topic::before {
    content: '';
    position: absolute; left: 0; top: .25em; bottom: .25em;
    width: 3px;
    border-radius: 3px;
    background: var(--c-accent);
}

/* 연락처 · 메일 · 거주지 */
.eview__meta { display: grid; gap: 2px; }
.eview__meta > div {
    display: flex; align-items: baseline; gap: 14px;
    padding: 9px 0;
    border-bottom: 1px dashed var(--c-line);
}
.eview__meta dt {
    flex: none; width: 72px;
    font-size: 14.5px; font-weight: 700;
    color: var(--c-primary);
}
.eview__meta dd { margin: 0; font-size: 15.5px; color: var(--c-body); }
.eview__meta dd a { transition: color .2s var(--ease); }
.eview__meta dd a:hover { color: var(--c-primary); text-decoration: underline; }

/* 이력서 내려받기 */
.eview__file {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 22px;
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 14.5px; font-weight: 700;
    color: var(--c-primary);
    box-shadow: inset 0 0 0 1.5px var(--c-line);
    transition: color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.eview__file svg { width: 16px; height: 16px; }
.eview__file:hover {
    color: #fff;
    background: var(--c-primary);
    box-shadow: inset 0 0 0 1.5px var(--c-primary);
}

/* ---------- 섹션 공통 ---------- */
.eview__section + .eview__section { margin-top: 40px; }

/* 대표 경력 · 대표 저서 : xl(1200px) 이상에서 좌우로 나란히 놓는다 */
.eview__cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}
/* 한쪽만 등록된 경우 반쪽만 차지하지 않도록 한 줄로 되돌린다 */
.eview__cols--one { grid-template-columns: minmax(0, 1fr); }
/* 좌우로 나뉘면 위아래 간격은 필요 없다 */
.eview__cols .eview__section + .eview__section { margin-top: 0; }
.eview__cols + .eview__section { margin-top: 40px; }

.eview__section-title {
    position: relative;
    margin-bottom: 18px;
    padding-left: 16px;
    font-size: 20px; font-weight: 800;
    letter-spacing: -.03em;
    color: var(--c-ink);
}
.eview__section-title::before {
    content: '';
    position: absolute; left: 0; top: .22em; bottom: .22em;
    width: 4px;
    border-radius: 4px;
    background: var(--c-accent);
}

/* ---------- 대표 경력 ---------- */
.eview__careers { display: grid; gap: 10px; }
.eview__careers li {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    background: var(--c-bg-soft);
}
.eview__state {
    flex: none;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12.5px; font-weight: 700;
    color: var(--c-sub);
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--c-line);
}
.eview__state.is-now { color: #fff; background: var(--c-primary); box-shadow: none; }
.eview__career-org { font-size: 16px; font-weight: 700; color: var(--c-ink); }
.eview__career-pos { font-size: 15px; color: var(--c-sub); }

/* ---------- 대표 저서 ---------- */
.eview__books { display: grid; gap: 10px; }
.eview__books li {
    display: flex; align-items: baseline; flex-wrap: wrap;
    gap: 10px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    background: var(--c-bg-soft);
}
.eview__book-title { font-size: 16px; font-weight: 700; color: var(--c-ink); }
.eview__book-sub { font-size: 14.5px; color: var(--c-sub); }

/* ---------- 배우고 싶은 것 / 나누고 싶은 것 ---------- */
.eview__wish {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.eview__wish li {
    padding: 22px 24px;
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--c-line);
}
.eview__wish-label {
    margin-bottom: 8px;
    font-size: 14px; font-weight: 700;
    color: var(--c-primary);
}
.eview__wish-text { font-size: 15.5px; line-height: 1.7; color: var(--c-sub); }

/* ---------- 이전 · 다음 ---------- */
.eview__nav {
    margin-top: 50px;
    border-top: 1px solid var(--c-line);
}
.eview__nav-item {
    display: flex; align-items: center;
    gap: 20px;
    padding: 18px 4px;
    border-bottom: 1px solid var(--c-line);
}
.eview__nav-label {
    flex: none; width: 52px;
    font-size: 14px; font-weight: 700;
    color: var(--c-primary);
}
.eview__nav-item a {
    min-width: 0;
    font-size: 15.5px;
    color: var(--c-body);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    transition: color .25s var(--ease);
}
.eview__nav-item a:hover { color: var(--c-primary); text-decoration: underline; }
.eview__nav-none { font-size: 15.5px; color: var(--c-line); }

/* ---------- 목록으로 ---------- */
.eview__foot { margin-top: 40px; text-align: center; }

.eview__list-btn {
    display: inline-flex; align-items: center; gap: 9px;
    min-height: 50px;
    padding: 0 30px;
    border-radius: 999px;
    font-size: 15px; font-weight: 700;
    color: #fff;
    background: var(--c-primary);
    transition: background .25s var(--ease), transform .25s var(--ease);
}
.eview__list-btn svg { width: 17px; height: 17px; }
.eview__list-btn:hover { background: var(--c-primary-dark); transform: translateY(-2px); }

/* ---------- 없을 때 ---------- */
.eview__empty { padding: 80px 0; text-align: center; }
.eview__empty-title {
    font-size: 22px; font-weight: 700;
    color: var(--c-ink);
    margin-bottom: 10px;
}
.eview__empty-desc { color: var(--c-sub); margin-bottom: 28px; }

/* ==================================================================
 * 전문가 상세 Responsive
 * ================================================================== */
/* xl 아래에서는 대표 경력 · 대표 저서를 위아래로 쌓는다 */
@media (max-width: 1199.98px) {
    /* 위아래 간격은 grid gap(40px)이 그대로 맡는다 */
    .eview__cols { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 1024px) {
    .eview { padding: 70px 0 90px; }
    .eview__head { grid-template-columns: 220px 1fr; gap: 32px; }
}
@media (max-width: 767.98px) {
    .eview__head { grid-template-columns: 1fr; gap: 26px; }
    .eview__photo { width: 200px; }
    .eview__wish { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .eview { padding: 56px 0 76px; }
    .eview__head { padding-bottom: 30px; margin-bottom: 30px; }
    .eview__careers li, .eview__books li { padding: 14px 16px; }
    .eview__wish li { padding: 18px 18px; }
    .eview__nav-item { gap: 14px; padding: 15px 2px; }
}

/* 목록 카드 : 사진 전체가 상세보기 링크 */
.experts__photo { display: block; position: relative; }
.experts__more {
    position: absolute; left: 50%; bottom: 12px;
    z-index: 2;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px; font-weight: 700;
    white-space: nowrap;
    color: var(--c-primary);
    background: rgba(255, 255, 255, .92);
    transform: translate(-50%, 8px);
    opacity: 0;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.experts__item:hover .experts__more { opacity: 1; transform: translate(-50%, 0); }
.experts .exp-card:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; }

/* =========================================================
 *  전문가 상세 레이어 팝업 (/experts 홈과 동일 구조 · 사이트 톤 적용)
 * ========================================================= */
.exp-modal { position: fixed; inset: 0; z-index: 3000; display: none; }
.exp-modal.open { display: block; }
.exp-modal-dim { position: absolute; inset: 0; background: rgba(15, 30, 38, .55); backdrop-filter: blur(2px); }
.exp-modal.open .exp-modal-box { animation: expPop .22s ease; }
@keyframes expPop { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.exp-modal-box {
    position: relative; max-width: 520px; width: calc(100% - 32px); margin: 56px auto;
    background: #fff; border-radius: 20px; overflow: hidden; max-height: calc(100vh - 112px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .35); display: flex; flex-direction: column;
}
.exp-modal-close {
    position: absolute; top: 12px; right: 14px; z-index: 2; width: 34px; height: 34px; border: 0;
    background: rgba(255, 255, 255, .25); color: #fff; border-radius: 50%; font-size: 22px; line-height: 1;
    cursor: pointer; transition: background .2s;
}
.exp-modal-close:hover { background: rgba(255, 255, 255, .45); }
.exp-modal-body { overflow: auto; }

/* 히어로 */
.exp-detail-hero {
    position: relative; text-align: center; padding: 34px 28px 26px;
    background: linear-gradient(135deg, var(--c-primary) 0%, #13697f 55%, #1f80a8 100%); color: #fff;
}
.exp-detail-photo {
    width: 104px; height: 104px; object-fit: cover; border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, .9); box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
    margin: 0 auto 14px; display: block;
}
.exp-detail-noimg {
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, .18); color: #fff; font-size: 40px; font-weight: 800;
}
.exp-detail-name { font-size: 23px; font-weight: 800; margin: 0 0 4px; color: #fff; }
.exp-detail-sub { color: rgba(255, 255, 255, .85); margin: 0 0 12px; font-size: 14px; }
.exp-detail-roles .exp-badge {
    display: inline-block; background: rgba(255, 255, 255, .2);
    color: #fff; border-radius: 999px; padding: 4px 12px; font-size: 12px; font-weight: 600; margin: 0 4px 4px 0;
}
/* 활동 역할별 배지 색상 (역할 구분용 — /experts 팝업과 동일) */
.exp-detail-roles .exp-badge--speaker  { background: #e0edff; color: #1d4ed8; }
.exp-detail-roles .exp-badge--research { background: #dcfce7; color: #15803d; }
.exp-detail-roles .exp-badge--coach    { background: #ffedd5; color: #c2410c; }
.exp-detail-roles .exp-badge--culture  { background: #fce7f3; color: #be185d; }
.exp-detail-roles .exp-badge--etc      { background: #f3e8ff; color: #7e22ce; }

/* 정보 */
.exp-detail-info { padding: 22px 26px 28px; }
.exp-info-row { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid #f1f1f4; }
.exp-info-row:last-child { border-bottom: 0; }
.exp-info-ico {
    flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
    background: rgba(14, 76, 99, .08); color: var(--c-primary);
    display: flex; align-items: center; justify-content: center;
}
.exp-info-ico .material-symbols-outlined { font-size: 20px; }
.exp-info-txt { display: flex; flex-direction: column; }
.exp-info-txt .lbl { font-size: 12px; color: #9ca3af; font-weight: 600; margin-bottom: 2px; }
.exp-info-txt .v { font-size: 15px; color: #1f2937; word-break: break-word; }
.exp-detail-info .exp-hashtag {
    display: inline-block; background: rgba(31, 201, 255, .14); color: var(--c-primary);
    border-radius: 999px; padding: 2px 10px; font-size: 12.5px; font-weight: 600; margin: 0 4px 4px 0;
}
