/* ==========================================================================
   InfoShah — Blog Frontend Stylesheet (blog.css)
   Brand: Navy #0d1a26 · Green #2d7b45 · Font: Plus Jakarta Sans + Inter
   ========================================================================== */

/* ──────────────────────────────────────────────────────────────────────────
   LISTING PAGE — Filter Pill Buttons
────────────────────────────────────────────────────────────────────────── */
.blog-filter-btn {
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--tx-muted);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    box-shadow: var(--shadow-green);
}

/* ──────────────────────────────────────────────────────────────────────────
   LISTING PAGE — Search Input
────────────────────────────────────────────────────────────────────────── */
.blog-search-wrap {
    position: relative;
    max-width: 280px;
    width: 100%;
}
.blog-search-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tx-muted);
    font-size: 0.82rem;
    pointer-events: none;
}
.blog-search-input {
    width: 100%;
    padding: 11px 16px 11px 42px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.88rem;
    background: #fff;
    color: var(--tx);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.blog-search-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(45,123,69,.1);
}

/* ──────────────────────────────────────────────────────────────────────────
   LISTING PAGE — Card Grid
────────────────────────────────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
@media (max-width: 1100px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .blog-grid { grid-template-columns: 1fr; gap: 20px; } }

/* ── Card ── */
.blog-card-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.blog-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(13,26,38,.13);
    border-color: var(--green);
}
.blog-card-cover {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--primary);
    flex-shrink: 0;
}
.blog-card-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.blog-card-item:hover .blog-card-cover img { transform: scale(1.07); }
.blog-cover-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-size: 2.8rem; font-weight: 800;
    color: rgba(255,255,255,.14);
    background: linear-gradient(135deg, #0d1a26 0%, #1e3a52 100%);
    letter-spacing: -2px;
}
.blog-badge-category {
    position: absolute; top: 14px; left: 14px;
    background: rgba(45,123,69,.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-family: var(--font-head);
    font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
}
.blog-card-content {
    padding: 24px;
    display: flex; flex-direction: column; flex: 1;
}
.blog-card-title {
    font-family: var(--font-head);
    font-size: 1.1rem; font-weight: 700;
    line-height: 1.45; color: var(--tx);
    margin-bottom: 10px;
}
.blog-card-title a { color: inherit; text-decoration: none; transition: color var(--transition); }
.blog-card-title a:hover { color: var(--green); }
.blog-card-excerpt {
    font-size: 0.88rem; color: var(--tx-muted);
    line-height: 1.7; margin-bottom: 20px; flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-footer {
    display: flex; align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem; color: var(--tx-faint); gap: 8px;
}
.blog-read-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-head);
    font-size: 0.82rem; font-weight: 700;
    color: var(--green); text-decoration: none;
    transition: gap var(--transition);
}
.blog-card-item:hover .blog-read-link { gap: 10px; }

/* ── Empty State ── */
.blog-empty-state {
    text-align: center; padding: 80px 20px;
    color: var(--tx-muted); grid-column: 1 / -1;
}
.blog-empty-state i { font-size: 3.5rem; opacity: .2; display: block; margin-bottom: 20px; }
.blog-empty-state h4 { font-family: var(--font-head); color: var(--tx); }


/* ──────────────────────────────────────────────────────────────────────────
   DETAIL PAGE — Dark Hero Banner
────────────────────────────────────────────────────────────────────────── */
.bh {                                         /* Blog Hero */
    background: var(--primary);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

/* decorative radial glows — clipped to hero only */
.bh::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100%;                            /* only inside hero, not below */
    background:
        radial-gradient(ellipse 700px 500px at 80% 40%, rgba(45,123,69,.18) 0%, transparent 65%),
        radial-gradient(ellipse 500px 400px at 15% 70%, rgba(45,123,69,.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}
/* subtle noise texture */
.bh::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: .6;
    z-index: 1;
}

.bh__inner { position: relative; z-index: 2; }

/* Category pill */
.bh__cat {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(45,123,69,.2);
    border: 1px solid rgba(45,123,69,.45);
    color: #6ee7a0;
    font-family: var(--font-head);
    font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.4px;
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
}

/* Title */
.bh__title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800; line-height: 1.18;
    letter-spacing: -.04em;
    color: #fff;
    max-width: 780px;
    margin-bottom: 28px;
}

/* Meta row */
.bh__meta {
    display: flex; align-items: center;
    gap: 6px 16px; flex-wrap: wrap;
    font-size: 0.88rem; color: rgba(255,255,255,.5);
}
.bh__meta-item {
    display: inline-flex; align-items: center; gap: 7px;
}
.bh__meta-item i { color: #6ee7a0; font-size: .82rem; }
.bh__meta-sep { opacity: .25; }



/* ──────────────────────────────────────────────────────────────────────────
   DETAIL PAGE — Master 3-column Grid: Gallery | Article | Sidebar
────────────────────────────────────────────────────────────────────────── */
.bd {
    padding: 72px 0 120px;
    background: #f8fafc;
    position: relative;
    z-index: 5;
}

/* 3-column: Gallery(fixed) | Content(flex) | Sidebar(fixed) */
.bd__master {
    display: grid;
    grid-template-columns: 360px 1fr 260px;
    gap: 36px;
    align-items: start;
}
@media (max-width: 1200px) {
    .bd__master { grid-template-columns: 300px 1fr 240px; gap: 28px; }
}
@media (max-width: 960px) {
    /* Image gallery + sidebar collapse to full width above article */
    .bd__master {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .bd__gallery-panel { order: 1; }
    .bd__content-panel { order: 3; }
    .bd__sidebar        { order: 2; }
}

/* ──────────────────────────────────────────────────────────────────────────
   DETAIL PAGE — Left Gallery Panel
────────────────────────────────────────────────────────────────────────── */
.bd__gallery-panel {
    position: sticky;
    top: 88px;
}

/* ── Main Image Viewer ── */
.bd__main-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 18px;
    overflow: hidden;
    background: var(--primary);
    box-shadow: 0 8px 32px rgba(13,26,38,.14);
    cursor: zoom-in;
}
.bd__main-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.18s ease, transform 0.5s ease;
}
.bd__main-img-wrap:hover .bd__main-img {
    transform: scale(1.03);
}
.bd__img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-size: 4rem; font-weight: 800;
    color: rgba(255,255,255,.08);
    background: linear-gradient(135deg, #0d1a26 0%, #162d3e 100%);
}

/* Zoom button on main image */
.bd__zoom-btn {
    position: absolute;
    top: 12px; right: 12px;
    width: 36px; height: 36px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: .85rem;
    transition: background var(--transition), transform var(--transition);
    z-index: 5;
}
.bd__zoom-btn:hover {
    background: rgba(255,255,255,.35);
    transform: scale(1.1);
}

/* Image counter badge */
.bd__img-counter {
    position: absolute;
    bottom: 12px; right: 12px;
    background: rgba(13,26,38,.65);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,.85);
    font-family: var(--font-head);
    font-size: 11px; font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    pointer-events: none;
    z-index: 5;
    position: relative;
    margin-top: 8px;
    text-align: right;
}

/* ── Thumbnail Strip ── */
.bd__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);     /* 4 thumbs per row */
    gap: 8px;
    margin-top: 10px;
}
@media (max-width: 960px) {
    .bd__thumbs {
        grid-template-columns: repeat(6, 1fr); /* wider on mobile */
    }
}

.bd__thumb {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 10px;
    overflow: hidden;
    border: 2.5px solid transparent;
    padding: 0;
    cursor: pointer;
    background: var(--surface);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.bd__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}
.bd__thumb:hover {
    border-color: rgba(45,123,69,.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45,123,69,.2);
}
.bd__thumb:hover img {
    transform: scale(1.08);
}
.bd__thumb.active {
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(45,123,69,.25);
}

@media (max-width: 600px) {
    .bh { padding: 70px 0 80px; }
    .bh__title { font-size: 1.65rem; }
    .bd__thumbs { grid-template-columns: repeat(5, 1fr); }
}


/* ──────────────────────────────────────────────────────────────────────────
   DETAIL PAGE — Topics Covered (Key Headers)
────────────────────────────────────────────────────────────────────────── */
.bd__topics {
    background: #fff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--green);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-xs);
}
.bd__topics-label {
    font-family: var(--font-head);
    font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.2px;
    color: var(--green);
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 8px;
}
.bd__topic-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--tx);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.82rem; font-weight: 600;
    margin: 4px;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.bd__topic-pill:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-pale);
}
.bd__topic-pill i { color: var(--green); font-size: .7rem; }

/* ──────────────────────────────────────────────────────────────────────────
   DETAIL PAGE — Key Highlights Callout
────────────────────────────────────────────────────────────────────────── */
.bd__highlights {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
}
.bd__highlights::before {
    content: '★';
    position: absolute; right: -10px; bottom: -20px;
    font-size: 120px; line-height: 1;
    color: rgba(45,123,69,.05);
    pointer-events: none;
}
.bd__highlights-label {
    font-family: var(--font-head);
    font-size: 1rem; font-weight: 800;
    color: #166534;
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
}
.bd__highlights-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.bd__highlights-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.95rem; color: #15803d;
    font-weight: 500; line-height: 1.55;
}
.bd__check {
    width: 20px; height: 20px;
    background: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
}
.bd__check i { color: #fff; font-size: .6rem; }

/* ──────────────────────────────────────────────────────────────────────────
   DETAIL PAGE — CKEditor Article Body
────────────────────────────────────────────────────────────────────────── */
.bd__content {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.9;
    color: #334155;
}
.bd__content h2 {
    font-family: var(--font-head);
    font-size: 1.5rem; font-weight: 800;
    color: var(--primary);
    margin: 44px 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    letter-spacing: -.02em;
}
.bd__content h3 {
    font-family: var(--font-head);
    font-size: 1.2rem; font-weight: 700;
    color: var(--primary);
    margin: 36px 0 12px;
    letter-spacing: -.01em;
}
.bd__content h4 {
    font-family: var(--font-head);
    font-size: 1rem; font-weight: 700;
    color: var(--primary);
    margin: 24px 0 8px;
}
.bd__content p { margin-bottom: 22px; }
.bd__content ul, .bd__content ol {
    padding-left: 1.6rem;
    margin-bottom: 22px;
}
.bd__content li { margin-bottom: 8px; }
.bd__content a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.bd__content a:hover { color: var(--green-light); }
.bd__content strong { color: var(--tx); font-weight: 700; }
.bd__content blockquote {
    border-left: 4px solid var(--green);
    margin: 32px 0;
    padding: 18px 24px;
    background: var(--green-pale);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: #166534;
    font-style: italic;
    font-size: 1.05rem;
}
.bd__content code {
    background: #f1f5f9;
    border-radius: 4px;
    padding: 2px 7px;
    font-size: .87em;
    color: #0f172a;
    font-family: 'Courier New', monospace;
}
.bd__content pre {
    background: #0f172a;
    color: #e2e8f0;
    border-radius: var(--radius);
    padding: 22px 24px;
    overflow-x: auto;
    margin: 24px 0;
    font-size: .9rem;
    line-height: 1.7;
}
.bd__content pre code { background: none; color: inherit; padding: 0; }
.bd__content img {
    max-width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    margin: 24px 0;
}
.bd__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: .93rem;
}
.bd__content th {
    background: var(--primary);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-family: var(--font-head);
    font-weight: 700;
}
.bd__content td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--tx-body);
}
.bd__content tr:nth-child(even) td { background: var(--surface); }

/* ──────────────────────────────────────────────────────────────────────────
   DETAIL PAGE — Section Divider Label
────────────────────────────────────────────────────────────────────────── */
.bd__section-label {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-head);
    font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.4px;
    color: var(--tx-muted);
    margin-bottom: 20px;
}
.bd__section-label::after {
    content: '';
    flex: 1; height: 1px;
    background: var(--border);
}

/* ──────────────────────────────────────────────────────────────────────────
   DETAIL PAGE — YouTube Embed
────────────────────────────────────────────────────────────────────────── */
.bd__video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0; overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 8px 0 28px;
}
.bd__video-wrap iframe {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* ──────────────────────────────────────────────────────────────────────────
   DETAIL PAGE — Gallery Grid
────────────────────────────────────────────────────────────────────────── */
.bd__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 12px;
    margin: 8px 0 28px;
}
.bd__gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
    aspect-ratio: 4/3;
    background: var(--primary);
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition), box-shadow var(--transition);
}
.bd__gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-sm);
}
.bd__gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

/* ──────────────────────────────────────────────────────────────────────────
   DETAIL PAGE — Back Button
────────────────────────────────────────────────────────────────────────── */
.bd__back {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-head);
    font-size: 13px; font-weight: 700;
    color: var(--green);
    border: 1.5px solid var(--green);
    padding: 11px 24px;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    margin-top: 52px;
}
.bd__back:hover {
    background: var(--green);
    color: #fff;
    box-shadow: var(--shadow-green);
}

/* ──────────────────────────────────────────────────────────────────────────
   DETAIL PAGE — Sticky Sidebar
────────────────────────────────────────────────────────────────────────── */
.bd__sidebar {
    position: sticky;
    top: 88px;
    display: flex; flex-direction: column; gap: 20px;
}
.bd__card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-xs);
}
.bd__card-title {
    font-family: var(--font-head);
    font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.3px;
    color: var(--tx-muted);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

/* Info list rows */
.bd__info-row {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.9rem; color: var(--tx-body);
    padding: 10px 0;
    border-bottom: 1px solid var(--surface-2);
}
.bd__info-row:last-child { border-bottom: none; padding-bottom: 0; }
.bd__info-icon {
    width: 32px; height: 32px;
    background: var(--green-pale);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.bd__info-icon i { color: var(--green); font-size: .8rem; }
.bd__info-label { font-size: .72rem; color: var(--tx-faint); font-weight: 600; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .06em; }
.bd__info-value { font-weight: 600; color: var(--tx); font-size: .9rem; }

/* Share buttons */
.bd__share-btn {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.85rem; font-weight: 700;
    font-family: var(--font-head);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: var(--radius);
    transition: all var(--transition);
    margin-bottom: 8px;
}
.bd__share-btn:last-child { margin-bottom: 0; }
.bd__share-btn--x   { background: #e8f4ff; color: #0f1419; }
.bd__share-btn--li  { background: #e8f4fb; color: #0077b5; }
.bd__share-btn--wa  { background: #e8fdf0; color: #128c7e; }
.bd__share-btn:hover { transform: translateX(4px); }
.bd__share-icon {
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: .9rem;
}
.bd__share-btn--x  .bd__share-icon { background: #1da1f2; color: #fff; }
.bd__share-btn--li .bd__share-icon { background: #0077b5; color: #fff; }
.bd__share-btn--wa .bd__share-icon { background: #25d366; color: #fff; }

/* Categories in sidebar */
.bd__cats { display: flex; flex-wrap: wrap; gap: 6px; }
.bd__cat-pill {
    font-family: var(--font-head);
    font-size: 11px; font-weight: 700;
    padding: 5px 13px;
    border-radius: var(--radius-pill);
    background: var(--surface);
    color: var(--tx-muted);
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all var(--transition);
    letter-spacing: .04em;
}
.bd__cat-pill:hover,
.bd__cat-pill.active { background: var(--green); border-color: var(--green); color: #fff; }

/* ──────────────────────────────────────────────────────────────────────────
   DETAIL PAGE — Related Articles
────────────────────────────────────────────────────────────────────────── */
.bd__related {
    padding: 80px 0 120px;
    background: #fff;
    border-top: 1px solid var(--border);
}
.bd__related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 36px;
}
.rc {                            /* related card */
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.rc:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(13,26,38,.1);
    border-color: var(--green);
}
.rc__cover {
    height: 150px; overflow: hidden;
    background: var(--primary);
}
.rc__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.rc:hover .rc__cover img { transform: scale(1.06); }
.rc__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.rc__cat {
    font-family: var(--font-head);
    font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--green);
    margin-bottom: 7px;
}
.rc__title {
    font-family: var(--font-head);
    font-size: .95rem; font-weight: 700;
    color: var(--tx); text-decoration: none;
    line-height: 1.42; flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition);
}
.rc__title:hover { color: var(--green); }
.rc__meta { font-size: .78rem; color: var(--tx-faint); margin-top: 12px; }
