/* Public blog listing & article pages — complements theme style.css */

.lsbs-blog-public .whatsapp-icon,
.lsbs-blog-public .whatsapp-icon2,
.lsbs-blog-public .whatsapp-icon3 {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 10px;
    z-index: 50000000;
}
.lsbs-blog-public .whatsapp-icon { left: 30px; }
.lsbs-blog-public .whatsapp-icon2 { left: 15px; }
.lsbs-blog-public .whatsapp-icon3 { left: 80px; }
@media screen and (max-width: 760px) {
    .lsbs-blog-public .whatsapp-icon { display: none; }
    .lsbs-blog-public .whatsapp-icon2,
    .lsbs-blog-public .whatsapp-icon3 { display: block; }
}
@media (min-width: 761px) {
    .lsbs-blog-public .whatsapp-icon { display: block; }
    .lsbs-blog-public .whatsapp-icon2,
    .lsbs-blog-public .whatsapp-icon3 { display: none; }
}

.lsbs-blog-hero {
    position: relative;
    padding: 4.5rem 0 4rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 45%, #334155 100%);
    overflow: hidden;
}
.lsbs-blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 10% 20%, rgba(250, 57, 74, 0.35), transparent 55%),
        radial-gradient(ellipse 50% 45% at 90% 80%, rgba(250, 57, 74, 0.15), transparent 50%);
    pointer-events: none;
}
.lsbs-blog-hero .container { position: relative; z-index: 1; }
.lsbs-blog-hero h1 {
    color: #fff;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.lsbs-blog-hero p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 36rem;
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.65;
}
.lsbs-blog-breadcrumb {
    margin-bottom: 1.25rem;
}
.lsbs-blog-breadcrumb a,
.lsbs-blog-breadcrumb span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    text-decoration: none;
}
.lsbs-blog-breadcrumb a:hover { color: #fff; }
.lsbs-blog-breadcrumb .sep { margin: 0 0.4rem; opacity: 0.5; }

.lsbs-blog-listing {
    padding: 4rem 0 5rem;
    background: #f8fafc;
}
.lsbs-blog-grid .single-blog-card {
    height: 100%;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    margin-bottom: 0;
}
.lsbs-blog-grid .single-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}
.lsbs-blog-grid .single-blog-card .image {
    margin-bottom: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.lsbs-blog-grid .single-blog-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.lsbs-blog-grid .single-blog-card:hover .image img {
    transform: scale(1.05);
}
.lsbs-blog-grid .single-blog-card .image span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 4px;
}
.lsbs-blog-grid .single-blog-card .content {
    padding: 1.35rem 1.5rem 1.5rem;
}
.lsbs-blog-grid .single-blog-card .content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
    line-height: 1.45;
}
.lsbs-blog-grid .single-blog-card .content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.lsbs-blog-grid .single-blog-card .content h3 a:hover {
    color: var(--primaryColor);
}
.lsbs-blog-grid .card-excerpt {
    font-size: 0.9rem;
    color: var(--paragraphColor);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lsbs-blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primaryColor);
    text-decoration: none;
}
.lsbs-blog-read-more:hover { gap: 0.55rem; }

.lsbs-blog-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.lsbs-blog-empty i {
    font-size: 3rem;
    color: var(--primaryColor);
    opacity: 0.7;
    margin-bottom: 1rem;
    display: block;
}

/* Article detail */
.lsbs-blog-article-hero {
    padding: 3rem 0 0;
    background: #fff;
}
.lsbs-blog-article-hero .featured-wrap {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    aspect-ratio: 21 / 9;
    max-height: 420px;
}
.lsbs-blog-article-hero .featured-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lsbs-blog-article-body {
    padding: 2.5rem 0 3rem;
}
.lsbs-blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    color: var(--paragraphColor);
}
.lsbs-blog-article-meta .meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    background: #f1f5f9;
    border-radius: 999px;
    font-weight: 500;
}
.lsbs-blog-article-meta .meta-pill i {
    color: var(--primaryColor);
    font-size: 1rem;
}
.lsbs-blog-article-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.75rem;
    color: #0f172a;
}
.lsbs-blog-prose {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #334155;
}
.lsbs-blog-prose h2,
.lsbs-blog-prose h3,
.lsbs-blog-prose h4 {
    color: #0f172a;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.lsbs-blog-prose p { margin-bottom: 1.15rem; }
.lsbs-blog-prose ul,
.lsbs-blog-prose ol {
    margin-bottom: 1.15rem;
    padding-left: 1.35rem;
}
.lsbs-blog-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 1.5rem 0;
}
.lsbs-blog-prose a {
    color: var(--primaryColor);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.lsbs-blog-back-bar {
    padding: 1.25rem 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 2rem;
}
.lsbs-blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--primaryColor);
    text-decoration: none;
}
.lsbs-blog-back-link:hover { gap: 0.6rem; }

/* Related articles on detail page */
.lsbs-blog-related {
    padding: 3rem 0 5rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}
.lsbs-blog-related__title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.lsbs-blog-not-found {
    padding: 5rem 0;
    text-align: center;
}
.lsbs-blog-not-found h1 { margin-bottom: 1rem; }
.lsbs-blog-footer { padding-top: 50px !important; padding-bottom: 50px !important; }

/* Home page blog strip (index.php) */
.lsbs-home-blogs {
    background-color: #f8fafc;
}
.lsbs-home-blogs .section-title p {
    color: var(--paragraphColor);
    font-size: 1rem;
}
