/* ============================================================
   MageTime Theme — design components (from design package CSS)
   Shell header/footer/mobile-nav styles remain in LESS partials.
   Use --apps-theme-* tokens; avoid roro prefix in code.
   ============================================================ */

:root {
    /* Brand */
    --apps-theme-color-brand: #EC1E24;
    --apps-theme-color-brand-deep: #C8161B;
    --apps-theme-color-brand-soft: #FDE5E6;
    --apps-theme-color-primary: #0B3F67;
    --apps-theme-color-primary-deep: #07334F;
    --apps-theme-color-primary-mid: #4470BA;

    /* Surfaces */
    --apps-theme-color-cream: #F3EEE7;
    --apps-theme-color-cream-soft: #F8F5F0;
    --apps-theme-color-sky: #B9DBFE;
    --apps-theme-color-sky-mid: #69CDFF;
    --apps-theme-color-sky-deep: #4470BA;

    /* Accents */
    --apps-theme-color-peony: #E5447D;
    --apps-theme-color-blossom: #F2A8C0;
    --apps-theme-color-green: #2F8F4E;
    --apps-theme-color-yellow: #F4B53A;
    --apps-theme-color-teal: #3FB7B0;

    /* Neutrals */
    --apps-theme-color-white: #FFFFFF;
    --apps-theme-color-ink: #082C45;
    --apps-theme-color-ink-muted: #2C5170;
    --apps-theme-color-ink-soft: #647D92;
    --apps-theme-color-ink-faint: #AFBCC9;
    --apps-theme-color-line: #E7E7E8;
    --apps-theme-color-surface: #F8FAFD;
    --apps-theme-color-surface-alt: #DCE7F0;

    /* Typography */
    --apps-theme-font-display: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --apps-theme-font-body: 'Nunito Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

    /* Radii */
    --apps-theme-radius-sm: 8px;
    --apps-theme-radius-md: 12px;
    --apps-theme-radius-lg: 16px;
    --apps-theme-radius-xl: 24px;
    --apps-theme-radius-2xl: 32px;
    --apps-theme-radius-pill: 999px;

    /* Shadows */
    --apps-theme-shadow-xs: 0 1px 2px rgba(14, 35, 72, .06);
    --apps-theme-shadow-sm: 0 2px 6px rgba(14, 35, 72, .08);
    --apps-theme-shadow-md: 0 8px 24px rgba(14, 35, 72, .10);
    --apps-theme-shadow-lg: 0 16px 48px rgba(14, 35, 72, .14);
    --apps-theme-shadow-brand: 0 8px 24px rgba(236, 30, 36, .26);

    /* Motion */
    --apps-theme-ease: cubic-bezier(.2, .7, .2, 1);
    --apps-theme-duration-fast: 140ms;
    --apps-theme-duration-base: 220ms;
    --apps-theme-duration-slow: 400ms;

    /* Layout */
    --apps-theme-container: 1200px;
    --apps-theme-section-pad: 120px;
}

@media (max-width: 768px) {
    :root {
        --apps-theme-section-pad: 72px;
    }
}

/* Layout */
.apps-theme-content .container,
.column.main .container {
    max-width: var(--apps-theme-container);
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .apps-theme-content .container,
    .column.main .container {
        padding: 0 22px;
    }
}

.apps-theme-content .container.narrow,
.column.main .container.narrow {
    max-width: 1080px;
}

/* Type */
.apps-theme-content .eyebrow,
.column.main .eyebrow {
    font-family: var(--apps-theme-font-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--apps-theme-color-brand);
}

.apps-theme-content .eyebrow.muted,
.column.main .eyebrow.muted {
    color: var(--apps-theme-color-ink-soft);
}

.apps-theme-content h1,
.apps-theme-content h2,
.apps-theme-content h3,
.apps-theme-content h4,
.column.main h1,
.column.main h2,
.column.main h3,
.column.main h4 {
    font-family: var(--apps-theme-font-display);
    letter-spacing: -0.015em;
    color: var(--apps-theme-color-ink);
    text-wrap: pretty;
}

.apps-theme-content h1,
.column.main h1 {
    font-size: clamp(38px, 5.4vw, 68px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.apps-theme-content h2,
.column.main h2 {
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.02em;
}

.apps-theme-content h3,
.column.main h3 {
    font-size: clamp(19px, 1.9vw, 24px);
    font-weight: 700;
    line-height: 1.28;
}

.apps-theme-content h4,
.column.main h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.apps-theme-content .lead,
.column.main .lead {
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--apps-theme-color-ink-muted);
    line-height: 1.6;
    max-width: 62ch;
}

/* Buttons */
.apps-theme-content .btn,
.column.main .btn,
.cookie-bar .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--apps-theme-font-body);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: var(--apps-theme-radius-pill);
    transition: transform var(--apps-theme-duration-base) var(--apps-theme-ease),
        background var(--apps-theme-duration-base),
        box-shadow var(--apps-theme-duration-base),
        color var(--apps-theme-duration-base);
    white-space: nowrap;
    letter-spacing: .01em;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.apps-theme-content .btn-primary,
.column.main .btn-primary,
.cookie-bar .btn-primary {
    background: var(--apps-theme-color-primary);
    color: #fff;
}

.apps-theme-content .btn-primary:hover,
.column.main .btn-primary:hover,
.cookie-bar .btn-primary:hover {
    background: var(--apps-theme-color-primary-deep);
    transform: translateY(-1px);
    box-shadow: var(--apps-theme-shadow-md);
}

.apps-theme-content .btn-red,
.column.main .btn-red {
    background: var(--apps-theme-color-brand);
    color: #fff;
}

.apps-theme-content .btn-red:hover,
.column.main .btn-red:hover {
    background: var(--apps-theme-color-brand-deep);
    transform: translateY(-1px);
    box-shadow: var(--apps-theme-shadow-brand);
}

.apps-theme-content .btn-ghost,
.column.main .btn-ghost,
.cookie-bar .btn-ghost {
    background: transparent;
    color: var(--apps-theme-color-ink);
    border: 1.5px solid var(--apps-theme-color-line);
}

.apps-theme-content .btn-ghost:hover,
.column.main .btn-ghost:hover,
.cookie-bar .btn-ghost:hover {
    border-color: var(--apps-theme-color-ink);
    background: #fff;
}

.apps-theme-content .btn-ghost.on-dark,
.column.main .btn-ghost.on-dark {
    color: #fff;
    border-color: rgba(255, 255, 255, .3);
}

.apps-theme-content .btn-ghost.on-dark:hover,
.column.main .btn-ghost.on-dark:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .06);
}

/* Page hero */
.apps-theme-content .page-hero,
.column.main .page-hero {
    background: var(--apps-theme-color-primary);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 7vw, 96px) 0 clamp(56px, 7vw, 92px);
}

.apps-theme-content .page-hero::after,
.column.main .page-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(105, 205, 255, .18), transparent 60%);
    pointer-events: none;
}

.apps-theme-content .page-hero .eyebrow,
.column.main .page-hero .eyebrow {
    color: var(--apps-theme-color-sky-mid);
}

.apps-theme-content .page-hero h1,
.column.main .page-hero h1 {
    color: #fff;
    max-width: 18ch;
}

.apps-theme-content .page-hero .lead,
.column.main .page-hero .lead {
    color: rgba(255, 255, 255, .82);
    margin-top: 18px;
}

.apps-theme-content .page-hero .crumbs,
.column.main .page-hero .crumbs {
    margin-bottom: 18px;
}

.apps-theme-content .crumbs,
.column.main .crumbs {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.apps-theme-content .crumbs a,
.column.main .crumbs a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

.apps-theme-content .crumbs a:hover,
.column.main .crumbs a:hover {
    color: #fff;
    text-decoration: underline;
}

.apps-theme-content .crumbs .sep,
.column.main .crumbs .sep {
    opacity: .5;
}

.apps-theme-content .page-hero.light,
.column.main .page-hero.light {
    background: var(--apps-theme-color-surface);
    color: var(--apps-theme-color-ink);
}

.apps-theme-content .page-hero.light::after,
.column.main .page-hero.light::after {
    background: radial-gradient(circle at 30% 30%, rgba(11, 63, 103, .06), transparent 60%);
}

.apps-theme-content .page-hero.light h1,
.column.main .page-hero.light h1 {
    color: var(--apps-theme-color-ink);
}

.apps-theme-content .page-hero.light .eyebrow,
.column.main .page-hero.light .eyebrow {
    color: var(--apps-theme-color-brand);
}

.apps-theme-content .page-hero.light .lead,
.column.main .page-hero.light .lead {
    color: var(--apps-theme-color-ink-muted);
}

.apps-theme-content .page-hero.light .crumbs,
.column.main .page-hero.light .crumbs {
    color: var(--apps-theme-color-ink-soft);
}

.apps-theme-content .page-hero.light .crumbs a,
.column.main .page-hero.light .crumbs a {
    color: var(--apps-theme-color-ink-muted);
}

/* Legal / prose */
.apps-theme-content .legal-wrap,
.column.main .legal-wrap {
    padding: clamp(40px, 5vw, 72px) 0 clamp(60px, 7vw, 100px);
}

.apps-theme-content .legal-grid,
.column.main .legal-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}

@media (max-width: 880px) {
    .apps-theme-content .legal-grid,
    .column.main .legal-grid {
        grid-template-columns: 1fr;
    }
}

.apps-theme-content .legal-toc,
.column.main .legal-toc {
    position: sticky;
    top: 96px;
}

@media (max-width: 880px) {
    .apps-theme-content .legal-toc,
    .column.main .legal-toc {
        position: static;
        top: auto;
        border-bottom: 1px solid var(--apps-theme-color-line);
        padding-bottom: 20px;
        margin-bottom: 8px;
    }
}

.apps-theme-content .legal-toc-h,
.column.main .legal-toc-h {
    font-family: var(--apps-theme-font-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--apps-theme-color-ink-soft);
    margin-bottom: 14px;
}

.apps-theme-content .legal-toc ul,
.column.main .legal-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.apps-theme-content .legal-toc li,
.column.main .legal-toc li {
    margin-bottom: 4px;
}

.apps-theme-content .legal-toc a,
.column.main .legal-toc a {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--apps-theme-color-ink-muted);
    padding: 6px 12px;
    border-left: 2px solid transparent;
    border-radius: 0 6px 6px 0;
    transition: all var(--apps-theme-duration-fast);
    text-decoration: none;
}

.apps-theme-content .legal-toc a:hover,
.column.main .legal-toc a:hover {
    color: var(--apps-theme-color-primary);
    background: var(--apps-theme-color-surface);
}

.apps-theme-content .legal-toc a.active,
.column.main .legal-toc a.active {
    color: var(--apps-theme-color-primary);
    border-left-color: var(--apps-theme-color-brand);
    background: var(--apps-theme-color-surface);
}

.apps-theme-content .prose,
.column.main .prose {
    max-width: 72ch;
}

.apps-theme-content .prose .updated,
.column.main .prose .updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--apps-theme-color-ink-muted);
    background: var(--apps-theme-color-cream-soft);
    padding: 8px 14px;
    border-radius: var(--apps-theme-radius-pill);
    margin-bottom: 28px;
}

.apps-theme-content .prose .updated .dot,
.column.main .prose .updated .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--apps-theme-color-green);
}

.apps-theme-content .prose h2,
.column.main .prose h2 {
    font-size: clamp(22px, 2.4vw, 28px);
    margin: 44px 0 14px;
    scroll-margin-top: 96px;
    padding-top: 6px;
}

.apps-theme-content .prose h2:first-of-type,
.column.main .prose h2:first-of-type {
    margin-top: 8px;
}

.apps-theme-content .prose h3,
.column.main .prose h3 {
    font-size: 18px;
    margin: 28px 0 10px;
}

.apps-theme-content .prose p,
.column.main .prose p {
    margin: 0 0 16px;
    color: var(--apps-theme-color-ink-muted);
    line-height: 1.7;
}

.apps-theme-content .prose ul,
.apps-theme-content .prose ol,
.column.main .prose ul,
.column.main .prose ol {
    margin: 0 0 16px 22px;
    color: var(--apps-theme-color-ink-muted);
    line-height: 1.7;
}

.apps-theme-content .prose li,
.column.main .prose li {
    margin-bottom: 8px;
}

.apps-theme-content .prose a,
.column.main .prose a {
    color: var(--apps-theme-color-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.apps-theme-content .prose a:hover,
.column.main .prose a:hover {
    color: var(--apps-theme-color-brand);
}

.apps-theme-content .prose strong,
.column.main .prose strong {
    color: var(--apps-theme-color-ink);
}

.apps-theme-content .prose .callout,
.column.main .prose .callout {
    background: var(--apps-theme-color-surface);
    border-radius: var(--apps-theme-radius-md);
    padding: 18px 22px;
    margin: 0 0 22px;
    border-left: 3px solid var(--apps-theme-color-sky-deep);
    font-size: 14.5px;
}

.apps-theme-content .prose .callout.todo,
.column.main .prose .callout.todo {
    border-left-color: var(--apps-theme-color-yellow);
    background: #FFF8E9;
}

.apps-theme-content .prose .callout.todo strong,
.column.main .prose .callout.todo strong {
    color: #9A6B00;
}

.apps-theme-content .prose table,
.column.main .prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 22px;
    font-size: 14.5px;
}

.apps-theme-content .prose th,
.apps-theme-content .prose td,
.column.main .prose th,
.column.main .prose td {
    text-align: left;
    padding: 11px 14px;
    border-bottom: 1px solid var(--apps-theme-color-line);
    vertical-align: top;
}

.apps-theme-content .prose th,
.column.main .prose th {
    font-family: var(--apps-theme-font-display);
    font-weight: 700;
    color: var(--apps-theme-color-ink);
    background: var(--apps-theme-color-surface);
}

.apps-theme-content .prose td,
.column.main .prose td {
    color: var(--apps-theme-color-ink-muted);
}

.apps-theme-content .contact-card,
.column.main .contact-card {
    margin-top: 40px;
    background: var(--apps-theme-color-cream-soft);
    border-radius: var(--apps-theme-radius-lg);
    padding: 24px 26px;
}

.apps-theme-content .contact-card h3,
.column.main .contact-card h3 {
    margin: 0 0 6px;
}

.apps-theme-content .contact-card p,
.column.main .contact-card p {
    margin: 0;
    color: var(--apps-theme-color-ink-muted);
    font-size: 14.5px;
}

.apps-theme-content .contact-card a,
.column.main .contact-card a {
    color: var(--apps-theme-color-primary);
    font-weight: 700;
}

/* Sections */
.apps-theme-content .section,
.column.main .section {
    padding: clamp(56px, 7vw, 104px) 0;
}

.apps-theme-content .section.bg,
.column.main .section.bg {
    background: var(--apps-theme-color-surface);
}

.apps-theme-content .section.cream,
.column.main .section.cream {
    background: var(--apps-theme-color-cream-soft);
}

.apps-theme-content .section-head,
.column.main .section-head {
    max-width: 62ch;
    margin: 0 auto clamp(36px, 4vw, 56px);
    text-align: center;
}

.apps-theme-content .section-head.align-left,
.column.main .section-head.align-left {
    margin-left: 0;
    text-align: left;
}

.apps-theme-content .section-head .eyebrow,
.column.main .section-head .eyebrow {
    display: block;
    margin-bottom: 14px;
}

.apps-theme-content .section-head p,
.column.main .section-head p {
    margin-top: 14px;
    color: var(--apps-theme-color-ink-muted);
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.6;
}

.apps-theme-content .cta-band,
.column.main .cta-band {
    background: var(--apps-theme-color-cream-soft);
    border-radius: var(--apps-theme-radius-2xl);
    padding: clamp(40px, 5vw, 64px);
    text-align: center;
}

.apps-theme-content .cta-band p,
.column.main .cta-band p {
    max-width: 50ch;
    margin: 14px auto 26px;
    color: var(--apps-theme-color-ink-muted);
    font-size: 17px;
}

.apps-theme-content .cta-actions,
.column.main .cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cookie (for future CookieNotice reskin) */
.cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    background: #fff;
    border-top: 1px solid var(--apps-theme-color-line);
    box-shadow: 0 -8px 30px rgba(8, 44, 69, .12);
    transform: translateY(110%);
    transition: transform .4s var(--apps-theme-ease);
}

.cookie-bar.show {
    transform: translateY(0);
}

.cookie-inner {
    max-width: var(--apps-theme-container);
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cookie-inner {
        padding: 16px 22px;
        gap: 14px;
    }
}

.cookie-text {
    flex: 1;
    min-width: 260px;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--apps-theme-color-ink-muted);
}

.cookie-text strong {
    display: block;
    font-family: var(--apps-theme-font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--apps-theme-color-ink);
    margin-bottom: 3px;
}

.cookie-text a {
    color: var(--apps-theme-color-primary);
    font-weight: 700;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-actions .btn {
    padding: 11px 20px;
    font-size: 14px;
}

.cookie-btn-text {
    background: none;
    color: var(--apps-theme-color-ink-soft);
    font-weight: 700;
    font-size: 13.5px;
    padding: 11px 8px;
    border: none;
    cursor: pointer;
    font-family: var(--apps-theme-font-body);
}

.cookie-btn-text:hover {
    color: var(--apps-theme-color-primary);
}

.cookie-modal-bg {
    position: fixed;
    inset: 0;
    z-index: 320;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 44, 69, .5);
}

.cookie-modal-bg.open {
    display: flex;
}

.cookie-modal {
    background: #fff;
    border-radius: var(--apps-theme-radius-xl);
    max-width: 520px;
    width: 100%;
    padding: 30px;
    box-shadow: var(--apps-theme-shadow-lg);
    max-height: 88vh;
    overflow: auto;
}

.cookie-modal h3 {
    margin-bottom: 6px;
    font-family: var(--apps-theme-font-display);
}

.cookie-modal .sub {
    font-size: 14px;
    color: var(--apps-theme-color-ink-muted);
    margin-bottom: 20px;
}

.cookie-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--apps-theme-color-line);
}

.cookie-row-text strong {
    display: block;
    font-family: var(--apps-theme-font-display);
    font-size: 15px;
    margin-bottom: 3px;
}

.cookie-row-text p {
    font-size: 13px;
    color: var(--apps-theme-color-ink-soft);
    line-height: 1.5;
    margin: 0;
}

.cookie-modal-foot {
    display: flex;
    gap: 10px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.cookie-modal-foot .btn {
    flex: 1;
    min-width: 140px;
}

.toggle {
    position: relative;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
    margin-top: 2px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle .track {
    position: absolute;
    inset: 0;
    background: var(--apps-theme-color-ink-faint);
    border-radius: 999px;
    transition: background var(--apps-theme-duration-base);
}

.toggle .track::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    transition: transform var(--apps-theme-duration-base);
    box-shadow: var(--apps-theme-shadow-sm);
}

.toggle input:checked + .track {
    background: var(--apps-theme-color-green);
}

.toggle input:checked + .track::after {
    transform: translateX(20px);
}

.toggle input:disabled + .track {
    background: var(--apps-theme-color-sky-deep);
    opacity: .55;
    cursor: not-allowed;
}

/* Support modal */
.apps-theme-support-bg {
    position: fixed;
    inset: 0;
    z-index: 340;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 44, 69, .5);
}

.apps-theme-support-bg.open {
    display: flex;
}

.apps-theme-support {
    background: #fff;
    border-radius: 24px;
    max-width: 440px;
    width: 100%;
    padding: 28px;
    box-shadow: var(--apps-theme-shadow-lg);
    max-height: 88vh;
    overflow: auto;
}

.apps-theme-support h3 {
    font-family: var(--apps-theme-font-display);
    margin: 0 0 4px;
}

.apps-theme-support .sub {
    font-size: 14px;
    color: var(--apps-theme-color-ink-muted);
    margin-bottom: 18px;
}

.apps-theme-support .channels {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.apps-theme-support .channel {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--apps-theme-color-line);
    border-radius: 14px;
    transition: border-color var(--apps-theme-duration-fast), background var(--apps-theme-duration-fast);
    text-decoration: none;
    color: inherit;
}

.apps-theme-support .channel:hover {
    border-color: var(--apps-theme-color-primary);
    background: var(--apps-theme-color-surface);
}

.apps-theme-support .channel .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--apps-theme-color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--apps-theme-color-primary);
    flex-shrink: 0;
}

.apps-theme-support .channel .icon svg {
    width: 20px;
    height: 20px;
}

.apps-theme-support .channel strong {
    display: block;
    font-size: 15px;
    color: var(--apps-theme-color-ink);
}

.apps-theme-support .channel small {
    font-size: 12.5px;
    color: var(--apps-theme-color-ink-soft);
}

.apps-theme-support .close {
    float: right;
    font-size: 24px;
    line-height: 1;
    color: var(--apps-theme-color-ink-soft);
    cursor: pointer;
    background: none;
    border: none;
}

/* Utilities */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}
