:root {
    --bg: #FFFFFF;
    --bg-alt: #F5F7FA;
    --bg-hero: #FAFAF7;
    --bg-about: #EEF4FF;
    --bg-faq: #F5F7FA;
    --bg-cta: #1A1F36;
    --text: #1A1A2E;
    --text-sub: #555770;
    --text-muted: #8F90A6;
    --accent: #3B7BF6;
    --accent-hover: #2563EB;
    --accent-light: #EBF1FE;
    --accent-glow: rgba(59, 123, 246, 0.15);
    --green: #059669;
    --green-bg: #ECFDF5;
    --amber: #D97706;
    --amber-bg: #FFFBEB;
    --sky: #0284C7;
    --sky-bg: #F0F9FF;
    --violet: #7C3AED;
    --violet-bg: #F5F3FF;
    --rose: #E11D48;
    --rose-bg: #FFF1F2;
    --orange: #EA580C;
    --orange-bg: #FFF7ED;
    --border: #E5E7EB;
    --radius-lg: 24px;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
}

html.dark {
    --bg: #0F0F14;
    --bg-alt: #16161E;
    --bg-hero: #0F0F14;
    --bg-about: #141828;
    --bg-faq: #16161E;
    --bg-cta: #0A0C18;
    --text: #F0F0F5;
    --text-sub: #A0A1B5;
    --text-muted: #5A5B70;
    --accent: #6B9FFF;
    --accent-hover: #8AB4FF;
    --accent-light: #1C2744;
    --accent-glow: rgba(107, 159, 255, 0.2);
    --green: #34D399;
    --green-bg: #0A2E20;
    --amber: #FBBF24;
    --amber-bg: #2D2308;
    --sky: #38BDF8;
    --sky-bg: #0B2540;
    --violet: #A78BFA;
    --violet-bg: #201448;
    --rose: #FB7185;
    --rose-bg: #3A0A18;
    --orange: #FB923C;
    --orange-bg: #301505;
    --border: #2A2A35;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.35);
}

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

html {
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

input {
    font-family: inherit;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rv {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.rv.vis {
    opacity: 1;
    transform: translateY(0);
}

.rv-d1 {
    transition-delay: 0.08s;
}

.rv-d2 {
    transition-delay: 0.16s;
}

.rv-d3 {
    transition-delay: 0.24s;
}

.rv-d4 {
    transition-delay: 0.32s;
}

.rv-d5 {
    transition-delay: 0.40s;
}

/* ===== NAV ===== */
.nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 28px;
    width: auto;
}

.nav-cta {
    font-size: 0.875rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 100px;
    background: var(--accent);
    color: #fff;
    transition: all 0.25s ease;
}

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

.nav-cta:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
}

.hero-glow--b {
    background: var(--accent);
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.hero-glow--w {
    background: #F59E0B;
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -100px;
    opacity: 0.08;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 8px;
    border-radius: 100px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease both;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeUp 0.8s 0.1s ease both;
}

.hero-title em {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: 1.1875rem;
    color: var(--text-sub);
    max-width: 420px;
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 440px;
    animation: fadeUp 0.8s 0.3s ease both;
}

@media (min-width: 480px) {
    .hero-form {
        flex-direction: row;
    }
}

.hero-input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 14px;
    border: 1.5px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.hero-input::placeholder {
    color: var(--text-muted);
}

.hero-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.hero-btn {
    padding: 14px 28px;
    border-radius: 14px;
    background: var(--accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.hero-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.form-status {
    font-size: 0.9375rem;
    margin-top: 8px;
}

.form-status.success {
    color: var(--green);
}

.form-status.error {
    color: var(--rose);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeUp 0.8s 0.4s ease both;
}

@media (min-width: 768px) {
    .hero-visual {
        justify-content: flex-end;
    }
}

.hero-phone {
    position: relative;
    width: 340px;
}

@media (min-width: 768px) {
    .hero-phone {
        width: 500px;
        transform: translateX(0px);
    }
}

@media (min-width: 1024px) {
    .hero-phone {
        width: 545px;
        transform: translateX(24px);
    }
}

@media (min-width: 1280px) {
    .hero-phone {
        width: 670px;
        transform: translateX(60px);
    }
}

.hero-phone img {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-phone-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeUp 1s 0.8s ease both;
}

@media (min-width: 768px) {
    .hero-scroll {
        display: flex;
    }
}

.hero-scroll svg {
    width: 20px;
    height: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0)
    }

    40% {
        transform: translateY(8px)
    }

    60% {
        transform: translateY(4px)
    }
}

/* ===== ABOUT ===== */
.about {
    background: var(--bg-about);
    padding: 80px 0;
}

@media (min-width: 768px) {
    .about {
        padding: 120px 0;
    }
}

.about-grid {
    display: grid;
    gap: 40px;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 64px;
        align-items: start;
    }
}

.pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.pill--blue {
    background: var(--accent);
}

.pill--violet {
    background: var(--violet);
}

.pill--green {
    background: var(--green);
}

.pill--amber {
    background: var(--amber);
}

.pill--sky {
    background: var(--sky);
}

.sec-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.sec-hint {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.about-text {
    font-size: 1.1875rem;
    color: var(--text-sub);
    line-height: 1.85;
}

.about-text strong {
    color: var(--text);
    font-weight: 700;
}

/* ===== FEATURES ===== */
.features {
    background: var(--bg);
    padding: 80px 0;
}

@media (min-width: 768px) {
    .features {
        padding: 120px 0;
    }
}

.features-header {
    text-align: center;
    margin-bottom: 56px;
}

.features-sub {
    font-size: 1.125rem;
    color: var(--text-sub);
}

.f-grid {
    display: grid;
    gap: 16px;
}

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

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

.fc {
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fc:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.fc--amber {
    background: var(--amber-bg);
}

.fc--sky {
    background: var(--sky-bg);
}

.fc--violet {
    background: var(--violet-bg);
}

.fc--rose {
    background: var(--rose-bg);
}

.fc--green {
    background: var(--green-bg);
}

.fc--orange {
    background: var(--orange-bg);
}

.fi {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.6);
}

html.dark .fi {
    background: rgba(255, 255, 255, 0.08);
}

.fi svg {
    width: 24px;
    height: 24px;
}

.fi--amber {
    color: var(--amber);
}

.fi--sky {
    color: var(--sky);
}

.fi--violet {
    color: var(--violet);
}

.fi--rose {
    color: var(--rose);
}

.fi--green {
    color: var(--green);
}

.fi--orange {
    color: var(--orange);
}

.fc h3 {
    font-size: 1.125rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.fc p {
    font-size: 1rem;
    color: var(--text-sub);
    line-height: 1.65;
}

/* ===== FAQ ===== */
.faq {
    background: var(--bg);
    padding: 80px 0;
}

@media (min-width: 768px) {
    .faq {
        padding: 120px 0;
    }
}

.faq-layout {
    display: grid;
    gap: 40px;
}

@media (min-width: 768px) {
    .faq-layout {
        grid-template-columns: 1fr 1.5fr;
        gap: 64px;
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.fq {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1.4;
}

.fq:hover {
    color: var(--accent);
}

.fq:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

.fq-icon {
    min-width: 24px;
    margin-left: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: transform 0.3s ease;
}

.faq-item.open .fq-icon {
    transform: rotate(180deg);
}

.fq-icon svg {
    width: 20px;
    height: 20px;
}

.fa {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .fa {
    max-height: 400px;
}

.fa-inner {
    padding-bottom: 24px;
    font-size: 1rem;
    color: var(--text-sub);
    line-height: 1.7;
}

.fa-inner a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.fa-inner strong {
    font-weight: 700;
    color: var(--text);
}

/* ===== CTA ===== */
.cta {
    background: var(--bg-cta);
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .cta {
        padding: 100px 0;
    }
}

.cta::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    position: relative;
}

.cta-sub {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    position: relative;
}

.store-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
}

.sb {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.sb:hover {
    transform: translateY(-3px);
}

.sb img {
    border-radius: 10px;
}

.sb-tip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    padding: 6px 14px;
    background: #fff;
    color: var(--bg-cta);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
}

.sb:hover .sb-tip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg);
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 1.0625rem;
    color: var(--text-sub);
    transition: color 0.2s;
}

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

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.footer-socials a:hover {
    opacity: 1;
}

.footer-socials img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 24px;
    text-align: center;
}

.footer-copy {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-copy strong {
    color: var(--text-sub);
    font-weight: 700;
}

.footer-logo {
    margin-top: 16px;
    display: inline-block;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

/* ===== DISCOVERY ===== */
.discovery {
    background: var(--bg);
    padding: 80px 0 60px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .discovery {
        padding: 120px 0 80px;
    }
}

.discovery-header {
    text-align: center;
    margin-bottom: 48px;
}

.discovery-sub {
    font-size: 1.125rem;
    color: var(--text-sub);
}

.carousel {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
}

/* ===== MOBILE: horizontal scroll with snap ===== */
.carousel-stage {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 24px 24px;
    scrollbar-width: none;
}

.carousel-stage::-webkit-scrollbar {
    display: none;
}

.lesson-card {
    flex-shrink: 0;
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
}

.lesson-card-inner {
    width: 120px;
}

/* Arrows hidden on mobile */
.car-arrow {
    display: none;
}

/* ===== TABLET+ (768px): switch to positioned carousel ===== */
@media (min-width: 768px) {
    .carousel {
        height: 360px;
    }

    .carousel-stage {
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        padding: 0;
        scroll-snap-type: none;
    }

    .lesson-card {
        position: absolute;
        top: 50%;
        left: 0;
        transition: all 0.55s cubic-bezier(0.25, 1, 0.5, 1);
        transform-origin: center center;
        scroll-snap-align: unset;
    }

    .lesson-card-inner {
        width: 130px;
    }

    .car-arrow {
        display: block;
        position: absolute;
        top: 50%;
        z-index: 10;
        transform: translateY(-50%);
        background: none;
        border: none;
        padding: 12px;
        color: var(--text-muted);
        cursor: pointer;
        transition: color 0.2s ease;
    }

    .car-arrow:hover {
        color: var(--text);
    }

    .car-arrow svg {
        width: 32px;
        height: 32px;
        stroke-width: 1.5;
    }

    .car-arrow--prev {
        left: calc(50% - 430px);
    }

    .car-arrow--next {
        right: calc(50% - 430px);
    }
}

@media (min-width: 1024px) {
    .carousel {
        height: 380px;
    }

    .lesson-card-inner {
        width: 140px;
    }

    .car-arrow--prev {
        left: calc(50% - 500px);
    }

    .car-arrow--next {
        right: calc(50% - 500px);
    }
}

@media (min-width: 1280px) {
    .car-arrow--prev {
        left: calc(50% - 540px);
    }

    .car-arrow--next {
        right: calc(50% - 540px);
    }
}

/* Cover image */
.lesson-cover-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.lesson-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--border) 0%, var(--bg-alt) 100%);
}

/* Duration badge on cover */
.lesson-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 100px;
    padding: 2px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lesson-duration svg {
    width: 10px;
    height: 10px;
    color: #2566F6;
    flex-shrink: 0;
}

.lesson-duration span {
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    color: #2566F6;
}

/* Title + category below cover */
.lesson-info {
    margin-top: 8px;
}

/* Play/pause overlay on cover */
.lesson-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 2;
}

.lesson-play-btn:hover {
    background: rgba(0, 0, 0, 0.12);
}

.play-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.25s ease;
}

.lesson-play-btn:hover .play-wrapper,
.lesson-card.is-playing .lesson-play-btn .play-wrapper {
    opacity: 1;
    transform: scale(1);
}

/* Progress ring SVG */
.progress-ring {
    position: absolute;
    inset: 0;
    width: 48px;
    height: 48px;
    transform: rotate(-90deg);
}

.progress-ring__bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 2.5;
}

.progress-ring__fill {
    fill: none;
    stroke: #2566F6;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 138.23;
    /* 2 * PI * 22 */
    stroke-dashoffset: 138.23;
    transition: stroke-dashoffset 0.3s linear;
}

/* Inner white circle with icon */
.play-circle {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-circle svg {
    width: 16px;
    height: 16px;
    color: #1a1a2e;
}

.play-circle .ico-pause {
    display: none;
}

.lesson-card.is-playing .play-circle .ico-play {
    display: none;
}

.lesson-card.is-playing .play-circle .ico-pause {
    display: block;
}

.lesson-title {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 18.2px;
    color: #1a1a2e;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lesson-cat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    background: #eef3ff;
    border-radius: 100px;
    padding: 3px 8px;
}

.lesson-cat span {
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    color: #2566F6;
}