/* ===== HOSH – About (scoped) ===== */
#hosh-about {
    --c: #111;
    --c-muted: #555;
    --bg: #fff;
    --bg-soft: #f6f6f6;
    --accent: #000;
    --radius: 0px;
    --gap: 20px;
}

#hosh-about {
    color: var(--c);
    background: transparent;
    line-height: 1.6;
    font-size: 16px;
}

#hosh-about .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px;
}

#hosh-about h1,
#hosh-about h2,
#hosh-about h3 {
    line-height: 1.25;
    letter-spacing: .2px;
}

#hosh-about h1 {
    font-size: clamp(28px, 4vw, 40px);
    margin: 0 0 10px;
}

#hosh-about h2 {
    font-size: clamp(20px, 2.6vw, 26px);
    margin: 0 0 10px;
}

#hosh-about h3 {
    font-size: 18px;
    margin: 0 0 6px;
}

#hosh-about p {
    margin: 0 0 12px;
    color: var(--c);
}

#hosh-about .muted {
    color: var(--c-muted);
}

/* Hero */
#hosh-about .hero {
    text-align: center;
    padding: 32px 0 10px;
}

#hosh-about .hero .line {
    width: 80px;
    height: 2px;
    background: var(--accent);
    margin: 10px auto 16px;
    border-radius: 0px;
}

#hosh-about .hero p {
    max-width: 900px;
    margin: 0 auto;
}

/* Grids */
#hosh-about .grid {
    display: grid;
    gap: var(--gap);
    align-items: center;
}

#hosh-about .grid-2 {
    grid-template-columns: 1fr;
}

#hosh-about .grid-3 {
    grid-template-columns: 1fr;
}

@media (min-width:900px) {
    #hosh-about .grid-2 {
        grid-template-columns: 1.1fr 0.9fr;
    }

    #hosh-about .grid-2.rev {
        grid-template-columns: 0.9fr 1.1fr;
    }

    #hosh-about .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Media */
#hosh-about .img-wrap {
    position: relative;
}

#hosh-about .img {
    width: 100%;
    display: block;
    border-radius: var(--radius);
}

/* Accent bars (dekor) – volitelné */
#hosh-about .accent-l,
#hosh-about .accent-r {
    position: absolute;
    top: 16px;
    width: 70px;
    height: 2px;
    background: var(--accent);
}

#hosh-about .accent-l {
    left: 16px;
}

#hosh-about .accent-r {
    right: 16px;
}

/* Fullwidth sekce */
#hosh-about .section {
    margin: 28px 0;
    border-radius: var(--radius);
    padding: 18px;
}

#hosh-about .section.dark {
    background: #111;
    color: #fff;
}

#hosh-about .section.light {
    background: var(--bg-soft);
}

/* Benefits cards */
#hosh-about .benefits {
    margin: 10px 0 0;
}

#hosh-about .card {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 16px;
    height: 100%;
}

#hosh-about .card .icon {
    width: 44px;
    height: 44px;
    margin-bottom: 8px;
    color: #111;
}

#hosh-about .card p {
    margin: 6px 0 0;
}

/* CTA row (pokud přidáš) */
#hosh-about .cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0 0;
}

#hosh-about .btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
}

#hosh-about .btn.primary {
    background: #000;
    color: #fff;
}

#hosh-about .btn.ghost {
    border: 2px solid #000;
    color: #000;
}