/* Extracted from b2b.html */
:root {
        --light-blue-bg: #EAF3FA;
        --navy-dark: #07132B;
        --navy-main: #0B2559;
        --brand-blue: #0A4FCC;
        --gray-text: #5A6A85;
        --white: #FFFFFF;
        --gray-bg: #F4F7FA;
    }
    
    body {
        background: var(--light-blue-bg);
        margin: 0;
        font-family: 'Inter', sans-serif;
        color: var(--navy-dark);
        overflow-x: hidden;
    }

    .learning-page-wrapper {
        padding-top: 100px;
        max-width: 1300px;
        margin: 0 auto;
        padding-left: 2rem;
        padding-right: 2rem;
        position: relative;
        z-index: 2;
    }

    /* Pill Menu Bar */
    .pill-nav-container {
        display: flex;
        justify-content: center;
        margin-bottom: 2.5rem;
        position: sticky;
        top: 80px;
        z-index: 900;
        margin-top: 1rem;
    }
    .pill-nav-inner {
        align-items: center;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        border-radius: 50px;
        padding: 8px;
        display: flex;
        gap: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    }
    .pill-home-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: #ffffff;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        padding: 0 !important;
        margin-left: 4px;
    }
    .pill-home-btn:hover {
        background: #f8f9fa !important;
    }
    .pill-divider {
        width: 1px;
        height: 24px;
        background: rgba(11, 37, 89, 0.15);
        margin: 0 8px;
    }
    .pill-nav-inner a {
        white-space: nowrap;
        text-decoration: none;
        color: var(--navy-main);
        font-size: 0.9rem;
        font-weight: 500;
        padding: 10px 20px;
        border-radius: 30px;
        transition: all 0.3s ease;
    }
    .pill-nav-inner a:hover {
        background: rgba(255, 255, 255, 0.9);
    }
    .pill-nav-inner a.active {
        background: var(--white);
        color: var(--brand-blue);
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        border: 1px solid rgba(10, 79, 204, 0.2);
    }

    /* Hero Section */
    .learning-hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        margin-bottom: 4rem;
        min-height: 500px;
    }
    .learning-hero-content {
        max-width: 800px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .learning-hero-bg {
        position: absolute;
        right: -10%;
        top: 0;
        width: 60%;
        height: 100%;
        background-image: none;
        background-size: cover;
        background-position: center;
        mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
        -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
        z-index: 1;
        opacity: 0.7;
        border-radius: 20px;
        mix-blend-mode: multiply;
    }
    .hero-label {
        color: var(--brand-blue);
        font-weight: 700;
        font-size: 0.8rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 1rem;
        display: inline-block;
    }
    .learning-hero h1 {
        font-size: 3.2rem;
        line-height: 1.15;
        margin-bottom: 1.5rem;
        color: var(--navy-dark);
        font-weight: 800;
    }
    .learning-hero p {
        font-size: 1.1rem;
        color: var(--navy-main);
        margin-bottom: 2.5rem;
        max-width: 600px;
        line-height: 1.6;
    }
    
    .hero-features {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }
    .hero-feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .hero-feature-icon {
        width: 32px;
        height: 32px;
        color: var(--brand-blue);
    }
    .hero-feature-text strong {
        display: block;
        font-size: 0.95rem;
        color: var(--navy-dark);
        font-weight: 700;
    }
    .hero-feature-text span {
        font-size: 0.85rem;
        color: var(--gray-text);
    }
    
    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }
    .hero-cta-note {
        margin: 12px 0 0;
        color: var(--gray-text);
        font-size: 0.95rem;
        font-weight: 500;
        text-align: center;
    }
    .btn-blue {
        background: var(--brand-blue);
        color: var(--white);
        padding: 14px 28px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(10, 79, 204, 0.25);
    }
    .btn-blue:hover {
        background: #083c99;
        transform: translateY(-2px);
    }
    .btn-outline-blue {
        background: transparent;
        color: var(--navy-dark);
        padding: 14px 28px;
        border-radius: 30px;
        border: 1px solid var(--navy-dark);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
    }
    .btn-outline-blue:hover {
        background: rgba(10, 79, 204, 0.05);
        border-color: var(--brand-blue);
        color: var(--brand-blue);
    }

    .fit-section {
        margin: -1.5rem 0 4rem;
        padding: 3rem;
        border-radius: 0;
        background: linear-gradient(135deg, rgba(239, 246, 255, 0.82), rgba(255, 255, 255, 0.92));
        border-top: 1px solid rgba(37, 99, 235, 0.12);
        border-bottom: 1px solid rgba(37, 99, 235, 0.12);
    }
    .fit-section-heading {
        max-width: 860px;
        margin: 0 auto 2rem;
        text-align: center;
    }
    .fit-section-heading h2 {
        margin: 0 0 0.8rem;
        color: var(--navy-dark);
        font-size: 2rem;
        line-height: 1.2;
    }
    .fit-section-heading p {
        margin: 0;
        color: var(--gray-text);
        font-size: 1.05rem;
        line-height: 1.65;
    }
    .fit-content {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 2.5rem;
        max-width: 1040px;
        margin: 0 auto;
        align-items: start;
    }
    .fit-list {
        position: relative;
        padding-left: 1.35rem;
    }
    .fit-list::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.25rem;
        bottom: 0.25rem;
        width: 3px;
        border-radius: 999px;
        background: rgba(37, 99, 235, 0.22);
    }
    .fit-simple::before {
        background: rgba(15, 23, 42, 0.16);
    }
    .fit-list h3 {
        margin: 0 0 1rem;
        color: var(--navy-dark);
        font-size: 1.1rem;
    }
    .fit-list ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 0.85rem;
    }
    .fit-list li {
        display: grid;
        grid-template-columns: 28px 1fr;
        gap: 0.75rem;
        align-items: start;
        color: #334155;
        font-size: 0.98rem;
        line-height: 1.45;
    }
    .fit-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        color: var(--brand-blue);
        font-weight: 800;
        box-shadow: 0 6px 18px rgba(37, 99, 235, 0.12);
    }
    .fit-simple .fit-icon {
        color: #64748b;
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    }
    .fit-summary {
        max-width: 920px;
        margin: 2rem auto 0;
        padding: 1rem 1.25rem;
        border-left: 4px solid var(--brand-blue);
        background: rgba(255, 255, 255, 0.72);
        color: var(--navy-dark);
        font-size: 1rem;
        line-height: 1.55;
        font-weight: 600;
    }

    /* Services Row (4 cards) */
    .services-row {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.65rem;
        margin: 0 auto 4.5rem;
    }
    .s-card {
        isolation: isolate;
        overflow: hidden;
        background:
            radial-gradient(circle at 100% 58%, rgba(10, 79, 204, 0.14) 0 1.2px, transparent 1.8px) 0 0 / 13px 13px,
            linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 253, 255, 0.97) 55%, rgba(241, 248, 255, 0.98) 100%);
        border-radius: 10px;
        min-height: 465px;
        padding: 3rem 2.25rem 2.1rem;
        box-shadow: 0 18px 44px rgba(10, 40, 95, 0.11);
        display: flex;
        flex-direction: column;
        transition: transform 0.3s, box-shadow 0.3s;
        position: relative;
        border: 1px solid rgba(10, 79, 204, 0.06);
    }
    .s-card::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 4px;
        background: linear-gradient(180deg, #0c63ff 0%, #0a4fcc 100%);
        z-index: 0;
    }
    .s-card::after {
        content: "";
        position: absolute;
        right: 1.45rem;
        top: 4.45rem;
        width: 61%;
        height: 41%;
        opacity: 0.72;
        z-index: 0;
        background-repeat: no-repeat;
        background-position: right top;
        background-size: contain;
        filter: drop-shadow(0 14px 24px rgba(10, 79, 204, 0.04));
    }
    .s-card > * {
        position: relative;
        z-index: 1;
    }
    .s-card:nth-child(1)::after {
        background-image: url("data:image/svg+xml,%3Csvg width='260' height='190' viewBox='0 0 260 190' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42 54c27-12 59-10 91 5 30-13 61-15 88-5v122c-27-11-58-9-88 5-32-15-64-17-91-5V54Z' stroke='%230A4FCC' stroke-opacity='.14' stroke-width='6'/%3E%3Cpath d='M133 59v122M62 82c19-5 38-2 55 6M62 104c19-5 38-2 55 6M149 88c18-7 36-8 54-2M149 110c18-7 36-8 54-2' stroke='%230A4FCC' stroke-opacity='.1' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E");
    }
    .s-card:nth-child(2)::after {
        background-image: url("data:image/svg+xml,%3Csvg width='260' height='190' viewBox='0 0 260 190' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54 100 166 54v82L54 100Z' stroke='%230A4FCC' stroke-opacity='.14' stroke-width='7' stroke-linejoin='round'/%3E%3Cpath d='M168 72c23 15 23 47 0 62M194 57c39 31 39 72 0 103' stroke='%230A4FCC' stroke-opacity='.1' stroke-width='7' stroke-linecap='round'/%3E%3Cpath d='M43 83h24v36H43z' fill='%230A4FCC' fill-opacity='.08'/%3E%3C/svg%3E");
    }
    .s-card:nth-child(3)::after {
        background-image: url("data:image/svg+xml,%3Csvg width='260' height='190' viewBox='0 0 260 190' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M48 36h128v122H48V36Z' stroke='%230A4FCC' stroke-opacity='.12' stroke-width='6'/%3E%3Cpath d='M76 66h74M76 92h74M76 118h52' stroke='%230A4FCC' stroke-opacity='.09' stroke-width='7' stroke-linecap='round'/%3E%3Cpath d='M176 82 222 99v30c0 27-23 42-46 53-23-11-46-26-46-53V99l46-17Z' stroke='%230A4FCC' stroke-opacity='.14' stroke-width='6'/%3E%3Cpath d='m158 130 15 15 32-36' stroke='%230A4FCC' stroke-opacity='.13' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }
    .s-card:nth-child(4)::after {
        background-image: url("data:image/svg+xml,%3Csvg width='260' height='190' viewBox='0 0 260 190' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M64 72h104M64 116h126M64 150h92' stroke='%230A4FCC' stroke-opacity='.12' stroke-width='7' stroke-linecap='round'/%3E%3Ccircle cx='92' cy='72' r='11' stroke='%230A4FCC' stroke-opacity='.16' stroke-width='6'/%3E%3Ccircle cx='142' cy='116' r='11' stroke='%230A4FCC' stroke-opacity='.16' stroke-width='6'/%3E%3Ccircle cx='112' cy='150' r='11' stroke='%230A4FCC' stroke-opacity='.16' stroke-width='6'/%3E%3Cpath d='M181 46a31 31 0 1 0 62 0 31 31 0 0 0-62 0Z' fill='%230A4FCC' fill-opacity='.08'/%3E%3Cpath d='M212 8v76M174 46h76' stroke='%230A4FCC' stroke-opacity='.08' stroke-width='8'/%3E%3C/svg%3E");
    }
    .s-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 52px rgba(10, 40, 95, 0.14);
    }
    .s-icon-wrapper {
        width: 88px;
        height: 88px;
        border-radius: 20px;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.94));
        color: var(--brand-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: auto;
        box-shadow:
            0 16px 30px rgba(10, 79, 204, 0.12),
            inset 0 0 0 1px rgba(10, 79, 204, 0.07);
    }
    .s-icon-wrapper svg {
        width: 42px;
        height: 42px;
        stroke-width: 2.1;
    }
    .s-card h3,
    .s-card h4 {
        font-size: 1.55rem;
        color: var(--navy-dark);
        margin: 5.45rem 0 1.4rem 0;
        font-weight: 800;
        line-height: 1.15;
    }
    .s-card p {
        font-size: 1rem;
        color: var(--gray-text);
        line-height: 1.65;
        margin: 0;
        min-height: 5rem;
    }
    .s-arrow {
        color: var(--brand-blue);
        align-self: flex-end;
        display: flex;
    }

    /* 3 Column Details Box */
    .details-box {
        background: var(--white);
        border-radius: 24px;
        padding: 3rem;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem;
        margin-bottom: 5rem;
        box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    }
    .detail-col {
        position: relative;
    }
    .detail-col h3 {
        font-size: 1.2rem;
        color: var(--navy-dark);
        margin: 0 0 1.5rem 0;
        font-weight: 700;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        padding-bottom: 0.8rem;
        display: inline-block;
    }
    
    .check-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .check-list li {
        font-size: 0.9rem;
        color: var(--navy-main);
        margin-bottom: 0.85rem;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        line-height: 1.4;
        min-height: 44px;
    }
    .check-list li svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        margin-top: 2px;
    }
    .question-list li {
        gap: 14px;
    }
    .question-icon {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        flex: 0 0 22px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 0;
        background: #eff6ff;
        color: var(--brand-blue);
        box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
    }
    .question-icon svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
    }
    .roadmap-list {
        position: relative;
    }
    .roadmap-list::before {
        content: "";
        position: absolute;
        left: 11px;
        top: 10px;
        bottom: 18px;
        width: 2px;
        border-radius: 999px;
        background: rgba(37, 99, 235, 0.16);
    }
    .roadmap-list li {
        position: relative;
        gap: 14px;
    }
    .roadmap-icon {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        flex: 0 0 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 0;
        background: #ffffff;
        color: var(--brand-blue);
        box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.16), 0 8px 18px rgba(37, 99, 235, 0.08);
        z-index: 1;
    }
    .roadmap-icon svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
    }
    
    .format-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .format-list li {
        font-size: 0.9rem;
        color: var(--navy-main);
        margin-bottom: 0.85rem;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        line-height: 1.4;
        min-height: 44px;
    }
    .format-list li svg {
        width: 20px;
        height: 20px;
        color: var(--brand-blue);
        flex-shrink: 0;
        margin-top: 1px;
    }

    .bg-compass {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
        color: rgba(10, 79, 204, 0.04);
        pointer-events: none;
        z-index: 0;
    }
    .detail-col ul, .detail-col h3 {
        position: relative;
        z-index: 1;
    }

    /* Footer Banner */
    .footer-cta {
        background: #0A369D;
        border-radius: 20px;
        padding: 3rem 4rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--white);
        margin-bottom: 4rem;
        box-shadow: 0 15px 40px rgba(10, 54, 157, 0.2);
        position: relative;
        overflow: hidden;
    }
    .footer-cta-bg {
        position: absolute;
        left: -30px;
        top: -30px;
        width: 150px;
        height: 150px;
        color: rgba(255,255,255,0.05);
    }
    .cta-text {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        position: relative;
        z-index: 1;
        max-width: 600px;
    }
    .cta-text svg {
        width: 60px;
        height: 60px;
        color: rgba(255,255,255,0.8);
        flex-shrink: 0;
    }
    .cta-text h2 {
        margin: 0;
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 1.3;
        color: var(--white);
    }
    .cta-button-container {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.8rem;
        position: relative;
        z-index: 1;
    }
    .btn-outline-white {
        background: transparent;
        color: var(--white);
        padding: 14px 28px;
        border-radius: 30px;
        border: 1px solid var(--white);
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s;
    }
    .btn-outline-white:hover {
        background: rgba(255,255,255,0.1);
    }
    .secure-note {
        font-size: 0.86rem;
        color: rgba(255,255,255,0.86);
        display: flex;
        align-items: center;
        gap: 6px;
    }

    @media (max-width: 1200px) {
        .services-row { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 1024px) {
        .details-box { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
        .b2b-hero-bg { width: 50%; mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%); -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%); }
    }
    @media (max-width: 768px) {
        .learning-hero { flex-direction: column; padding-top: 2rem; margin-bottom: 3rem; }
        .learning-hero-bg { display: none; }
        .learning-hero h1 { font-size: 2.2rem; }
        .hero-features { flex-direction: column; gap: 1.5rem; }
        .hero-buttons { flex-direction: column; }
        .fit-section { margin: -1rem 0 3rem; padding: 2rem 1.25rem; }
        .fit-section-heading h2 { font-size: 1.6rem; }
        .fit-content { grid-template-columns: 1fr; gap: 2rem; }
        .fit-summary { margin-top: 1.5rem; }
        .services-row { grid-template-columns: 1fr; }
        .learning-premium-row .s-card { min-height: 380px; padding: 2rem 1.6rem 1.75rem; }
        .learning-premium-row .s-card::after { width: 54%; top: 4rem; opacity: 0.46; }
        .learning-premium-row .s-icon-wrapper { width: 72px; height: 72px; margin-bottom: auto; }
        .learning-premium-row .s-icon-wrapper svg { width: 34px; height: 34px; }
        .learning-premium-row .s-card h3,
        .learning-premium-row .s-card h4 { font-size: 1.34rem; margin-top: 4.25rem; }
        .footer-cta { flex-direction: column; text-align: center; gap: 2rem; padding: 2rem; }
        .cta-text { flex-direction: column; }
        .cta-button-container { align-items: center; }
        .pill-nav-container { justify-content: flex-start; overflow-x: auto; padding-bottom: 5px; -ms-overflow-style: none; scrollbar-width: none; }
        .pill-nav-container::-webkit-scrollbar { display: none; }
        .pill-nav-inner { flex-wrap: nowrap; justify-content: flex-start; width: max-content; padding-right: 20px; }
        .learning-page-wrapper { padding-left: 1rem; padding-right: 1rem; }
    }

@media (max-width: 768px) { .pill-nav-container { position: relative !important; top: auto !important; margin-bottom: 1rem !important; } }

/* Clean individual learning card backgrounds with icons removed. */
.learning-premium-row .s-card:nth-child(1) { --learning-card-bg: url("../learning-card-training.webp"); }
.learning-premium-row .s-card:nth-child(2) { --learning-card-bg: url("../learning-card-simulations.webp"); }
.learning-premium-row .s-card:nth-child(3) { --learning-card-bg: url("../learning-card-awareness.webp"); }
.learning-premium-row .s-card:nth-child(4) { --learning-card-bg: url("../learning-card-custom.webp"); }
.learning-premium-row .s-card.learning-card-training-bg { --learning-card-bg: url("../learning-card-training.webp"); }
.learning-premium-row .s-card.learning-card-awareness-bg { --learning-card-bg: url("../learning-card-awareness.webp"); }
.learning-premium-row .s-card.learning-card-simulations-bg { --learning-card-bg: url("../learning-card-simulations.webp"); }
.learning-premium-row .s-card.learning-card-custom-bg { --learning-card-bg: url("../learning-card-custom.webp"); }

.learning-premium-row .s-card {
    background: var(--learning-card-bg) center / cover no-repeat !important;
    border-color: rgba(255, 255, 255, 0.62) !important;
    box-shadow: 0 10px 24px rgba(6, 32, 76, 0.08) !important;
}

.learning-premium-row .s-card:hover {
    box-shadow: 0 10px 24px rgba(6, 32, 76, 0.08) !important;
}

.learning-premium-row .s-card::before,
.learning-premium-row .s-card::after {
    display: none !important;
    content: none !important;
    background: none !important;
    background-image: none !important;
}

.learning-premium-row .s-icon-wrapper {
    display: none !important;
}

.learning-premium-row .s-card h3,
.learning-premium-row .s-card h4,
.learning-premium-row .s-card p {
    text-shadow: none !important;
}

/* Final learning card layout: text only, aligned left at the bottom. */
.learning-premium-row .s-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    text-align: left !important;
    min-height: 465px !important;
    padding: 1.25rem 1.45rem 1.35rem !important;
}

.learning-premium-row .s-card h3,
.learning-premium-row .s-card h4 {
    width: 100% !important;
    margin: 0 0 0.65rem !important;
    text-align: left !important;
}

.learning-premium-row .s-card p {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 0.84rem !important;
    line-height: 1.38 !important;
    margin: 0 !important;
    text-align: left !important;
    min-height: 0 !important;
}

@media (max-width: 768px) {
    .learning-premium-row .s-card {
        justify-content: flex-end !important;
        align-items: flex-start !important;
        text-align: left !important;
        min-height: 380px !important;
        padding: 1.25rem 1.35rem 1.35rem !important;
    }

    .learning-premium-row .s-card h3,
    .learning-premium-row .s-card h4 {
        margin: 0 0 0.65rem !important;
    }

    .learning-premium-row .s-card p {
        font-size: 0.82rem !important;
        line-height: 1.36 !important;
    }
}

.learning-premium-row .s-card { text-decoration: none; color: inherit; }
