/* ── Listing / category pages (added Aug 2026) ─────────────────────────────── */
.lst-hero { padding: 40px 0 28px; background: var(--color-bg-light, #f7f9fc); border-bottom: 1px solid rgba(8,84,194,0.10); }
.lst-h1 { font-family: var(--font-display, 'DM Serif Display', serif); font-size: clamp(30px, 5vw, 44px);
          line-height: 1.15; margin: 14px 0 16px; color: var(--color-primary-dark, #0b2f6b); }
.lst-intro { max-width: 760px; }
.lst-intro p { font-size: 16px; line-height: 1.75; color: var(--color-text-secondary, #4A5568); margin: 0 0 12px; }
.lst-count { margin-top: 18px; font-size: 13px; font-weight: 600; letter-spacing: .04em;
             text-transform: uppercase; color: var(--color-primary, #0854c2); }

.lst-hero .blog-breadcrumb { color: #6b7688; }
.lst-hero .blog-breadcrumb a { color: var(--color-primary, #0854c2); text-decoration: none; }
.lst-hero .blog-breadcrumb a:hover { text-decoration: underline; }
.lst-hero .blog-breadcrumb span { color: #6b7688; }

.lst-main { padding: 40px 0 64px; }
.lst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .lst-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .lst-grid { grid-template-columns: 1fr; } }

.lst-card { display: flex; flex-direction: column; background: #fff; border: 1px solid rgba(8,84,194,0.12);
            border-radius: 14px; padding: 22px 22px 20px; transition: box-shadow .18s ease, transform .18s ease;
            position: relative; }
/* Whole card is clickable: the "Read article" link stretches over the card */
.lst-link::after { content: ''; position: absolute; inset: 0; z-index: 1; border-radius: 14px; }
.lst-card:hover { box-shadow: 0 10px 28px rgba(8,84,194,0.10); transform: translateY(-2px); }
.lst-card-thumb { display: block; margin: -22px -22px 16px; border-radius: 13px 13px 0 0; overflow: hidden;
                  aspect-ratio: 1200 / 630; background: #0c2340; }
.lst-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.lst-card:hover .lst-card-thumb img { transform: scale(1.04); }
.lst-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.lst-tag { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
           color: var(--color-primary, #0854c2); background: rgba(8,84,194,0.08); padding: 4px 10px; border-radius: 999px; }
.lst-read { font-size: 12px; color: #7b8798; white-space: nowrap; }
.lst-title { font-size: 18px; line-height: 1.35; margin: 0 0 10px; font-weight: 600; }
.lst-title a { color: var(--color-text-primary, #1a2230); text-decoration: none; }
.lst-title a:hover { color: var(--color-primary, #0854c2); }
.lst-excerpt { font-size: 14px; line-height: 1.65; color: var(--color-text-secondary, #4A5568); margin: 0 0 16px; flex: 1; }
.lst-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600;
            color: var(--color-primary, #0854c2); text-decoration: none; }
.lst-link:hover { gap: 10px; }
.lst-doc { display: inline-flex; align-self: flex-start; margin-top: 14px; font-size: 11px; font-weight: 600;
           color: #fff; padding: 4px 10px; border-radius: 999px; }
.lst-doc-soumya { background: linear-gradient(135deg, #0854c2, #2172b3); }
.lst-doc-arpit  { background: linear-gradient(135deg, #e62a2b, #c0392b); }
.lst-doc-clinic { background: linear-gradient(135deg, #0e7c7b, #0a605f); }

.lst-pager { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 40px; }
.lst-pager .pg { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px;
                 padding: 0 14px; border: 1.5px solid rgba(8,84,194,0.18); border-radius: 10px; background: #fff;
                 font-size: 14px; font-weight: 500; color: var(--color-text-primary, #1a2230); text-decoration: none; }
.lst-pager .pg:hover { border-color: var(--color-primary, #0854c2); color: var(--color-primary, #0854c2); }
.lst-pager .pg-on { background: var(--color-primary, #0854c2); border-color: var(--color-primary, #0854c2); color: #fff; }

.lst-other { margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(8,84,194,0.12); }
.lst-other h2 { font-size: 16px; font-weight: 600; margin: 0 0 12px; color: var(--color-text-primary, #1a2230); }
.lst-other ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.lst-other a { font-size: 14px; color: var(--color-primary, #0854c2); text-decoration: none; font-weight: 500; }
.lst-other a:hover { text-decoration: underline; }
