:root {
    --color-bg: #fafafa;
    --color-surface: #ffffff;
    --color-surface-soft: #f4f4f5;
    --color-surface-raised: rgb(255 255 255 / 0.96);
    --color-text: oklch(14.7% 0.004 49.3);
    --color-text-soft: oklch(36.7% 0.016 35.7);
    --color-text-muted: oklch(54.7% 0.021 43.1);
    --color-text-faint: oklch(71.4% 0.014 41.2);
    --color-border: #e4e4e7;
    --color-border-strong: #d4d4d8;
    --color-accent: #059669;
    --color-accent-deep: #047857;
    --color-accent-soft: #ecfdf5;
    --color-accent-soft-strong: #d1fae5;
    --color-cyan: #06b6d4;
    --color-cyan-deep: #0891b2;
    --color-cyan-soft: #ecfeff;
    --color-cyan-soft-strong: #cffafe;
    --color-focus: rgba(5, 150, 105, 0.22);
    --color-badge-bg: #e0f2fe;
    --color-badge-text: #0369a1;
    --font-title: "Gabarito", "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --radius-card: 14px;
    --shadow-card: 0 1px 2px oklch(14.7% 0.004 49.3 / 0.04);
    --shadow-control: 0 1px 2px oklch(14.7% 0.004 49.3 / 0.05);
}

* {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    min-width: 0;
}

html {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
    max-width: 100%;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    font-family: inherit;
    line-height: 1.5;
    margin: 0;
    min-height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
}

.app-page-main {
    flex: 1 0 auto;
    min-height: 72vh;
    min-width: 0;
    transition: opacity 0.16s ease;
}

.page-loading-indicator {
    background: rgb(244 244 245 / 0.84);
    height: 3px;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 60;
}

.page-loading-indicator span {
    animation: page-loading-slide 1.08s ease-in-out infinite;
    background: linear-gradient(90deg, var(--color-badge-text), var(--color-cyan));
    display: block;
    height: 100%;
    width: 38%;
}

.page-loading-label {
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    box-shadow: var(--shadow-card);
    color: var(--color-text-soft);
    font-size: 0.78rem;
    font-weight: 700;
    left: 50%;
    padding: 0.36rem 0.72rem;
    position: fixed;
    top: 0.72rem;
    transform: translateX(-50%);
    z-index: 61;
}

body.is-loading .app-page-main {
    opacity: 0.72;
}

@keyframes page-loading-slide {
    0% {
        transform: translateX(-110%);
    }

    100% {
        transform: translateX(270%);
    }
}

.auth-entry-main {
    background: var(--color-surface);
}

button,
input,
select,
textarea {
    font: inherit;
    max-width: 100%;
}

a {
    color: inherit;
}

img,
picture,
video,
canvas {
    display: block;
    max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
blockquote,
figcaption,
.app-main,
.feed-title-link,
.feed-summary-link,
.feed-source,
.post-detail-source,
.post-detail-title,
.post-body,
.topic-page-title,
.topic-item h2,
.activity-item strong,
.activity-item span,
.profile-subtitle,
.profile-course-item strong,
.profile-accolade span,
.learning-path-card h2,
.learning-path-card p,
.learning-lesson-content h2,
.learning-lesson-content p,
.learning-card-visual-label,
.resource-video-card h2,
.about-copy h2,
.about-copy p,
.about-topic-cloud span,
.about-faq-item h3,
.about-faq-item p,
.legal-page {
    overflow-wrap: anywhere;
}

strong,
b {
    font-weight: 600;
}

.sr-only {
    clip: rect(0, 0, 0, 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

button,
input[type="submit"] {
    -webkit-tap-highlight-color: transparent;
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
}

.mw-400 {
    max-width: 400px !important;
}

.app-icon {
    display: inline-block;
    flex: 0 0 auto;
    height: 1em;
    vertical-align: -0.125em;
    width: 1em;
}

.app-logo {
    display: block;
    height: auto;
    width: 4.25rem;
}

.app-logo-navbar {
    height: 2.2rem;
    object-fit: contain;
    width: auto;
}

.app-logo-mark {
    display: block;
    height: auto;
    width: 4.5rem;
}

.app-header-link,
.feed-title-link,
.feed-summary-link {
    text-decoration: none;
}

.app-button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    box-shadow: var(--shadow-control);
    cursor: pointer;
    display: inline-flex;
    font-size: 0.92rem;
    font-weight: 600;
    justify-content: center;
    line-height: 1.2;
    min-height: 42px;
    max-width: 100%;
    padding: 0.68rem 1rem;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease, transform 0.12s ease;
    white-space: normal;
}

.app-button:active {
    transform: translateY(1px);
}

.app-button:focus-visible,
.app-control:focus-visible,
.vote-button:focus-visible,
.feed-action-link:focus-visible,
.topic-item:focus-visible,
.activity-item:focus-visible,
.sidebar-topic-link:focus-visible,
.app-header-link:focus-visible,
.app-header-brand:focus-visible {
    box-shadow: 0 0 0 4px var(--color-focus);
    outline: 0;
}

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

.app-button-primary:hover {
    background: var(--color-accent-deep);
    border-color: var(--color-accent-deep);
    color: white;
}

.app-button-secondary {
    background: var(--color-surface-raised);
    border-color: var(--color-border);
    color: var(--color-text-soft);
}

.app-button-secondary:hover {
    background: var(--color-surface);
    border-color: var(--color-border-strong);
    color: var(--color-text);
}

.app-button-small {
    font-size: 0.82rem;
    min-height: 34px;
    padding: 0.42rem 0.75rem;
}

.app-button-full {
    width: 100%;
}

.app-alert {
    align-items: center;
    border: 1px solid;
    border-radius: var(--radius-card);
    display: flex;
    font-size: 0.9rem;
    gap: 0.85rem;
    justify-content: space-between;
    line-height: 1.45;
    min-width: 0;
    padding: 0.85rem 0.95rem;
}

.app-alert-notice {
    background: var(--color-accent-soft);
    border-color: var(--color-accent-soft-strong);
    color: #065f46;
}

.app-alert-danger {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.flash-wrap {
    margin-bottom: 1rem;
    margin-top: 1rem;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.flash-wrap.is-hiding {
    opacity: 0;
    transform: translateY(-4px);
}

.flash-dismiss {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: currentColor;
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 1.25rem;
    height: 28px;
    justify-content: center;
    line-height: 1;
    opacity: 0.72;
    padding: 0;
    width: 28px;
}

.flash-dismiss:hover,
.flash-dismiss:focus-visible {
    background: rgb(255 255 255 / 0.52);
    opacity: 1;
}

.flash-dismiss:focus-visible {
    box-shadow: 0 0 0 3px var(--color-focus);
    outline: 0;
}

.empty-state {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.app-label {
    color: var(--color-text-soft);
    display: inline-block;
    font-size: 0.83rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.app-control {
    appearance: none;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: var(--shadow-control);
    color: var(--color-text);
    display: block;
    line-height: 1.5;
    min-height: 44px;
    padding: 0.68rem 0.78rem;
    transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
    width: 100%;
}

.app-control::placeholder {
    color: var(--color-text-faint);
}

.app-control:focus {
    background: var(--color-surface);
    border-color: rgba(5, 150, 105, 0.56);
    box-shadow: 0 0 0 4px var(--color-focus);
    outline: 0;
}

.form-field {
    margin-bottom: 1.05rem;
}

.form-field-tight {
    margin-bottom: 0.75rem;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: flex-end;
    margin-top: 1.35rem;
}

.form-alert {
    margin-bottom: 1rem;
    margin-top: 0;
}

.form-alert-heading {
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.form-alert-list {
    margin: 0;
    padding-left: 1.25rem;
}

.post-form {
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    margin-top: 0.35rem;
    min-width: 0;
    padding: 1.2rem;
}

.app-header {
    background: var(--color-bg);
    border-bottom: 1px solid transparent;
    box-shadow: none;
    padding: 0.62rem 0 0.72rem;
    position: sticky;
    top: 0;
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
    z-index: 20;
}

.app-header.is-scrolled {
    border-bottom-color: var(--color-border);
    box-shadow: 0 1px 0 oklch(14.7% 0.004 49.3 / 0.03);
}

.app-header-bar {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    min-width: 0;
}

.app-header-brand {
    align-items: center;
    color: var(--color-text);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0;
    text-decoration: none;
}

.app-header-search {
    flex: 1 1 auto;
    max-width: 520px;
    min-width: 180px;
}

.app-header-search-control {
    align-items: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-text-muted);
    display: flex;
    gap: 0.5rem;
    min-height: 34px;
    padding: 0 0.72rem;
    transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.app-header-search-control:focus-within {
    background: var(--color-surface);
    border-color: rgba(5, 150, 105, 0.56);
    box-shadow: 0 0 0 4px var(--color-focus);
}

.app-header-search-input {
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--color-text);
    font-size: 0.86rem;
    line-height: 1.4;
    min-height: 32px;
    min-width: 0;
    outline: 0;
    padding: 0;
    width: 100%;
}

.app-header-search-input::placeholder {
    color: var(--color-text-muted);
}

.app-header-nav {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex: 0 0 auto;
    font-size: 0.84rem;
    font-weight: 600;
    gap: 0.85rem;
    max-width: 100%;
    min-width: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
}

.app-header-nav::-webkit-scrollbar {
    display: none;
}

.app-header-link {
    color: var(--color-text-soft);
    flex: 0 0 auto;
    padding: 0.2rem 0;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 0.22em;
    transition: color 0.16s ease, text-decoration-color 0.16s ease;
}

.app-header-link:hover,
.app-header-link.is-active {
    color: var(--color-cyan-deep);
    text-decoration-color: currentColor;
}

.app-header-sign-in {
    border-radius: 999px;
    flex: 0 0 auto;
    min-height: 34px;
    padding-inline: 0.85rem;
}

.app-header-avatar-link {
    align-items: center;
    border-radius: 999px;
    color: white;
    display: inline-flex;
    flex: 0 0 auto;
    justify-content: center;
    text-decoration: none;
}

.app-header-avatar-link:focus-visible {
    box-shadow: 0 0 0 4px var(--color-focus);
    outline: 0;
}

.app-header-avatar {
    align-items: center;
    background: linear-gradient(135deg, oklch(14.7% 0.004 49.3), #059669);
    border-radius: 999px;
    display: flex;
    font-size: 0.86rem;
    font-weight: 800;
    height: 34px;
    justify-content: center;
    line-height: 1;
    min-width: 34px;
    width: 34px;
}

.page-heading-wrap {
    margin-top: 1.1rem;
}

.page-eyebrow {
    color: var(--color-text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 0 0 0.26rem;
}

.page-heading {
    color: var(--color-text);
    font-family: var(--font-title);
    font-size: clamp(1.7rem, 5vw, 2.55rem);
    font-weight: 700;
    line-height: 1.04;
    margin: 0;
    max-width: 18ch;
}

.app-shell {
    display: block;
    margin-top: 1.05rem;
    min-width: 0;
    padding-bottom: 1.5rem;
}

.app-main {
    min-width: 0;
}

.legal-shell {
    margin-top: 1.05rem;
    padding-bottom: 1.5rem;
}

.legal-main {
    max-width: 860px;
    margin: 0 auto;
}

.legal-title {
    color: var(--color-text);
    font-family: var(--font-title);
    font-size: clamp(1.9rem, 5vw, 2.7rem);
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 1.15rem;
    text-align: center;
}

.topic-page-title {
    color: var(--color-text);
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 5vw, 2.45rem);
    font-weight: 700;
    line-height: 1.06;
    margin: 0 0 1rem;
    text-align: left;
}

.desktop-sidebar {
    display: none;
}

.sidebar-panel {
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 0.92rem;
}

.sidebar-panel+.sidebar-panel {
    margin-top: 0.72rem;
}

.sidebar-panel-brand {
    background:
        radial-gradient(circle at 86% 8%, rgba(110, 231, 183, 0.22), transparent 7rem),
        linear-gradient(145deg, #011f17 0%, #064e3b 48%, #047857 100%);
    border-color: rgba(5, 150, 105, 0.48);
    box-shadow: var(--shadow-card);
    color: white;
    overflow: hidden;
    padding: 1rem;
    position: relative;
}

.sidebar-logo-wrap {
    align-items: center;
    display: flex;
    min-height: 38px;
}

.sidebar-logo {
    display: block;
    color: white;
    font-family: var(--font-title);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.sidebar-panel h2 {
    color: var(--color-text);
    font-family: var(--font-title);
    font-size: 0.82rem;
    font-weight: 700;
    margin: 0;
}

.sidebar-panel p {
    color: var(--color-text-soft);
    font-size: 0.84rem;
    line-height: 1.52;
    margin: 0.68rem 0 0;
}

.sidebar-panel.sidebar-panel-brand p {
    color: rgba(236, 253, 245, 0.84);
}

.sidebar-card-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

.sidebar-card-header a {
    color: var(--color-cyan-deep);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
}

.sidebar-topic-list {
    display: grid;
    gap: 0.12rem;
    margin-top: 0.76rem;
}

.sidebar-topic-link {
    align-items: center;
    border-radius: 8px;
    color: var(--color-text-soft);
    display: flex;
    font-size: 0.84rem;
    font-weight: 600;
    gap: 0.75rem;
    justify-content: space-between;
    min-height: 34px;
    padding: 0.42rem 0.5rem;
    text-decoration: none;
    transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.sidebar-topic-link:hover,
.sidebar-topic-link.is-active {
    background: var(--color-surface-soft);
    color: var(--color-text);
}

.sidebar-topic-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-topic-count {
    align-items: center;
    color: var(--color-text-muted);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.75rem;
    font-weight: 500;
    justify-content: center;
    line-height: 1rem;
    min-width: 1.2rem;
}

.sidebar-topic-link:hover .sidebar-topic-count,
.sidebar-topic-link.is-active .sidebar-topic-count {
    color: var(--color-text-muted);
}

.sidebar-empty,
.sidebar-copy {
    color: var(--color-text-muted);
    font-size: 0.88rem;
}

.sidebar-utility {
    display: grid;
    gap: 0.62rem;
    justify-items: start;
    margin-top: 0.9rem;
    padding: 0.9rem 0.15rem 0;
    position: relative;
}

.sidebar-utility::before {
    background: var(--color-border);
    content: "";
    height: 1px;
    left: 0.15rem;
    opacity: 0.82;
    position: absolute;
    right: 0.15rem;
    top: 0;
}

.sidebar-app-store {
    max-width: 100%;
    width: max-content;
}

.sidebar-app-store-badge {
    display: block;
    height: 46px;
    object-fit: contain;
    width: auto;
}

.social-profile-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.social-profile-links-icons .social-profile-link {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    height: 32px;
    justify-content: center;
    transition: background-color 0.16s ease, opacity 0.16s ease, transform 0.16s ease;
    width: 32px;
}

.social-profile-links-icons .social-profile-link:hover,
.social-profile-links-icons .social-profile-link:focus-visible {
    opacity: 0.78;
    transform: translateY(-1px);
}

.social-profile-icon {
    display: block;
    height: 20px;
    object-fit: contain;
    width: 20px;
}

.sidebar-follow {
    align-items: center;
    display: flex;
    gap: 0.65rem;
    min-height: 32px;
}

.sidebar-follow-label {
    color: var(--color-text-muted);
    flex: 0 0 auto;
    font-size: 0.76rem;
    font-weight: 700;
}

.sidebar-social-links {
    gap: 0.42rem;
    justify-content: center;
    padding: 0;
}

.sidebar-social-links .social-profile-link {
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
    height: 30px;
    width: 30px;
}

.sidebar-social-links .social-profile-link:hover,
.sidebar-social-links .social-profile-link:focus-visible {
    background: var(--color-surface-soft);
    border-color: var(--color-border-strong);
    opacity: 1;
}

.sidebar-social-links .social-profile-icon {
    height: 17px;
    width: 17px;
}

.sidebar-footer {
    color: var(--color-text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.82rem;
    padding: 0.85rem 0.15rem 0;
}

.sidebar-footer a {
    font-size: 0.76rem;
    font-weight: 600;
    text-decoration-color: transparent;
    text-underline-offset: 0.22em;
    transition: color 0.16s ease, text-decoration-color 0.16s ease;
}

.sidebar-footer a:hover {
    color: var(--color-cyan-deep);
    text-decoration-color: currentColor;
}

.feed-list {
    display: grid;
    gap: 1rem;
    padding-bottom: 1.5rem;
}

.feed-toolbar {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: space-between;
    margin-bottom: 0.7rem;
    min-width: 0;
}

.feed-mode-tabs {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    display: flex;
    flex: 0 1 auto;
    max-width: 100%;
    min-width: 0;
    gap: 0.2rem;
    overflow-x: auto;
    padding: 0.22rem;
    scrollbar-width: none;
    width: max-content;
}

.feed-mode-tabs::-webkit-scrollbar {
    display: none;
}

.feed-mode-tab {
    border-radius: 999px;
    color: var(--color-text-soft);
    flex: 0 0 auto;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    min-height: 34px;
    padding: 0.6rem 0.82rem;
    text-decoration: none;
    transition: background-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}

.feed-mode-tab:hover {
    background: var(--color-surface-soft);
    color: var(--color-text);
}

.feed-mode-tab.is-active {
    background: var(--color-surface-soft);
    box-shadow: var(--shadow-control);
    color: var(--color-text);
}

.mobile-discovery {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.mobile-chip-row,
.mobile-topic-row {
    display: flex;
    gap: 0.45rem;
    margin-left: -0.85rem;
    margin-right: -0.85rem;
    overflow-x: auto;
    padding: 0 0.85rem 0.1rem;
    scrollbar-width: none;
}

.mobile-chip-row::-webkit-scrollbar,
.mobile-topic-row::-webkit-scrollbar {
    display: none;
}

.mobile-chip,
.mobile-topic-link {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    box-shadow: var(--shadow-card);
    color: var(--color-text-soft);
    flex: 0 0 auto;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.5rem 0.65rem;
    text-decoration: none;
}

.mobile-chip:hover,
.mobile-chip.is-active,
.mobile-topic-link:hover {
    background: var(--color-cyan-soft);
    border-color: var(--color-cyan-soft-strong);
    color: var(--color-cyan-deep);
}

.feed-filter {
    align-items: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    color: var(--color-text-muted);
    display: flex;
    font-size: 0.88rem;
    flex-wrap: wrap;
    gap: 0.4rem 0.7rem;
    justify-content: space-between;
    margin-bottom: 0.85rem;
    padding: 0.7rem 0.8rem;
}

.feed-filter strong {
    color: var(--color-text);
}

.feed-filter a {
    color: var(--color-cyan-deep);
    font-weight: 700;
    text-decoration: none;
}

.feed-filter a:hover {
    text-decoration: underline;
}

.search-page {
    margin-top: 0;
}

.search-summary {
    margin-bottom: 0.8rem;
}

.search-summary h1 {
    color: var(--color-text);
    font-family: var(--font-title);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    line-height: 1.12;
    margin: 0;
    max-width: 100%;
}

.search-summary h1 span {
    color: var(--color-cyan-deep);
}

.search-results-list {
  padding-bottom: 0;
}

.search-empty-panel {
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  color: var(--color-text-muted);
  padding: clamp(1.15rem, 4vw, 1.8rem);
  text-align: center;
}

.search-empty-panel h1 {
  color: var(--color-text);
  font-family: var(--font-title);
  font-size: clamp(1.65rem, 5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 auto 1.1rem;
  max-width: 15ch;
}

.search-empty-form {
  align-items: stretch;
  display: flex;
  gap: 0.65rem;
  margin: 0 auto;
  max-width: 620px;
}

.search-empty-control {
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: var(--shadow-control);
  color: var(--color-text-muted);
  display: flex;
  flex: 1 1 auto;
  gap: 0.55rem;
  min-height: 46px;
  min-width: 0;
  padding: 0 0.9rem;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.search-empty-control:focus-within {
  border-color: rgba(5, 150, 105, 0.56);
  box-shadow: 0 0 0 4px var(--color-focus);
}

.search-empty-input {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--color-text);
  font-size: 0.96rem;
  line-height: 1.4;
  min-height: 42px;
  min-width: 0;
  outline: 0;
  padding: 0;
  width: 100%;
}

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

.search-empty-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.search-empty-examples a {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-soft);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.36rem 0.62rem;
  text-decoration: none;
  transition: border-color 0.16s ease, color 0.16s ease;
}

.search-empty-examples a:hover {
  border-color: var(--color-border-strong);
  color: var(--color-cyan-deep);
}

.search-empty-link {
  color: var(--color-cyan-deep);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 1rem;
  text-decoration: none;
}

.search-empty-link:hover {
  text-decoration: underline;
}

.feed-item,
.post-detail-card,
.comments-card,
.auth-card {
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    min-width: 0;
    overflow: hidden;
}

.feed-item {
    margin: 0;
    padding: 0;
}

.feed-card {
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.feed-card:hover {
    border-color: #a1a1aa;
    cursor: pointer;
}

.feed-item-body {
    min-width: 0;
    padding: 0;
}

.feed-card-content {
    min-width: 0;
    padding: 1.05rem 1.1rem 1rem;
}

.post-image-placeholder,
.post-detail-hero {
    align-items: flex-start;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.42), transparent 9rem),
        linear-gradient(135deg, oklch(14.7% 0.004 49.3) 0%, oklch(36.7% 0.016 35.7) 52%, oklch(71.4% 0.014 41.2) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.post-image-placeholder {
    aspect-ratio: 16 / 3.2;
    border: 0;
    border-radius: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    margin-bottom: 0;
    min-height: 96px;
    padding: 0.72rem 0.9rem;
    text-decoration: none;
}

.post-image-placeholder.has-thumbnail,
.post-detail-hero.has-thumbnail {
    background: #111827;
}

.post-image-placeholder.has-thumbnail::before,
.post-image-placeholder.has-thumbnail::after,
.post-detail-hero.has-thumbnail::before,
.post-detail-hero.has-thumbnail::after {
    content: none;
}

.post-thumbnail-image {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.post-image-placeholder.has-thumbnail .post-image-source,
.post-detail-hero.has-thumbnail .post-image-source,
.post-detail-hero.has-thumbnail .post-image-time {
    background: rgba(17, 24, 39, 0.72);
    border-radius: 999px;
    color: white;
    padding: 0.32rem 0.52rem;
}

.post-detail-hero {
    aspect-ratio: 16 / 6.2;
    padding: 1.15rem;
}

.post-image-placeholder::before,
.post-image-placeholder::after,
.post-detail-hero::before,
.post-detail-hero::after {
    content: "";
    position: absolute;
}

.post-image-placeholder::before,
.post-detail-hero::before {
    background: rgba(255, 255, 255, 0.13);
    height: 1px;
    inset: 36% 0 auto;
    box-shadow: 0 42px 0 rgba(255, 255, 255, 0.1), 0 84px 0 rgba(255, 255, 255, 0.08);
}

.post-image-placeholder::after,
.post-detail-hero::after {
    background: rgba(255, 255, 255, 0.12);
    bottom: 0;
    left: 27%;
    top: 0;
    width: 1px;
    box-shadow: 76px 0 0 rgba(255, 255, 255, 0.09), 152px 0 0 rgba(255, 255, 255, 0.07), 228px 0 0 rgba(255, 255, 255, 0.06);
}

.post-image-placeholder-1 {
    background:
        radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.35), transparent 9rem),
        linear-gradient(135deg, #064e3b 0%, #059669 54%, #a7f3d0 100%);
}

.post-image-placeholder-2 {
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.34), transparent 9rem),
        linear-gradient(135deg, oklch(21.4% 0.009 43.1) 0%, oklch(43.8% 0.017 39.3) 55%, oklch(86.8% 0.007 39.5) 100%);
}

.post-image-placeholder-3 {
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.34), transparent 9rem),
        linear-gradient(135deg, #0f766e 0%, #14b8a6 55%, #ccfbf1 100%);
}

.post-image-placeholder-4 {
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.34), transparent 9rem),
        linear-gradient(135deg, #164e63 0%, #0891b2 53%, #cffafe 100%);
}

.post-image-topline {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.post-image-time,
.post-image-source,
.post-image-chart,
.post-detail-chart {
    position: relative;
    z-index: 1;
}

.post-image-time {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.75rem;
    font-weight: 500;
}

.post-image-source {
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 500;
    gap: 0.35rem;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
}

.post-image-chart,
.post-detail-chart {
    align-self: stretch;
    margin: auto 0;
}

.post-image-chart {
    height: 34px;
}

.post-detail-chart {
    height: 78px;
}

.post-image-chart::before,
.post-detail-chart::before {
    background:
        linear-gradient(145deg, transparent 0 15%, rgba(255, 255, 255, 0.95) 15% 18%, transparent 18% 39%, rgba(255, 255, 255, 0.86) 39% 42%, transparent 42% 66%, rgba(255, 255, 255, 0.9) 66% 69%, transparent 69%),
        linear-gradient(to top, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0));
    clip-path: polygon(0 80%, 18% 58%, 34% 65%, 52% 31%, 68% 40%, 86% 16%, 100% 22%, 100% 100%, 0 100%);
    content: "";
    display: block;
    height: 100%;
    width: 100%;
}

.vote-button {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: var(--color-text-muted);
    display: inline-flex;
    height: 34px;
    justify-content: center;
    transition: background-color 0.16s ease, color 0.16s ease, transform 0.12s ease;
    width: 34px;
}

.vote-button.is-active,
.vote-button:hover {
    background: var(--color-cyan-soft);
    color: var(--color-cyan-deep);
}

.vote-button:active {
    transform: translateY(-1px) scale(0.96);
}

.vote-button-signin {
    color: var(--color-text-faint);
}

.vote-button-disabled,
.vote-button-disabled:hover {
    background: transparent;
    color: var(--color-text-faint);
    cursor: not-allowed;
    opacity: 0.75;
}

.vote-count {
    color: var(--color-text);
    font-size: 0.82rem;
    font-weight: 700;
    min-width: 1ch;
    text-align: center;
    transition: color 0.16s ease, transform 0.16s ease;
}

.vote-count.is-active {
    color: var(--color-cyan-deep);
    transform: translateY(-1px);
}

.feed-meta {
    align-items: center;
    color: var(--color-text-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.75rem;
    gap: 0.38rem;
    line-height: 1.35;
    margin-bottom: 0.68rem;
    min-width: 0;
}

.feed-meta>*+*::before {
    color: var(--color-text-faint);
    content: "•";
    margin-right: 0.42rem;
}

.feed-meta>.feed-topic-pill+*::before {
    content: none;
    margin-right: 0;
}

.feed-source {
    color: var(--color-text-faint);
    font-weight: 600;
    min-width: 0;
}

.feed-title {
    font-family: var(--font-title);
    font-size: clamp(1.08rem, 1.9vw, 1.24rem);
    font-weight: 600;
    line-height: 1.24;
    margin: 0 0 0.58rem;
}

.feed-summary {
    color: var(--color-text-soft);
    display: -webkit-box;
    font-size: 0.94rem;
    line-height: 1.58;
    margin-bottom: 1.05rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.feed-title-link {
    color: var(--color-text);
    display: inline;
    transition: color 0.16s ease;
}

.feed-summary-link {
    color: inherit;
    display: inline;
}

.feed-actions,
.post-detail-actions {
    border-top: 1px solid oklch(92.2% 0.005 34.3 / 0.8);
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 0.78rem;
    min-width: 0;
}

.feed-actions {
    align-items: center;
    padding-top: 0.85rem;
}

.post-detail-actions {
    align-items: center;
    background: var(--color-surface);
    border: 1px solid oklch(92.2% 0.005 34.3 / 0.8);
    border-radius: var(--radius-card);
    margin-top: 1rem;
    padding: 0.55rem 0.7rem;
}

.feed-vote-control {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    gap: 0.12rem;
    min-height: 34px;
    padding: 0;
}

.feed-vote-control .button_to {
    line-height: 0;
}

.button_to {
    max-width: 100%;
}

.feed-vote-control .vote-button {
    height: 28px;
    width: 28px;
}

.feed-action-link {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: var(--color-text-muted);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 600;
    gap: 0.35rem;
    min-height: 34px;
    min-width: 0;
    padding: 0.3rem 0.15rem;
    text-decoration: none;
    transition: color 0.16s ease;
    overflow-wrap: anywhere;
}

.feed-action-link .app-icon {
    flex: 0 0 auto;
}

.feed-action-link.is-active {
    color: var(--color-text);
}

.feed-action-link:hover {
    background: transparent;
    color: var(--color-cyan-deep);
}

.post-share-actions {
    align-items: center;
    color: var(--color-text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
    margin-top: 0.8rem;
    padding-top: 0;
}

.post-share-label {
    font-size: 0.76rem;
    font-weight: 700;
}

.post-share-links {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.42rem;
    min-width: 0;
}

.post-share-link {
    align-items: center;
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-text-soft);
    display: inline-flex;
    height: 32px;
    justify-content: center;
    padding: 0;
    text-decoration: none;
    transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
    width: 32px;
}

.post-share-link:hover {
    background: var(--color-surface);
    border-color: var(--color-border-strong);
    color: var(--color-cyan-deep);
}

.social-icon {
    display: block;
    height: 18px;
    width: 18px;
}

.empty-card {
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    color: var(--color-text-muted);
    padding: 1.05rem;
}

.empty-card strong {
    color: var(--color-text);
    display: block;
    font-weight: 700;
}

.empty-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0.28rem 0 0.9rem;
}

.empty-card-compact {
    margin-top: 0.8rem;
}

.learning-page {
    margin-top: 0;
}

.resources-page {
    margin-top: 0;
}

.resources-shell {
    margin-top: 1.05rem;
    min-width: 0;
    padding-bottom: 1.5rem;
}

.learning-shell {
    margin-top: 1.05rem;
    min-width: 0;
    padding-bottom: 1.5rem;
}

.learning-intro {
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    color: var(--color-text-soft);
    font-size: 1rem;
    margin-bottom: 1.15rem;
    min-width: 0;
    padding: 1.2rem;
}

.resources-grid {
    display: grid;
    column-gap: 1.15rem;
    row-gap: 2.1rem;
}

.resource-video-card {
    color: var(--color-text);
    min-width: 0;
}

.resource-video-frame {
    aspect-ratio: 16 / 9;
    background:
        linear-gradient(135deg, rgba(6, 78, 59, 0.92), rgba(8, 145, 178, 0.7)),
        var(--color-surface);
    border-radius: var(--radius-card);
    overflow: hidden;
}

.resource-video-frame iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
}

.resource-video-content {
    min-width: 0;
    padding: 0.65rem 0.1rem 0;
}

.resource-video-card h2 {
    color: var(--color-text);
    font-family: var(--font-title);
    font-size: 1.06rem;
    line-height: 1.2;
    margin: 0;
}

.learning-intro p {
    margin: 0;
}

.learning-intro-eyebrow {
    color: var(--color-badge-text);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 0.32rem !important;
}

.learning-intro h1 {
    color: var(--color-text);
    font-family: var(--font-title);
    font-size: 1.28rem;
    line-height: 1.18;
    margin: 0 0 0.45rem;
}

.learning-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.9rem;
}

.learning-grid {
    display: grid;
    gap: 1.15rem;
}

.learning-path-card {
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    padding: 0;
    text-decoration: none;
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.learning-path-card:hover {
    border-color: #a1a1aa;
    cursor: pointer;
}

.learning-path-card.is-started {
    border-color: var(--color-border-strong);
}

.learning-path-card.is-complete {
    border-color: #e9d5ff;
}

.learning-path-card:focus-visible {
    box-shadow: 0 0 0 4px var(--color-focus);
    outline: 0;
}

.learning-card-visual {
    align-items: flex-start;
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.38), transparent 9rem),
        linear-gradient(135deg, oklch(14.7% 0.004 49.3) 0%, oklch(36.7% 0.016 35.7) 52%, oklch(71.4% 0.014 41.2) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 190px;
    overflow: hidden;
    padding: 0.95rem 1rem;
    position: relative;
}

.learning-card-visual::before,
.learning-card-visual::after {
    content: "";
    position: absolute;
}

.learning-card-visual::before {
    background: rgba(255, 255, 255, 0.13);
    height: 1px;
    inset: 36% 0 auto;
    box-shadow: 0 42px 0 rgba(255, 255, 255, 0.1), 0 84px 0 rgba(255, 255, 255, 0.08);
}

.learning-card-visual::after {
    background: rgba(255, 255, 255, 0.12);
    bottom: 0;
    left: 27%;
    top: 0;
    width: 1px;
    box-shadow: 76px 0 0 rgba(255, 255, 255, 0.09), 152px 0 0 rgba(255, 255, 255, 0.07), 228px 0 0 rgba(255, 255, 255, 0.06);
}

.learning-card-visual-1 {
    background:
        radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.35), transparent 9rem),
        linear-gradient(135deg, #064e3b 0%, #059669 54%, #a7f3d0 100%);
}

.learning-card-visual-2 {
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.34), transparent 9rem),
        linear-gradient(135deg, oklch(21.4% 0.009 43.1) 0%, oklch(43.8% 0.017 39.3) 55%, oklch(86.8% 0.007 39.5) 100%);
}

.learning-card-visual-3 {
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.34), transparent 9rem),
        linear-gradient(135deg, #0f766e 0%, #14b8a6 55%, #ccfbf1 100%);
}

.learning-card-visual-4 {
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.34), transparent 9rem),
        linear-gradient(135deg, #164e63 0%, #0891b2 53%, #cffafe 100%);
}

.learning-card-chart,
.learning-card-visual-label {
    position: relative;
    z-index: 1;
}

.learning-card-chart {
    align-self: stretch;
    height: 42px;
    margin: auto 0;
}

.learning-card-chart::before {
    background:
        linear-gradient(145deg, transparent 0 15%, rgba(255, 255, 255, 0.95) 15% 18%, transparent 18% 39%, rgba(255, 255, 255, 0.86) 39% 42%, transparent 42% 66%, rgba(255, 255, 255, 0.9) 66% 69%, transparent 69%),
        linear-gradient(to top, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0));
    clip-path: polygon(0 80%, 18% 58%, 34% 65%, 52% 31%, 68% 40%, 86% 16%, 100% 22%, 100% 100%, 0 100%);
    content: "";
    display: block;
    height: 100%;
    width: 100%;
}

.learning-card-visual-label {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 700;
}

.learning-card-topline {
    align-items: center;
    color: var(--color-text-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.78rem;
    font-weight: 700;
    gap: 0.65rem;
    justify-content: space-between;
    margin-bottom: 0.85rem;
    min-width: 0;
    padding: 1.15rem 1.15rem 0;
}

.learning-count,
.learning-duration {
    color: var(--color-text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1rem;
}

.learning-path-card h2,
.learning-lesson-content h2 {
    color: var(--color-text);
    font-family: var(--font-title);
    font-size: 1.14rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.45rem;
}

.learning-lesson-heading h2 {
    margin: 0;
    min-width: 0;
}

.learning-path-card h2 {
    padding: 0 1.15rem;
}

.learning-path-card p,
.learning-lesson-content p {
    color: var(--color-text-soft);
    font-size: 0.94rem;
    line-height: 1.58;
    margin: 0;
}

.learning-lesson-content p {
    max-width: 58ch;
}

.learning-path-card p {
    padding: 0 1.15rem;
}

.learning-card-action {
    align-items: center;
    color: var(--color-accent-deep);
    display: inline-flex;
    font-size: 0.88rem;
    font-weight: 700;
    gap: 0.25rem;
    margin: auto 1.15rem 1.15rem;
    padding-top: 1.15rem;
}

.learning-progress {
    color: var(--color-text-muted);
    display: grid;
    font-size: 0.82rem;
    gap: 0.5rem;
    grid-template-columns: 1fr auto;
    margin: auto 1.15rem 1.15rem;
    min-width: 0;
    padding-top: 1.15rem;
}

.learning-progress strong {
    color: var(--color-text);
}

.learning-progress-copy {
    display: grid;
    gap: 0.1rem;
    min-width: 0;
}

.learning-progress-copy span {
    color: var(--color-text);
    font-weight: 700;
    min-width: 0;
}

.learning-progress-copy small {
    color: var(--color-text-muted);
    font-size: 0.74rem;
    font-weight: 600;
}

.learning-progress-track {
    background: #e5e7eb;
    border-radius: 999px;
    grid-column: 1 / -1;
    height: 8px;
    overflow: hidden;
}

.learning-progress-fill {
    background: linear-gradient(90deg, var(--color-accent), var(--color-cyan));
    border-radius: inherit;
    height: 100%;
    min-width: 0;
    transition: width 0.2s ease;
}

.learning-path-hero {
    align-items: flex-start;
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1.15rem;
    min-width: 0;
    padding: 1.2rem;
}

.learning-path-hero>div {
    min-width: 0;
}

.learning-path-hero-progress {
    display: block;
    margin: 0.9rem 0 0;
    max-width: 420px;
    padding: 0;
}

.learning-path-hero-progress .learning-progress-track {
    display: block;
}

.learning-path-hero p {
    color: var(--color-text-soft);
    font-size: 1rem;
    line-height: 1.62;
    margin: 0;
}

.learning-path-hero h1 {
    color: var(--color-text);
    font-family: var(--font-title);
    font-size: 1.35rem;
    line-height: 1.16;
    margin: 0.65rem 0 0.45rem;
}

.learning-path-meta {
    color: var(--color-text-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.82rem;
    font-weight: 600;
    gap: 0.55rem;
    margin-top: 0.75rem;
}

.learning-path-meta span {
    align-items: center;
    color: var(--color-text-muted);
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1rem;
}

.learning-path-meta span+span::before {
    color: var(--color-text-faint);
    content: "•";
    margin-right: 0.55rem;
}

.learning-lessons {
    display: grid;
    gap: 1.15rem;
}

.learning-lesson-card {
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    display: grid;
    min-width: 0;
    overflow: hidden;
}

.learning-lesson-card.is-complete {
    background: var(--color-surface-raised);
    border-color: #e9d5ff;
}

.learning-video-placeholder {
    align-items: center;
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(circle at 78% 20%, rgba(6, 182, 212, 0.2), transparent 8rem),
        linear-gradient(135deg, #052e2b, #083344 58%, #111827);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    justify-content: center;
    min-height: 180px;
    min-width: 0;
    overflow: hidden;
    padding: 1rem;
    position: relative;
    text-align: center;
}

.learning-lesson-card.is-complete .learning-video-placeholder {
    box-shadow: inset 0 0 0 999px rgb(5 150 105 / 0.08);
}

.learning-video-badge {
    gap: 0.25rem;
    left: 0.8rem;
    position: absolute;
    top: 0.8rem;
}

.learning-video-placeholder>span:not(.learning-video-badge) {
    color: rgb(255 255 255 / 0.72);
    font-size: 0.82rem;
    font-weight: 700;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.learning-video-play {
    align-items: center;
    background: rgb(255 255 255 / 0.94);
    border-radius: 999px;
    color: var(--color-accent-deep);
    display: flex;
    height: 54px;
    justify-content: center;
    width: 54px;
}

.learning-video-play .app-icon {
    height: 22px;
    margin-left: 2px;
    width: 22px;
}

.learning-lesson-content {
    align-content: start;
    display: grid;
    min-width: 0;
    padding: 1.15rem;
}

.learning-lesson-content form {
    margin-top: 1.1rem;
}

.learning-watched-button {
    gap: 0.35rem;
}

.learning-lesson-heading {
    align-items: baseline;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 0.45rem;
    min-width: 0;
}

.learning-lesson-heading .learning-duration {
    flex: 0 0 auto;
    white-space: nowrap;
}

.learning-lesson-meta {
    align-items: center;
    color: var(--color-text-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.78rem;
    font-weight: 600;
    gap: 0.65rem;
    justify-content: space-between;
    margin-bottom: 0.65rem;
}

.learning-complete-label {
    gap: 0.25rem;
}

.feed-action-link-push {
    margin-left: auto;
}

.breadcrumbs {
    color: var(--color-text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    min-width: 0;
}

.breadcrumb-list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-compact {
    align-items: center;
    display: none;
    gap: 0.5rem;
    min-width: 0;
}

.breadcrumb-item {
    align-items: center;
    display: inline-flex;
    min-width: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--color-text-faint);
    content: "/";
    margin-right: 0.35rem;
}

.breadcrumb-link {
    color: var(--color-text-soft);
    text-decoration: none;
}

.breadcrumb-link:hover,
.breadcrumb-back-link:hover {
    color: var(--color-text);
}

.breadcrumb-current,
.breadcrumb-compact-current {
    color: var(--color-text-muted);
    display: inline-block;
    max-width: min(100%, 34rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumb-back-link {
    color: var(--color-text-soft);
    flex: 0 0 auto;
    text-decoration: none;
}

.breadcrumb-compact-current {
    border-left: 1px solid var(--color-border);
    flex: 1 1 auto;
    max-width: 100%;
    padding-left: 0.5rem;
}

.post-detail {
    margin-top: 1.05rem;
    padding-bottom: 1.5rem;
}

.post-detail-content {
    min-width: 0;
    padding: 1.25rem;
}

.post-detail-meta {
    align-items: center;
    color: var(--color-text-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.8rem;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
    min-width: 0;
}

.post-detail-source,
.post-detail-date {
    font-weight: 500;
}

.post-detail-title {
    color: var(--color-text);
    font-family: var(--font-title);
    font-size: clamp(1.75rem, 4.4vw, 2.55rem);
    font-weight: 700;
    line-height: 1.04;
    margin: 0 0 1.05rem;
}

.post-body {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.65;
}

.post-detail-body {
    border-bottom: 1px solid oklch(92.2% 0.005 34.3 / 0.58);
    color: var(--color-text-soft);
    font-size: 1.04rem;
    line-height: 1.72;
    padding-bottom: 1.1rem;
}

.post-detail-body p {
    margin: 0 0 1rem;
}

.post-detail-body p:last-child {
    margin-bottom: 0;
}

.post-detail-comment-count {
    pointer-events: none;
}

.comments-section,
.profile-section {
    margin-top: 1.45rem;
}

.profile-learning-section {
    margin-bottom: 1.45rem;
}

.profile-learning-card {
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    margin-top: 0.8rem;
    min-width: 0;
    padding: 1rem;
}

.profile-learning-summary {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    min-width: 0;
}

.profile-learning-summary strong,
.profile-learning-summary span {
    display: block;
    min-width: 0;
}

.profile-learning-summary strong {
    color: var(--color-text);
    font-family: var(--font-title);
    font-size: 1.8rem;
    line-height: 1;
}

.profile-learning-summary span {
    color: var(--color-text-muted);
    font-size: 0.86rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.profile-learning-progress {
    display: block;
    margin-top: 0.95rem;
}

.profile-learning-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.profile-course-list {
    display: grid;
    gap: 0.55rem;
    margin-top: 1rem;
}

.profile-course-item {
    align-items: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    color: var(--color-text);
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    min-width: 0;
    padding: 0.78rem 0.85rem;
    text-decoration: none;
    transition: background-color 0.16s ease, border-color 0.16s ease;
}

.profile-course-item:hover,
.profile-course-item.is-complete {
    background: var(--color-accent-soft);
    border-color: var(--color-accent-soft-strong);
    color: var(--color-text);
}

.profile-course-item strong,
.profile-course-item span {
    display: block;
    min-width: 0;
}

.profile-course-item strong {
    font-size: 0.9rem;
    font-weight: 700;
}

.profile-course-item span,
.profile-course-item small {
    color: var(--color-text-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.profile-accolade-grid {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-accolade {
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    color: var(--color-text-muted);
    min-width: 0;
    padding: 0.9rem;
}

.profile-accolade.is-earned {
    background: var(--color-accent-soft);
    border-color: var(--color-accent-soft-strong);
}

.profile-accolade strong,
.profile-accolade span {
    display: block;
}

.profile-accolade strong {
    color: var(--color-text);
    font-size: 0.92rem;
    font-weight: 700;
}

.profile-accolade span {
    font-size: 0.82rem;
    line-height: 1.45;
    margin-top: 0.28rem;
}

.profile-milestone-panel {
    margin-top: 1rem;
}

.profile-milestone-panel h3 {
    color: var(--color-text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 0 0 0.65rem;
    text-transform: uppercase;
}

.feed-topic-pill,
.learning-level,
.learning-complete-label,
.learning-video-badge,
.profile-learning-badge,
.profile-learning-badge.is-earned {
    align-items: center;
    background: var(--color-badge-bg);
    border: 0;
    border-radius: 999px;
    color: var(--color-badge-text);
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1rem;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    padding: 0.25rem 0.5rem;
    text-overflow: ellipsis;
}

.feed-topic-pill {
    text-decoration: none;
}

.feed-topic-pill:hover {
    background: var(--color-badge-bg);
    color: var(--color-badge-text);
}

.profile-section-header {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.profile-section-header span {
    color: var(--color-text-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.comments-card {
    min-width: 0;
    padding: 1rem 1.1rem;
}

.comments-header {
    border-bottom: 1px solid oklch(92.2% 0.005 34.3 / 0.8);
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
}

.section-heading {
    color: var(--color-text);
    font-family: var(--font-title);
    font-size: 1.02rem;
    font-weight: 600;
    margin: 0;
}

.auth-title {
    color: var(--color-text);
    font-family: var(--font-title);
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.12;
    margin: 1.35rem 0 0;
    text-align: center;
}

.auth-entry-copy {
    color: var(--color-text-muted);
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 0.55rem auto 0;
    max-width: 23rem;
    text-align: center;
}

.auth-entry-page {
    align-items: center;
    background: var(--color-surface);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100dvh;
    min-width: 0;
    padding: clamp(2rem, 8vh, 4.75rem) 1rem 2.5rem;
}

.auth-entry-header,
.auth-entry-form {
    max-width: 24rem;
    min-width: 0;
    width: 100%;
}

.auth-entry-header {
    text-align: center;
}

.auth-entry-brand {
    display: inline-flex;
    justify-content: center;
    text-decoration: none;
}

.auth-entry-form {
    margin-top: 1.75rem;
}

.auth-form,
.auth-field {
    display: grid;
}

.auth-form {
    gap: 1rem;
}

.auth-field {
    gap: 0.44rem;
}

.auth-field-label-row {
    align-items: center;
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
}

.auth-field-label {
    color: var(--color-text);
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
}

.auth-field-link {
    flex: 0 0 auto;
    font-size: 0.86rem;
    line-height: 1.35;
}

.auth-entry-switch {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.45;
    margin: 1.45rem 0 0;
    text-align: center;
}

.text-taupe-900 {
    color: var(--color-text);
}

.text-taupe-500 {
    color: var(--color-text-muted);
}

.text-emerald-600,
.hover\:text-emerald-500:hover {
    color: var(--color-accent-deep);
}

.comment-form {
    background: #fcfcfd;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: 0 1px 2px oklch(14.7% 0.004 49.3 / 0.03);
    margin-bottom: 1rem;
    min-width: 0;
    padding: 0.9rem;
}

.comment-reply-form {
    background: var(--color-surface);
    box-sizing: border-box;
    margin: 0.7rem 0 0;
    padding: 0.78rem;
    width: 100%;
}

.comment-form-header {
    align-items: center;
    color: var(--color-text-muted);
    display: flex;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
    min-width: 0;
}

.comment-form-header strong,
.comment-form-header span {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
}

.comment-form-header strong {
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 700;
}

.comment-form-header span {
    font-size: 0.8rem;
    font-weight: 600;
}

.comment-control {
    line-height: 1.55;
    min-height: 112px;
    resize: vertical;
}

.comment-submit {
    margin-top: 0.72rem;
    min-height: 44px;
    width: 100%;
}

.comment-reply-form .comment-control {
    min-height: 84px;
}

.comment-reply-form .comment-submit {
    min-height: 38px;
    width: auto;
}

.comment {
    border-top: 1px solid oklch(92.2% 0.005 34.3 / 0.72);
    display: grid;
    gap: 0.82rem;
    grid-template-columns: 36px 1fr;
    padding: 1.05rem 0;
}

.comment:first-child {
    border-top: 0;
}

.comment-meta {
    color: var(--color-text-muted);
    font-size: 0.84rem;
    min-width: 0;
}

.comment-meta strong,
.comment-meta span {
    display: inline-block;
}

.comment-author-row {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.45rem;
}

.comment-meta strong {
    color: var(--color-text);
    font-weight: 600;
    overflow-wrap: anywhere;
}

.comment-avatar,
.profile-avatar,
.auth-mark {
    align-items: center;
    display: flex;
    justify-content: center;
}

.comment-avatar {
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-text-soft);
    font-size: 0.86rem;
    font-weight: 700;
    height: 36px;
    margin-top: 0.05rem;
    min-width: 36px;
    width: 36px;
}

.comment-avatar,
.comment-author-link {
    text-decoration: none;
}

.comment-avatar:hover,
.comment-author-link:hover {
    color: var(--color-accent-deep);
}

.comment-avatar-current {
    background: var(--color-accent-soft);
    border-color: var(--color-accent-soft-strong);
    color: var(--color-accent-deep);
}

.comment-body {
    color: var(--color-text-soft);
    font-size: 0.95rem;
    line-height: 1.62;
    margin-top: 0.35rem;
    max-width: 72ch;
    overflow-wrap: anywhere;
}

.comment-body p:last-child {
    margin-bottom: 0;
}

.comment-actions {
    align-items: flex-start;
    display: flex;
    gap: 0.7rem;
    margin-top: 0.55rem;
    min-width: 0;
}

.comment-reply-toggle {
    min-width: 0;
    width: 100%;
}

.comment-reply-toggle summary,
.comment-reply-link {
    color: var(--color-text-muted);
    cursor: pointer;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 700;
    list-style: none;
    text-decoration: none;
}

.comment-reply-toggle summary::-webkit-details-marker {
    display: none;
}

.comment-reply-toggle summary:hover,
.comment-reply-link:hover {
    color: var(--color-accent-deep);
}

.comment-replies {
    border-left: 2px solid oklch(92.2% 0.005 34.3 / 0.8);
    margin-top: 0.75rem;
    padding-left: clamp(0.7rem, 2vw, 1rem);
}

.comment-replies .comment:last-child {
    padding-bottom: 0;
}

.comment-depth-5 .comment-replies {
    margin-left: -0.35rem;
    padding-left: 0;
}

.comment-depth-limit-note {
    color: var(--color-text-muted);
    font-weight: 700;
    font-size: 0.78rem;
}

.sign-in-prompt {
    align-items: center;
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    min-width: 0;
    margin-bottom: 1.25rem;
    padding: 1rem;
}

.sign-in-prompt > div {
    min-width: 0;
}

.sign-in-prompt strong {
    color: var(--color-text);
    font-weight: 600;
}

.sign-in-prompt p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0.15rem 0 0;
}

.profile-page,
.auth-page,
.legal-page {
    margin-top: 0;
}

.legal-page {
    color: var(--color-text-soft);
    font-size: 1rem;
    line-height: 1.7;
    padding: 0.4rem 0 1.25rem;
}

.legal-page p {
    margin: 0 0 1rem;
}

.legal-page p:last-child {
    margin-bottom: 0;
}

.legal-page h2 {
    color: var(--color-text);
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 1.35rem 0 0.45rem;
}

.legal-updated {
    color: var(--color-text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 0.45rem !important;
}

.legal-lead {
    color: var(--color-text);
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.18;
}

.auth-page {
    max-width: 520px;
    min-width: 0;
}

.auth-card {
    padding: 1.25rem;
}

.auth-card-header {
    align-items: flex-start;
    border-bottom: 1px solid oklch(92.2% 0.005 34.3 / 0.82);
    display: flex;
    gap: 0.9rem;
    margin-bottom: 1.05rem;
    padding-bottom: 1.05rem;
}

.auth-card-header h2 {
    color: var(--color-text);
    font-family: var(--font-title);
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1.22;
    margin: 0;
}

.auth-eyebrow {
    color: var(--color-text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 0 0 0.26rem;
}

.auth-mark {
    background: var(--color-accent-soft);
    border: 1px solid var(--color-accent-soft-strong);
    border-radius: 8px;
    color: var(--color-accent-deep);
    flex: 0 0 44px;
    font-size: 1.2rem;
    height: 44px;
}

.auth-control {
    min-height: 48px;
}

.auth-field-control {
    appearance: none;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-text);
    display: block;
    font-size: 1rem;
    line-height: 1.4;
    min-height: 46px;
    min-width: 0;
    outline: 0;
    padding: 0 0.9rem;
    transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
    width: 100%;
}

.auth-field-control::placeholder {
    color: var(--color-text-faint);
}

.auth-field-control:focus {
    background: var(--color-surface);
    border-color: rgba(5, 150, 105, 0.56);
    box-shadow: 0 0 0 4px var(--color-focus);
}

.auth-submit-button {
    align-items: center;
    background: var(--color-accent);
    border: 1px solid var(--color-accent);
    border-radius: 999px;
    box-shadow: var(--shadow-control);
    color: white;
    cursor: pointer;
    display: inline-flex;
    font-size: 0.92rem;
    font-weight: 700;
    justify-content: center;
    min-height: 46px;
    max-width: 100%;
    padding: 0 1rem;
    transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
    width: 100%;
}

.auth-submit-button:hover {
    background: var(--color-accent-deep);
    border-color: var(--color-accent-deep);
}

.auth-submit-button:focus-visible {
    box-shadow: 0 0 0 4px var(--color-focus);
    outline: 0;
}

.auth-inline-action {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.auth-inline-action a,
.auth-switch a {
    color: var(--color-accent-deep);
    font-weight: 600;
    text-decoration: none;
}

.auth-inline-action a:hover,
.auth-switch a:hover {
    text-decoration: underline;
}

.auth-submit {
    min-height: 48px;
}

.auth-switch {
    border-top: 1px solid oklch(92.2% 0.005 34.3 / 0.82);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 1.1rem 0 0;
    padding-top: 1.05rem;
    text-align: center;
}

.profile-header {
    align-items: center;
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    min-width: 0;
    padding: 1rem;
}

.profile-header-content {
    align-items: flex-start;
    display: flex;
    flex: 1 1 auto;
    gap: 1rem;
    justify-content: space-between;
    min-width: 0;
}

.profile-header h2 {
    color: var(--color-text);
    font-family: var(--font-title);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
    overflow-wrap: anywhere;
}

.profile-subtitle {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.45;
    margin: 0.18rem 0 0.65rem;
}

.profile-avatar {
    background: linear-gradient(135deg, oklch(14.7% 0.004 49.3), #059669);
    border-radius: 999px;
    color: white;
    flex: 0 0 58px;
    font-size: 1.45rem;
    font-weight: 700;
    height: 58px;
    min-width: 58px;
}

.profile-stats {
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 1.4rem;
    min-width: 0;
    overflow: hidden;
}

.profile-stats div {
    min-width: 0;
    padding: 1.05rem;
    text-align: center;
}

.profile-stats div+div {
    border-left: 1px solid var(--color-border);
}

.profile-stats strong,
.profile-stats span {
    display: block;
}

.profile-stats strong {
    color: var(--color-text);
    font-size: 1.25rem;
    font-weight: 700;
}

.profile-stats span {
    color: var(--color-text-muted);
    font-size: 0.82rem;
    font-weight: 500;
}

.activity-list,
.topic-list {
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    min-width: 0;
    overflow: hidden;
}

.activity-item,
.topic-item {
    color: var(--color-text);
    display: block;
    text-decoration: none;
    transition: background-color 0.16s ease, color 0.16s ease;
}

.activity-item {
    border-bottom: 1px solid oklch(92.2% 0.005 34.3 / 0.75);
    min-width: 0;
    padding: 0.95rem 1rem;
}

.activity-item:last-child,
.topic-item:last-child {
    border-bottom: 0;
}

.activity-item:hover,
.topic-item:hover {
    background: var(--color-surface-soft);
    color: var(--color-text);
}

.activity-item strong,
.activity-item span,
.activity-item small {
    display: block;
}

.activity-item strong {
    font-weight: 600;
}

.activity-item span {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.activity-item small {
    color: var(--color-text-faint);
    font-size: 0.76rem;
    font-weight: 700;
    margin-top: 0.45rem;
}

.topic-item {
    align-items: center;
    border-bottom: 1px solid oklch(92.2% 0.005 34.3 / 0.75);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    min-width: 0;
    padding: 1rem;
}

.topic-item h2 {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    min-width: 0;
}

.topic-item > div {
    min-width: 0;
}

.topic-item-caret {
    color: var(--color-text-muted);
    display: none;
}

.action-row {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.about-page {
    background: #fff;
    color: var(--color-text-soft);
    margin-top: 0;
}

.about-body .app-page-main {
    background: #fff;
}

.about-section-inner {
    margin: 0 auto;
    max-width: 1040px;
    min-width: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.about-welcome {
    background: linear-gradient(180deg, #edf7f2 0%, #d8ede2 100%);
}

.about-welcome-inner {
    min-height: 360px;
    padding-bottom: 4.6rem;
    padding-top: 4.9rem;
    text-align: center;
}

.about-welcome h1 {
    color: #244f38;
    font-family: var(--font-title);
    font-size: clamp(2.55rem, 6vw, 4.25rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 0.96;
    margin: 0;
}

.about-welcome p {
    color: #2d5f43;
    font-size: clamp(1.06rem, 2vw, 1.38rem);
    font-weight: 500;
    line-height: 1.42;
    margin: 1.35rem auto 0;
    max-width: 780px;
}

.about-story {
    background: #fff;
}

.about-story-inner {
    align-items: center;
    display: grid;
    gap: clamp(2.25rem, 5vw, 4.5rem);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 480px;
    padding-bottom: 4.4rem;
    padding-top: 4.4rem;
}

.about-copy h2 {
    color: #202221;
    font-family: var(--font-title);
    font-size: clamp(2rem, 4.1vw, 3.25rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.02;
    margin: 0;
}

.about-copy p {
    color: #5b625e;
    font-size: clamp(0.98rem, 1.35vw, 1.12rem);
    font-weight: 500;
    line-height: 1.6;
    margin: 1.35rem 0 0;
}

.about-collage {
    max-width: 100%;
    min-height: 330px;
    position: relative;
}

.about-collage::before {
    background:
        linear-gradient(90deg, rgb(15 23 42 / 0.18) 1px, transparent 1px),
        linear-gradient(0deg, rgb(15 23 42 / 0.18) 1px, transparent 1px);
    background-size: 58px 58px;
    content: "";
    height: 65%;
    left: 8%;
    opacity: 0.55;
    position: absolute;
    top: 5%;
    width: 74%;
}

.about-collage::after {
    background: #eaf4ed;
    border-radius: 999px;
    content: "";
    height: 310px;
    left: 13%;
    position: absolute;
    top: 9%;
    width: 310px;
}

.about-collage-frame {
    background: #123a28;
    border: 16px solid white;
    box-shadow: 0 18px 42px rgb(15 23 42 / 0.14);
    height: 185px;
    left: 6%;
    overflow: hidden;
    position: absolute;
    top: 43%;
    width: 78%;
    z-index: 2;
}

.about-collage-frame-small {
    left: 20%;
    top: 22%;
    width: 66%;
}

.about-collage-image {
    display: block;
    filter: grayscale(100%) contrast(1.08);
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    width: 100%;
}

.about-collage-card {
    background: #0b2f21;
    border: 12px solid white;
    box-shadow: 0 20px 44px rgb(15 23 42 / 0.16);
    display: grid;
    gap: 0.62rem;
    left: 26%;
    max-width: 72%;
    padding: 0.82rem;
    position: absolute;
    top: 22%;
    width: 48%;
    z-index: 3;
}

.about-collage-card span {
    background: rgb(255 255 255 / 0.88);
    border-radius: 999px;
    height: 14px;
}

.about-collage-card span:nth-child(2) {
    width: 78%;
}

.about-collage-card span:nth-child(3) {
    width: 52%;
}

.about-collage-discussion::after {
    left: 20%;
}

.about-chat-stack {
    display: grid;
    gap: 1rem;
    left: 12%;
    position: absolute;
    top: 50%;
    width: 72%;
    z-index: 4;
}

.about-chat-stack span {
    background: white;
    border-radius: 18px 18px 18px 4px;
    box-shadow: 0 14px 32px rgb(15 23 42 / 0.13);
    height: 42px;
}

.about-chat-stack span:nth-child(2) {
    border-radius: 18px 18px 4px 18px;
    justify-self: end;
    width: 78%;
}

.about-chat-stack span:nth-child(3) {
    width: 88%;
}

.about-collage-topics {
    align-items: center;
    display: flex;
    justify-content: center;
}

.about-collage-topics::before {
    left: 0;
    top: 12%;
    width: 92%;
}

.about-collage-topics::after {
    left: 17%;
    top: 3%;
}

.about-topic-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 420px;
    min-width: 0;
    position: relative;
    z-index: 3;
}

.about-topic-cloud span {
    background: white;
    border: 1px solid rgb(15 23 42 / 0.08);
    border-radius: 999px;
    box-shadow: 0 16px 36px rgb(15 23 42 / 0.12);
    color: #244f38;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.82rem 1.1rem;
}

.about-course-cta {
    background:
        linear-gradient(120deg, rgb(255 255 255 / 0.035) 12%, transparent 12% 28%, rgb(255 255 255 / 0.035) 28% 38%, transparent 38%),
        #173b29;
    color: white;
    text-align: center;
}

.about-course-cta .about-section-inner {
    min-height: 330px;
    padding-bottom: 4.4rem;
    padding-top: 4.4rem;
}

.about-course-cta h2 {
    color: white;
    font-family: var(--font-title);
    font-size: clamp(2.15rem, 4.8vw, 3.65rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin: 0 auto;
    max-width: 800px;
}

.about-course-cta p {
    color: rgb(255 255 255 / 0.82);
    font-size: clamp(1rem, 1.65vw, 1.18rem);
    font-weight: 500;
    line-height: 1.55;
    margin: 1.2rem auto 0;
    max-width: 680px;
}

.about-course-button {
    align-items: center;
    border: 2px solid rgb(255 255 255 / 0.82);
    border-radius: 999px;
    color: white;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 700;
    justify-content: center;
    margin-top: 2.25rem;
    max-width: 100%;
    min-height: 50px;
    padding: 0 2rem;
    text-decoration: none;
    transition: background-color 0.16s ease, color 0.16s ease;
}

.about-course-button:hover,
.about-course-button:focus-visible {
    background: white;
    color: #173b29;
}

.about-faq {
    background: #fff;
}

.about-faq .about-section-inner {
    padding-bottom: 4.6rem;
    padding-top: 4.6rem;
}

.about-faq-heading {
    align-items: end;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    margin-bottom: 1.6rem;
}

.about-faq-heading h2 {
    color: #202221;
    font-family: var(--font-title);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
}

.about-faq-heading p {
    color: #5b625e;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 0.25rem;
}

.about-faq-list {
    border-top: 1px solid rgb(15 23 42 / 0.12);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-faq-item {
    border-bottom: 1px solid rgb(15 23 42 / 0.12);
    padding: 1.35rem 1.35rem 1.35rem 0;
}

.about-faq-item:nth-child(2n) {
    border-left: 1px solid rgb(15 23 42 / 0.12);
    padding-left: 1.35rem;
}

.about-faq-item h3 {
    color: #202221;
    font-family: var(--font-title);
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.18;
    margin: 0;
}

.about-faq-item p {
    color: #5b625e;
    font-size: 0.98rem;
    line-height: 1.58;
    margin: 0.62rem 0 0;
}

.app-footer {
    background: #020617;
    color: white;
    margin-top: 0;
    padding: 4.2rem 0;
}

.app-footer-inner {
    align-items: flex-end;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    min-width: 0;
}

.app-footer-inner > div {
    min-width: 0;
}

.app-footer-wordmark {
    color: white;
    font-family: var(--font-title);
    font-size: clamp(3rem, 10vw, 6.4rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 0.85;
    margin: 0;
}

.app-footer-copy {
    color: rgb(244 244 245 / 0.72);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0.85rem 0 0;
}

.app-footer-sections {
    display: grid;
    gap: 1.35rem;
    grid-template-columns: repeat(4, max-content);
    justify-content: end;
    min-width: 0;
}

.app-footer-section {
    min-width: 86px;
}

.app-footer-section-title {
    color: rgb(244 244 245 / 0.42);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    margin: 0;
}

.app-footer-section-links {
    display: grid;
    gap: 0.48rem;
    margin-top: 0.72rem;
}

.app-footer-section-links a {
    color: rgb(244 244 245 / 0.78);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.16s ease;
}

.app-footer-section-links a:hover,
.app-footer-section-links a:focus-visible {
    color: white;
}

@media (min-width: 760px) {
    .learning-grid,
    .resources-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .learning-lesson-card {
        grid-template-columns: 280px minmax(0, 1fr);
    }

    .learning-video-placeholder {
        aspect-ratio: auto;
        min-height: 100%;
    }

    .feed-item-body {
        display: grid;
        grid-template-columns: 220px minmax(0, 1fr);
        padding: 0;
    }

    .post-image-placeholder {
        aspect-ratio: auto;
        height: 100%;
        margin-bottom: 0;
        min-height: 190px;
    }

    .feed-card-content {
        display: flex;
        flex-direction: column;
        padding: 1.12rem 1.25rem 1.05rem;
    }

    .feed-actions {
        margin-top: auto;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1180px;
    }

    .app-header {
        padding-bottom: 0.72rem;
    }

    .app-header .container {
        max-width: 1180px;
    }

    .app-header-bar {
        min-height: 36px;
    }

    .app-shell {
        align-items: start;
        display: grid;
        gap: 1.1rem;
        grid-template-columns: minmax(0, 1fr) 304px;
    }

    .app-main {
        min-width: 0;
    }

    .desktop-sidebar {
        display: block;
        position: sticky;
        top: 4.8rem;
    }

    .feed-list {
        gap: 1rem;
    }

    .resources-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .learning-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .feed-item-body {
        grid-template-columns: 248px minmax(0, 1fr);
    }

    .mobile-discovery {
        display: none;
    }

    .post-image-placeholder {
        aspect-ratio: auto;
        min-height: 200px;
    }

    .post-detail-hero {
        aspect-ratio: 16 / 5.1;
    }

    .post-detail-content {
        padding: 1.25rem 1.35rem;
    }

    .comments-card {
        padding: 1.15rem 1.35rem;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1240px;
    }

    .app-header .container {
        max-width: 1240px;
    }

    .app-shell {
        grid-template-columns: minmax(0, 1fr) 320px;
    }

    .feed-item-body {
        grid-template-columns: 270px minmax(0, 1fr);
    }
}

@media (max-width: 900px) {
    .app-footer {
        padding: 3.4rem 0;
    }

    .app-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .app-footer-sections {
        gap: 1.35rem 2rem;
        grid-template-columns: repeat(2, minmax(110px, 1fr));
        justify-content: start;
        width: 100%;
    }
}

@media (max-width: 759px) {
    .app-button,
    .auth-submit-button {
        white-space: normal;
    }

    .app-button-small {
        min-height: 40px;
    }

    .app-shell,
    .learning-shell,
    .resources-shell,
    .legal-shell {
        margin-top: 0.85rem;
    }

    .feed-list,
    .learning-grid,
    .learning-lessons,
    .resources-grid {
        gap: 0.85rem;
    }

    .resources-grid {
        row-gap: 1.65rem;
    }

    .post-image-placeholder {
        aspect-ratio: 16 / 7.4;
        min-height: 132px;
    }

    .learning-card-visual {
        min-height: 168px;
    }

    .learning-lesson-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.3rem;
    }

    .learning-lesson-heading .learning-duration {
        white-space: normal;
    }

    .learning-video-placeholder {
        min-height: 168px;
    }

    .breadcrumb-list {
        display: none;
    }

    .breadcrumb-compact {
        display: flex;
    }

    .breadcrumbs {
        font-size: 0.76rem;
        margin-bottom: 0.62rem;
        max-width: 100%;
        overflow: hidden;
    }

    .post-detail-meta {
        align-items: flex-start;
        gap: 0.42rem 0.5rem;
    }

    .profile-stats div {
        padding: 0.9rem 0.75rem;
    }

    .about-story-inner,
    .about-story-inner-reverse {
        gap: 2.4rem;
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 3.6rem;
        padding-top: 3.6rem;
    }

    .about-story-inner-reverse .about-copy {
        order: 1;
    }

    .about-story-inner-reverse .about-collage {
        order: 2;
    }

    .about-faq-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.65rem;
    }

    .about-faq-list {
        grid-template-columns: 1fr;
    }

    .about-faq-item,
    .about-faq-item:nth-child(2n) {
        border-left: 0;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .app-header {
        padding-bottom: 0.72rem;
        padding-top: 0.65rem;
    }

    .app-header-bar {
        flex-wrap: wrap;
        gap: 0.5rem 0.85rem;
    }

    .app-header-brand {
        max-width: 5rem;
    }

    .app-header-search {
        flex-basis: 100%;
        max-width: none;
        min-width: 0;
        order: 3;
    }

    .app-header-nav {
        font-size: 0.8rem;
        gap: 0.72rem;
        margin-left: auto;
        max-width: calc(100% - 5.2rem);
        padding-bottom: 0.08rem;
    }

    .page-heading-wrap {
        margin-top: 1.15rem;
    }

    .post-detail-content,
    .comments-card,
    .auth-card,
    .post-form {
        padding: 0.95rem;
    }

    .feed-card-content {
        padding: 0.95rem;
    }

    .feed-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .feed-mode-tabs {
        overflow-x: auto;
    }

    .feed-actions {
        align-items: stretch;
        gap: 0.42rem 0.6rem;
    }

    .feed-actions .feed-vote-control {
        flex: 0 0 auto;
    }

    .feed-actions .feed-action-link {
        flex: 1 1 auto;
        justify-content: flex-start;
    }

    .feed-actions .feed-action-link-push {
        flex-basis: 100%;
    }

    .post-detail-hero {
        aspect-ratio: 16 / 9;
    }

    .post-detail-title {
        font-size: 1.55rem;
        line-height: 1.08;
    }

    .post-detail-actions {
        align-items: center;
        flex-direction: row;
        gap: 0.36rem;
    }

    .post-detail-actions .feed-vote-control {
        flex: 0 0 auto;
    }

    .post-detail-actions .feed-action-link {
        flex: 1 1 auto;
        justify-content: flex-start;
    }

    .post-detail-actions .feed-action-link-push {
        flex-basis: 100%;
    }

    .feed-action-link-push {
        margin-left: 0;
    }

    .post-share-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.45rem;
        justify-content: flex-start;
    }

    .sign-in-prompt {
        align-items: stretch;
        flex-direction: column;
    }

    .sign-in-prompt .app-button {
        width: 100%;
    }

    .search-empty-form {
        flex-direction: column;
    }

    .search-empty-form .app-button {
        width: 100%;
    }

    .profile-header {
        align-items: flex-start;
    }

    .profile-header-content,
    .profile-learning-summary {
        align-items: stretch;
        flex-direction: column;
    }

    .profile-stats,
    .profile-accolade-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-stats div:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--color-border);
    }

    .profile-stats div:nth-child(4) {
        border-top: 1px solid var(--color-border);
    }

    .profile-course-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .learning-path-hero,
    .profile-learning-summary {
        align-items: stretch;
        flex-direction: column;
    }

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

    .learning-intro-actions .app-button {
        width: 100%;
    }

    .learning-path-hero .app-button,
    .profile-learning-summary .app-button {
        width: 100%;
    }

    .form-actions .app-button,
    .action-row-button {
        width: 100%;
    }

    .action-row {
        align-items: stretch;
        flex-direction: column;
    }

    .comment {
        gap: 0.62rem;
        grid-template-columns: 32px minmax(0, 1fr);
    }

    .comment-avatar {
        font-size: 0.8rem;
        height: 32px;
        min-width: 32px;
        width: 32px;
    }

    .comment-replies {
        margin-left: -0.35rem;
        padding-left: 0.65rem;
    }

    .comment-reply-form .comment-submit {
        width: 100%;
    }

    .topic-item-caret {
        display: inline-flex;
    }

    .app-footer {
        padding: 3rem 0;
    }

    .app-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .app-footer-sections {
        gap: 1.4rem 2.2rem;
        grid-template-columns: repeat(2, minmax(110px, 1fr));
        justify-content: start;
        width: 100%;
    }

    .about-welcome-inner {
        min-height: 300px;
        padding-bottom: 3.2rem;
        padding-top: 3.5rem;
    }

    .about-story-inner,
    .about-story-inner-reverse {
        gap: 2rem;
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 3.2rem;
        padding-top: 3.2rem;
    }

    .about-story-inner-reverse .about-copy {
        order: 1;
    }

    .about-story-inner-reverse .about-collage {
        order: 2;
    }

    .about-collage {
        min-height: 270px;
    }

    .about-collage::after {
        height: 230px;
        width: 230px;
    }

    .about-collage-frame {
        height: 150px;
    }

    .about-course-cta .about-section-inner {
        min-height: 280px;
        padding-bottom: 3.2rem;
        padding-top: 3.2rem;
    }

    .about-faq .about-section-inner {
        padding-bottom: 3.2rem;
        padding-top: 3.2rem;
    }

    .about-faq-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.65rem;
    }

    .about-faq-list {
        grid-template-columns: 1fr;
    }

    .about-faq-item,
    .about-faq-item:nth-child(2n) {
        border-left: 0;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 390px) {
    .container,
    .about-section-inner {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .app-logo-navbar {
        height: 2rem;
    }

    .app-header-nav {
        gap: 0.58rem;
        max-width: calc(100% - 4.8rem);
    }

    .app-header-link {
        font-size: 0.78rem;
    }

    .app-header-sign-in {
        padding-inline: 0.7rem;
    }

    .app-header-search-control {
        min-height: 38px;
    }

    .feed-mode-tabs {
        width: max-content;
    }

    .feed-mode-tab {
        flex: 0 0 auto;
        min-width: max-content;
        text-align: center;
    }

    .feed-card-content,
    .post-detail-content,
    .comments-card,
    .auth-card,
    .post-form,
    .learning-intro,
    .learning-path-hero,
    .learning-lesson-content,
    .profile-header,
    .profile-learning-card {
        padding: 0.85rem;
    }

    .post-image-placeholder {
        min-height: 116px;
    }

    .post-image-source,
    .feed-source,
    .post-detail-source {
        max-width: 100%;
    }

    .feed-title {
        font-size: 1.02rem;
    }

    .feed-summary {
        font-size: 0.9rem;
        line-height: 1.52;
    }

    .comment-form {
        padding: 0.78rem;
    }

    .comment-form-header {
        gap: 0.55rem;
    }

    .comment-body {
        font-size: 0.9rem;
        line-height: 1.58;
    }

    .comment-replies {
        border-left-width: 1px;
        margin-left: -0.45rem;
        padding-left: 0.5rem;
    }

    .learning-card-visual,
    .learning-video-placeholder {
        min-height: 148px;
    }

    .learning-card-topline,
    .learning-path-meta,
    .learning-lesson-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.38rem;
    }

    .learning-path-meta span+span::before {
        content: none;
        margin-right: 0;
    }

    .learning-progress {
        grid-template-columns: 1fr;
    }

    .profile-avatar {
        flex-basis: 50px;
        font-size: 1.25rem;
        height: 50px;
    }

    .profile-stats strong {
        font-size: 1.1rem;
    }

    .profile-stats span {
        font-size: 0.76rem;
    }

    .profile-stats div {
        padding: 0.78rem 0.55rem;
    }

    .profile-accolade-grid {
        grid-template-columns: 1fr;
    }

    .about-welcome-inner {
        min-height: 260px;
        padding-bottom: 2.8rem;
        padding-top: 3rem;
    }

    .about-story-inner,
    .about-story-inner-reverse,
    .about-course-cta .about-section-inner,
    .about-faq .about-section-inner {
        padding-bottom: 2.8rem;
        padding-top: 2.8rem;
    }

    .about-collage {
        min-height: 235px;
    }

    .about-collage::after {
        height: 205px;
        width: 205px;
    }

    .about-collage-frame {
        border-width: 10px;
        height: 132px;
        width: 86%;
    }

    .about-collage-card {
        border-width: 8px;
        left: 20%;
        width: 58%;
    }

    .about-chat-stack {
        left: 8%;
        width: 82%;
    }

    .about-topic-cloud {
        gap: 0.6rem;
    }

    .about-topic-cloud span {
        font-size: 0.86rem;
        padding: 0.6rem 0.78rem;
    }

    .app-footer-wordmark {
        font-size: 2.8rem;
    }

    .app-footer-sections {
        gap: 1.25rem;
    }
}

@media (max-width: 340px) {
    .app-header-bar {
        gap: 0.45rem 0.6rem;
    }

    .app-header-nav {
        gap: 0.48rem;
        max-width: calc(100% - 4.5rem);
    }

    .app-header-link {
        font-size: 0.75rem;
    }

    .app-header-sign-in {
        font-size: 0.76rem;
        padding-inline: 0.6rem;
    }

    .feed-actions {
        gap: 0.38rem 0.62rem;
    }

    .feed-action-link {
        font-size: 0.78rem;
    }

    .feed-actions .feed-action-link:not(.feed-action-link-push) {
        flex-basis: 100%;
    }

    .post-detail-title {
        font-size: 1.42rem;
    }

    .post-detail-body {
        font-size: 0.96rem;
    }

    .profile-header {
        flex-direction: column;
    }

    .profile-stats {
        grid-template-columns: 1fr;
    }

    .profile-stats div+div,
    .profile-stats div:nth-child(3),
    .profile-stats div:nth-child(4) {
        border-left: 0;
        border-top: 1px solid var(--color-border);
    }

    .about-collage {
        min-height: 210px;
    }

    .about-collage::before {
        background-size: 42px 42px;
    }

    .about-collage::after {
        height: 180px;
        width: 180px;
    }

    .about-topic-cloud {
        gap: 0.45rem;
    }

    .about-topic-cloud span {
        font-size: 0.78rem;
        padding: 0.52rem 0.64rem;
    }

    .app-footer-sections {
        grid-template-columns: 1fr;
    }
}
