/* =====================================================================
   Pohřební služba Dušan Drdák — Hlavný CSS
   Schéma: Antracit + tlmené zlato
   Typografia: EB Garamond (serif)
   Mobile-first prístup (84% návštevníkov je z mobilu)
   ===================================================================== */

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

/* ── Farebné premenné — Schéma B ──────────────────────────────────── */
:root {
    /* Pozadia */
    --bg:           #1a1a1a;
    --bg-secondary: #141414;
    --bg-tertiary:  #232323;
    --bg-card:      rgba(255, 255, 255, .025);

    /* Text */
    --text:        #ebe7df;
    --text-muted:  #a8a39a;
    --text-faded:  #7a7670;

    /* Akcent (zlato) */
    --accent:        #b8985f;
    --accent-bright: #c9a86b;
    --accent-faded:  rgba(184, 152, 95, .25);

    /* Pomocné */
    --border:        rgba(184, 152, 95, .22);
    --border-strong: rgba(184, 152, 95, .4);

    /* Semantické */
    --red:   #c54a4a;
    --green: #6ba868;

    /* Typografia */
    --font-display: 'EB Garamond', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body:    'EB Garamond', Georgia, 'Times New Roman', serif;
    --font-sans:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Rozmery */
    --max-content: 1180px;
    --header-height: 70px;

    /* Animácie */
    --t-fast:   .15s;
    --t-normal: .25s;
    --t-slow:   .45s;
}

/* ── Web fonty (Google Fonts API - asynchrónne, neblokujú render) ─── */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600&display=swap');

/* ── Základné element ─────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--t-fast);
}

a:hover {
    color: var(--accent-bright);
}

a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ── Typografia ───────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.3;
    color: var(--text);
}

h1 { font-size: 2rem;    margin-bottom: .5rem; }
h2 { font-size: 1.6rem;  margin-bottom: .5rem; }
h3 { font-size: 1.35rem; margin-bottom: .4rem; }
h4 { font-size: 1.15rem; margin-bottom: .3rem; }

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* Small caps utility */
.smallcaps {
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 500;
}

.section-title {
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 2rem;
    font-weight: 500;
}

/* ── Container ────────────────────────────────────────────────────── */
.container {
    max-width: var(--max-content);
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

/* ── Header / hlavička ────────────────────────────────────────────── */
.site-header {
    background: rgba(20, 20, 20, .92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header__inner {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: .85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: .85rem;
    text-decoration: none;
    color: var(--text);
    flex-shrink: 0;
}

.logo img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.logo__text {
    font-family: var(--font-display);
    font-size: .95rem;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ── Navigácia ────────────────────────────────────────────────────── */
.nav {
    display: none;          /* skryté na mobile, zobrazí sa od 900px */
}

.nav__list {
    list-style: none;
    display: flex;
    gap: 1.75rem;
}

.nav__link {
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: .9rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 500;
    padding: .5rem 0;
    position: relative;
    transition: color var(--t-fast);
}

.nav__link:hover,
.nav__link.is-active {
    color: var(--accent);
}

.nav__link.is-active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: var(--accent);
}

/* ── Hamburger menu (mobile) ──────────────────────────────────────── */
.nav-toggle {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    width: 44px;
    height: 44px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--t-fast);
}

.nav-toggle:hover {
    border-color: var(--accent);
}

.nav-toggle svg {
    width: 22px;
    height: 22px;
}

/* Mobile drawer */
.nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border);
    z-index: 200;
    padding: 1.25rem;
    transition: right var(--t-slow) cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
}

.nav-drawer.is-open {
    right: 0;
}

.nav-drawer__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: 0;
    color: var(--text-muted);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-drawer__list {
    list-style: none;
    margin-top: 3.5rem;
}

.nav-drawer__list li {
    border-bottom: 1px solid var(--border);
}

.nav-drawer__link {
    display: block;
    padding: 1rem .25rem;
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.nav-drawer__link.is-active {
    color: var(--accent);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-normal);
}

.nav-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* ── Hero sekcia ──────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text);
    padding: 3rem 1.25rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(20, 20, 20, .65), rgba(20, 20, 20, .8));
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero__title {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: .75rem;
    letter-spacing: .02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .7), 0 0 16px rgba(0, 0, 0, .4);
}

.hero__subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 2rem;
    letter-spacing: .02em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .7);
}

.hero__links {
    margin-bottom: 1.75rem;
    font-size: .95rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero__links a {
    color: var(--accent);
    text-decoration: none;
    margin: 0 .35rem;
}

.hero__links a:hover {
    text-decoration: underline;
}

.hero__links .sep {
    color: var(--text-faded);
}

.hero__label {
    font-size: .8rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: .5rem;
}

.hero__phones {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem 1rem;
    font-size: 1.5rem;
    font-weight: 400;
}

.hero__phone-icon {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.hero__phones a {
    color: var(--text);
    text-decoration: none;
    transition: color var(--t-fast);
}

.hero__phones a:hover {
    color: var(--accent);
}

.hero__phones .sep {
    color: var(--text-muted);
    font-size: .95rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 300;
}

/* ── Sekcie ───────────────────────────────────────────────────────── */
.section {
    padding: 3rem 0;
}

.section--lg {
    padding: 4rem 0;
}

/* ── Provozovny karty ─────────────────────────────────────────────── */
.provozovny {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.provozovna {
    border: 1px solid var(--border);
    background: var(--bg-card);
    padding: 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-decoration: none;
    color: var(--text);
    transition: border-color var(--t-normal), transform var(--t-normal), background var(--t-normal);
}

.provozovna:hover {
    border-color: var(--accent);
    background: rgba(184, 152, 95, .03);
    transform: translateY(-2px);
}

.provozovna__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: .25rem;
}

.provozovna__more {
    font-size: .85rem;
    color: var(--accent);
    text-decoration: underline;
}

.provozovna__arrow {
    color: var(--accent);
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

/* ── Info bloky ───────────────────────────────────────────────────── */
.info-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.info-block:last-of-type {
    margin-bottom: 0;
}

.info-block__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--border);
}

.info-block__title {
    font-size: 1.5rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
}

.info-block__text {
    color: var(--text-muted);
    line-height: 1.8;
}

.info-block__text p {
    margin-bottom: .75rem;
}

/* ── Tlačidlá ─────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: .85rem 2rem;
    border: 1px solid var(--text-muted);
    color: var(--text);
    background: transparent;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: .85rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--t-normal);
}

.btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(184, 152, 95, .05);
}

.btn--primary {
    border-color: var(--accent);
    color: var(--accent);
}

.btn--primary:hover {
    background: var(--accent);
    color: var(--bg);
}

.btn--block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-wrap {
    margin-top: 1.25rem;
}

/* ── Lília rozdeľovač ─────────────────────────────────────────────── */
.divider {
    text-align: center;
    margin: 3rem 0;
    color: var(--accent);
    opacity: .55;
}

.divider svg {
    width: 32px;
    height: 32px;
}

/* ── Footer ───────────────────────────────────────────────────────── */
.site-footer {
    background: var(--bg-secondary);
    padding: 3rem 0 1.5rem;
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
    margin-top: 4rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: .9rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-col a {
    color: var(--text-muted);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-col p {
    margin-bottom: .65rem;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: .8rem;
    color: var(--text-faded);
    letter-spacing: .1em;
}

.footer-social {
    display: flex;
    gap: .75rem;
    margin-top: .5rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: border-color var(--t-fast), background var(--t-fast);
}

.footer-social a:hover {
    border-color: var(--accent);
    background: rgba(184, 152, 95, .08);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* ── Mobilná lišta s telefónmi (sticky bottom) ────────────────────── */
.mobile-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: .5rem .75rem;
    z-index: 90;
    display: flex;
    gap: .5rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, .3);
}

.mobile-call-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: var(--accent);
    color: var(--bg);
    text-decoration: none;
    padding: .85rem .5rem;
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .03em;
    min-height: 48px;
}

.mobile-call-bar a:hover {
    background: var(--accent-bright);
    color: var(--bg);
}

.mobile-call-bar svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.mobile-call-bar__label {
    display: block;
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .85;
    line-height: 1.2;
}

.mobile-call-bar__number {
    display: block;
    font-size: 1rem;
    line-height: 1.2;
}

/* Telo má dolný padding aby sticky lišta neprekrývala obsah */
body.has-mobile-call-bar {
    padding-bottom: 76px;
}

/* ── Breadcrumbs ──────────────────────────────────────────────────── */
.breadcrumbs {
    padding: 1rem 0;
    font-size: .85rem;
    color: var(--text-muted);
    letter-spacing: .05em;
}

.breadcrumbs a {
    color: var(--text-muted);
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs .sep {
    margin: 0 .5rem;
    color: var(--text-faded);
}

/* ── Tabuľky a štruktúry (kontakt) ────────────────────────────────── */
.contact-block {
    border: 1px solid var(--border);
    padding: 1.5rem;
    background: var(--bg-card);
    margin-bottom: 1.25rem;
}

.contact-block h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-block p {
    margin-bottom: .5rem;
}

.contact-block .label {
    color: var(--text-muted);
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    display: inline-block;
    min-width: 110px;
}

/* ── Galéria ──────────────────────────────────────────────────────── */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery__item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color var(--t-fast), transform var(--t-normal);
}

.gallery__item:hover {
    border-color: var(--accent);
    transform: scale(1.02);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.gallery__item:hover img {
    transform: scale(1.06);
}

/* ── Skip link (accessibility) ────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: var(--bg);
    padding: .5rem 1rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 1000;
}

.skip-link:focus {
    top: 0;
}

/* =====================================================================
   TABLET (od 600px)
   ===================================================================== */
@media (min-width: 600px) {

    body {
        font-size: 17px;
    }

    .hero {
        min-height: 540px;
        padding: 4rem 1.5rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.35rem;
    }

    .hero__phones {
        font-size: 1.75rem;
        flex-wrap: nowrap;
    }

    .provozovny {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .provozovna__name {
        font-size: 1.4rem;
    }

    .info-block {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        margin-bottom: 4rem;
    }

    .info-block--reverse > :first-child {
        order: 2;
    }

    .info-block__title {
        font-size: 1.65rem;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .section {
        padding: 4rem 0;
    }
}

/* =====================================================================
   DESKTOP (od 900px)
   ===================================================================== */
@media (min-width: 900px) {

    .site-header__inner {
        padding: 1rem 2rem;
    }

    .logo img {
        width: 56px;
        height: 56px;
    }

    .logo__text {
        font-size: 1.05rem;
        letter-spacing: .15em;
    }

    .nav {
        display: block;
    }

    .nav-toggle {
        display: none;
    }

    .hero {
        min-height: 600px;
    }

    .hero__title {
        font-size: 2.25rem;
    }

    .hero__subtitle {
        font-size: 1.5rem;
    }

    .hero__phones {
        font-size: 2rem;
    }

    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .section {
        padding: 5rem 0;
    }

    /* Mobile call bar sa skryje na desktope */
    .mobile-call-bar {
        display: none;
    }

    body.has-mobile-call-bar {
        padding-bottom: 0;
    }
}

/* =====================================================================
   PRINT styles
   ===================================================================== */
@media print {
    .site-header,
    .site-footer,
    .mobile-call-bar,
    .nav-drawer,
    .nav-overlay {
        display: none !important;
    }

    body {
        background: white;
        color: black;
        padding: 0;
    }
}

/* =====================================================================
   PREFERS-REDUCED-MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}


/* =====================================================================
   ADMIN sekcia
   ===================================================================== */

/* Login stránka — centrovaný formulár */
.admin-login {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.admin-login__card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
}

.admin-login__title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    letter-spacing: .15em;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.admin-login__error {
    background: rgba(197, 74, 74, .15);
    border: 1px solid rgba(197, 74, 74, .35);
    color: #e89696;
    padding: .75rem 1rem;
    margin-bottom: 1.25rem;
    font-size: .95rem;
}

.admin-login__success {
    background: rgba(107, 168, 104, .15);
    border: 1px solid rgba(107, 168, 104, .35);
    color: #a3d4a0;
    padding: .75rem 1rem;
    margin-bottom: 1.25rem;
    font-size: .95rem;
}

.form-field {
    margin-bottom: 1.25rem;
}

.form-field label {
    display: block;
    margin-bottom: .35rem;
    color: var(--text-muted);
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: .75rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--t-fast);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(184, 152, 95, .15);
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.form-field__hint {
    margin-top: .35rem;
    color: var(--text-faded);
    font-size: .85rem;
}

/* Admin layout */
.admin-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: .75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .9rem;
    color: var(--text-muted);
}

.admin-bar__user {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.admin-bar__badge {
    background: var(--accent-faded);
    color: var(--accent);
    padding: .15rem .6rem;
    border-radius: 12px;
    font-size: .75rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.admin-bar a {
    color: var(--text-muted);
    text-decoration: none;
}

.admin-bar a:hover {
    color: var(--accent);
}

/* Admin dashboard cards */
.admin-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: border-color var(--t-fast);
}

.admin-card:hover {
    border-color: var(--accent-faded);
}

.admin-card h3 {
    color: var(--accent);
    margin-bottom: .75rem;
    font-size: 1.1rem;
    letter-spacing: .05em;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.admin-stat {
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-align: center;
}

.admin-stat__value {
    font-size: 2rem;
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1;
    margin-bottom: .35rem;
}

.admin-stat__label {
    color: var(--text-muted);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}
