/**
 * Tibiona Blog — typography fallbacks + commerce blocks (Hyvä-aligned).
 */
.tib-blog-post .prose {
    color: #374151;
    line-height: 1.7;
}
.tib-blog-post .prose h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}
.tib-blog-post .prose h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-top: 1.5rem;
    margin-bottom: 0.65rem;
}
.tib-blog-post .prose p { margin: 0 0 1rem; }
.tib-blog-post .prose p:empty { display: none; }
.tib-blog-post .prose ul,
.tib-blog-post .prose ol {
    padding-left: 1.5rem;
    margin: 0 0 1rem;
}
.tib-blog-post .prose ul { list-style: disc; }
.tib-blog-post .prose ol { list-style: decimal; }
/* Article body links only — not commerce widgets nested under .prose */
.tib-blog-post .prose :where(p, li, h2, h3, h4, blockquote) a {
    color: #187139;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.tib-blog-post .prose :where(p, li, h2, h3, h4, blockquote) a:hover {
    color: #145d2f;
}
.tib-blog-post .prose blockquote {
    border-left: 4px solid #d1d5db;
    padding-left: 1rem;
    color: #6b7280;
    font-style: italic;
    margin: 1.5rem 0;
}
.tib-blog-post .prose img {
    border-radius: 0.75rem;
    margin: 1.5rem 0;
    max-width: 100%;
    height: auto;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Storefront-style product commerce on blog (PLP / cart drawer patterns) */
.tib-blog-commerce {
    color: #111827;
}
.tib-blog-commerce a {
    text-decoration: none;
}
.tib-blog-commerce .product-item-link {
    color: #1f2937;
    font-weight: 600;
    line-height: 1.35;
}
.tib-blog-commerce .product-item-link:hover {
    color: #187139;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.tib-blog-commerce .tib-blog-price {
    color: #111827;
    font-weight: 700;
}
.tib-blog-commerce a.tib-blog-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none !important;
    -webkit-text-fill-color: #fff;
}
.tib-blog-commerce a.tib-blog-btn-primary:hover,
.tib-blog-commerce a.tib-blog-btn-primary:focus,
.tib-blog-commerce a.tib-blog-btn-primary:visited {
    color: #fff !important;
    text-decoration: none !important;
    -webkit-text-fill-color: #fff;
}
.tib-blog-commerce__thumb {
    width: 5.5rem;
    height: 5.5rem;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .tib-blog-commerce__thumb {
        width: 6.5rem;
        height: 6.5rem;
    }
}
.tib-blog-commerce__thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tib-blog-sticky-cta .tib-blog-commerce__thumb {
    width: 3.5rem;
    height: 3.5rem;
}
