/* ============================================================================
 * AQUAFIX — instalatérská šablona
 * Sora (nadpisy) + Inter (text). Modrá/voda. Modern, čistá, důvěryhodná.
 * ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary: #0e6fe0;     /* hlavní modrá — tlačítka, akcenty */
    --secondary: #0a2540;   /* tmavá navy — tmavé sekce */
    --primary-soft: #e7f1fd;
    --bg: #f4f7fb;
    --white: #ffffff;
    --ink: #0c1b2a;
    --muted: #5b7088;
    --border: #e0e8f2;
    --shadow: 0 10px 40px -12px rgba(13, 38, 76, 0.18);
    --shadow-sm: 0 4px 18px -8px rgba(13, 38, 76, 0.20);
    --r: 16px;
    --r-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; line-height: 1.1; }

/* shared section scaffolding */
section { padding: 96px 6vw; }
.sec-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.sec-head.left { margin-left: 0; text-align: left; }
.sec-label {
    display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--primary); margin-bottom: 14px;
}
.sec-title { font-size: clamp(30px, 4vw, 46px); font-weight: 800; color: var(--ink); letter-spacing: -0.5px; }
.sec-intro { margin-top: 16px; font-size: 17px; color: var(--muted); }

/* buttons */
.btn-primary, .btn-ghost, .nav-cta, .mob-cta, .btn-submit {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px;
    border-radius: 999px; text-decoration: none; cursor: pointer; border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s;
    white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); padding: 14px 30px; box-shadow: 0 8px 22px -8px rgba(14,111,224,0.65); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(14,111,224,0.7); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); padding: 14px 28px; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); }

/* ============================ NAV ====================================== */
.pl-nav {
    position: sticky; top: 0; z-index: 200;
    height: 74px;            /* FIXED — height never changes on scroll => no jump */
    box-sizing: border-box;
    display: flex; align-items: center;
    padding: 0 6vw;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.2s ease, background 0.2s ease;  /* only shadow/bg, not size */
}
.pl-nav.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,0.98); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 21px; color: var(--ink); letter-spacing: -0.5px; text-decoration: none; flex-shrink: 0; }
.nav-logo .logo-drop { width: 30px; height: 30px; border-radius: 9px; background: var(--primary); display: grid; place-items: center; color: #fff; font-size: 16px; box-shadow: 0 4px 12px -4px rgba(14,111,224,0.7); }
.nav-logo span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0 auto; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta { background: var(--primary); color: var(--white) !important; padding: 11px 24px; font-size: 14px; box-shadow: 0 6px 18px -8px rgba(14,111,224,0.7); }
.nav-cta:hover { transform: translateY(-2px); }
.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); text-decoration: none; font-size: 15px; }
.nav-phone .ph-ico { color: var(--primary); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; border: none; background: transparent; cursor: pointer; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed; top: 74px; left: 0; right: 0; bottom: 0; z-index: 199;
    background: var(--white); padding: 28px 6vw;
    display: flex; flex-direction: column; gap: 6px;
    transform: translateX(100%); transition: transform 0.3s ease; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { color: var(--ink); text-decoration: none; font-size: 19px; font-weight: 600; padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-menu .mob-cta { margin-top: 20px; background: var(--primary); color: #fff !important; padding: 15px; font-size: 16px; }

/* ============================ HERO ===================================== */
.hero { padding: 0; background: var(--secondary); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 640px; }
.hero-text { padding: 80px 6vw; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: #bcd6f5; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; padding: 7px 16px; border-radius: 999px; margin-bottom: 26px; }
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d27b; box-shadow: 0 0 0 4px rgba(52,210,123,0.25); }
.hero h1 { font-size: clamp(38px, 5.4vw, 66px); font-weight: 800; color: #fff; letter-spacing: -1.5px; margin-bottom: 22px; }
.hero h1 .hi { color: #4da3f0; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.66); max-width: 480px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); }
.trust-num { font-family: 'Sora', sans-serif; font-size: 34px; font-weight: 800; color: #fff; line-height: 1; }
.trust-num .u { color: #4da3f0; }
.trust-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 6px; }
.hero-media { position: relative; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--secondary) 0%, rgba(10,37,64,0.35) 22%, transparent 55%); }
.hero-badge { position: absolute; left: 28px; bottom: 28px; z-index: 3; background: var(--white); border-radius: var(--r); padding: 16px 20px; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow); max-width: 280px; }
.hero-badge .hb-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--primary-soft); display: grid; place-items: center; flex-shrink: 0; }
.hero-badge .hb-t { font-family: 'Sora',sans-serif; font-weight: 700; font-size: 16px; color: var(--ink); }
.hero-badge .hb-s { font-size: 12.5px; color: var(--muted); }

/* ============================ SERVICES ================================= */
.services { background: var(--white); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1180px; margin: 0 auto; }
.svc-card {
    position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--r);
    padding: 34px 30px; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-icon { width: 60px; height: 60px; border-radius: 16px; background: var(--primary-soft); display: grid; place-items: center; margin-bottom: 22px; transition: background 0.2s; }
.svc-card:hover .svc-icon { background: var(--primary); }
.svc-icon :is(svg, img) { width: 28px; height: 28px; }
.svc-icon-svg { color: var(--primary); transition: color 0.2s; }
.svc-card:hover .svc-icon-svg { color: #fff; }
.svc-card h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.svc-card p { font-size: 15px; color: var(--muted); }

/* ============================ WHY ===================================== */
.why { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; max-width: 1180px; margin: 0 auto; }
.why-card { background: var(--white); border-radius: var(--r); padding: 32px 26px; text-align: center; box-shadow: var(--shadow-sm); }
.why-ico { width: 64px; height: 64px; border-radius: 50%; background: var(--primary-soft); display: grid; place-items: center; margin: 0 auto 20px; }
.why-ico-svg { color: var(--primary); }
.why-ico :is(svg,img){ width: 30px; height: 30px; }
.why-card h4 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 14.5px; color: var(--muted); }

/* ============================ PROCESS ================================= */
.process { background: var(--secondary); }
.process .sec-title { color: #fff; }
.process .sec-intro { color: rgba(255,255,255,0.6); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1180px; margin: 0 auto; counter-reset: step; }
.step { position: relative; padding: 34px 26px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r); }
.step-num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 17px; width: 46px; height: 46px; border-radius: 13px; background: var(--primary); color: #fff; display: grid; place-items: center; margin-bottom: 20px; }
.step h4 { font-size: 19px; color: #fff; margin-bottom: 9px; }
.step p { font-size: 14.5px; color: rgba(255,255,255,0.62); }

/* ============================ WORK (realizace) ======================== */
.work { background: var(--white); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1180px; margin: 0 auto; }
.work-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.work-img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; background: var(--primary-soft); }
.work-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.work-tag { align-self: flex-start; font-size: 11.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--primary); background: var(--primary-soft); padding: 4px 12px; border-radius: 999px; margin-bottom: 14px; }
.work-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.work-body p { font-size: 14.5px; color: var(--muted); flex: 1; }
.work-more { margin-top: 18px; font-weight: 600; color: var(--primary); font-size: 14.5px; display: inline-flex; align-items: center; gap: 6px; }
.work-empty { grid-column: 1/-1; text-align: center; color: var(--muted); padding: 50px; border: 2px dashed var(--border); border-radius: var(--r); }

/* realizace DETAIL */
.detail { background: var(--white); padding-top: 60px; }
.detail-wrap { max-width: 860px; margin: 0 auto; }
.detail-back { color: var(--primary); font-weight: 600; text-decoration: none; font-size: 14.5px; display: inline-flex; gap: 6px; margin-bottom: 24px; }
.detail-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--primary); background: var(--primary-soft); padding: 5px 14px; border-radius: 999px; margin-bottom: 18px; }
.detail h1 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -1px; margin-bottom: 22px; }
.detail-hero { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--r); margin-bottom: 32px; background: var(--primary-soft); }
.detail-body { font-size: 17px; color: #334; line-height: 1.8; }
.detail-meta { display: flex; gap: 28px; flex-wrap: wrap; margin: 28px 0; padding: 20px 24px; background: var(--bg); border-radius: var(--r); }
.dm-item .dm-l { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-weight: 600; }
.dm-item .dm-v { font-family: 'Sora',sans-serif; font-weight: 700; font-size: 18px; color: var(--ink); margin-top: 3px; }

/* ============================ PRICING ================================= */
.pricing { background: var(--bg); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1080px; margin: 0 auto; align-items: stretch; }
.price-card { position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 38px 32px; display: flex; flex-direction: column; }
.price-card.feat { background: var(--secondary); border-color: var(--secondary); box-shadow: var(--shadow); transform: scale(1.03); }
.price-tag { position: absolute; top: 22px; right: 24px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #fff; background: var(--primary); padding: 5px 12px; border-radius: 999px; }
.pc-name { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.price-card.feat .pc-name { color: #fff; }
.pc-desc { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.price-card.feat .pc-desc { color: rgba(255,255,255,0.6); }
.pc-price { font-family: 'Sora',sans-serif; font-size: 44px; font-weight: 800; color: var(--ink); letter-spacing: -1px; line-height: 1; margin-bottom: 4px; }
.price-card.feat .pc-price { color: #fff; }
.pc-price .u { font-size: 16px; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.price-card.feat .pc-price .u { color: rgba(255,255,255,0.5); }
.pc-list { list-style: none; margin: 26px 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pc-list li { font-size: 14.5px; color: #45596e; display: flex; align-items: flex-start; gap: 10px; }
.price-card.feat .pc-list li { color: rgba(255,255,255,0.78); }
.pc-list li::before { content: '✓'; color: var(--primary); font-weight: 800; flex-shrink: 0; }
.price-card.feat .pc-list li::before { color: #4da3f0; }
.pc-foot { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 14px; }
.price-card .btn-primary, .price-card .btn-ghost { width: 100%; margin-top: auto; }
.price-card:not(.feat) .btn-ghost { color: var(--primary); border-color: var(--border); background: transparent; }
.price-card:not(.feat) .btn-ghost:hover { background: var(--primary-soft); border-color: var(--primary); }

/* ============================ REVIEWS ================================= */
.reviews { background: var(--white); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1180px; margin: 0 auto; }
.rev-card { background: var(--bg); border-radius: var(--r); padding: 32px 28px; display: flex; flex-direction: column; }
.rev-stars { color: #f5b50a; font-size: 17px; letter-spacing: 2px; margin-bottom: 16px; }
.rev-text { font-size: 15.5px; color: #38495c; flex: 1; margin-bottom: 22px; }
.rev-author { display: flex; align-items: center; gap: 14px; }
.rev-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; background: var(--primary-soft); flex-shrink: 0; }
.rev-name { font-family: 'Sora',sans-serif; font-weight: 700; font-size: 15.5px; }
.rev-role { font-size: 13px; color: var(--muted); }

/* ============================ FAQ ===================================== */
.faq { background: var(--bg); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.faq-q { padding: 22px 26px; font-family: 'Sora',sans-serif; font-weight: 600; font-size: 17px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-icon { font-size: 24px; color: var(--primary); transition: transform 0.25s; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 26px; color: var(--muted); font-size: 15.5px; }
.faq-item.open .faq-a { max-height: 320px; padding: 0 26px 24px; }

/* ============================ CONTACT ================================= */
.contact { background: var(--secondary); }
.contact .sec-label { color: #4da3f0; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; max-width: 1160px; margin: 0 auto; align-items: start; }
.contact-info .sec-title { color: #fff; }
.contact-info > p { color: rgba(255,255,255,0.62); font-size: 16.5px; margin: 16px 0 34px; }
.c-details { display: flex; flex-direction: column; gap: 18px; }
.c-detail { display: flex; align-items: center; gap: 16px; position: relative; }
.c-icon { width: 50px; height: 50px; border-radius: 14px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); display: grid; place-items: center; flex-shrink: 0; }
.c-icon :is(svg,img){ width: 22px; height: 22px; }
.c-detail .c-svg { color: #4da3f0; }
.c-detail .c-txt { color: #fff; font-weight: 600; font-size: 16px; }
.c-detail .c-sub { color: rgba(255,255,255,0.5); font-size: 13px; }

.contact-form-wrap { background: var(--white); border-radius: var(--r); padding: 38px; box-shadow: var(--shadow); }
.contact-form-wrap .rsvp-form, .contact-form-wrap form { display: block; }
.contact-form-wrap .form-rows-wrap { display: flex; flex-direction: column; gap: 18px; }
.contact-form-wrap .wb-form-row { display: flex; gap: 18px; }
.contact-form-wrap .wb-form-row > * { flex: 1; }
.contact-form-wrap label, .contact-form-wrap .form-lbl { display: block; font-size: 12.5px; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.contact-form-wrap input, .contact-form-wrap select, .contact-form-wrap textarea {
    width: 100%; padding: 13px 15px; border: 1.5px solid var(--border); border-radius: var(--r-sm);
    font-family: 'Inter', sans-serif; font-size: 15px; color: var(--ink); background: var(--bg);
    outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form-wrap textarea { min-height: 120px; resize: vertical; }
.contact-form-wrap input:focus, .contact-form-wrap select:focus, .contact-form-wrap textarea:focus {
    border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,111,224,0.12); background: #fff;
}
.btn-submit { width: 100%; background: var(--primary); color: #fff; padding: 15px; font-size: 16px; margin-top: 22px; box-shadow: 0 8px 22px -8px rgba(14,111,224,0.6); }
.btn-submit:hover { transform: translateY(-2px); }

/* ============================ FOOTER ================================== */
.site-footer { background: #06192e; color: rgba(255,255,255,0.6); padding: 70px 6vw 34px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; max-width: 1180px; margin: 0 auto 44px; }
.foot-brand { display: flex; align-items: center; gap: 10px; font-family: 'Sora',sans-serif; font-weight: 800; font-size: 22px; color: #fff; margin-bottom: 16px; }
.foot-brand .logo-drop { width: 32px; height: 32px; border-radius: 9px; background: var(--primary); display: grid; place-items: center; color: #fff; }
.foot-about { font-size: 14.5px; max-width: 320px; }
.foot-col h5 { font-family: 'Sora',sans-serif; color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-col ul li { position: relative; }
.foot-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14.5px; transition: color 0.15s; }
.foot-col a:hover { color: #fff; }
.foot-bottom { max-width: 1180px; margin: 0 auto; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }

/* ============================ EDITOR (preview) ======================== */
.wb-list-add { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--primary); cursor: pointer; padding: 8px 14px; border: 1.5px dashed var(--primary); border-radius: 999px; background: var(--primary-soft); margin-top: 14px; }

/* ============================ RESPONSIVE ============================== */
@media (max-width: 1024px) {
    .svc-grid, .work-grid, .rev-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid, .steps { grid-template-columns: repeat(2, 1fr); }
    .price-grid { grid-template-columns: 1fr; max-width: 460px; }
    .price-card.feat { transform: none; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-media { min-height: 340px; order: -1; }
    .hero-media::after { background: linear-gradient(0deg, var(--secondary) 0%, rgba(10,37,64,0.2) 50%, transparent 100%); }
    .hero-text { padding: 56px 6vw 64px; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
    section { padding: 64px 6vw; }
    .nav-links, .nav-phone { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrap { padding: 28px 22px; }
    .contact-form-wrap .wb-form-row { flex-direction: column; gap: 18px; }
    .svc-grid, .work-grid, .rev-grid, .why-grid, .steps { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-trust { gap: 28px; }
    .hero-badge { left: 16px; right: 16px; bottom: 16px; max-width: none; }
    .detail-meta { gap: 18px; }
}
