/* theme/05 — Tailwind-first 보조 CSS | v=20260529-r2 */

/* ===========================
   GLOBAL BASE
   =========================== */
html {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    word-break: keep-all;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 36rem;
    max-height: 62rem;
    background: #0a0f1a;
}

/* Swiper 기본 .swiper{position:relative}가 Tailwind .absolute를 덮어
   히어로 배경이 in-flow로 빠지는 문제 → 강제 absolute 고정 */
.hero-section .hero-swiper {
    position: absolute;
    inset: 0;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-slide {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* 다크 오버레이: 전체 톤다운 + 좌하단 짙게 */
.hero-overlay {
    background: linear-gradient(
        160deg,
        rgba(0,0,0,.42) 0%,
        rgba(0,0,0,.30) 38%,
        rgba(0,0,0,.86) 100%
    );
    pointer-events: none;
}

/* 하단 가독성 보강 밴드 (학사일정/퀵메뉴 영역) */
.hero-overlay-bottom {
    height: 42%;
    background: linear-gradient(0deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.32) 55%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

/* 학사일정 가로 슬라이드 영역 */
.hero-schedule {
    color: #fff;
}

.schedule-icon {
    position: relative;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: .65rem;
    background: rgba(255,255,255,.16);
    backdrop-filter: blur(8px);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.schedule-badge {
    position: absolute;
    top: -.35rem;
    right: -.35rem;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 .25rem;
    border-radius: 999rem;
    background: #19c16f;
    color: #fff;
    font-size: .62rem;
    font-weight: 900;
    font-style: normal;
    display: grid;
    place-items: center;
    line-height: 1;
}

/* Swiper가 슬라이드에 display:block을 강제하므로 flex로 보정 */
.hero-schedule-swiper .swiper-slide {
    display: flex !important;
    align-items: center;
    gap: .55rem;
    width: auto;
    white-space: nowrap;
    font-size: .85rem;
    line-height: 1.2;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(255,255,255,.22);
}

.hero-schedule-swiper .swiper-slide:last-child {
    border-right: none;
}

@media (min-width: 1024px) {
    .hero-schedule-swiper .swiper-slide {
        font-size: .95rem;
    }
}

.schedule-item b {
    font-weight: 900;
    letter-spacing: -.02em;
}

.schedule-item b small {
    font-size: .82em;
    font-weight: 800;
    opacity: .85;
    margin-left: .1rem;
}

.schedule-item span {
    opacity: .82;
    font-weight: 600;
}

/* 학사일정 이전/다음 버튼 */
.schedule-arrow {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    backdrop-filter: blur(8px);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    border: none;
    transition: background .18s ease;
}

.schedule-arrow:hover {
    background: rgba(255,255,255,.32);
}

.schedule-arrow.swiper-button-disabled {
    opacity: .4;
    cursor: default;
}

/* 퀵메뉴 버튼 */
.quick-menu {
    background: rgba(10, 15, 30, 0.72);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: .5rem;
}

.quick-btn {
    height: 2.75rem;
    padding: 0 1.25rem;
    border-radius: .75rem;
    font-size: .9rem;
    font-weight: 900;
    color: rgba(255,255,255,.85);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
    white-space: nowrap;
}

.quick-btn:hover,
.quick-btn.active {
    background: rgba(255,255,255,.14);
    color: #fff;
}

@media (min-width: 1024px) {
    .quick-btn {
        height: 3rem;
        padding: 0 1.5rem;
        font-size: .95rem;
    }
}

/* 히어로 도트 인디케이터 */
.hero-dots {
    gap: .4rem;
}

.hero-dot {
    width: 1.5rem;
    height: .25rem;
    border-radius: 999rem;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    transition: background .2s, width .2s;
}

.hero-dot.active {
    background: #19c16f;
    width: 2.5rem;
}

/* ===========================
   COMMON BUTTONS
   =========================== */
.more-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    height: 2.25rem;
    border-radius: 999rem;
    background: #1f2d3d;
    color: #fff;
    padding: 0 1.1rem;
    font-size: .82rem;
    font-weight: 900;
    white-space: nowrap;
    text-decoration: none;
    transition: background .18s ease;
}

.more-btn:hover {
    background: #263a50;
}

.more-btn-dark {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    height: 2.25rem;
    border-radius: 999rem;
    background: #fff;
    color: #1f2d3d;
    padding: 0 1.1rem;
    font-size: .82rem;
    font-weight: 900;
    white-space: nowrap;
    text-decoration: none;
    transition: background .18s ease;
}

.more-btn-dark:hover {
    background: #f0f4f8;
}

/* ===========================
   NOTICE SECTION
   =========================== */
/* 세로 탭 (PC 사이드바) */
.notice-tab-v {
    display: block;
    width: 100%;
    text-align: left;
    padding: .6rem .85rem;
    border-radius: .55rem;
    font-size: .88rem;
    font-weight: 900;
    color: #667085;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color .15s, background .15s;
}

.notice-tab-v:hover {
    color: #111827;
    background: rgba(0,0,0,.04);
}

.notice-tab-v.active {
    color: #19c16f;
    background: rgba(25,193,111,.08);
}

/* 가로 탭 (모바일) */
.notice-tab-h {
    flex-shrink: 0;
    height: 2.1rem;
    border-radius: 999rem;
    padding: 0 1rem;
    font-size: .8rem;
    font-weight: 900;
    color: #667085;
    border: .0625rem solid #e2e8f0;
    background: #fff;
    cursor: pointer;
    white-space: nowrap;
    transition: color .15s, border-color .15s, background .15s;
}

.notice-tab-h:hover {
    color: #19c16f;
    border-color: rgba(25,193,111,.4);
}

.notice-tab-h.active {
    color: #19c16f;
    border-color: #19c16f;
    background: rgba(25,193,111,.07);
}

/* 공지 카드 */
.notice-card {
    position: relative;
    min-height: 9.5rem;
    border-radius: .85rem;
    background: #f5f7f9;
    padding: 1.4rem 1.5rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    cursor: pointer;
    transition: box-shadow .18s ease, transform .18s ease;
}

.notice-card:hover {
    box-shadow: 0 .5rem 1.5rem rgba(15,23,42,.1);
    transform: translateY(-.1rem);
}

.notice-card h3 {
    font-size: .95rem;
    line-height: 1.5;
    font-weight: 900;
    letter-spacing: -.025em;
    flex: 1;
}

.notice-card .date {
    color: #8a94a6;
    font-weight: 700;
    font-size: .78rem;
    margin-top: auto;
    padding-top: .4rem;
}

.notice-card .tag {
    position: absolute;
    right: 1.5rem;
    bottom: 1.3rem;
    width: fit-content;
    border-radius: 999rem;
    background: #fff;
    color: #19c16f;
    padding: .2rem .65rem;
    font-size: .72rem;
    font-weight: 800;
}

.notice-card.hidden-card {
    display: none;
}

/* ===========================
   TODAY SECTION
   =========================== */
.today-section {
    background: #f8fafc;
}

.today-title {
    font-size: 1.9rem;
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: 1;
    color: #111827;
}

@media (min-width: 1024px) {
    .today-title {
        font-size: 2.6rem;
    }
}

.today-accent {
    color: #19c16f;
}

.today-sub {
    margin-top: .7rem;
    font-size: .85rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: -.01em;
}

@media (min-width: 1024px) {
    .today-sub { font-size: .98rem; }
}

/* TODAY 피처 슬라이드 (이미지 좌 + 텍스트 우) */
.today-swiper { width: 100%; }

.today-swiper .swiper-slide {
    display: block !important;
    height: auto;
}

.today-slide {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    border-radius: 1.1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 .6rem 2rem rgba(15,23,42,.08);
}

@media (min-width: 1024px) {
    .today-slide {
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    }
}

.today-slide-img {
    width: 100%;
    height: 14rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (min-width: 1024px) {
    .today-slide-img {
        height: 23rem;
    }
}

.today-slide-body {
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 1024px) {
    .today-slide-body {
        padding: 2.5rem 2.75rem;
    }
}

.today-tag {
    display: inline-block;
    width: fit-content;
    border-radius: 999rem;
    background: rgba(25,193,111,.1);
    color: #19c16f;
    padding: .25rem .85rem;
    font-size: .74rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.today-slide-body h3 {
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: -.035em;
    color: #111827;
}

@media (min-width: 1024px) {
    .today-slide-body h3 {
        font-size: 1.7rem;
    }
}

.today-slide-body p {
    margin-top: 1rem;
    font-size: .88rem;
    line-height: 1.7;
    font-weight: 500;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .today-slide-body p { font-size: .95rem; }
}

.today-slide-body time {
    margin-top: 1.25rem;
    font-size: .8rem;
    font-weight: 700;
    color: #94a3b8;
}

/* TODAY 숫자 페이지네이션 */
.today-pagination {
    display: flex;
    gap: 1rem;
    margin-top: 1.75rem;
}

.today-pagination .swiper-pagination-bullet {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    font-size: .95rem;
    font-weight: 900;
    letter-spacing: .02em;
    color: #cbd5e1;
    transition: color .18s ease;
}

.today-pagination .swiper-pagination-bullet:hover {
    color: #94a3b8;
}

.today-pagination .swiper-pagination-bullet-active {
    color: #19c16f;
}

/* ===========================
   SNS ON AIR
   =========================== */
.sns-section {
    background: #fff;
}

.sns-tab-wrap {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.sns-tab-wrap::-webkit-scrollbar { display: none; }

.sns-tab {
    flex-shrink: 0;
    height: 2.1rem;
    border-radius: 999rem;
    padding: 0 1.1rem;
    font-size: .8rem;
    font-weight: 900;
    color: #667085;
    border: .0625rem solid #e2e8f0;
    background: #fff;
    cursor: pointer;
    white-space: nowrap;
    transition: color .15s, border-color .15s, background .15s;
}

.sns-tab:hover {
    color: #19c16f;
}

.sns-tab.active {
    color: #fff;
    border-color: #19c16f;
    background: #19c16f;
}

/* SNS 카드 (이미지 + 하단 흰색 캡션) */
.sns-card {
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    height: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 .5rem 1.5rem rgba(15,23,42,.08);
}

.sns-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #eef2f6;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sns-foot {
    flex: 1;
    padding: 1rem 1.15rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.sns-foot p {
    font-size: .85rem;
    font-weight: 700;
    line-height: 1.5;
    color: #1f2937;
    letter-spacing: -.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sns-channel {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .74rem;
    font-weight: 800;
    color: #94a3b8;
}

.sns-1 .sns-thumb { background-image: url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1000&q=80"); }
.sns-2 .sns-thumb { background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1000&q=80"); }
.sns-3 .sns-thumb { background-image: url("https://images.unsplash.com/photo-1531482615713-2afd69097998?auto=format&fit=crop&w=1000&q=80"); }
.sns-4 .sns-thumb { background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1000&q=80"); }
.sns-5 .sns-thumb { background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1000&q=80"); }
.sns-6 .sns-thumb { background-image: url("https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=1000&q=80"); }

/* Swiper가 강제하는 display:block 보정 */
.sku-sns .swiper-slide {
    display: flex !important;
    flex-direction: column;
    height: auto;
}

/* SNS Swiper 네비게이션 */
.sns-prev,
.sns-next {
    display: none;
}

@media (min-width: 1024px) {
    .sns-prev,
    .sns-next {
        display: flex;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 .25rem 1rem rgba(0,0,0,.12);
        color: #1f2d3d;
        top: auto;
        bottom: calc(100% + 1.25rem);
    }

    .sns-prev { right: 3.5rem; left: auto; }
    .sns-next { right: 0; left: auto; }

    .sns-prev::after,
    .sns-next::after {
        font-size: .75rem;
        font-weight: 900;
        color: #1f2d3d;
    }
}

/* ===========================
   CREOS / TALENT SECTION
   =========================== */
.creos-section {
    background: #fff;
}

.creos-label {
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .22em;
    color: #19c16f;
    margin-bottom: 1rem;
}

.creos-heading {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -.05em;
    line-height: 1.3;
    color: #111827;
}

@media (min-width: 1024px) {
    .creos-heading {
        font-size: 2.2rem;
    }
}

/* CREOS 카드 */
.creos-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.1rem;
    min-height: 22rem;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    transition: transform .22s ease;
}

.creos-card:hover {
    transform: translateY(-.2rem);
}

.creos-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.76));
}

.creos-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    z-index: 1;
}

.creos-num {
    font-size: .72rem;
    font-weight: 900;
    opacity: .6;
    letter-spacing: .08em;
}

.creos-inner b {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -.03em;
}

.creos-inner span {
    font-size: .82rem;
    line-height: 1.5;
    font-weight: 600;
    color: rgba(255,255,255,.75);
}

.creos-1 { background-image: url("https://images.unsplash.com/photo-1498243691581-b145c3f54a5a?auto=format&fit=crop&w=1200&q=80"); }
.creos-2 { background-image: url("https://images.unsplash.com/photo-1541339907198-e08756dedf3f?auto=format&fit=crop&w=1200&q=80"); }
.creos-3 { background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1200&q=80"); }
.creos-4 { background-image: url("https://images.unsplash.com/photo-1577896851231-70ef18881754?auto=format&fit=crop&w=1200&q=80"); }

@media (max-width: 767.98px) {
    .creos-card {
        min-height: 9rem;
        border-radius: .85rem;
    }
}

/* ===========================
   CAMPUS TOUR
   =========================== */
.tour-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    min-height: 14rem;
    background-position: center;
    background-size: cover;
    color: #fff;
    cursor: pointer;
    transition: transform .2s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tour-card:hover {
    transform: translateY(-.15rem);
}

.tour-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,.65));
}

.tour-body {
    position: relative;
    z-index: 1;
    padding: 1.35rem 1.4rem 1.5rem;
}

.tour-body b {
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: -.03em;
    margin-bottom: .3rem;
}

.tour-body span {
    font-size: .8rem;
    font-weight: 600;
    opacity: .8;
}

.tour-icon {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 1;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(4px);
    display: grid;
    place-items: center;
}

.tour-1 { background-image: url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&w=1200&q=80"); }
.tour-2 { background-image: url("https://images.unsplash.com/photo-1498243691581-b145c3f54a5a?auto=format&fit=crop&w=1200&q=80"); }
.tour-3 { background-image: url("https://images.unsplash.com/photo-1541339907198-e08756dedf3f?auto=format&fit=crop&w=1200&q=80"); }

/* ===========================
   CAREER SECTION
   =========================== */
.career-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 1024px) {
    .career-section {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        min-height: 32rem;
    }
}

.career-left {
    background: #111827;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 3.5rem 2rem;
}

@media (min-width: 1024px) {
    .career-left {
        padding: 5rem 3.5rem 4rem;
    }
}

.career-left-inner {
    position: relative;
    z-index: 1;
    max-width: 38rem;
}

.career-left h2 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
    .career-left h2 {
        font-size: 2.5rem;
    }
}

.career-left p {
    font-size: .92rem;
    line-height: 1.75;
    color: rgba(255,255,255,.7);
    font-weight: 600;
    max-width: 32rem;
    margin-bottom: 2rem;
}

.career-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    height: 2.75rem;
    border-radius: 999rem;
    background: #fff;
    color: #111827;
    padding: 0 1.5rem;
    font-size: .9rem;
    font-weight: 900;
    text-decoration: none;
    transition: background .18s;
}

.career-cta:hover {
    background: #e8f5f0;
}

/* 마스코트 (lucide 아이콘) */
.career-mascot {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 8rem;
    height: 8rem;
    color: rgba(25,193,111,.45);
    pointer-events: none;
}

@media (min-width: 1024px) {
    .career-mascot {
        right: 3.5rem;
        bottom: 3rem;
        width: 12rem;
        height: 12rem;
    }
}

.career-mascot svg {
    width: 100%;
    height: 100%;
    stroke-width: 1;
}

/* 커리어 타일 */
.career-right {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.career-tile {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.25rem 2.5rem;
    text-decoration: none;
    color: #fff;
    transition: filter .18s;
}

@media (min-width: 1024px) {
    .career-tile { padding: 2.75rem 3.25rem; }
}

.career-tile:hover {
    filter: brightness(1.12);
}

.career-tile b {
    display: block;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: -.04em;
    margin-bottom: .55rem;
}

@media (min-width: 1024px) {
    .career-tile b { font-size: 1.6rem; }
}

.career-tile > span {
    font-size: .85rem;
    font-weight: 600;
    opacity: .82;
    line-height: 1.5;
}

.career-tile-cta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1.4rem;
    width: fit-content;
    height: 2.4rem;
    padding: 0 1.2rem;
    border-radius: 999rem;
    background: rgba(255,255,255,.16);
    font-size: .8rem;
    font-weight: 800;
    opacity: 1;
    transition: background .18s ease;
}

.career-tile:hover .career-tile-cta {
    background: rgba(255,255,255,.28);
}

.career-tile-1 { background: #2b3648; }
.career-tile-2 { background: linear-gradient(120deg, #6c18e0 0%, #4322b0 100%); }

/* ===========================
   MOBILE DRAWER
   =========================== */
#mobileDrawer05 .drawer-panel {
    transform: translateX(100%);
    transition: transform .26s cubic-bezier(.4,0,.2,1);
}

#mobileDrawer05.open .drawer-panel {
    transform: translateX(0);
}

/* ===========================
   OVERFLOW GUARD
   =========================== */
@media (max-width: 359.98px) {
    .quick-menu {
        gap: 0;
        padding: .35rem;
    }
    .quick-btn {
        padding: 0 .6rem;
        font-size: .76rem;
        height: 2.4rem;
    }
    .hero-schedule-swiper .swiper-slide {
        font-size: .78rem;
        padding-right: 1rem;
    }
    .schedule-icon {
        width: 2.1rem;
        height: 2.1rem;
    }
}

/* grid minmax(0,1fr) 보장 */
.notice-wrap {
    grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 1280px) {
    .notice-wrap {
        grid-template-columns: 11rem minmax(0, 1fr);
    }
}

/* ===========================
   FOOTER FAMILY SELECT (r2)
   =========================== */
.footer-select-wrap { position: relative; }
.footer-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.16);
    color: #cbd5e1;
    font-size: .85rem;
    font-weight: 600;
    padding: .7rem 2.4rem .7rem 1rem;
    border-radius: .6rem;
    cursor: pointer;
    transition: border-color .18s, background .18s;
}
.footer-select:hover { border-color: #19c16f; }
.footer-select:focus { outline: none; border-color: #19c16f; background: rgba(255,255,255,.1); }
.footer-select option { color: #111827; background: #fff; }
.footer-select-ico {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    pointer-events: none;
    color: #94a3b8;
    font-size: .8rem;
}

/* ===========================
   ENTRY POPUP (r2)
   =========================== */
.popup-layer {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.popup-layer.hidden { display: none; }
.popup-dim {
    position: absolute;
    inset: 0;
    background: rgba(8,12,24,.6);
    border: 0;
    cursor: pointer;
}
.popup-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 24rem;
    background: #fff;
    border-radius: 1.1rem;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
    animation: popupIn .3s ease;
}
@keyframes popupIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
.popup-visual {
    position: relative;
    padding: 2.4rem 1.8rem 2.2rem;
    color: #fff;
    background: linear-gradient(150deg, #0f9d58 0%, #19c16f 60%, #36d98a 100%);
}
.popup-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .02em;
    background: rgba(255,255,255,.2);
    color: #fff;
    padding: .28rem .8rem;
    border-radius: 9999px;
}
.popup-title {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.32;
    letter-spacing: -.03em;
}
.popup-desc {
    margin-top: .85rem;
    font-size: .9rem;
    line-height: 1.6;
    opacity: .95;
}
.popup-cta {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: #fff;
    color: #0f9d58;
    font-size: .9rem;
    font-weight: 800;
    padding: .75rem 1.4rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.popup-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,.22); }
.popup-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding: .85rem 1.2rem;
    background: #f7f9fb;
    border-top: 1px solid #eef1f5;
}
.popup-today {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .84rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
}
.popup-today input { width: 1rem; height: 1rem; accent-color: #19c16f; cursor: pointer; }
.popup-close {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .84rem;
    font-weight: 700;
    color: #475569;
    padding: .4rem .6rem;
    border-radius: .5rem;
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: color .18s, background .18s;
}
.popup-close:hover { color: #111827; background: #eef1f5; }
@media (max-width: 360px) {
    .popup-visual { padding: 1.9rem 1.4rem 1.7rem; }
    .popup-title { font-size: 1.3rem; }
}

/* SNS 채널 폰트아이콘 색상 */
.sns-channel svg, .sns-channel i { color: #19c16f; }
