:root {
    --bg: #f6f7f9;
    --panel: #ffffff;
    --border: #e5e7eb;
    --text-main: #111827;
    --text-sub: #6b7280;
    --accent: #111827;
    --chip: #f3f4f6;
    --shadow: 0 8px 24px rgba(0,0,0,0.06);
    --kyobo: #0b8e65;
    --yes24: #0a6bcc;
    --space-1: 8px;
    --space-2: 12px;
    --space-3: 16px;
    --squircle-radius: 28%;
    --search-inner-offset: 6px; /* align to search input, subtle */
    --topbar-h: 52px;
    --bottom-nav-h: 62px;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', sans-serif;
    background: var(--bg);
    color: var(--text-main);
    padding: 0;
}
body.sheet-open { overflow: hidden; }

.app-main {
    padding: 12px 0 calc(var(--bottom-nav-h) + env(safe-area-inset-bottom) + 18px);
}
body.has-topbar .app-main {
    padding-top: calc(var(--topbar-h) + 12px);
}
.page-detail .app-main {
    padding-top: 0;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--topbar-h);
    z-index: 50;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #eef2f7;
    display: flex;
    align-items: center;
}
.topbar-inner { width: 100%; }
.topbar-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.topbar-title {
    font-weight: 800;
    font-size: 14px;
    color: var(--text-main);
    text-decoration: none;
    flex: 0 0 auto;
}
.topbar-desc {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-sub);
    overflow: hidden;
    text-overflow: ellipsis;
}

.bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid #e9edf3;
    z-index: 60;
    display: flex;
    justify-content: space-around;
    padding-bottom: env(safe-area-inset-bottom);
    transform: translate3d(0,0,0);
    will-change: transform;
}

@supports (-webkit-touch-callout: none) {
    .bottom-nav {
        background: rgba(255,255,255,0.98);
        backdrop-filter: none;
    }
    .global-search-inner {
        backdrop-filter: none;
    }
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.global-search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 205;
}
.global-search-overlay.show { display: block; }

.global-search-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(120%);
    transition: transform 0.18s ease;
    z-index: 210;
    padding: 0 12px calc(var(--bottom-nav-h) + env(safe-area-inset-bottom) + 12px);
    pointer-events: none;
}
.global-search-sheet.show {
    transform: translateY(0);
    pointer-events: auto;
}
.global-search-inner {
    max-width: 880px;
    margin: 0 auto;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.20);
    padding: 10px;
}

.global-search-inner .search-bar {
    border-radius: 14px;
}
.global-search-inner .search-bar input {
    font-size: 16px;
}
.nav-item {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #6b7280;
    text-decoration: none;
    font-weight: 800;
}
.nav-item .nav-icon { display: inline-flex; }
.nav-item .nav-label { font-size: 11px; line-height: 1; }
.nav-item.is-active { color: #111827; }

.home-blank { min-height: 24px; }
.search-page { padding-top: 6px; }
.page-search .summary-row { margin: 10px 0 12px; padding: 0; }
.hidden-query { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* Home curations */
.curation-inner { max-width: 880px; margin: 0 auto; padding: 0; }
.curation-section {
    margin: 12px 0;
    background: #ffffff;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
    border-left: none;
    border-right: none;
    border-radius: 0;
    padding: 14px 0 10px;
}
.curation-head { display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin: 0 0 10px; padding: 0 12px; }
.curation-more {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    text-decoration: none;
    white-space: nowrap;
}
.curation-more:hover { color: #111827; }
.curation-title { font-size: 16px; font-weight: 850; letter-spacing: -0.2px; color: #111827; }
.curation-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 0 12px;
    margin: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    background: inherit;
}
.curation-track.is-dragging { scroll-snap-type: none; }
.curation-track::before,
.curation-track::after {
    content: "";
    flex: 0 0 0;
}
.curation-track.curation-track-ranked,
.curation-track.curation-track-basic {
    margin: 0;
    padding: 2px 12px 12px;
    scroll-padding-left: 12px;
    scroll-padding-right: 12px;
}
.curation-track::-webkit-scrollbar { display: none; }

@media (min-width: 900px) {
    .curation-track { cursor: grab; user-select: none; }
    .curation-track.is-dragging { cursor: grabbing; }
    .curation-track a { user-select: none; }
.curation-track-hero { padding-bottom: 16px; background: #ffffff; }
    .curation-card-hero { width: 280px; }
}
.curation-card {
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
    flex: 0 0 auto;
}
.curation-empty {
    flex: 1;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
    color: #6b7280;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
}
.curation-noimg {
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    font-size: 11px;
    color:#9ca3af;
    background: #f3f4f6;
}

/* Cover emphasis */
.curation-card-basic { width: 140px; }
.curation-cover {
    width: 140px;
    height: 200px;
    border-radius: 14px;
    overflow: hidden;
    background: #f3f4f6;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.curation-cover img { width:100%; height:100%; object-fit: cover; display:block; }
.curation-cover-title {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hero cover (blur bg + cover on top) */
.curation-track-hero { background: #ffffff; padding-bottom: 0; }
.curation-card-hero { width: 280px; }
.curation-hero {
    width: 100%;
    aspect-ratio: 1 / 1.2;
    border-radius: 18px;
    overflow: hidden;
    background: #111827;
    position: relative;
    box-shadow: none;
    border: 1px solid #e5e7eb;
}
.curation-hero-bg {
    position: absolute;
    inset: -18px;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    filter: blur(18px) saturate(1.05);
    transform: scale(1.08);
    opacity: 0.92;
}
.curation-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.08) 45%, rgba(0,0,0,0.68) 100%);
}
.curation-hero-cover {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(180px, 58%);
    aspect-ratio: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.curation-hero-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 18px 36px rgba(0,0,0,0.35);
    display: block;
}

/* Ranked */
.curation-card-ranked {
    width: 260px;
    display: grid;
    grid-template-columns: 28px 62px 1fr;
    gap: 10px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e7e9ee;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.curation-rank {
    font-size: 18px;
    font-weight: 900;
    color: #111827;
    text-align: center;
}
.curation-thumb {
    width: 62px;
    height: 86px;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f4f6;
}
.curation-thumb img { width:100%; height:100%; object-fit: cover; display:block; }
.curation-text { min-width: 0; }
.curation-book-title {
    font-size: 13px;
    font-weight: 850;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.curation-book-sub {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 900px) {
    .curation-card-basic { width: 160px; }
    .curation-cover { width: 160px; height: 228px; }
    .curation-card-hero { width: 280px; }
    .curation-hero { border-radius: 20px; }
}

.hero {
    padding: 18px 0 var(--space-2);
    margin-bottom: var(--space-1);
    text-align: center;
}
.hero h1 {
    margin: 0 0 6px;
    font-weight: 800;
    font-size: 1.6rem;
}
.brand-link {
    color: inherit;
    text-decoration: none;
}
.hero p {
    margin: 0;
    color: var(--text-sub);
    font-size: 13px;
}
.sticky-search {
    position: sticky;
    top: 8px;
    z-index: 10;
    background: var(--bg);
    padding: var(--space-1) 0 var(--space-1);
    margin-bottom: 0;
}
.search-bar {
    width: 100%;
    margin: 0 auto;
    display: flex;
    background: #f7f8fb;
    border: 1px solid #e6e8ed;
    border-radius: 11px;
    overflow: hidden;
}
.search-bar input {
    flex: 1;
    padding: 12px;
    font-size: 16px;
    border: none;
    outline: none;
    background: #ffffff;
}
.search-bar button {
    padding: 0 16px;
    background: var(--accent);
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: none;
    margin: 0 auto;
    padding: 0 0 36px;
}

.summary-row {
    max-width: none;
    margin: var(--space-2) auto var(--space-2);
    padding: 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap: 10px;
}
#status { margin: 0; padding-left: var(--search-inner-offset); color: var(--text-main); font-size: 13px; font-weight:700; text-align:left; flex: 1; }

/* 필터 바/시트 */
.search-actions { display:flex; flex-direction:column; gap:10px; }
.filter-bar { display:none; }

.filter-sheet {
    position: fixed;
    left: 0; right: 0; bottom: -100%;
    background: var(--panel);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
    padding: 14px;
    z-index: 200;
    transition: bottom 0.2s ease;
    max-height: 70vh;
}
.filter-sheet.show { bottom: 0; }
.sheet-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; }
.sheet-body { display:flex; gap:10px; min-height: 42vh; }
.sheet-left {
    width: 110px;
    border-right: 1px solid var(--border);
    display:flex;
    flex-direction:column;
    gap:6px;
    padding-right: 8px;
}
.sheet-tab {
    border:none;
    background: transparent;
    text-align:left;
    padding:8px 10px;
    border-radius:10px;
    font-weight:700;
    color: var(--text-sub);
    cursor:pointer;
}
.sheet-tab.active {
    background: var(--chip);
    color: var(--text-main);
}
.sheet-right { flex:1; min-width:0; }
.sheet-label { font-weight:700; margin-bottom:8px; }
.sheet-options { display:flex; flex-direction:column; gap:8px; max-height:46vh; overflow:auto; }
.sheet-options label { display:flex; align-items:center; gap:8px; font-size:13px; }
.sheet-options input { accent-color: var(--accent); }
.sheet-actions { display:flex; gap:8px; margin-top:10px; }
.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 190;
}
.overlay.show { display: block; }
.btn-primary, .btn-secondary, .btn-link {
    border: none; cursor: pointer; font-weight: 700;
}
.btn-primary { background: var(--accent); color: #fff; padding: 10px 12px; border-radius: 10px; flex:1; }
.btn-secondary { background: #e5e7eb; color: #111827; padding: 10px 12px; border-radius: 10px; }
.btn-link { background: transparent; color: var(--text-sub); padding: 6px 8px; }

.content { min-height: 400px; }
.grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.result-message {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 96px;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
}
.result-message.error { background: #fff1f2; border-color: #fecdd3; color: #9f1239; }
.result-message.empty { background: #f8fafc; border-color: #e5e7eb; color: #374151; }

.detail-hero {
    position: relative;
    height: 360px;
    overflow: hidden;
}
.detail-bg {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    filter: blur(20px) saturate(1.05);
    transform: scale(1.08);
}
.detail-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.06) 40%, rgba(246,247,249,1) 100%);
}
.detail-bg-fallback {
    background: radial-gradient(circle at 40% 20%, #cbd5e1, #64748b);
}
.detail-topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}
.detail-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: rgba(17,24,39,0.18);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    backdrop-filter: blur(10px);
}
.detail-cover-wrap {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 0;
}
.detail-cover {
    width: 180px;
    height: 250px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0,0,0,0.22);
    background: transparent;
    border: none;
}
.detail-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-sheet {
    margin-top: -22px;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 12px;
}
.detail-inner { max-width: 880px; margin: 0 auto; padding: 0 18px; }
.detail-panel {
    background: #ffffff;
    border-top: 1px solid rgba(229,231,235,0.9);
    border-bottom: 1px solid rgba(229,231,235,0.9);
    border-left: none;
    border-right: none;
    border-radius: 0;
    box-shadow: none;
    padding: 14px 0;
}
.detail-title {
    margin: 2px 0 10px;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.28;
}
.detail-meta { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.detail-meta-row { display: grid; grid-template-columns: 52px 1fr; gap: 12px; align-items: baseline; }
.detail-meta-link { text-decoration: none; color: inherit; }
.detail-meta-k { color: #9ca3af; font-size: 13px; font-weight: 700; }
.detail-meta-v { color: #111827; font-size: 14px; font-weight: 600; }
.detail-meta-v-link { display:inline-flex; align-items: baseline; gap: 6px; }
.detail-meta-text { color: #111827; font-weight: 700; }
.detail-meta-chevron { color: #9ca3af; font-weight: 900; font-size: 16px; line-height: 1; }
.detail-supply { display: flex; justify-content: flex-end; margin: 8px 0 18px; }
.detail-section { margin-top: 6px; }
.detail-section-head { display:flex; justify-content:space-between; align-items:center; gap:12px; margin: 2px 0 12px; }
.detail-section-title { font-size: 17px; font-weight: 800; color: #111827; }
.detail-lib-name { font-weight: 800; }
.detail-section-actions { display:flex; align-items:center; gap:12px; }
.detail-libs .supply-summary { align-items: flex-end; }
.detail-section-sub { margin: 0 0 10px; font-size: 12px; color: #9ca3af; font-weight: 600; }
.lib-groups { display:flex; flex-direction:column; gap:0; }
.lib-group-row { display:flex; gap:12px; align-items:flex-start; padding: 12px 0; border-top: 1px solid #f1f5f9; }
.lib-group-row:first-child { border-top: none; }
.lib-provider { flex: 0 0 auto; padding-top: 2px; margin-right: 18px; }
.lib-chips { display:flex; flex-wrap:wrap; gap:8px; align-items:center; min-width:0; }
.detail-libs .badge { background: #e5e7eb; border: none; border-radius: 0; padding: 4px 6px; }

.filter-summary {
    margin: 0;
    width: auto;
    max-width: 860px;
    padding: 0;
    border-radius: 0;
    border: none;
    background: transparent;
    display:inline-flex; justify-content:flex-end; align-items:center;
    gap:6px;
    cursor:pointer;
    min-width: 64px;
    color: var(--text-main);
    padding-right: var(--search-inner-offset);
}
.filter-summary .filter-title { font-weight:800; font-size:14px; }
.filter-summary .filter-desc { font-size:13px; color: var(--text-main); font-weight:700; }

.card {
    background: var(--panel);
    border: 1px solid #e7e9ee;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    padding: 14px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.js-book-card { cursor: pointer; transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease; }
.js-book-card:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(0,0,0,0.10); border-color: #dbe1ea; }
.js-book-card:active { transform: translateY(0); box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
.thumb {
    width: 120px; min-width: 120px; height: 172px;
    border:1px solid #e2e4e8;
    border-radius: 10px;
    background:#f3f4f6;
    display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.thumb img { width:100%; height:100%; object-fit: cover; }
.no-img { font-size: 11px; color:#9ca3af; text-align:center; padding:6px; line-height:1.4; }
.info { display:flex; flex-direction:column; gap:6px; flex:1; min-width:0; min-height: 172px; }
.title {
    margin:0;
    font-size:15px;
    font-weight:800;
    line-height:1.4;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.meta { display:flex; flex-direction:column; gap:2px; }
.meta-author { font-size:14px; color: #374151; line-height:1.5; font-weight:700; }
.meta-publisher { font-size:13px; color: #6b7280; line-height:1.5; font-weight:600; }
.badges { display:flex; flex-direction:column; gap:6px; margin-top:auto; padding-top:10px; align-items:flex-end; text-align:right; }
.badge {
    display:inline-flex; align-items:center;
    padding:5px 8px;
    border-radius: 999px;
    background: transparent;
    border:1px solid #dfe3e8;
    font-size:11px; color:var(--text-main); line-height:1;
    text-decoration:none;
}
.lib-group { display:flex; flex-wrap:wrap; gap:6px; align-items:center; }
.badge-label {
    font-size:11px;
    font-weight:800;
    padding:5px 8px;
    border-radius:999px;
    color:#fff;
    display:inline-flex;
    align-items:center;
}
.badge-label.kyobo { background:#bfe8d9; color:#0b5a43; }
.badge-label.yes24 { background:#cfe3ff; color:#0a3f88; }
.badge-label.other { background:#e5e7eb; color:#374151; }
.badge-label.special { background:#e9d7c2; color:#6b3f1b; }
.plat {
    display:inline-flex; align-items:center;
    padding:5px 8px;
    border-radius: 8px;
    border:1px solid var(--border);
    font-size:11px;
    font-weight:700;
}
.plat.kyobo { color: var(--kyobo); border-color: #c8f3df; background:#e8fbf2; }
.plat.yes24 { color: var(--yes24); border-color: #cce5ff; background:#eaf4ff; }
.plat.other { color:#4b5563; border-color: #e5e7eb; background:#f3f4f6; }
.prov-row { display:grid; grid-template-columns: auto 1fr auto 1fr auto 1fr; gap:6px 10px; align-items:center; }
.prov-chip {
    width: 45px;
    height: 45px;
    border-radius: var(--squircle-radius);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-sizing:border-box;
}

/* icon-only (still occupies the same 40x40 slot for alignment) */
.prov-chip.kyobo,
.prov-chip.yes24 {
    background: transparent;
    border: none;
    padding: 0;
}
.prov-chip.kyobo img,
.prov-chip.yes24 img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: var(--squircle-radius);
    display: block;
}

/* badge for "기타" (no icon) */
.prov-chip.other {
    background:#374151;
    border:none;
    padding: 6px;
    color:#ffffff;
    font-weight:700;
    font-size:12px;
    line-height:1;
    box-shadow: 0 1px 2px rgba(0,0,0,0.10);
}
.prov-count { font-weight:800; font-size:13px; color:#111827; }
.supply-summary { display:flex; flex-direction:column; gap:6px; align-items:flex-end; }
.prov-grid { display:flex; gap:10px; }
.prov-item { display:flex; flex-direction:column; gap:4px; align-items:center; }
.prov-item.is-off { opacity: 0.28; filter: grayscale(1); }
.prov-item.is-off .prov-chip.other { background: #e5e7eb; color: #6b7280; }
.prov-item.is-off .prov-count { color: #6b7280; }

.loader {
    border:3px solid #e0e0e0;
    border-top:3px solid #9ca3af;
    border-radius:50%;
    width:28px; height:28px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
    display:none;
}
@keyframes spin { 0% {transform:rotate(0deg);} 100% {transform:rotate(360deg);} }

#load-more {
    margin: 14px auto 0;
    display:none;
    padding: 12px 18px;
    border-radius: 14px;
    background:#111;
    color:#fff;
    border:none;
    font-weight:700;
    cursor:pointer;
    width: min(860px, 100%);
}

/* Desktop tweaks */
@media (min-width: 900px) {
    .grid { grid-template-columns: repeat(2, minmax(380px, 1fr)); }
    .hero h1 { font-size: 1.9rem; }
    .hero p { font-size: 14px; }
}

/* unified container */
.container-compact { max-width: 880px; margin: 0 auto; padding: 0 18px; }
