/* Landing Page Specific Styles for Qizie */

/* Hero Section */
.hero {
    background: radial-gradient(circle at top left, var(--bg-medium), var(--bg-dark));
    padding-block-start: 2rem;
    padding-inline: 10%;
    text-align: center;
    position: relative;
}

.nav--hero {
    margin-bottom: 6rem;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    position: relative;
}

.hero__brain {
    width: 140px;
    height: 140px;
    margin-inline: auto;
    margin-block-end: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
}

.hero__brain-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(0, 153, 255, 0.6));
}

.hero__brain-path {
    fill: url(#brain-gradient);
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 0.5px;
}

.hero__sparkle {
    position: absolute;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(5deg);
    }
}

@keyframes sparkle-burst {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    30% {
        opacity: 1;
        transform: translate(calc(var(--tx) * 0.3), calc(var(--ty) * 0.3)) scale(1.2);
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

.hero__title {
    font-size: clamp(2.5rem, 11vw, 4rem);
    font-weight: 900;
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 10;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero__subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-inline: auto;
    margin-block-end: 4rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero__cta {
    position: relative;
    z-index: 100;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero__mockup {
    margin-block-start: 0;
    transform: translateY(50px);
    opacity: 0;
    animation: mockupFade 1.2s ease-out 0.6s both;
    margin-block-end: -10px;
}

@keyframes mockupFade {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

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

.hero__mockup-img {
    max-width: 900px;
    width: 100%;
    border-radius: 40px;
    clip-path: inset(0px 0px 0px 0px);
}

/* Base sections */
.section {
    padding-block: 6rem;
    padding-inline: 5%;
    text-align: center;
}

.section--white {
    background: var(--white);
    color: var(--text-dark);
    position: relative;
    z-index: 5;
}

.section--soft-gray {
    background: #f4f7fa;
    color: var(--text-dark);
    position: relative;
    z-index: 5;
}

.section--journey {
    background: linear-gradient(180deg, var(--bg-dark), #120f1f, var(--bg-dark));
    position: relative;
}

.section--challenges {
    background: radial-gradient(circle at top left, #1a1a2e, var(--bg-dark));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section--discoveries {
    background: radial-gradient(circle at center, #1b162d, var(--bg-dark));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section--discoveries::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section--economy {
    background: radial-gradient(circle at bottom right, #1a1a2e, var(--bg-dark));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section--mastery {
    background: radial-gradient(circle at bottom right, #1a1a2e, var(--bg-dark));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section__title {
    font-size: clamp(2rem, 7vw, 3rem);
    font-weight: 900;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    overflow-wrap: break-word;
    hyphens: auto;
}

.section__subtitle {
    color: var(--text-muted);
    margin-bottom: 5rem;
    font-size: 1.4rem;
    max-width: 800px;
    margin-inline: auto;
}

.section__subtitle__alt {
    margin-bottom: 3rem;
}

/* Grids */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

#features .grid {
    gap: 1rem;
}

/* Feature Grid */
.feature {
    padding-block: 2rem;
    padding-inline: 2rem;
}

.feature__icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.feature__icon img {
    height: 1em;
    width: auto;
    vertical-align: middle;
}

.feature__title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Try It */
.try-it {
    padding-bottom: 12rem !important;
}

.try-it__intro {
    font-size: 1.4rem;
    margin-bottom: 4rem;
    color: #666;
    max-width: 700px;
    margin-inline: auto;
}

.try-it__box {
    background: var(--bg-medium);
    color: var(--white);
    padding: 4rem;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.try-it__question {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

/* Journey */
.journey__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}

.journey {
    padding-block: 2rem;
    padding-inline: 2rem;
}

.journey--steady .journey__title,
.journey--dynamic .journey__title {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

/* Economy */
.economy-card {
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    transition: all 0.3s;
}

.economy-card:hover {
    background: rgba(57, 255, 20, 0.1);
    border-color: var(--neon-green);
    transform: scale(1.02);
}

/* Splits */
.split {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 2.5rem;
    align-items: center;
}

.split__content {
    text-align: left;
}

.split__content .section__title {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.split__image {
    max-width: 100%;
    max-height: 870px;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

/* Rewards */
.reward {
    display: flex;
    gap: 1.5rem;
    margin-block: 3rem;
    margin-inline: 2rem;
    text-align: left;
    justify-content: flex-start;
}

.reward__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reward__icon--orange {
    background: rgba(255, 140, 0, 0.1);
    color: var(--text-dark);
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.2rem;
}

.reward__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reward__title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    line-height: 1.1;
}

.reward__text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Stats */
.stats__box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding-block: 2rem;
    padding-inline: 1rem;
    border-radius: 32px;
}

.stats__val {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    display: block;
}

.stats__label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Roadmap */
.roadmap__card {
    background: rgba(255, 255, 255, 0.02);
    padding-block: 3rem;
    padding-inline: 2rem;
    border-radius: 32px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    text-align: left;
    position: relative;
}

.roadmap__card-title {
    color: var(--primary-blue);
    font-weight: 900;
    margin-bottom: 1rem;
}

.roadmap__card-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.roadmap__badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--neon-green);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 100px;
}

.section__notice {
    margin-block-start: 4rem;
    color: var(--neon-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Banner */
.banner {
    background: #0f0b1a;
    margin-block-start: 5rem;
    padding-block: 4rem;
    padding-inline: 2rem;
    border-radius: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.banner__title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    font-weight: 800;
    line-height: 1.2;
}

/* Modal */
.trivia-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 18, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(15px);
}

.trivia-modal__content {
    background: var(--bg-medium);
    width: 95%;
    max-width: 700px;
    padding: 2rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), 0 0 50px rgba(255, 140, 0, 0.1);
    position: relative;
}

.trivia-modal__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.trivia-modal__close:hover {
    background: var(--accent-orange);
    transform: rotate(90deg);
}

.trivia-modal__timer {
    font-size: 1.4rem;
    color: var(--accent-orange);
    font-weight: 900;
    margin-bottom: 2rem;
    text-align: right;
}

.trivia-modal__question {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--white);
    line-height: 1.2;
    text-align: left;
    overflow-wrap: break-word;
    hyphens: auto;
}

.trivia-modal__options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.trivia-modal__option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding-block: 1.5rem;
    padding-inline: 2rem;
    border-radius: 20px;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.trivia-modal__option:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-orange);
    transform: scale(1.01);
}

.trivia-modal__option:disabled {
    cursor: default;
}

.trivia-modal__results {
    margin-block-start: 3rem;
    padding-block-start: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    animation: fadeIn 0.5s ease;
}

.trivia-modal__explanation-title {
    color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.trivia-modal__explanation {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.trivia-modal__motivation {
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.trivia-modal__motivation-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 900;
}

.trivia-modal__motivation-text {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.trivia-modal__motivation--success {
    background: rgba(0, 255, 128, 0.1);
    color: var(--neon-green);
}

.trivia-modal__motivation--error {
    background: rgba(217, 48, 37, 0.1);
    color: #d93025;
}

.trivia-modal__explanation-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-muted);
    padding: 0.85rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    margin-bottom: 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-family: inherit;
}

.trivia-modal__explanation-toggle:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.trivia-modal__explanation-toggle::after {
    content: '+';
    font-size: 1.4rem;
    line-height: 0.8;
    transition: transform 0.2s;
}

.trivia-modal__explanation-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

.trivia-modal__explanation-wrap[hidden] {
    display: none;
}

.trivia-modal__cta-wrap {
    position: sticky;
    bottom: 0;
    padding-block: 1rem 0;
    background: var(--bg-medium);
    z-index: 5;
}

.trivia-modal__cta-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 1.5rem;
    background: linear-gradient(to top, var(--bg-medium), rgba(18, 15, 31, 0));
    pointer-events: none;
}

.btn-primary--full {
    width: 100%;
    text-align: center;
}

/* Desktop Styles Configuration */
@media (min-width: 1025px) {
    .section {
        padding-block: 12rem;
        padding-inline: 10%;
    }

    .section__title {
        font-size: 4.5rem;
    }

    .hero__title {
        font-size: 6.5rem;
        letter-spacing: -5px;
    }

    .hero__subtitle {
        font-size: 1.6rem;
    }

    .grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1280px;
        margin-inline: auto;
    }

    .stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    #features .grid {
        gap: 4rem;
    }

    .feature {
        padding-block: 4rem;
        border-radius: 40px;
    }

    .journey__grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
        margin-inline: auto;
        gap: 2.5rem;
    }

    .journey {
        padding-inline: 3rem;
        border-radius: 48px;
    }

    .split {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
        max-width: 1280px;
        margin-inline: auto;
    }

    .split--reverse {
        grid-template-columns: 1fr 1.2fr;
    }

    .split--reverse .split__content {
        order: 2;
    }

    .split--reverse .split__image-wrap {
        order: 1;
    }

    .split__content .section__title {
        font-size: 4.5rem;
    }

    .reward {
        padding-block: 4rem;
        padding-inline: 3rem;
        margin-block: 0 1rem;
        margin-inline: 0;
    }

    .reward__icon,
    .feature__icon img {
        width: 80px;
        height: 80px;
    }

    .reward--compact {
        padding: 0;
        margin-block-end: 2rem;
    }

    .reward--compact .reward__icon {
        width: 50px;
        height: 50px;
    }

    .banner {
        padding-block: 6rem;
        padding-inline: 4rem;
        margin-block-start: 0;
        border-radius: 60px;
    }

    .banner__title {
        font-size: 3rem;
        margin-bottom: 3.5rem;
    }

    .trivia-modal__content {
        padding: 4rem;
    }

    .stats__box {
        padding-block: 3rem;
        padding-inline: 1.5rem;
    }
}
/* Challenge Page Specific Enhancements */
.hero--challenge {
    padding-block-end: 8rem;
}

.challenge-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.challenge-status--live {
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    border-color: rgba(57, 255, 20, 0.3);
}

.challenge-status--finished {
    background: rgba(148, 163, 184, 0.1);
    color: var(--text-muted);
}

.challenge-status--upcoming {
    background: rgba(0, 153, 255, 0.1);
    color: var(--primary-blue);
    border-color: rgba(0, 153, 255, 0.3);
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 3rem auto;
}

.leaderboard-card {
    background: var(--bg-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 3rem;
    margin-block: 4rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.leaderboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.05) 0%, transparent 70%);
}

.hall-of-fame__row {
    display: flex;
    align-items: center;
    padding-block: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.hall-of-fame__row:hover {
    background: rgba(255, 255, 255, 0.01);
}

.hall-of-fame__rank {
    width: 50px;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-muted);
}

.hall-of-fame__rank--1 { color: #ffd700; transform: scale(1.1); }
.hall-of-fame__rank--2 { color: #c0c0c0; }
.hall-of-fame__rank--3 { color: #cd7f32; }

.hall-of-fame__user {
    flex: 1;
    font-weight: 700;
    font-size: 1.1rem;
}

.hall-of-fame__score {
    font-weight: 900;
    color: var(--neon-green);
    font-size: 1.2rem;
}

.split--challenge {
    margin-block: 8rem;
}

.content-block-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.content-block-text strong {
    color: var(--white);
    font-weight: 700;
}

/* Challenge Page Refinements */
.hero--challenge-refined {
    padding-block: 10rem 6rem;
}

.hero-mini-leaderboard {
    max-width: 600px;
    margin: 0 auto 3.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 1rem;
    backdrop-filter: blur(15px);
}

.hero-leaderboard-title {
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    text-align: center;
}

.hero-leaderboard-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-inline: auto;
}

.hero-mini-leaderboard .hall-of-fame__row {
    padding-block: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.hero-mini-leaderboard .hall-of-fame__rank {
    font-size: 1.1rem;
    width: 40px;
}

.hero-mini-leaderboard .hall-of-fame__user {
    font-size: 1rem;
}

.hero-mini-leaderboard .hall-of-fame__score {
    font-size: 0.9rem;
}

.content-block-text {
    color: var(--text-dark) !important;
    font-size: 1.4rem;
    line-height: 1.8;
}

.challenge-image-copyright {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.challenge-image-copyright a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.challenge-image-wrap {
    width: 100%;
    margin-block: 4rem;
    border-radius: 0;
}

.challenge-image-full {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}

/* Week-on-Qizie calendar */
.week-calendar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (min-width: 720px) {
    .week-calendar { grid-template-columns: repeat(7, 1fr); gap: 10px; }
}
.week-day {
    background: var(--white, #ffffff);
    border-radius: 16px;
    padding: 18px 12px 14px;
    text-align: center;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.week-day--rest { opacity: 0.7; }
.week-day__head {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.week-day__num {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark, #1a1a2e);
    line-height: 1;
    margin-bottom: 16px;
}
.week-day__chip {
    background: var(--accent-orange, #ff8c00);
    color: white;
    border-radius: 10px;
    padding: 10px 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    margin-top: auto;
}
.week-day__chip--discovery { background: #a85af9; }
.week-day__chip--journey   { background: #0099ff; }
.week-day__chip--map       { background: #14b8a6; }
.week-day__chip--challenge { background: #e94560; }
.week-day__chip--rest      { background: rgba(0, 0, 0, 0.08); color: #888; }
.week-day__chip-time {
    display: block;
    font-size: 10px;
    font-weight: 600;
    opacity: 0.85;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* FAQ stack */
.faq-stack {
    max-width: 880px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: left;
}
.faq-item h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark, #1a1a2e);
    margin-bottom: 0.75rem;
}
.faq-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted, #555);
}

/* Topic card with icon */
.topic-card { text-align: left; }
.topic-card__icon {
    display: block;
    height: 56px;
    width: auto;
    margin-bottom: 1rem;
}
