/* ================================
   HOSH – BLOG STYLING
   Soubor: blog.css
   Použití: stránky s články (blog landing / detail)
   ================================ */

.hosh-article {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 15px 80px;
    font-family: inherit;
    color: #222;
    line-height: 1.6;
}

/* ---------------- HERO ---------------- */

.hosh-article .hero-section h1 {
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: none;
    margin: 20px 0 10px;
}

.hosh-article .hero-section .hero-subtext {
    max-width: 640px;
    margin: 0 auto;
    color: #666;
    font-size: 1rem;
}

.hosh-article .hero-section img {
    display: block;
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 8px;
}

/* ---------------- BUTTONS ---------------- */

.hosh-article .btn {
    display: inline-block;
    padding: 10px 22px;
    margin: 4px 6px;
    border-radius: 999px;
    border: 1px solid #111;
    background-color: #111;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.2s ease;
}

.hosh-article .btn:hover,
.hosh-article .btn:focus {
    background-color: #f4eee6;
    color: #111;
    border-color: #111;
}

/* ---------------- QUICK NAV ---------------- */

.hosh-article .quick-nav {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.hosh-article .quick-nav .btn {
    margin: 6px 8px;
}

/* ---------------- TYPOGRAPHY ---------------- */

.hosh-article h2 {
    font-size: 1.8rem;
    margin: 0 0 15px;
    font-weight: 600;
}

.hosh-article h3 {
    font-size: 1.2rem;
    margin: 25px 0 10px;
    font-weight: 600;
}

.hosh-article p {
    margin: 0 0 15px;
    color: #444;
}

.hosh-article ul {
    margin: 0 0 15px 18px;
    padding: 0;
}

.hosh-article li {
    margin-bottom: 5px;
}

/* ---------------- INTRO ---------------- */

.hosh-article .intro {
    text-align: left;
}

/* ---------------- TWO-COLUMN SECTIONS ---------------- */

.hosh-article .section-two-col {
    display: flex;
    gap: 40px;
    align-items: center;
}

.hosh-article .section-two-col .col-img img {
    display: block;
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.hosh-article .section-two-col .col-text p {
    margin-bottom: 12px;
}

/* ---------------- CTA BLOCK ---------------- */

.hosh-article .cta-block {
    text-align: center;
    background: #faf7f2;
    border-radius: 10px;
    padding: 40px 20px;
    margin: 20px 0 60px;
}

.hosh-article .cta-block h2 {
    margin-bottom: 10px;
}

.hosh-article .cta-block p {
    margin-bottom: 18px;
    color: #555;
}

/* ---------------- RECOMMENDED PRODUCTS ---------------- */

.hosh-article .recommended {
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.hosh-article .recommended h2 {
    text-align: center;
}

.hosh-article .products-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.hosh-article .products-grid .product {
    width: 190px;
    text-align: center;
    font-size: 0.9rem;
}

.hosh-article .products-grid .product img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 8px;
    object-fit: cover;
}

/* ---------------- IMAGES / FIGURES (fallback) ---------------- */

.hosh-article .blog-image,
.hosh-article figure {
    margin: 25px 0;
}

.hosh-article figure img {
    width: 100%;
    border-radius: 8px;
}

.hosh-article figcaption {
    font-size: 0.85rem;
    color: #777;
    margin-top: 6px;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 900px) {
    .hosh-article {
        padding: 25px 10px 60px;
    }

    .hosh-article .section-two-col {
        flex-direction: column !important;
        gap: 20px;
    }

    .hosh-article .hero-section h1 {
        font-size: 2rem;
    }

    .hosh-article h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .hosh-article .hero-section .hero-subtext {
        font-size: 0.95rem;
    }

    .hosh-article .btn {
        width: auto;
        font-size: 0.8rem;
        padding: 9px 18px;
    }

    .hosh-article .products-grid .product {
        width: 47%;
    }
}