* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #111827;
    --primary-light: #1f2937;
    --accent: #2563eb;
    --accent-dark: #1d4ed8;
    --text: #111827;
    --muted: #6b7280;
    --light: #f8fafc;
    --border: #e5e7eb;
    --white: #ffffff;
    --success: #16a34a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}


/* ================= HEADER ================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--border);
}

.nav-container {
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 19px;
    font-weight: 800;
}

.logo-mark {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    color: white;
    background: var(--accent);

    font-weight: 800;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;

    margin-left: auto;
    margin-right: 30px;
}

.desktop-nav a {
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;

    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--accent);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 18px;

    border-radius: 8px;

    color: white;
    background: var(--accent);

    font-size: 14px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.nav-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.menu-button {
    display: none;

    width: 40px;
    height: 40px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: white;

    cursor: pointer;
}

.menu-button span {
    display: block;

    width: 18px;
    height: 2px;

    margin: 4px auto;

    background: var(--primary);
}

.mobile-menu {
    display: none;
}


/* ================= HERO ================= */

.hero {
    padding: 92px 0 80px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(37, 99, 235, 0.10),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 100%
        );

    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;

    gap: 70px;

    align-items: center;
}

.eyebrow,
.section-label {
    display: inline-block;

    color: var(--accent);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.hero h1 {
    max-width: 680px;

    margin-top: 16px;

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.04;

    letter-spacing: -2.5px;
}

.hero h1 span {
    display: block;
    color: var(--accent);
}

.hero-text {
    max-width: 610px;

    margin-top: 24px;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 30px;
}

.primary-button,
.secondary-button {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 22px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 750;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.primary-button {
    color: white;
    background: var(--accent);
}

.primary-button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.secondary-button {
    color: var(--primary);
    background: white;
    border: 1px solid var(--border);
}

.secondary-button:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 15px;

    color: var(--muted);
    font-size: 13px;
}

.hero-note span {
    color: var(--success);
    font-weight: 800;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    max-width: 650px;

    margin-top: 42px;

    border-top: 1px solid var(--border);
    padding-top: 22px;
}

.hero-benefit {
    display: flex;
    flex-direction: column;

    gap: 2px;

    padding-right: 18px;
}

.hero-benefit:not(:last-child) {
    border-right: 1px solid var(--border);
    margin-right: 18px;
}

.hero-benefit strong {
    font-size: 14px;
}

.hero-benefit span {
    color: var(--muted);
    font-size: 12px;
}


/* ================= DASHBOARD ================= */

.hero-preview {
    position: relative;
}

.dashboard-window {
    background: white;

    border: 1px solid #dbe3ec;
    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.12),
        0 8px 20px rgba(15, 23, 42, 0.06);

    transform: rotate(1deg);
}

.window-header {
    height: 48px;

    display: flex;
    align-items: center;

    padding: 0 16px;

    border-bottom: 1px solid var(--border);
    background: #f8fafc;
}

.window-dots {
    display: flex;
    gap: 5px;
}

.window-dots span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #cbd5e1;
}

.window-title {
    margin: auto;

    color: #64748b;

    font-size: 11px;
    font-weight: 700;
}

.dashboard-content {
    padding: 22px;
}

.dashboard-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin-bottom: 16px;
}

.dashboard-top > div {
    padding: 14px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: #fafafa;
}

.dashboard-top small {
    display: block;

    color: var(--muted);
    font-size: 10px;
}

.dashboard-top strong {
    display: block;

    margin-top: 4px;

    font-size: 24px;
}

.dashboard-card {
    padding: 16px;

    border: 1px solid var(--border);
    border-radius: 10px;
}

.dashboard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 8px;

    font-size: 13px;
}

.status-badge {
    padding: 4px 8px;

    border-radius: 20px;

    color: #166534;
    background: #dcfce7;

    font-size: 9px;
    font-weight: 700;
}

.appointment {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 0;

    border-bottom: 1px solid #f1f5f9;
}

.appointment:last-child {
    border-bottom: none;
}

.appointment-avatar {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: var(--accent);
    background: #eff6ff;

    font-size: 9px;
    font-weight: 800;
}

.appointment-info {
    min-width: 0;
    flex: 1;

    display: flex;
    flex-direction: column;
}

.appointment-info strong {
    font-size: 11px;
}

.appointment-info span {
    color: var(--muted);
    font-size: 9px;
}

.appointment-status {
    color: #64748b;
    font-size: 9px;
    font-weight: 700;
}

.dashboard-footer {
    display: flex;
    justify-content: space-between;

    margin-top: 15px;

    color: #64748b;

    font-size: 10px;
}

.dashboard-footer > div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.online-dot {
    width: 7px;
    height: 7px;

    display: inline-block;

    border-radius: 50%;

    background: #22c55e;
}


/* ================= TRUST BAR ================= */

.trust-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: white;
}

.trust-content {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.trust-content > span {
    color: #94a3b8;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}

.trust-items {
    display: flex;
    gap: 30px;

    color: #64748b;

    font-size: 12px;
    font-weight: 600;
}


/* ================= SECTIONS ================= */

.problem-section,
.features-section,
.how-section,
.use-cases,
.pricing-section {
    padding: 100px 0;
}

.section-heading {
    max-width: 720px;

    margin-bottom: 55px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-heading h2 {
    margin-top: 12px;

    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.1;

    letter-spacing: -1.5px;
}

.section-heading p {
    margin-top: 18px;

    color: var(--muted);

    font-size: 16px;
}


/* ================= PROBLEM ================= */

.problem-section {
    background: #f8fafc;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.problem-card {
    padding: 30px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: white;
}

.problem-icon {
    color: var(--accent);

    font-size: 12px;
    font-weight: 800;
}

.problem-card h3 {
    margin-top: 25px;

    font-size: 20px;
}

.problem-card p {
    margin-top: 10px;

    color: var(--muted);
    font-size: 14px;
}


/* ================= FEATURES ================= */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.feature-card {
    padding: 30px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: white;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(15, 23, 42, 0.07);
}

.feature-card.featured {
    border-color: #bfdbfe;
    background: #f8fbff;
}

.feature-number {
    color: var(--accent);

    font-size: 11px;
    font-weight: 800;
}

.feature-card h3 {
    margin-top: 20px;

    font-size: 19px;
}

.feature-card p {
    margin-top: 9px;

    color: var(--muted);
    font-size: 13px;
}

.feature-card ul {
    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 7px;

    margin-top: 20px;
}

.feature-card li {
    color: #475569;

    font-size: 12px;
}

.feature-card li::before {
    content: "✓";

    margin-right: 8px;

    color: var(--success);
    font-weight: 800;
}


/* ================= OFFLINE ================= */

.offline-section {
    padding: 100px 0;

    background: #111827;
    color: white;
}

.offline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.offline-content .section-label {
    color: #60a5fa;
}

.offline-content h2 {
    max-width: 600px;

    margin-top: 14px;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;

    letter-spacing: -1.5px;
}

.offline-content > p {
    max-width: 570px;

    margin-top: 20px;

    color: #cbd5e1;

    font-size: 16px;
}

.offline-points {
    display: flex;
    flex-direction: column;

    gap: 22px;

    margin-top: 35px;
}

.offline-point {
    display: flex;
    gap: 14px;
}

.check {
    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: #86efac;
    background: rgba(34, 197, 94, 0.12);

    font-size: 12px;
    font-weight: 800;
}

.offline-point strong {
    display: block;

    font-size: 14px;
}

.offline-point span {
    display: block;

    margin-top: 2px;

    color: #94a3b8;

    font-size: 12px;
}


/* ================= NETWORK VISUAL ================= */

.network-card {
    padding: 25px;

    border: 1px solid #334155;
    border-radius: 15px;

    background: #1e293b;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.25);
}

.network-title {
    color: #94a3b8;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.network-flow {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-top: 25px;
}

.network-node {
    width: 210px;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 18px;

    border: 1px solid #475569;
    border-radius: 10px;

    background: #0f172a;

    text-align: center;
}

.network-node > span {
    font-size: 22px;
}

.network-node strong {
    margin-top: 5px;

    font-size: 13px;
}

.network-node small {
    margin-top: 2px;

    color: #94a3b8;
    font-size: 9px;
}

.network-line {
    width: 1px;
    height: 35px;

    background: #475569;
}

.network-terminals {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 8px;
}

.terminal {
    padding: 12px 5px;

    border: 1px solid #475569;
    border-radius: 7px;

    color: #cbd5e1;

    background: #0f172a;

    text-align: center;

    font-size: 9px;
}

.network-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin-top: 22px;
    padding-top: 18px;

    border-top: 1px solid #334155;

    color: #94a3b8;

    font-size: 10px;
}


/* ================= HOW IT WORKS ================= */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.step {
    text-align: center;
}

.step-number {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto;

    border-radius: 50%;

    color: white;
    background: var(--accent);

    font-size: 17px;
    font-weight: 800;
}

.step h3 {
    margin-top: 20px;

    font-size: 18px;
}

.step p {
    max-width: 290px;

    margin: 8px auto 0;

    color: var(--muted);

    font-size: 13px;
}


/* ================= USE CASES ================= */

.use-cases {
    background: #f8fafc;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.use-case {
    padding: 28px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: white;
}

.use-case > span {
    color: var(--accent);

    font-size: 10px;
    font-weight: 800;
}

.use-case h3 {
    margin-top: 18px;

    font-size: 17px;
}

.use-case p {
    margin-top: 8px;

    color: var(--muted);

    font-size: 12px;
}


/* ================= PRICING ================= */

.pricing-card {
    display: grid;
    grid-template-columns: 1fr 360px;

    gap: 50px;

    padding: 55px;

    border: 1px solid #dbe3ec;
    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #f8fafc,
            #ffffff
        );

    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.06);
}

.pricing-content h2 {
    max-width: 550px;

    margin-top: 12px;

    font-size: 40px;
    line-height: 1.1;

    letter-spacing: -1.3px;
}

.pricing-content > p {
    max-width: 520px;

    margin-top: 16px;

    color: var(--muted);
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    margin-top: 28px;
}

.pricing-features span {
    color: #475569;

    font-size: 12px;
}

.price-box {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 30px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: white;

    text-align: center;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-size: 22px;
    font-weight: 700;
}

.price strong {
    font-size: 50px;
    line-height: 1;

    letter-spacing: -2px;
}

.period {
    margin-left: 5px;

    color: var(--muted);

    font-size: 13px;
}

.annual-price {
    margin-top: 12px;

    color: var(--muted);

    font-size: 12px;
}

.annual-price span {
    display: inline-block;

    margin-left: 5px;
    padding: 3px 7px;

    border-radius: 20px;

    color: #166534;
    background: #dcfce7;

    font-size: 9px;
    font-weight: 800;
}

.pricing-button {
    width: 100%;

    margin-top: 25px;
}

.price-box small {
    margin-top: 10px;

    color: #94a3b8;

    font-size: 10px;
}


/* ================= FINAL CTA ================= */

.final-cta {
    padding: 110px 0;

    background:
        radial-gradient(
            circle at center,
            rgba(37, 99, 235, 0.12),
            transparent 45%
        ),
        #f8fafc;

    text-align: center;
}

.final-cta h2 {
    max-width: 760px;

    margin: 14px auto 0;

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;

    letter-spacing: -1.5px;
}

.final-cta p {
    max-width: 550px;

    margin: 18px auto 0;

    color: var(--muted);
}

.large-button {
    margin-top: 30px;

    padding: 0 28px;
}

.cta-note {
    margin-top: 12px;

    color: #94a3b8;

    font-size: 11px;
}


/* ================= FOOTER ================= */

.footer {
    padding: 55px 0 25px;

    border-top: 1px solid var(--border);

    background: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;

    gap: 40px;
}

.footer-brand p {
    max-width: 300px;

    margin-top: 12px;

    color: var(--muted);

    font-size: 12px;
}

.footer-links {
    display: flex;
    align-items: flex-start;

    gap: 25px;
}

.footer-links a {
    color: #64748b;

    font-size: 12px;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;

    border-top: 1px solid var(--border);

    color: #94a3b8;

    font-size: 10px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .hero-grid,
    .offline-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 55px;
    }

    .hero-preview {
        max-width: 650px;
        width: 100%;
        margin: auto;
    }

    .problem-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .use-case-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card {
        grid-template-columns: 1fr;
    }

    .price-box {
        max-width: 420px;
        width: 100%;
        margin: auto;
    }

    .trust-items {
        flex-wrap: wrap;
        gap: 15px;
    }

}


@media (max-width: 700px) {

    .container {
        width: min(100% - 28px, 1160px);
    }

    .desktop-nav,
    .nav-cta {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .mobile-menu {
        display: none;

        padding: 15px;

        border-top: 1px solid var(--border);

        background: white;
    }

    .mobile-menu.active {
        display: flex;
        flex-direction: column;

        gap: 4px;
    }

    .mobile-menu a {
        padding: 12px;

        border-radius: 7px;

        font-size: 14px;
        font-weight: 600;
    }

    .mobile-menu a:hover {
        background: #f8fafc;
    }

    .mobile-menu .mobile-cta {
        margin-top: 5px;

        color: white;
        background: var(--accent);

        text-align: center;
    }

    .hero {
        padding: 65px 0 60px;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -1.8px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-benefits {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .hero-benefit {
        padding: 0;
    }

    .hero-benefit:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--border);

        margin: 0;
        padding-bottom: 15px;
    }

    .trust-content {
        flex-direction: column;
        align-items: flex-start;

        padding: 22px 0;
    }

    .trust-items {
        display: grid;
        grid-template-columns: 1fr 1fr;

        width: 100%;
    }

    .problem-section,
    .features-section,
    .how-section,
    .use-cases,
    .pricing-section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .problem-grid,
    .features-grid,
    .steps,
    .use-case-grid {
        grid-template-columns: 1fr;
    }

    .offline-section {
        padding: 70px 0;
    }

    .offline-grid {
        gap: 45px;
    }

    .network-terminals {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-content h2 {
        font-size: 32px;
    }

    .pricing-features {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .final-cta {
        padding: 80px 0;
    }

}


@media (max-width: 420px) {

    .hero h1 {
        font-size: 37px;
    }

    .dashboard-content {
        padding: 12px;
    }

    .dashboard-top strong {
        font-size: 19px;
    }

    .appointment-info span {
        font-size: 8px;
    }

}







/* Cards & Hover Effects */
.ts-blog-wrapper{
    padding:30px;
}
/* ==========================================================================
   TechService Business OS - Knowledge Hub Component
   Domain: business.techservice.ng
   ========================================================================== */

/* 1. Component Container */
.ts-blog-widget {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1e293b;
  box-sizing: border-box;
}

.ts-blog-widget * {
  box-sizing: border-box;
}

/* 2. Header Section */
.ts-blog-header {
  text-align: center;
  margin-bottom: 2rem;
}

.ts-badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2563eb;
  background-color: #eff6ff;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.ts-blog-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

/* 3. Category Filter Navigation */
.ts-tab-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.ts-tab-btn {
  background: #f1f5f9;
  border: 1px solid transparent;
  color: #475569;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  outline: none;
}

.ts-tab-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.ts-tab-btn:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.ts-tab-btn.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* 4. Article Grid Layout */
.ts-blog-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  min-height: 320px;
}

@media (min-width: 768px) {
  .ts-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ts-blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 5. Article Card Styling */
.ts-blog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  outline: none;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.2s ease, 
              border-color 0.2s ease;
}

.ts-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.ts-blog-card:focus-visible {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* Hidden state handled by JS cross-fade */
.ts-blog-card.is-hidden {
  display: none !important;
}

/* Card Elements */
.ts-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.ts-blog-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.75rem 0;
}

.ts-blog-card h3 a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ts-blog-card:hover h3 a,
.ts-blog-card h3 a:hover {
  color: #2563eb;
}

.ts-blog-card p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.ts-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}

.ts-link:hover {
  text-decoration: underline;
}

.header-capsule{
    font-size:15px;padding:0px 10px;height:25px;display:inline-block;border-radius: 5px; background-color: rgb(233, 130, 130);color:white
}