/* ═══════════════════════════════════════════════════
   BLOG — PREMIUM GREEN & WHITE DESIGN v2
   Primary: #2563eb  Light: #e8f5e9  Dark: #0d7a3e
   ═══════════════════════════════════════════════════ */

/* ── Reading Progress Bar ────────────────────────── */
.blog-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #60a5fa, #2563eb, #60a5fa);
    background-size: 300% 100%;
    animation: barGlow 3s ease infinite;
    z-index: 9999;
    transition: width 0.12s linear;
    box-shadow: 0 0 20px rgba(30, 168, 88, 0.6), 0 0 6px rgba(30, 168, 88, 0.3);
}

@keyframes barGlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ══════════════════════════════════════════════════
   HERO — LISTING
   ══════════════════════════════════════════════════ */
.blog-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d7a3e 0%, #2563eb 30%, #60a5fa 60%, #2563eb 100%);
    padding: 80px 24px 70px;
    text-align: center;
}

.blog-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.blog-hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .12);
}

.blog-hero-circle-1 {
    width: 500px;
    height: 500px;
    top: -180px;
    right: -100px;
    animation: heroFloat 18s ease-in-out infinite;
}

.blog-hero-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -60px;
    animation: heroFloat 14s ease-in-out infinite reverse;
    border-color: rgba(255, 255, 255, .08);
}

.blog-hero-circle-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 15%;
    background: rgba(255, 255, 255, .04);
    animation: heroFloat 10s ease-in-out infinite 2s;
}

.blog-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 28px 28px;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

.blog-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.blog-hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.blog-hero-highlight {
    background: linear-gradient(90deg, #bfdbfe, #dbeafe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .88);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.blog-hero-stats-row {
    display: inline-flex;
    gap: 14px;
}

.blog-hero-stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 16px;
    padding: 14px 22px;
    color: #fff;
    transition: transform .3s, background .3s;
}

.blog-hero-stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .22);
}

.blog-hero-stat-card i {
    font-size: 22px;
    opacity: .8;
}

.blog-hero-stat-card strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.1;
}

.blog-hero-stat-card small {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .6px;
    opacity: .75;
    font-weight: 600;
}

/* ══════════════════════════════════════════════════
   MAIN CONTAINER
   ══════════════════════════════════════════════════ */
.blog-container {
    background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
    min-height: 60vh;
    padding: 56px 24px 80px;
}

.blog-wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════
   SPOTLIGHT (FEATURED POST)
   ══════════════════════════════════════════════════ */
.blog-spotlight {
    margin-bottom: 60px;
}

.blog-spotlight-link {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 40px rgba(30, 168, 88, .08), 0 1px 4px rgba(0, 0, 0, .04);
    border: 1px solid rgba(30, 168, 88, .06);
    transition: all .45s cubic-bezier(.4, 0, .2, 1);
    position: relative;
}

.blog-spotlight-link:hover {
    box-shadow: 0 20px 60px rgba(30, 168, 88, .18), 0 2px 10px rgba(0, 0, 0, .05);
    transform: translateY(-8px);
    color: inherit;
    text-decoration: none;
}

.blog-spotlight-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.blog-spotlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.4, 0, .2, 1);
}

.blog-spotlight-link:hover .blog-spotlight-img img {
    transform: scale(1.08);
}

.blog-spotlight-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #60a5fa, #bfdbfe);
    color: rgba(255, 255, 255, .3);
    font-size: 90px;
}

.blog-spotlight-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, .15), transparent);
}

.blog-spotlight-body {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-spotlight-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.blog-spotlight-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #111;
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: -.5px;
    transition: color .3s;
}

.blog-spotlight-link:hover .blog-spotlight-title {
    color: #2563eb;
}

.blog-spotlight-excerpt {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-spotlight-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #e8f5e9;
    margin-bottom: 16px;
}

.blog-spotlight-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    padding: 10px 24px;
    border: 2px solid #2563eb;
    border-radius: 50px;
    transition: all .3s;
    align-self: flex-start;
}

.blog-spotlight-link:hover .blog-spotlight-cta {
    background: #2563eb;
    color: #fff;
    transform: translateX(4px);
}

/* ── Badges ──────────────────────────────────────── */
.blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    background: #e8f5e9;
    color: #0d7a3e;
    white-space: nowrap;
    transition: all .2s;
}

.blog-badge-featured {
    background: linear-gradient(135deg, #2563eb, #0d7a3e);
    color: #fff;
    box-shadow: 0 3px 12px rgba(30, 168, 88, .3);
}

.blog-badge-glass {
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .9);
}

.blog-badge-sm {
    padding: 3px 10px;
    font-size: 11px;
}

/* ── Avatar ──────────────────────────────────────── */
.blog-meta-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(30, 168, 88, .2);
}

.blog-avatar-sm {
    width: 32px;
    height: 32px;
    font-size: 13px;
}

.blog-avatar-lg {
    width: 46px;
    height: 46px;
    font-size: 18px;
}

.blog-name {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #111;
}

.blog-date {
    display: block;
    font-size: 12px;
    color: #888;
}

.blog-meta-info {
    display: flex;
    gap: 14px;
}

.blog-meta-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #2563eb;
    font-weight: 500;
}

/* ── Section Header ──────────────────────────────── */
.blog-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
}

.blog-section-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.blog-section-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(30, 168, 88, .2);
    flex-shrink: 0;
}

.blog-section-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #111;
    letter-spacing: -.3px;
    margin: 0;
}

.blog-section-sub {
    font-size: 13px;
    color: #888;
    margin: 2px 0 0;
}

.blog-results-pill {
    font-size: 12px;
    color: #2563eb;
    font-weight: 700;
    background: #e8f5e9;
    padding: 6px 16px;
    border-radius: 50px;
    white-space: nowrap;
}

/* ══════════════════════════════════════════════════
   CARD GRID
   ══════════════════════════════════════════════════ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

/* ── Blog Card ───────────────────────────────────── */
.blog-card {
    animation: cardReveal .6s cubic-bezier(.4, 0, .2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .04);
    border: 1px solid rgba(30, 168, 88, .06);
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
}

.blog-card-inner:hover {
    box-shadow: 0 16px 48px rgba(30, 168, 88, .14), 0 4px 12px rgba(0, 0, 0, .04);
    transform: translateY(-10px);
    color: inherit;
    text-decoration: none;
}

.blog-card-hover-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    border-radius: 0 0 20px 20px;
}

.blog-card-inner:hover .blog-card-hover-bar {
    transform: scaleX(1);
}

.blog-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #2563eb, #60a5fa, #bfdbfe);
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.blog-card-inner:hover .blog-card-img img {
    transform: scale(1.1);
}

.blog-card-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .3);
    font-size: 56px;
}

.blog-card-time {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #0d7a3e;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.blog-card-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #2563eb;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.blog-card-body {
    padding: 22px 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .3s;
}

.blog-card-inner:hover .blog-card-title {
    color: #2563eb;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #eff6ff;
    gap: 10px;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.blog-card-views {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #2563eb;
    font-weight: 600;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   PAGINATION
   ══════════════════════════════════════════════════ */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 56px 0 16px;
}

.blog-pg-nums {
    display: flex;
    gap: 6px;
}

.blog-pg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #0d7a3e;
    background: #fff;
    border: 1px solid #dbeafe;
    transition: all .25s;
    cursor: pointer;
}

.blog-pg-btn:hover {
    background: #e8f5e9;
    border-color: #2563eb;
    color: #2563eb;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(30, 168, 88, .15);
}

.blog-pg-active {
    background: linear-gradient(135deg, #2563eb, #0d7a3e) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 6px 20px rgba(30, 168, 88, .35);
}

.blog-pg-arrow {
    width: auto;
    padding: 0 18px;
    gap: 6px;
    font-size: 18px;
}

.blog-pg-disabled {
    opacity: .3;
    pointer-events: none;
}

/* ── Empty ───────────────────────────────────────── */
.blog-empty {
    text-align: center;
    padding: 90px 24px;
    background: #fff;
    border-radius: 28px;
    border: 2px dashed #dbeafe;
}

.blog-empty-icon {
    font-size: 64px;
    color: #60a5fa;
    margin-bottom: 20px;
}

.blog-empty h3 {
    font-weight: 800;
    font-size: 1.5rem;
    color: #111;
    margin-bottom: 8px;
}

.blog-empty p {
    color: #777;
    font-size: 15px;
    max-width: 400px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════
   DETAIL PAGE — HERO
   ══════════════════════════════════════════════════ */
.blog-detail-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: linear-gradient(150deg, #0d7a3e 0%, #2563eb 35%, #60a5fa 65%, #2563eb 100%);
}

.blog-detail-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: .18;
    mix-blend-mode: overlay;
}

.blog-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 122, 62, .5) 0%, rgba(30, 168, 88, .1) 100%);
    z-index: 1;
}

.blog-detail-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.blog-dh-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .1);
}

.blog-dh-circle-1 {
    width: 400px;
    height: 400px;
    top: -120px;
    right: -60px;
    animation: heroFloat 16s ease-in-out infinite;
}

.blog-dh-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -40px;
    left: -40px;
    background: rgba(255, 255, 255, .03);
    animation: heroFloat 12s ease-in-out infinite reverse;
}

.blog-detail-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 880px;
    padding: 40px 40px 56px;
    width: 100%;
    margin: 0 auto;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .25);
    transition: all .25s;
}

.blog-back-link:hover {
    background: rgba(255, 255, 255, .28);
    color: #fff;
    text-decoration: none;
    transform: translateX(-5px);
}

.blog-detail-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.blog-detail-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .12);
}

.blog-detail-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.blog-detail-stat-pills {
    display: flex;
    gap: 16px;
}

.blog-detail-stat-pills span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .15);
}

/* ══════════════════════════════════════════════════
   DETAIL — LAYOUT
   ══════════════════════════════════════════════════ */
.blog-detail-wrap {
    background: linear-gradient(180deg, #eff6ff, #fff);
    padding-bottom: 80px;
}

.blog-detail-layout {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    display: flex;
    gap: 20px;
}

/* ── Share Sidebar ───────────────────────────────── */
.blog-share-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 10px;
    height: fit-content;
    flex-shrink: 0;
}

.blog-share-label {
    font-size: 10px;
    font-weight: 800;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.blog-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #fff;
    color: #2563eb;
    font-size: 17px;
    border: 1px solid #dbeafe;
    transition: all .3s;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.blog-share-btn:hover {
    transform: translateY(-4px) scale(1.05);
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(30, 168, 88, .18);
}

.blog-share-btn:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.blog-share-li:hover {
    background: #0077b5;
    color: #fff;
    border-color: #0077b5;
}

.blog-share-cp:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

/* ── Article ─────────────────────────────────────── */
.blog-article {
    flex: 1;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .04), 0 1px 3px rgba(0, 0, 0, .02);
    border: 1px solid rgba(30, 168, 88, .05);
    margin-top: -40px;
    overflow: hidden;
    min-width: 0;
}

.blog-article-content {
    padding: 50px 48px;
    font-size: 17px;
    line-height: 1.9;
    color: #333;
}

.blog-article-content h1,
.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
    color: #111;
    margin-top: 40px;
    margin-bottom: 16px;
    letter-spacing: -.3px;
}

.blog-article-content h2 {
    font-size: 1.7rem;
    font-weight: 800;
    padding-bottom: 14px;
    border-bottom: 3px solid #e8f5e9;
    position: relative;
}

.blog-article-content h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
}

.blog-article-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0d7a3e;
}

.blog-article-content p {
    margin-bottom: 22px;
}

.blog-article-content a {
    color: #2563eb;
    text-decoration: underline;
    text-decoration-style: wavy;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    font-weight: 500;
    transition: color .2s;
}

.blog-article-content a:hover {
    color: #0d7a3e;
}

.blog-article-content blockquote {
    margin: 32px 0;
    padding: 28px 30px;
    border-left: 5px solid #2563eb;
    background: linear-gradient(135deg, #eff6ff, #e8f5e9);
    border-radius: 0 18px 18px 0;
    font-style: italic;
    color: #333;
    position: relative;
}

.blog-article-content blockquote::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 16px;
    font-size: 48px;
    color: rgba(30, 168, 88, .15);
    font-family: Georgia, serif;
    line-height: 1;
}

.blog-article-content ul,
.blog-article-content ol {
    margin-left: 24px;
    margin-bottom: 22px;
}

.blog-article-content li {
    margin-bottom: 10px;
    padding-left: 6px;
}

.blog-article-content li::marker {
    color: #2563eb;
}

.blog-article-content img {
    max-width: 100%;
    border-radius: 18px;
    margin: 28px 0;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
}

.blog-article-content code {
    background: #e8f5e9;
    color: #0d7a3e;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: .9em;
}

.blog-article-content pre {
    background: linear-gradient(135deg, #0c1f14, #122b1c);
    color: #bfdbfe;
    border-radius: 18px;
    padding: 28px;
    overflow-x: auto;
    margin: 28px 0;
    border: 1px solid rgba(30, 168, 88, .3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.blog-article-content pre code {
    background: none;
    padding: 0;
    color: #bfdbfe;
}

/* ── Article Footer ──────────────────────────────── */
.blog-article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 48px;
    background: linear-gradient(135deg, #eff6ff, #e8f5e9);
    border-top: 1px solid #dbeafe;
}

.blog-article-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
}

.blog-article-stats {
    display: flex;
    gap: 18px;
}

.blog-article-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #0d7a3e;
    font-weight: 600;
}

/* ══════════════════════════════════════════════════
   RELATED POSTS
   ══════════════════════════════════════════════════ */
.blog-related {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 56px;
}

.blog-related-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.blog-related-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .04);
    border: 1px solid rgba(30, 168, 88, .05);
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

.blog-related-card:hover {
    box-shadow: 0 12px 36px rgba(30, 168, 88, .14);
    transform: translateY(-6px);
    color: inherit;
    text-decoration: none;
}

.blog-related-img {
    height: 150px;
    overflow: hidden;
    background: linear-gradient(135deg, #2563eb, #60a5fa, #bfdbfe);
}

.blog-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.blog-related-card:hover .blog-related-img img {
    transform: scale(1.1);
}

.blog-related-body {
    padding: 18px 20px;
}

.blog-related-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    margin: 8px 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .25s;
}

.blog-related-card:hover .blog-related-body h4 {
    color: #2563eb;
}

.blog-related-date {
    font-size: 12px;
    color: #2563eb;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 960px) {
    .blog-spotlight-link {
        grid-template-columns: 1fr;
    }

    .blog-spotlight-img {
        min-height: 260px;
    }

    .blog-spotlight-body {
        padding: 28px 24px;
    }

    .blog-related-grid {
        grid-template-columns: 1fr;
    }

    .blog-share-sidebar {
        position: static;
        flex-direction: row;
        justify-content: center;
        padding: 16px 0;
    }

    .blog-detail-layout {
        flex-direction: column;
    }

    .blog-article {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 60px 16px 52px;
    }

    .blog-hero-title {
        font-size: 2.1rem;
    }

    .blog-hero-stats-row {
        flex-direction: column;
        gap: 10px;
    }

    .blog-hero-stat-card {
        justify-content: center;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .blog-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-detail-hero {
        min-height: 320px;
    }

    .blog-detail-hero-inner {
        padding: 24px 20px 40px;
    }

    .blog-detail-title {
        font-size: 1.9rem;
    }

    .blog-detail-author-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-article-content {
        padding: 28px 22px;
        font-size: 16px;
    }

    .blog-article-content h2 {
        font-size: 1.4rem;
    }

    .blog-article-footer {
        padding: 20px 22px;
    }

    .blog-pagination {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .blog-hero-title {
        font-size: 1.75rem;
        letter-spacing: -.5px;
    }

    .blog-hero-title br {
        display: none;
    }

    .blog-spotlight-title {
        font-size: 1.35rem;
    }

    .blog-detail-title {
        font-size: 1.55rem;
    }

    .blog-card-img {
        height: 180px;
    }

    .blog-pg-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}