:root {
    --swlh-navy: var(--brand-primary-dark, #0f1d0a);
    --swlh-blue: #397824;
    --swlh-blue-soft: var(--brand-smart-bar, #ecffd6);
    --swlh-gold: var(--brand-primary, #6cc04a);
    --swlh-ink: var(--text-primary, #111);
    --swlh-muted: var(--text-muted, #595959);
    --swlh-border: var(--border-default, #ddd);
    --swlh-surface: var(--brand-accent, #f7f6f9);
}

.swlh-learning-flow-page main,
.swlh-learning-flow-page .inner-page,
.swlh-learning-flow-page .swlh-archive-page {
    background: #f5f7f9;
}

.swlh-shell,
.swlh-archive-page,
.swlh-single-page {
    color: var(--swlh-ink);
}

.swlh-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 0 70px;
}

.swlh-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr);
    gap: 34px;
    align-items: center;
    padding: clamp(30px, 5vw, 64px);
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 86% 12%, rgba(108, 192, 74, .28), transparent 28%),
        linear-gradient(135deg, var(--brand-primary-dark, #0f1d0a) 0%, #294f1d 100%);
    color: #fff;
    box-shadow: 0 24px 58px rgba(15, 29, 10, .16);
}

.swlh-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--swlh-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.swlh-hero .swlh-eyebrow,
.swlh-today-label {
    color: #b9ec9f;
}

.swlh-hero h1 {
    max-width: 690px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.1rem, 3.6vw, 3.1rem);
    line-height: 1.15;
    letter-spacing: -.025em;
}

.swlh-hero-copy > p {
    max-width: 660px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.65;
}

.swlh-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.swlh-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 11px;
    padding: 11px 18px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.swlh-button:hover {
    transform: translateY(-1px);
}

.swlh-button-primary {
    background: #fff;
    color: var(--swlh-navy);
    box-shadow: 0 9px 24px rgba(0, 0, 0, .12);
}

.swlh-button-secondary {
    border-color: rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.swlh-today-card {
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 20px;
    padding: 26px;
    background: rgba(255, 255, 255, .09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
}

.swlh-today-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.swlh-today-card ul {
    display: grid;
    gap: 17px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.swlh-today-card li {
    display: flex;
    gap: 11px;
    align-items: center;
    color: #fff;
}

.swlh-today-card li span {
    display: grid;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    place-items: center;
    border-radius: 50%;
    background: rgba(185, 236, 159, .17);
    color: #b9ec9f;
    font-weight: 800;
}

.swlh-paths,
.swlh-feed {
    margin-top: clamp(42px, 7vw, 72px);
}

.swlh-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.swlh-section-heading h2,
.swlh-trust-note h2 {
    margin: 0;
    color: var(--swlh-navy);
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.2;
    letter-spacing: -.025em;
}

.swlh-section-heading > a {
    color: var(--swlh-blue);
    font-weight: 700;
    text-decoration: none;
}

.swlh-path-grid,
.swlh-content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.swlh-path-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 15px;
    align-items: center;
    min-height: 142px;
    border: 1px solid var(--swlh-border);
    border-radius: 18px;
    padding: 22px;
    background: #fff;
    color: var(--swlh-ink);
    text-decoration: none;
    box-shadow: 0 9px 28px rgba(31, 49, 81, .06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

a.swlh-path-card:hover {
    transform: translateY(-3px);
    border-color: #b9c8e8;
    box-shadow: 0 15px 34px rgba(31, 49, 81, .1);
}

.swlh-path-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 14px;
    background: var(--swlh-blue-soft);
    color: var(--swlh-blue);
    font-size: 15px;
    font-weight: 800;
}

.swlh-path-gk .swlh-path-icon {
    background: #fff6df;
    color: #9a6810;
}

.swlh-path-doubt {
    background: var(--swlh-surface);
}

.swlh-path-doubt .swlh-path-icon {
    background: #e9edf4;
    color: #687488;
}

.swlh-path-card strong,
.swlh-path-card small {
    display: block;
}

.swlh-path-card strong {
    color: var(--swlh-navy);
    font-size: 17px;
}

.swlh-path-card small {
    margin-top: 7px;
    color: var(--swlh-muted);
    font-size: 13px;
    line-height: 1.5;
}

.swlh-path-card em {
    display: inline-block;
    margin-left: 5px;
    border-radius: 999px;
    padding: 3px 7px;
    background: #e8ecf3;
    color: #657086;
    font-size: 10px;
    font-style: normal;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.swlh-card-arrow {
    color: var(--swlh-blue);
    font-size: 22px;
}

.swlh-content-card {
    display: flex;
    min-height: 275px;
    flex-direction: column;
    border: 1px solid var(--swlh-border);
    border-radius: 17px;
    padding: 23px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(31, 49, 81, .05);
}

.swlh-card-meta,
.swlh-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 13px;
    align-items: center;
    color: var(--swlh-muted);
    font-size: 12px;
}

.swlh-type-label {
    border-radius: 999px;
    padding: 5px 9px;
    background: var(--swlh-blue-soft);
    color: var(--swlh-blue);
    font-weight: 700;
}

.swlh-content-card h2 {
    margin: 17px 0 9px;
    font-size: 20px;
    line-height: 1.35;
}

.swlh-content-card h2 a {
    color: var(--swlh-navy);
    text-decoration: none;
}

.swlh-content-card p {
    margin: 11px 0 20px;
    color: var(--swlh-muted);
    font-size: 14px;
    line-height: 1.65;
}

.swlh-text-link {
    margin-top: auto;
    color: var(--swlh-blue);
    font-weight: 700;
    text-decoration: none;
}

.swlh-topic-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.swlh-topic-list span {
    border: 1px solid var(--swlh-border);
    border-radius: 999px;
    padding: 4px 8px;
    color: var(--swlh-muted);
    font-size: 11px;
}

.swlh-empty {
    grid-column: 1 / -1;
    border: 1px dashed #bac5d7;
    border-radius: 16px;
    padding: 30px;
    background: var(--swlh-surface);
    text-align: center;
}

.swlh-empty strong {
    color: var(--swlh-navy);
    font-size: 18px;
}

.swlh-empty p {
    margin: 8px auto 0;
    color: var(--swlh-muted);
}

.swlh-trust-note {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 40px;
    align-items: center;
    margin-top: 72px;
    border-radius: 20px;
    padding: 30px;
    background: linear-gradient(90deg, #caffd1 0%, #f1ffe9 50%, #ddf99b 100%);
}

.swlh-trust-note p {
    margin: 0;
    color: #4b5b78;
    line-height: 1.75;
}

.swlh-archive-page,
.swlh-single-page {
    padding: 34px 0 72px;
}

.swlh-breadcrumb {
    display: flex;
    overflow: hidden;
    gap: 8px;
    align-items: center;
    margin-bottom: 30px;
    color: var(--swlh-muted);
    font-size: 13px;
    white-space: nowrap;
}

.swlh-breadcrumb a {
    color: var(--swlh-blue);
    text-decoration: none;
}

.swlh-breadcrumb span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

.swlh-archive-header {
    max-width: 730px;
}

.swlh-archive-header h1 {
    margin: 0;
    color: var(--swlh-navy);
    font-size: clamp(1.6rem, 2.6vw, 2.15rem);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -.045em;
}

.swlh-article h1 {
    margin: 0;
    color: var(--swlh-navy);
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.swlh-archive-header p {
    margin: 16px 0 0;
    color: var(--swlh-muted);
    font-size: 17px;
    line-height: 1.7;
}

.swlh-filter-row {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    margin: 30px 0;
    padding-bottom: 3px;
}

.swlh-filter-row a {
    flex: 0 0 auto;
    border: 1px solid var(--swlh-border);
    border-radius: 999px;
    padding: 9px 15px;
    background: #fff;
    color: var(--swlh-muted);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.swlh-filter-row a.is-active {
    border-color: var(--swlh-blue);
    background: var(--swlh-blue);
    color: #fff;
}

.swlh-library-filters {
    display: grid;
    grid-template-columns: minmax(190px, 1.4fr) repeat(3, minmax(135px, .8fr)) auto auto;
    gap: 10px;
    align-items: center;
    margin: 24px 0 4px;
    border: 1px solid var(--swlh-border);
    border-radius: 15px;
    padding: 14px;
    background: var(--swlh-surface);
}

.swlh-library-filters input,
.swlh-library-filters select {
    width: 100%;
    min-height: 42px;
    border: 1px solid #cfd7e5;
    border-radius: 9px;
    padding: 8px 11px;
    background: #fff;
    color: var(--swlh-ink);
    font: inherit;
    font-size: 13px;
    box-sizing: border-box;
}

.swlh-library-filters button {
    min-height: 42px;
    border: 0;
    border-radius: 9px;
    padding: 9px 14px;
    background: var(--swlh-blue);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
}

.swlh-library-filters > a {
    color: var(--swlh-blue);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.swlh-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.swlh-single-page .container {
    max-width: 920px;
}

.swlh-article {
    border: 1px solid var(--swlh-border);
    border-radius: 22px;
    padding: clamp(24px, 5vw, 58px);
    background: #fff;
    box-shadow: 0 14px 42px rgba(31, 49, 81, .07);
}

.swlh-article header .swlh-topic-list {
    margin-top: 18px;
}

.swlh-article-meta {
    margin-top: 18px;
}

.swlh-featured-image {
    margin: 30px 0;
}

.swlh-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.swlh-article-body {
    margin-top: 34px;
    color: #30394a;
    font-size: 17px;
    line-height: 1.8;
}

.swlh-article-body h2,
.swlh-article-body h3 {
    margin-top: 1.8em;
    color: var(--swlh-navy);
}

.swlh-article-footer {
    margin-top: 42px;
    border-radius: 16px;
    padding: 24px;
    background: var(--swlh-surface);
}

.swlh-exam-relevance,
.swlh-source-box {
    margin-top: 34px;
    border-radius: 16px;
    padding: 24px;
}

.swlh-exam-relevance {
    border-left: 4px solid var(--swlh-gold);
    background: #fff9e9;
}

.swlh-exam-relevance h2,
.swlh-source-box h2 {
    margin: 0;
    color: var(--swlh-navy);
    font-size: 20px;
}

.swlh-exam-relevance p {
    margin: 10px 0 0;
    color: #5c5137;
    line-height: 1.7;
}

.swlh-source-box {
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
    gap: 25px;
    align-items: center;
    border: 1px solid var(--swlh-border);
    background: var(--swlh-surface);
}

.swlh-source-box > div:last-child {
    display: grid;
    gap: 6px;
}

.swlh-source-box a {
    color: var(--swlh-blue);
    font-weight: 700;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.swlh-source-box small {
    color: var(--swlh-muted);
}

.swlh-article-footer strong {
    color: var(--swlh-navy);
}

.swlh-article-footer p {
    color: var(--swlh-muted);
}

.swlh-article-footer .swlh-button-secondary {
    border-color: var(--swlh-border);
    background: #fff;
    color: var(--swlh-blue);
}

.swlh-archive-page .navigation.pagination {
    margin-top: 35px;
}

@media (max-width: 900px) {
    .swlh-hero {
        grid-template-columns: 1fr;
    }

    .swlh-today-card {
        max-width: 520px;
    }

    .swlh-path-grid,
    .swlh-content-grid,
    .swlh-archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .swlh-path-doubt {
        grid-column: 1 / -1;
    }

    .swlh-library-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .swlh-filter-search {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .swlh-shell {
        padding: 16px 0 50px;
    }

    .swlh-hero {
        gap: 26px;
        border-radius: 18px;
        padding: 28px 21px;
    }

    .swlh-hero-actions,
    .swlh-button {
        width: 100%;
    }

    .swlh-section-heading {
        align-items: flex-start;
    }

    .swlh-section-heading > a {
        flex: 0 0 auto;
        font-size: 13px;
    }

    .swlh-path-grid,
    .swlh-content-grid,
    .swlh-archive-grid {
        grid-template-columns: 1fr;
    }

    .swlh-path-doubt {
        grid-column: auto;
    }

    .swlh-path-card {
        min-height: 124px;
        padding: 18px;
    }

    .swlh-content-card {
        min-height: auto;
    }

    .swlh-trust-note {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 50px;
        padding: 24px;
    }

    .swlh-archive-page,
    .swlh-single-page {
        padding-top: 22px;
    }

    .swlh-article {
        border-radius: 16px;
    }

    .swlh-library-filters {
        grid-template-columns: 1fr;
    }

    .swlh-filter-search {
        grid-column: auto;
    }

    .swlh-library-filters button {
        width: 100%;
    }

    .swlh-source-box {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .swlh-button,
    .swlh-path-card {
        transition: none;
    }
}

/* Doubt Solver */
.swlh-doubt-shell {
    max-width: 1180px;
}

.swlh-doubt-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
}

.swlh-doubt-header > div {
    max-width: 720px;
}

.swlh-doubt-header h1 {
    margin: 0;
    color: var(--swlh-navy);
    font-size: clamp(1.6rem, 2.6vw, 2.15rem);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -.045em;
}

.swlh-doubt-header p {
    margin: 14px 0 0;
    color: var(--swlh-muted);
    font-size: 16px;
    line-height: 1.7;
}

.swlh-exam-select {
    display: grid;
    min-width: 230px;
    gap: 7px;
    color: var(--swlh-navy);
    font-size: 12px;
    font-weight: 700;
}

.swlh-exam-select select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--swlh-border);
    border-radius: 10px;
    padding: 8px 36px 8px 12px;
    background: #fff;
    color: var(--swlh-ink);
    font: inherit;
    font-size: 14px;
}

.swlh-doubt-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
    gap: 20px;
    align-items: stretch;
}

.swlh-question-panel,
.swlh-answer-panel {
    overflow: hidden;
    border: 1px solid var(--swlh-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(31, 49, 81, .07);
}

.swlh-mode-tabs {
    display: flex;
    overflow-x: auto;
    gap: 7px;
    border-bottom: 1px solid var(--swlh-border);
    padding: 13px 18px;
    background: var(--swlh-surface);
}

.swlh-mode-tabs button {
    min-height: 38px;
    flex: 0 0 auto;
    border: 1px solid transparent;
    border-radius: 9px;
    padding: 7px 13px;
    background: transparent;
    color: var(--swlh-muted);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
}

.swlh-mode-tabs button.is-active {
    border-color: var(--swlh-border);
    background: #fff;
    color: var(--swlh-blue);
    box-shadow: 0 3px 9px rgba(31, 49, 81, .06);
}

.swlh-mode-tabs button:disabled {
    cursor: not-allowed;
    opacity: .58;
}

.swlh-mode-tabs small {
    margin-left: 3px;
    font-size: 9px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.swlh-doubt-form {
    padding: 24px;
}

.swlh-form-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.swlh-form-heading h2,
.swlh-answer-empty h2,
.swlh-answer-result h2 {
    margin: 0;
    color: var(--swlh-navy);
    font-size: 21px;
    line-height: 1.35;
}

.swlh-form-heading p {
    margin: 5px 0 0;
    color: var(--swlh-muted);
    font-size: 13px;
}

.swlh-char-count {
    flex: 0 0 auto;
    color: var(--swlh-muted);
    font-size: 12px;
}

.swlh-doubt-form textarea {
    display: block;
    width: 100%;
    min-height: 210px;
    resize: vertical;
    border: 1px solid #cfd7e5;
    border-radius: 13px;
    padding: 16px;
    background: #fbfcfe;
    color: var(--swlh-ink);
    font: inherit;
    font-size: 15px;
    line-height: 1.65;
    box-sizing: border-box;
}

.swlh-doubt-form textarea:focus,
.swlh-exam-select select:focus,
.swlh-example-question button:focus {
    outline: 3px solid rgba(108, 192, 74, .24);
    outline-offset: 2px;
    border-color: var(--swlh-blue);
}

.swlh-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.swlh-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 16px;
}

.swlh-form-footer p {
    max-width: 390px;
    margin: 0;
    color: var(--swlh-muted);
    font-size: 11px;
    line-height: 1.5;
}

.swlh-ask-button {
    min-width: 130px;
    border: 0;
    background: var(--swlh-blue);
    color: #fff;
    cursor: pointer;
    font: inherit;
}

.swlh-ask-button:disabled {
    cursor: wait;
    opacity: .7;
}

.swlh-form-status {
    margin-top: 14px;
    border-radius: 9px;
    padding: 11px 13px;
    font-size: 13px;
    line-height: 1.5;
}

.swlh-form-status.is-loading {
    background: var(--swlh-blue-soft);
    color: #294d9c;
}

.swlh-form-status.is-error {
    border: 1px solid #efc4c4;
    background: #fff2f2;
    color: #8f2727;
}

.swlh-example-question {
    display: flex;
    gap: 8px;
    align-items: center;
    border-top: 1px solid var(--swlh-border);
    padding: 16px 24px;
    background: var(--swlh-surface);
    color: var(--swlh-muted);
    font-size: 12px;
}

.swlh-example-question button {
    border: 0;
    padding: 0;
    background: none;
    color: var(--swlh-blue);
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.swlh-answer-panel {
    display: grid;
    min-height: 510px;
}

.swlh-answer-empty,
.swlh-answer-result {
    align-self: center;
    padding: clamp(25px, 4vw, 42px);
}

.swlh-answer-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 15px;
    background: var(--swlh-blue-soft);
    color: var(--swlh-blue);
    font-size: 22px;
    font-weight: 800;
}

.swlh-answer-empty p,
.swlh-answer-empty li,
.swlh-answer-detail {
    color: var(--swlh-muted);
    font-size: 14px;
    line-height: 1.65;
}

.swlh-answer-empty ul {
    display: grid;
    gap: 9px;
    margin: 20px 0 0;
    padding-left: 20px;
}

.swlh-answer-notice {
    margin-bottom: 20px;
    border: 1px solid #f0d58f;
    border-radius: 9px;
    padding: 10px 12px;
    background: #fff9e9;
    color: #72500c;
    font-size: 12px;
}

.swlh-answer-summary {
    color: var(--swlh-ink);
    font-size: 16px;
    line-height: 1.7;
}

.swlh-answer-detail {
    margin-top: 22px;
    border-top: 1px solid var(--swlh-border);
    padding-top: 22px;
}

.swlh-answer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.swlh-answer-actions button {
    border: 1px solid var(--swlh-border);
    border-radius: 8px;
    padding: 8px 11px;
    background: var(--swlh-surface);
    color: var(--swlh-muted);
    font: inherit;
    font-size: 12px;
}

.swlh-safety-panel {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 34px;
    margin-top: 28px;
    border-radius: 18px;
    padding: 25px 28px;
    background: linear-gradient(90deg, #caffd1 0%, #f1ffe9 50%, #ddf99b 100%);
}

.swlh-safety-panel h2 {
    margin: 0;
    color: var(--swlh-navy);
    font-size: 23px;
}

.swlh-safety-panel ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding-left: 20px;
    color: #4b5b78;
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 860px) {
    .swlh-doubt-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .swlh-exam-select {
        width: 100%;
    }

    .swlh-doubt-layout {
        grid-template-columns: 1fr;
    }

    .swlh-answer-panel {
        min-height: 390px;
    }
}

@media (max-width: 640px) {
    .swlh-doubt-header {
        margin-bottom: 20px;
    }

    .swlh-question-panel,
    .swlh-answer-panel {
        border-radius: 15px;
    }

    .swlh-mode-tabs {
        padding: 10px;
    }

    .swlh-mode-tabs button {
        padding: 7px 10px;
    }

    .swlh-doubt-form {
        padding: 19px;
    }

    .swlh-form-heading {
        flex-direction: column;
        gap: 9px;
    }

    .swlh-doubt-form textarea {
        min-height: 190px;
    }

    .swlh-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .swlh-ask-button {
        position: sticky;
        bottom: 10px;
        z-index: 2;
        width: 100%;
    }

    .swlh-example-question {
        align-items: flex-start;
        flex-direction: column;
        padding: 15px 19px;
    }

    .swlh-safety-panel {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 22px;
    }
}
