/* ===== 아이비스터디카페 랜딩페이지 스타일 ===== */
/* 키컬러: 흰색(#FFFFFF), 연한브라운(#C4A882), 딥그린(#2D5A3D) */

:root {
    --color-white: #FFFFFF;
    --color-brown: #C4A882;
    --color-brown-light: #E8DCC8;
    --color-brown-dark: #A68B5B;
    --color-green: #2D5A3D;
    --color-green-light: #3D7A53;
    --color-green-dark: #1E3D29;
    --color-text: #333333;
    --color-text-light: #777777;
    --color-bg: #FAFAF8;
    --color-border: #E5E5E0;
    --font-main: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --section-padding: 100px 0;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
}

.section:nth-child(even) {
    background: var(--color-bg);
}

.section__title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--color-green);
}

.section__subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 48px;
}

.required {
    color: #E53E3E;
}

/* ===== 플로팅 배너 ===== */
.floating-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--color-green);
    padding: 14px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.floating-banner.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-banner__form {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.floating-banner__field--sm { flex: 0.7; }
.floating-banner__field--md { flex: 1; }
.floating-banner__field--lg { flex: 1.2; margin-right: 36px; }

.floating-banner__field input {
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--font-main);
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    outline: none;
    transition: background 0.2s;
}

.floating-banner__field input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.floating-banner__field input:focus {
    background: rgba(255, 255, 255, 0.25);
}

.floating-banner__privacy {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.floating-banner__privacy input {
    accent-color: var(--color-brown);
    width: 16px;
    height: 16px;
}

.floating-banner__btn {
    flex-shrink: 0;
    padding: 10px 28px;
    border: none;
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-green);
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    animation: btnPulse 2s ease-in-out infinite;
}

.floating-banner__btn:hover {
    animation: none;
    transform: scale(1.05);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.5);
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
}

.floating-banner__result {
    text-align: center;
    color: var(--color-white);
    font-size: 0.85rem;
    margin-top: 6px;
    display: none;
}

.floating-banner__result.show {
    display: block;
}

/* ===== 1. 히어로 ===== */
.hero {
    position: relative;
    height: 50vh;
    min-height: 360px;
    max-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
    background: url('../images/hero-bg.jpg') center 85%/cover no-repeat;
    background-attachment: fixed;
}

.hero__title-logo {
    height: 120px;
    width: auto;
    display: inline-block;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 15, 0.85);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 24px;
}

/* 순차 페이드인 애니메이션 */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__sub,
.hero__title,
.hero__desc {
    opacity: 0;
    animation: fadeSlideUp 0.8s ease-out forwards;
}

.hero__sub {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: var(--color-brown-light);
    font-weight: 500;
    animation-delay: 0.2s;
}

.hero__title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
    animation-delay: 0.5s;
}

.hero__desc {
    font-size: 1.1rem;
    margin-bottom: 28px;
    animation-delay: 0.8s;
}

.hero__cta-wrap {
    display: inline-block;
    position: relative;
    border-radius: 9999px;
    padding: 3px;
    overflow: hidden;
    animation: fadeSlideUp 0.8s ease-out forwards;
    animation-delay: 1.1s;
    opacity: 0;
}

/* 회전하는 글로우 테두리 */
.hero__cta-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: conic-gradient(
        transparent 0%,
        transparent 55%,
        rgba(255, 255, 255, 0.85) 70%,
        rgba(232, 220, 200, 1) 75%,
        rgba(255, 255, 255, 0.85) 80%,
        transparent 95%,
        transparent 100%
    );
    animation: glowSpin 2.5s linear infinite;
}

@keyframes glowSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero__cta {
    display: block;
    position: relative;
    background: var(--color-brown);
    color: var(--color-white);
    padding: 16px 48px;
    border-radius: 9999px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
    /* 자체 애니메이션 제거 — wrap에서 처리 */
    opacity: 1;
    animation: none;
}

.hero__cta:hover {
    background: var(--color-brown-dark);
    transform: translateY(-2px);
}

/* ===== 2. 공지사항 ===== */
.notice__board {
    max-width: 900px;
    margin: 0 auto;
}

.notice__table {
    border-top: 2px solid var(--color-green);
}

.notice__table th,
.notice__table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
    font-size: 0.95rem;
}

.notice__table th {
    background: var(--color-bg);
    font-weight: 600;
    color: var(--color-green);
    font-size: 0.9rem;
}

.notice__th--num {
    width: 70px;
    text-align: center;
}

.notice__th--date {
    width: 120px;
    text-align: center;
}

.notice__table td:first-child {
    text-align: center;
    color: var(--color-text-light);
}

.notice__table td:last-child {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.notice__table tr:hover td {
    background: rgba(196, 168, 130, 0.08);
}

.notice__table .pinned td {
    font-weight: 600;
}

.notice__table .pinned td::before {
    content: '';
}

.notice__new-tag {
    display: inline-block;
    background: var(--color-green-dark);
    color: var(--color-white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    vertical-align: middle;
    margin-left: 6px;
    letter-spacing: 0.5px;
}

.notice__title-cell {
    cursor: pointer;
    transition: color 0.2s;
}

.notice__title-cell:hover {
    color: var(--color-green);
}

.notice__title-cell.is-open {
    color: var(--color-green);
    font-weight: 600;
}

.notice__detail td {
    background: var(--color-bg) !important;
    padding: 0 !important;
    text-align: left !important;
}

.notice__content {
    padding: 20px 24px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text);
    border-left: 3px solid var(--color-green);
    margin: 8px 16px 16px;
}

.notice__content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 12px 0;
}

.notice__pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 24px;
}

.notice__pagination button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.notice__pagination button.active {
    background: var(--color-green);
    color: var(--color-white);
    border-color: var(--color-green);
}

.notice__pagination button:hover:not(.active) {
    border-color: var(--color-green);
    color: var(--color-green);
}

/* ===== 3. 브랜드 컨셉 ===== */
.concept__showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.concept__block {
    display: flex;
    flex-direction: column;
}

/* 슬라이더 */
.concept__slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* 오버레이 */
.concept__overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 30px 30px 120px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.concept__badge {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.concept__name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.3;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.concept__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
}

.concept__track.is-dragging {
    transition: none;
    cursor: grabbing;
}

.concept__slide {
    flex: 0 0 90%;
    aspect-ratio: 4/3;
    margin-right: 12px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-brown-light);
}

.concept__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-user-drag: none;
    user-select: none;
    transition: transform 1.2s ease;
}

.concept__slide:hover img {
    transform: scale(1.2);
}

/* ===== 4. 전국 매장 현황 ===== */
.stores__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.stores__filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--color-border);
    border-radius: 9999px;
    background: var(--color-white);
    font-size: 0.9rem;
    font-family: var(--font-main);
    color: var(--color-text-light);
    cursor: pointer;
    transition: all 0.2s;
}

.stores__filter-btn:hover {
    border-color: var(--color-green);
    color: var(--color-green);
}

.stores__filter-btn.active {
    background: var(--color-green);
    color: var(--color-white);
    border-color: var(--color-green);
}

.stores__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.stores__map {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-brown-light);
    border: 1px solid var(--color-border);
}

/* 신규 오픈 카드 */
.stores__new-card {
    margin-top: 32px;
}

.stores__new-card:empty {
    display: none;
}

.stores__new-card .new-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, var(--color-green-dark), var(--color-green));
    border-radius: 16px;
    padding: 28px 32px;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.stores__new-card .new-card::before {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.new-card__left {
    flex-shrink: 0;
}

.new-card__label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--color-brown);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.new-card__title {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.3;
}

.new-card__divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.new-card__stores {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    flex: 1;
}

.new-card__store {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.new-card__name {
    font-size: 0.95rem;
    font-weight: 600;
}

.new-card__name-short {
    display: none;
}

.new-card__address {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* 오픈 예정 카드 */
.stores__new-card .new-card + .new-card {
    margin-top: 12px;
}

.new-card--upcoming {
    background: linear-gradient(135deg, var(--color-brown-dark), var(--color-brown)) !important;
}

.new-card--upcoming::before {
    background: rgba(255, 255, 255, 0.08) !important;
}

.new-card__label--upcoming {
    background: var(--color-green) !important;
}

.new-card__status {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 9999px;
    letter-spacing: 0.3px;
    width: fit-content;
}

.new-card__status--upcoming {
    background: rgba(255, 255, 255, 0.25);
    color: var(--color-white);
}

.new-card__status--contract {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    border: 1px dashed rgba(255, 255, 255, 0.4);
}

.new-card__status--opened {
    background: rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    display: none;
}

.stores__count {
    font-size: 1rem;
    color: var(--color-text-light);
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-green);
    margin-bottom: 16px;
}

.stores__count strong {
    color: var(--color-green);
    font-size: 1.5rem;
}

.stores__list {
    max-height: 440px;
    overflow-y: auto;
}

.stores__list::-webkit-scrollbar {
    width: 4px;
}

.stores__list::-webkit-scrollbar-thumb {
    background: var(--color-brown);
    border-radius: 4px;
}

.stores__list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}

.stores__list-item:last-child {
    border-bottom: none;
}

.stores__badge {
    flex-shrink: 0;
    background: var(--color-green);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.stores__badge--new {
    background: var(--color-brown);
}
.stores__badge--upcoming {
    background: #e67e22;
}

.stores__name {
    font-weight: 600;
    font-size: 0.95rem;
}

.stores__address {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 2px;
}

/* ===== 5. 창업 비용표 ===== */
.cost__mobile {
    display: none;
}

.cost__table-wrap {
    margin: 0 -12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    background: var(--color-white);
}

.cost__table {
    width: 100%;
    border-collapse: collapse;
}

.cost__table thead th {
    background: var(--color-green);
    color: var(--color-white);
    padding: 14px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    white-space: nowrap;
}

.cost__table tbody td {
    padding: 14px 16px;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--color-border);
    white-space: nowrap;
}

.cost__table tbody tr:last-child td {
    border-bottom: none;
}

.cost__table tbody td:nth-child(1),
.cost__table tbody td:nth-child(4) {
    font-weight: 600;
    color: var(--color-green);
}

/* 좌우 구분선 */
.cost__table thead th:nth-child(4),
.cost__table tbody td:nth-child(4) {
    border-left: 2px solid var(--color-border);
}

.cost__waived {
    display: inline-block;
    background: #E53E3E;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 9999px;
    vertical-align: middle;
}

.cost__table tbody td s {
    color: var(--color-text-light);
}

.cost__note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 20px;
}

/* ===== 6. 창업 문의 ===== */
.inquiry__form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.inquiry__field {
    margin-bottom: 20px;
}

.inquiry__field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--color-green);
}

.inquiry__field input,
.inquiry__field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: border-color 0.2s;
    background: var(--color-bg);
}

.inquiry__field input:focus,
.inquiry__field textarea:focus {
    outline: none;
    border-color: var(--color-green);
    background: var(--color-white);
}

.inquiry__privacy {
    margin: 24px 0;
}

.inquiry__privacy label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-light);
    cursor: pointer;
}

.inquiry__privacy input[type="checkbox"] {
    accent-color: var(--color-green);
    width: 18px;
    height: 18px;
}

.inquiry__submit {
    width: 100%;
    padding: 16px;
    background: var(--color-green);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    font-family: var(--font-main);
}

.inquiry__submit:hover {
    background: var(--color-green-dark);
    transform: translateY(-2px);
}

.inquiry__submit:active {
    transform: translateY(0);
}

.inquiry__result {
    max-width: 600px;
    margin: 20px auto 0;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    display: none;
}

.inquiry__result.success {
    display: block;
    background: #F0FFF4;
    color: var(--color-green);
    border: 1px solid var(--color-green);
}

.inquiry__result.error {
    display: block;
    background: #FFF5F5;
    color: #E53E3E;
    border: 1px solid #E53E3E;
}

/* ===== 7. 푸터 ===== */
.footer {
    background: var(--color-green-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 0 32px;
    text-align: center;
}

.footer__logo {
    margin-bottom: 20px;
}

.footer__logo-img {
    height: 40px !important;
    width: auto !important;
    max-width: 300px;
    display: inline-block;
}

.footer__info p {
    font-size: 0.85rem;
    line-height: 1.8;
}

.footer__copyright {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
}

/* ===== 반응형 ===== */
@media (max-width: 1024px) {
    .concept__showcase {
        gap: 48px;
    }

    .concept__name {
        font-size: 1.4rem;
    }

    .stores__wrap {
        grid-template-columns: 1fr;
    }

    .stores__map {
        height: 400px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px 0;
    }

    .section__title {
        font-size: 1.6rem;
    }

    .hero__title {
        font-size: 2.4rem;
    }

    .hero {
        min-height: 280px;
        max-height: 360px;
        background-position: center bottom;
        background-attachment: scroll;
    }

    .hero__sub {
        font-size: 0.9rem;
    }

    .hero__title-logo {
        height: auto;
        width: 320px;
    }

    .hero__desc {
        font-size: 1rem;
    }

    .hero__cta {
        padding: 14px 36px;
        font-size: 1rem;
    }

    .inquiry__form {
        padding: 24px;
    }

    .cost__desktop {
        display: none;
    }

    .cost__mobile {
        display: block;
    }

    .cost__mobile .cost__table thead th,
    .cost__mobile .cost__table tbody td {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .cost__mobile .cost__table tbody td:first-child {
        font-weight: 600;
        color: var(--color-green);
    }

    .floating-banner__form {
        flex-wrap: wrap;
        gap: 8px;
    }

    .floating-banner__field {
        flex: 1 1 calc(50% - 8px);
        min-width: 120px;
    }

    .floating-banner__field--lg {
        flex: 1 1 100%;
        margin-right: 0;
    }

    .floating-banner__privacy {
        flex: 1 1 100%;
        justify-content: center;
    }

    .floating-banner__btn {
        width: 100%;
    }

    /* 브랜드 컨셉 오버레이: 세로 2줄, 컴팩트 */
    .concept__overlay {
        flex-direction: column;
        gap: 4px;
        padding: 14px 16px 60px;
        background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 100%);
    }

    .concept__badge {
        font-size: 0.6rem;
        padding: 3px 10px;
        border-radius: 12px;
    }

    .concept__name {
        font-size: 1.1rem;
    }

    /* 지역 필터: 가로 스크롤 */
    .stores__filters {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        scrollbar-width: none;
    }
    .stores__filters::-webkit-scrollbar { display: none; }
    .stores__filter-btn { flex-shrink: 0; }

    /* 신규 오픈 / 오픈 예정 카드: 모바일 세로 */
    .new-card {
        flex-direction: column;
        padding: 20px !important;
        gap: 16px !important;
    }

    .new-card__divider {
        width: 100%;
        height: 1px;
    }

    .new-card__stores {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
    }

    .new-card__store {
        padding: 14px 10px;
        background: rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        gap: 6px;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 56px;
    }

    .new-card__name-full {
        display: none;
    }

    .new-card__name-short {
        display: inline;
    }

    .new-card__name {
        font-size: 1.05rem;
        font-weight: 700;
    }

    .new-card__status {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    .new-card__status--opened {
        display: inline-block;
    }

    .new-card__address {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 260px;
        max-height: 320px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .notice__th--num {
        display: none;
    }

    .notice__table td:first-child {
        display: none;
    }

    .stores__map {
        height: 300px;
    }

    .cost__amount {
        flex-direction: column;
        gap: 4px;
    }
}
