/*
(주)파이브센스_FIVESENSES.Corp.
파이브프로_FIVEPro_웹솔루션.
본 라이브러리(소스코드 및 디자인 포함)는 (주)파이브센스의 자산이며, 저작권법 및 부정경쟁방지법에 의해 보호됩니다.
무단 사용, 외부 유출, 복제, 배포, 변형을 금지합니다.
위반 시 민·형사상 법적 책임 및 손해배상 청구 대상이 됩니다.
작성일: 2025-03-18 | 저작권자: (주)파이브센스(520-86-01244) | All Rights Reserved.
*/

.admission3 .adm3_inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── 섹션 헤더 ── */
.admission3 .adm3_head { margin-bottom: 48px; }

.admission3 .adm3_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.admission3 .adm3_eyebrow_no {
    font-size: 13px; font-weight: 600; color: #1f7a52;
    letter-spacing: 0.04em; font-family: 'Pretendard Mono','Pretendard',monospace; line-height: 1;
}
.admission3 .adm3_eyebrow_bar {
    display: inline-block; width: 26px; height: 1.5px;
    background: #1f7a52; border-radius: 2px; flex-shrink: 0;
}
.admission3 .adm3_kicker {
    font-size: 13px; font-weight: 600; color: #1f7a52;
    letter-spacing: 0.02em; line-height: 1;
}
.admission3 .adm3_title {
    font-size: 38px; font-weight: 700; color: #0a0b0d;
    margin: 0 0 18px; letter-spacing: -0.035em; line-height: 1.25;
    display: block; word-break: keep-all;
}
.admission3 .adm3_desc {
    font-size: 17px; color: #5b616e; line-height: 1.7;
    word-break: keep-all; display: block;
}

/* ── 카드 그리드 ── */
.admission3 .adm3_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.admission3 .adm3_card {
    background: #fff;
    border: 1px solid #dee1e6;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 200ms ease, box-shadow 200ms ease;
}
.admission3 .adm3_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15,23,42,0.08);
}

/* nth-child 톤 */
.admission3 .adm3_grid .adm3_card:nth-child(1) { --adm3-ink: #1f7a52; --adm3-soft: #eaf5ee; }
.admission3 .adm3_grid .adm3_card:nth-child(2) { --adm3-ink: #2f6ad1; --adm3-soft: #ecf2fc; }
.admission3 .adm3_grid .adm3_card:nth-child(3) { --adm3-ink: #6c4fd1; --adm3-soft: #f1edfb; }
.admission3 .adm3_grid .adm3_card:nth-child(4) { --adm3-ink: #d6457f; --adm3-soft: #fdecf3; }
.admission3 .adm3_grid .adm3_card:nth-child(5) { --adm3-ink: #d97706; --adm3-soft: #fef3c7; }

.admission3 .adm3_card_top {
    padding: 28px 26px 22px;
}
.admission3 .adm3_icon_tile {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--adm3-soft);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; flex-shrink: 0;
    overflow: hidden;
}
.admission3 .adm3_icon_tile img {
    width: 24px; height: 24px; object-fit: contain;
}
.admission3 .adm3_card_title {
    font-size: 18px; font-weight: 700; color: #0a0b0d;
    margin: 0; letter-spacing: -0.02em; word-break: keep-all;
    display: block; line-height: 1.35;
}

.admission3 .adm3_card_bottom {
    border-top: 1px solid #dee1e6;
    padding: 18px 26px 26px;
    background: #fff;
    flex: 1;
}
.admission3 .adm3_item_list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 11px;
}
.admission3 .adm3_item {
    display: flex; align-items: flex-start; gap: 9px;
}
.admission3 .adm3_item_icon {
    flex-shrink: 0; margin-top: 2px;
    color: var(--adm3-ink);
}
.admission3 .adm3_item_text {
    font-size: 14px; color: #5b616e; line-height: 1.5;
    word-break: keep-all; display: block;
}

/* ── 안내 노트 ── */
.admission3 .adm3_note {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #dee1e6;
    border-radius: 12px;
}
.admission3 .adm3_note_icon { flex-shrink: 0; display: flex; }
.admission3 .adm3_note_text {
    font-size: 13.5px; color: #a8acb3; line-height: 1.5;
    word-break: keep-all; display: block;
}

/* ── 반응형 ── */
@media (max-width: 991px) {
    .admission3 .adm3_inner { padding: 0 20px; }
    .admission3 .adm3_head { margin-bottom: 32px; }
    .admission3 .adm3_title { font-size: 28px; margin-bottom: 10px; }
    .admission3 .adm3_desc { font-size: 14px; }

    .admission3 .adm3_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .admission3 .adm3_card_top { padding: 22px 18px 16px; }
    .admission3 .adm3_card_bottom { padding: 14px 18px 20px; }
    .admission3 .adm3_card_title { font-size: 15px; }
}

@media (max-width: 480px) {
    .admission3 .adm3_grid { grid-template-columns: 1fr; }
}
