/* ─── L1 · Primitive colors ────────────────────────────────────────────────── */
:root {
  --prim-brown-darkest: #1d1309;
  --prim-brown-dark:    #594b3e;
  --prim-brown-medium:  #806a58;
  --prim-brown-light:   #846646;

  --prim-tan-base:      #b9a581;
  --prim-tan-light:     #f0d8aa;
  --prim-tan-cream:     #fffbcf;

  --prim-gold:          #c4a12d;
  --prim-orange:        #f29824;
  --prim-orange-light:  #f39d2e;

/* ─── L1 · Spacing scale ───────────────────────────────────────────────────── */

  --space-xxs:   4px;
  --space-xs:    8px;
  --space-s:     12px;
  --space-m:     16px;
  --space-l:     24px;
  --space-xl:    32px;
  --space-xxl:   48px;
  --space-xxxl:  64px;

/* ─── L1 · Typography ──────────────────────────────────────────────────────── */

  --font-body:    Verdana, Arial, Helvetica, sans-serif;
  --font-heading: Acme, sans-serif;
  --font-nav:     Signika, sans-serif;

/* ─── L2 · M3 color roles ──────────────────────────────────────────────────── */

  --color-surface:            var(--prim-brown-darkest);
  --color-surface-container:  color-mix(in srgb, var(--prim-brown-darkest), black 40%);
  --color-on-surface:         var(--prim-tan-base);
  --color-on-surface-variant: var(--prim-brown-light);
  --color-primary:            var(--prim-gold);
  --color-on-primary:         var(--prim-brown-darkest);
  --color-outline:            rgba(196, 161, 45, 0.20);
  --color-outline-variant:    rgba(196, 161, 45, 0.10);

/* ─── L2 · Named semantic roles ────────────────────────────────────────────── */

  --color-nav:         var(--prim-brown-medium);
  --color-nav-hover:   var(--prim-tan-cream);
  --color-heading:     var(--prim-tan-light);

/* ─── L2 · Status (M3 extended roles) ─────────────────────────────────────── */

  --color-success-container:    #1c4300;
  --color-on-success-container: #4ade80;
  --color-info-container:       #002b4d;
  --color-on-info-container:    #60a5fa;
  --color-error-container:      #3b0000;
  --color-on-error-container:   #f87171;
  --color-warning-container:    #4d2600;
  --color-on-warning-container: #fbbf24;

/* ─── L2 · Semantic spacing aliases ────────────────────────────────────────── */

  --space-section:    var(--space-xl);   /* 32px - between major page sections */
  --space-block:      var(--space-m);    /* 16px - between content blocks */
  --space-inline:     var(--space-xxs);  /* 4px - within a component */
  --space-screen-pad: 20px;             /* screen edge padding */
}
/* Design system layer order - establishes cascade precedence */
@layer base, tokens, layout, components, content, themes, vendor;

/* Unlayered - beats all layered rules regardless of order */
.hidden { display: none; }

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

@layer base {
    *, *::before, *::after { box-sizing: border-box; }
    * { margin: 0; }
    a { color: inherit; text-decoration: inherit; }
    button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: inherit; }
    button { background-color: transparent; background-image: none; border: 0; cursor: pointer; }
    img, svg, video { display: block; max-width: 100%; }

    body {
        font-family: var(--font-body);
        color: #b9a581;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        background: #1d1309 url(/assets/backgrounds/main-29fb7182ca87f6299ae600c4b8bb3d675810e1942430dc96444ceb80b235bcde.jpg) 40% 170% no-repeat fixed;
        min-height: 100vh;
    }

    main {
        display: flex;
        flex-direction: column;
    }

    /* Standard headers for clean content */
    h1:not(.page-title),
    h2:not(.page-title),
    h3,
    h4 {
        font-family: var(--font-heading);
        color: #f0d8aa;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        background: none !important;
    }
}

@layer components {

    /* Logo */
    .logo-container {
        padding-top: min(2rem, 5vw);
        padding-bottom: min(2rem, 5vw);
        display: flex;
        justify-content: center;
    }

    .logo-image {
        max-width: 20rem;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        border: 1px dashed #c4a12d;
        padding: 1rem;
        background-color: #1d1309;
    }

    /* Navigation */
    .public-nav {
        background-color: rgba(0, 0, 0, 0.4);
    }

    .nav-link {
        height: 40px;
        line-height: 40px;
        text-align: center;
        padding-right: 22px;
        padding-left: 22px;
    }

    .nav-link:hover {
        color: #fffbcf;
        background: url(/assets/header/nav-hvr-18a163f09bcc2908d9412fdd4427c23b741a9a879835e415edc08a0d7077d255.png) center/contain;
        background-size: 100% 40px;
    }

    .nav-link-mobile {
        display: block;
        padding: 0.5rem 1rem;
        font-size: 1rem;
        font-family: var(--font-nav);
        font-weight: 400;
        color: #806a58;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        border-radius: 0.25rem;
        transition: all 0.15s;
        border-left: 2px solid transparent;

        &:hover {
            background-color: rgba(196, 161, 45, 0.1);
            color: #fffbcf;
            border-left-color: #c4a12d;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }
    }

    .nav-logo-with-shadow {
        display: none;
        z-index: 50;
        padding: 0.5rem;
        border: 1px solid #bba42961;
        background-color: black;
        box-shadow: 1px 1px 12px 0 #ffc30047;
    }

    @media (min-width: 768px) {
        .nav-logo-with-shadow {
            display: block;
            position: absolute;
            left: 1rem;
            top: 2.5rem;
            height: 6.5rem;
        }
    }

    @media (min-width: 1024px) {
        .nav-logo-with-shadow {
            top: 1rem;
            left: 2rem;
        }
    }

    .nav-logo {
        position: absolute;
        left: 1rem;
        top: 1rem;
        height: 6.5rem;
        z-index: 50;
        padding: 0.5rem;
        border: 1px dashed #c4a12d;
        background-color: #1d1309;
    }

    @media (min-width: 640px)  { .nav-logo { left: 1.5rem; } }
    @media (min-width: 1024px) { .nav-logo { left: 2rem; } }

    /* Slideshow */
    .slideshow-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        margin-bottom: 2rem;
    }

    @media (max-width: 890px) {
        .slideshow-container {
            padding-left: 1rem;
            padding-right: 1rem;
        }
    }

    .slideshow-overlay-left,
    .slideshow-overlay-right {
        background-image: url(/assets/slideshow/ov-bg-0daf78d62b2435a67dfbbe850fa0ebcd8eaeda174e2c62be90752fda31507d69.png);
        height: 100%;
        position: absolute;
        z-index: 1;
        width: max(48px, calc((100vw - min(890px, 100vw)) / 2));
    }

    @media (max-width: 890px) {
        .slideshow-overlay-left,
        .slideshow-overlay-right {
            background-image: none;
        }
    }

    .slideshow-overlay-left  { left: 0; }
    .slideshow-overlay-right { right: 0; }

    /* Footer */
    .footer-text {
        text-align: center;
        font-size: 0.875rem;
        color: #846646;
        font-family: var(--font-body);
    }

    .footer-text > * + * { margin-top: 0.5rem; }

    .footer-copyright {
        text-align: center;
        font-size: 0.75rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid #594b3e;
        color: #594b3e;
        font-family: var(--font-heading);
        text-transform: uppercase;
    }

    /* Tiptap editor chrome */
    .tiptap-toolbar {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 4px;
        padding: 6px 8px;
        background: #0c0804;
        border-bottom: 1px solid rgba(196, 161, 45, 0.2);
    }

    .tiptap-group {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 1px;
        padding: 2px;
        border: 1px solid rgba(196, 161, 45, 0.25);
        border-radius: 4px;
    }

    .tiptap-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 28px;
        height: 28px;
        padding: 0 6px;
        border: none;
        border-radius: 3px;
        background: transparent;
        color: #b9a581;
        font-family: Verdana, sans-serif;
        font-size: 12px;
        cursor: pointer;
        transition: background 0.15s, color 0.15s;

        &:hover    { background: #2a1c0d; color: #f0d8aa; }
        &.is-active { background: rgba(196, 161, 45, 0.15); color: #c4a12d; }
    }

    .tiptap-content {
        min-height: 480px;
        padding: 24px 30px;
        outline: none;
        font-family: Verdana, sans-serif;
        font-size: 16px;
        color: #b9a581;
        line-height: 1.8;
        background: #0c0804;

        h1 { font-family: Acme, sans-serif; font-size: 1.7rem; color: #f0d8aa; text-transform: uppercase; letter-spacing: 0.1em; margin: 1rem 0 0.5rem; }
        h2 { font-family: Acme, sans-serif; font-size: 1.2rem; color: #c4a12d; text-transform: uppercase; letter-spacing: 0.05em; margin: 1rem 0 0.5rem; }
        h3 { font-family: Signika, sans-serif; font-size: 1rem; color: #f0d8aa; margin: 1rem 0 0.5rem; }
        p  { margin: 0 0 0.75rem; }
        a  { color: #c4a12d; text-decoration: underline; }

        blockquote {
            border-left: 4px solid #c4a12d;
            padding-left: 1.5em;
            font-style: italic;
            margin: 2em 0;
        }

        ul { list-style: disc; padding-left: 1.5em; margin: 0.75rem 0; }
        ol { list-style: decimal; padding-left: 1.5em; margin: 0.75rem 0; }
        li { margin-bottom: 0.25rem; }

        hr { border: none; border-top: 1px solid rgba(196, 161, 45, 0.2); margin: 2rem 0; }

        figure {
            margin: 1.5rem 0;
            img { max-width: 100%; height: auto; display: block; }
        }

        &::after { content: ""; display: table; clear: both; }
    }

    /* Image NodeView */
    .image-resize-wrapper {
        position: relative;
        max-width: 100%;
        line-height: 0;
    }

    .image-resize-figure {
        position: relative;
        display: block;
        margin: 0;
        padding: 0;
    }

    .image-resize-handle {
        position: absolute;
        width: 8px;
        height: 8px;
        background: #fff;
        border: 1px solid #333;
        display: none;
    }

    .image-resize-wrapper.ProseMirror-selectednode .image-resize-handle {
        display: block;
    }

    .image-resize-wrapper.ProseMirror-selectednode .image-resize-figure {
        outline: 1px dashed #aaa;
    }

    /* Image alignment context menu */
    .image-align-menu {
        background: #1a1008;
        border: 1px solid rgba(196, 161, 45, 0.2);
        border-radius: 4px;
        padding: 4px 0;
        min-width: 130px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }

    .image-align-item {
        padding: 6px 14px;
        font-family: Verdana, sans-serif;
        font-size: 12px;
        color: #b9a581;
        cursor: pointer;

        &:hover { background: #2a1c0d; color: #f0d8aa; }
    }

    /* Tiptap dropdown panels */
    .tiptap-dropdown-trigger {
        gap: 4px;
        padding: 0 6px;
        min-width: unset;
    }

    .tiptap-dropdown-panel {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        z-index: 200;
        background: #1a1008;
        border: 1px solid rgba(196, 161, 45, 0.2);
        border-radius: 4px;
        padding: 4px 0;
        min-width: 150px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }

    .tiptap-dropdown-item {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 7px 12px;
        background: transparent;
        border: none;
        color: #b9a581;
        font-family: Verdana, sans-serif;
        font-size: 12px;
        text-align: left;
        cursor: pointer;
        white-space: nowrap;

        &:hover { background: #2a1c0d; color: #f0d8aa; }
        &.is-active { color: #c4a12d; }
    }

    /* Table picker panel overrides the min-width */
    .tiptap-table-panel {
        min-width: unset;
        padding: 6px;
    }

    /* Task list in the tiptap editor */
    .tiptap-content ul[data-type="taskList"] {
        list-style: none;
        padding-left: 0;
    }

    .tiptap-content ul[data-type="taskList"] li {
        display: flex;
        align-items: flex-start;
        gap: 0.5em;
    }

    .tiptap-content ul[data-type="taskList"] li > label {
        margin-top: 3px;
        flex-shrink: 0;
    }

    .tiptap-content ul[data-type="taskList"] li > div {
        flex: 1;
    }

    /* Tables in the tiptap editor */
    .tiptap-content table {
        border-collapse: collapse;
        width: 100%;
        margin: 1rem 0;
        font-size: 14px;
    }

    .tiptap-content th,
    .tiptap-content td {
        border: 1px solid rgba(196, 161, 45, 0.25);
        padding: 6px 10px;
        vertical-align: top;
    }

    .tiptap-content th {
        background: rgba(196, 161, 45, 0.08);
        color: #c4a12d;
        font-weight: bold;
    }

    /* --- Public page header --- */
    .public-page-header {
        padding-top: 1rem;
        padding-bottom: 1rem;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        border-bottom: 1px solid rgba(196, 161, 45, 0.2);
    }

    @media (min-width: 768px) {
        .public-page-header {
            padding-top: 2rem;
            padding-bottom: 2rem;
        }
    }

    .page-title {
        font-family: var(--font-heading);
        color: #f0d8aa;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        line-height: 1.25;
        font-size: 1.25rem;
    }

    @media (min-width: 768px) {
        .page-title { font-size: 1.7rem; }
    }

    .page-title-rule {
        margin-top: 1rem;
        display: flex;
        justify-content: center;
    }

    .page-title-rule::after {
        content: "";
        display: block;
        height: 2px;
        width: 4rem;
        background: rgba(196, 161, 45, 0.4);
    }

    /* --- Public footer --- */
    .page-footer {
        border-top: 1px solid #594b3e;
    }

    .page-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .footer-social-links {
        color: #846646;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-social-links a svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    /* --- Navigation --- */
    .nav-container {
        max-width: 64rem;
        margin-left: auto;
        margin-right: auto;
        padding-left: 1rem;
        padding-right: 1rem;
        position: relative;
    }

    @media (min-width: 640px)  { .nav-container { padding-left: 1.5rem; padding-right: 1.5rem; } }
    @media (min-width: 1024px) { .nav-container { padding-left: 2rem;   padding-right: 2rem; } }

    .nav-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 2.5rem;
    }

    .nav-mobile-toggle {
        display: flex;
        align-items: center;
    }

    @media (min-width: 768px) { .nav-mobile-toggle { display: none; } }

    .nav-hamburger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        border-radius: 0.375rem;
        background: transparent;
        border: none;
        color: inherit;
        cursor: pointer;
    }

    .nav-hamburger:focus-visible {
        outline: 2px solid rgba(196, 161, 45, 0.4);
        outline-offset: 2px;
    }

    .nav-hamburger svg { width: 1.5rem; height: 1.5rem; }

    .nav-desktop { display: none; }

    @media (min-width: 768px) {
        .nav-desktop { display: flex; align-items: center; }
        .nav-desktop--centered { margin: 0 auto; }
        .nav-desktop--end { margin-left: auto; }
    }

    .nav-mobile-menu {
        position: fixed;
        left: 1rem;
        top: 3rem;
        z-index: 40;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(12px);
        border-radius: 0.75rem;
        border: 1px solid #594b3e;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    @media (min-width: 768px) { .nav-mobile-menu { display: none; } }

    .nav-mobile-menu-inner {
        padding: 1rem 1.5rem;
        min-width: 160px;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    /* === Slideshow (home) === */
    .slideshow-track { display: flex; height: 100%; position: absolute; left: 50%; }
    .slideshow-slide { height: 100%; flex-shrink: 0; }
    .slideshow-slide img { width: 100%; height: 100%; object-fit: contain; }
    .slideshow-btn-prev { position: absolute; top: 50%; transform: translateY(-50%); right: 18%; cursor: pointer; }
    .slideshow-btn-next { position: absolute; top: 50%; transform: translateY(-50%); left: 18%; cursor: pointer; }

    /* === Shared public sidebar === */
    .public-sidebar {
        display: none;
        width: 100%;
        flex-shrink: 0;
    }

    @media (min-width: 1024px) {
        .public-sidebar {
            display: block;
            width: 16rem;
            position: sticky;
            top: 6rem;
            height: fit-content;
        }
    }

    .public-sidebar > * + * { margin-top: 2rem; }

    .sidebar-mobile-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
    @media (min-width: 1024px) { .sidebar-mobile-header { display: none; } }

    .sidebar-mobile-title {
        font-family: var(--font-heading);
        color: #c4a12d;
        font-size: 1.2rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.2em;
    }

    .sidebar-backdrop { position: fixed; inset: 0; z-index: 40; }

    .sidebar-nav { display: flex; flex-direction: column; gap: 0.25rem; }

    .sidebar-mobile-trigger { position: relative; }

    .sidebar-mobile-btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 0.75rem;
        background: rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(196, 161, 45, 0.2);
        border-radius: 0.25rem;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #806a58;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.15s;
        &:hover { background: rgba(196, 161, 45, 0.1); }
    }

    .sidebar-mobile-btn svg { width: 0.875rem; height: 0.875rem; color: rgba(196, 161, 45, 0.7); }

    .sidebar-mobile-panel {
        position: absolute;
        right: 0;
        top: 100%;
        margin-top: 0.5rem;
        z-index: 50;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(196, 161, 45, 0.2);
        border-radius: 0.5rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        padding: 0.5rem 0;
        min-width: 180px;
        max-width: 220px;
    }

    .sidebar-mobile-panel .public-filter-button { width: 100%; }

    /* === Instrument sidebar sub-nav === */
    .sidebar-sub-nav {
        margin-bottom: 0.5rem;
        margin-left: 0.75rem;
        padding-left: 0.75rem;
        border-left: 1px solid rgba(196, 161, 45, 0.2);
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .sidebar-sub-link {
        display: block;
        text-align: left;
        padding: 0.25rem 0.75rem;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 700;
        transition: all 0.15s;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        cursor: pointer;
    }

    .sidebar-sub-link--active { color: #f0d8aa; }
    .sidebar-sub-link--inactive { color: rgba(128, 106, 88, 0.7); &:hover { color: #c4a12d; } }

    /* === Flash messages === */
    .flash-alert {
        display: flex;
        align-items: center;
        padding: 1rem;
        margin-bottom: 1rem;
        margin-left: 0.25rem;
        margin-right: 0.25rem;
        border-left-width: 4px;
        border-left-style: solid;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(4px);
        border-radius: 0 0.375rem 0.375rem 0;
    }

    .flash-alert--success { background: rgba(28, 67, 0, 0.8);  border-color: #4ade80; color: #4ade80; }
    .flash-alert--info    { background: rgba(0, 43, 77, 0.8);  border-color: #60a5fa; color: #60a5fa; }
    .flash-alert--danger  { background: rgba(59, 0, 0, 0.8);   border-color: #f87171; color: #f87171; }
    .flash-alert--warning { background: rgba(77, 38, 0, 0.8);  border-color: #fbbf24; color: #fbbf24; }

    .flash-alert-icon { flex-shrink: 0; width: 1.25rem; height: 1.25rem; margin-right: 0.75rem; }
    .flash-alert-msg  { font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

    /* === Contact page === */
    .contact-map {
        margin-top: 2rem;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(12px);
        border-radius: 0.75rem;
        border: 1px solid rgba(196, 161, 45, 0.2);
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        height: 450px;
    }

    @media (min-width: 640px) {
        .contact-map iframe { filter: grayscale(1) invert(1); opacity: 0.8; transition: all 0.7s; }
        .contact-map iframe:hover { filter: none; opacity: 1; }
    }

    .contact-info-panel .body-heading-2,
    .contact-form-panel .body-heading-2 { margin-bottom: 1.5rem; }

    .contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; }
    .contact-info-row  { display: flex; align-items: flex-start; gap: 1rem; }

    .contact-info-icon { flex-shrink: 0; padding: 0.5rem; background: rgba(196, 161, 45, 0.1); border-radius: 0.5rem; color: #c4a12d; }
    .contact-info-icon svg { width: 1.5rem; height: 1.5rem; }
    .contact-info-row .content-label { margin-bottom: 0.25rem; }

    .contact-info-value { font-size: 0.875rem; }
    .contact-info-link  { color: #c4a12d; font-size: 0.875rem; transition: color 0.15s; &:hover { color: #fffbcf; } }

    .contact-social-section { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(196, 161, 45, 0.1); }
    .contact-social-section .content-label { margin-bottom: 1rem; }
    .contact-social-row { display: flex; gap: 1rem; }

    .contact-social-btn {
        padding: 0.5rem;
        background: rgba(196, 161, 45, 0.05);
        border: 1px solid rgba(196, 161, 45, 0.2);
        border-radius: 0.25rem;
        color: #c4a12d;
        transition: all 0.3s;
        &:hover { background: rgba(196, 161, 45, 0.1); border-color: #c4a12d; }
    }

    .contact-social-btn svg { width: 1.25rem; height: 1.25rem; }

    .contact-form { display: flex; flex-direction: column; gap: 1rem; }

    .contact-alert-success {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem;
        border-radius: 0.25rem;
        background: rgba(28, 67, 0, 0.2);
        border: 1px solid rgba(74, 222, 128, 0.4);
    }

    .contact-alert-success-icon { flex-shrink: 0; width: 1.25rem; height: 1.25rem; color: #4ade80; }
    .contact-alert-success-msg  { font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; color: #4ade80; }

    .contact-alert-danger { border-radius: 0.25rem; background: rgba(59, 0, 0, 0.2); border: 1px solid rgba(248, 113, 113, 0.4); padding: 1rem; }
    .contact-alert-danger-list { font-size: 0.875rem; color: rgba(248, 113, 113, 0.8); list-style: disc; padding-left: 1.25rem; }

    /* === Articles index === */
    .articles-empty { text-align: center; color: #594b3e; font-style: italic; font-size: 0.875rem; padding: 2rem 0; }

    .articles-section-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }

    .article-list { display: flex; flex-direction: column; gap: 1rem; }
    .article-list--essays { margin-bottom: 2.5rem; }

    .surface-card {
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 0.5rem;
        border: 1px solid rgba(196, 161, 45, 0.1);
        padding: 1.25rem;
        transition: all 0.3s;
        &:hover { background: rgba(0, 0, 0, 0.6); border-color: rgba(196, 161, 45, 0.3); }
    }

    .article-card-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: #c4a12d;
        font-family: var(--font-body);
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 700;
        transition: color 0.15s;
        &:hover { color: white; }
    }

    .article-card-link svg { width: 0.75rem; height: 0.75rem; }
    .article-card-date { font-size: 10px; color: #594b3e; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
    .article-card-teaser { font-size: 0.875rem; color: #B9A581; line-height: 1.625; margin-bottom: 1rem; }

    .article-list .body-heading-3 { margin-bottom: 0.5rem; }
    .activity-item .body-heading-3 { margin-bottom: 0.25rem; }

    /* === Activities === */
    .activity-timeline-section { position: relative; padding-left: 2rem; }

    .activity-timeline-line {
        position: absolute;
        left: 0; top: 0; bottom: 0;
        width: 1px;
        background: linear-gradient(to bottom, rgba(196, 161, 45, 0.4), rgba(196, 161, 45, 0.1), transparent);
    }

    .activity-scroll-top-btn {
        position: fixed;
        bottom: 1.5rem;
        right: 1.5rem;
        z-index: 40;
        width: 2.5rem;
        height: 2.5rem;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(196, 161, 45, 0.3);
        border-radius: 9999px;
        color: rgba(196, 161, 45, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(4px);
        cursor: pointer;
        transition: all 0.15s;
        &:hover { color: #c4a12d; background: rgba(0, 0, 0, 0.8); }
    }

    .activity-scroll-top-btn svg { width: 1rem; height: 1rem; }

    .activity-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-bottom: 1rem; }
    .activity-stat  { padding: 1rem; text-align: center; }

    .activity-stat-value          { font-family: Acme, sans-serif; font-size: 1.25rem; margin-bottom: 0.25rem; }
    .activity-stat-value--gold    { color: #c4a12d; }
    .activity-stat-value--heading { color: #f0d8aa; }

    .activity-year-row { position: relative; margin-bottom: 2rem; margin-left: -0.75rem; display: flex; align-items: center; }
    @media (min-width: 768px) { .activity-year-row { margin-left: -1rem; } }

    .activity-year-dot {
        width: 1.5rem; height: 1.5rem;
        border-radius: 9999px;
        background: black;
        border: 1px solid rgba(196, 161, 45, 0.5);
        display: flex; align-items: center; justify-content: center;
        z-index: 10;
        box-shadow: 0 0 10px rgba(196, 161, 45, 0.2);
    }

    .activity-year-dot-inner { width: 0.375rem; height: 0.375rem; border-radius: 9999px; background: #c4a12d; }
    .activity-year-label      { margin-left: 1.5rem; font-family: Acme, sans-serif; font-size: 1.25rem; color: #c4a12d; letter-spacing: 0.1em; }

    .activity-item        { position: relative; margin-bottom: 2rem; padding-left: 1.5rem; }
    .activity-description { font-size: 0.875rem; line-height: 1.625; border-top: 1px solid rgba(196, 161, 45, 0.05); padding-top: 0.5rem; margin-top: 0.5rem; }

    .activity-badge-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }

    .activity-badge {
        font-size: 8px; font-weight: 700;
        text-transform: uppercase; letter-spacing: 0.1em;
        padding: 0.125rem 0.5rem;
        border-radius: 0.25rem;
    }

    .activity-badge--type       { color: rgba(196, 161, 45, 0.7); background: rgba(196, 161, 45, 0.1); }
    .activity-badge--instrument { color: #b9a581; background: rgba(185, 165, 129, 0.1); border: 1px solid rgba(185, 165, 129, 0.2); }
    .activity-badge--award      { color: #c4a12d; background: rgba(196, 161, 45, 0.1); border: 1px solid rgba(196, 161, 45, 0.2); }

    .activity-location {
        font-size: 1rem; color: #594b3e; font-style: italic;
        letter-spacing: 0.05em;
        margin-top: 0.25rem; margin-bottom: 0.5rem;
        display: flex; align-items: center; gap: 0.5rem;
    }

    .activity-location svg { height: 0.625rem; width: 0.625rem; color: rgba(196, 161, 45, 0.4); flex-shrink: 0; }

    .activities-empty { text-align: center; padding: 2rem 0; color: #594b3e; font-style: italic; font-size: 0.75rem; }

    /* === Instruments === */
    .instrument-strip { padding: 0.75rem 1.25rem; margin-bottom: 1.5rem; display: flex; align-items: center; }
    .instrument-strip-count { margin-left: auto; }

    .instrument-count-value {
        font-family: var(--font-heading);
        color: #f0d8aa;
    }

    .instrument-count-label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #594b3e;
        font-weight: 700;
        margin-left: 0.25rem;
    }

    .instrument-grid-panel { padding: 1.5rem; }
    .instrument-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }

    .instrument-card { display: block; width: 100%; }
    @media (min-width: 768px)  { .instrument-card { width: calc(50% - 1rem); } }
    @media (min-width: 1024px) { .instrument-card { width: calc(33.333% - 1.334rem); } }

    .instrument-card-image {
        position: relative;
        aspect-ratio: 2/3;
        background: black;
        border-radius: 0.75rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        overflow: hidden;
        isolation: isolate;
    }

    .instrument-card-image-bg { position: absolute; inset: 0; }

    .instrument-card-no-image {
        width: 100%; height: 100%;
        display: flex; align-items: center; justify-content: center;
        color: #594b3e; font-style: italic;
        text-transform: uppercase; letter-spacing: 0.1em;
        font-size: 9px;
    }

    .instrument-card-caption { padding: 0.75rem 0.25rem; }

    .instrument-card-title {
        font-size: 0.75rem; text-transform: uppercase;
        letter-spacing: 0.1em; font-weight: 700;
        text-align: center; color: #b9a581;
        transition: color 0.15s;
    }

    .instrument-card:hover .instrument-card-title { color: #f0d8aa; }


    .instrument-images-panel { padding: 0.75rem 1.25rem; }
    .instrument-images-inner { max-width: 24rem; margin: 0 auto; }

    .public-empty-state {
        text-align: center;
        padding: 3rem 0;
        color: #594b3e;
        font-style: italic;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 1rem;
    }

    /* === Lightbox === */
    .lightbox-modal {
        position: fixed; inset: 0; z-index: 50;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(4px);
        display: flex; align-items: center; justify-content: center;
        padding: 1rem;
    }

    .lightbox-modal-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: blur(80px) brightness(0.6); transform: scale(1.1); }

    .lightbox-close {
        position: absolute; top: 0; right: 1rem; z-index: 10;
        cursor: pointer; color: white; padding: 1rem; transition: color 0.15s;
        &:hover { color: #c4a12d; }
    }
    @media (min-width: 768px) { .lightbox-close { padding: 2rem; } }
    .lightbox-close svg { width: 2rem; height: 2rem; margin-right: 0.25rem; }

    .lightbox-prev {
        position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
        z-index: 10; cursor: pointer; color: white; padding: 1rem; transition: color 0.15s;
        &:hover { color: #c4a12d; }
    }
    @media (min-width: 768px) { .lightbox-prev { padding: 2rem; } }
    .lightbox-prev svg { width: 2.5rem; height: 2.5rem; }

    .lightbox-next {
        position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
        z-index: 10; cursor: pointer; color: white; padding: 1rem; transition: color 0.15s;
        &:hover { color: #c4a12d; }
    }
    @media (min-width: 768px) { .lightbox-next { padding: 2rem; } }
    .lightbox-next svg { width: 2.5rem; height: 2.5rem; }

    .lightbox-image {
        position: relative; z-index: 10;
        max-height: 85vh; max-width: 90vw;
        object-fit: contain;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        border-radius: 0.125rem;
    }

    /* === Image gallery (instrument_images partial) === */
    .img-instruments { display: flex; align-items: flex-start; gap: 0.5rem; }

    .img-instruments-thumbs         { display: flex; flex-direction: column; flex-shrink: 0; width: 3rem; gap: 0.5rem; }
    .img-instruments-thumbs--admin  { gap: 0.375rem; }

    .img-instruments-thumb {
        width: 3rem; aspect-ratio: 2/3;
        border-radius: 0.125rem; overflow: hidden;
        cursor: pointer; transition: all 0.3s;
    }

    .img-instruments-thumb img {
        width: 100%; height: 100%; object-fit: cover;
        filter: grayscale(1); opacity: 0.75;
        transition: all 0.5s;
    }

    .img-instruments-thumb:hover img { filter: none; opacity: 1; }

    .img-instruments-admin-thumb {
        position: relative; width: 3rem; aspect-ratio: 2/3;
        flex-shrink: 0; cursor: grab; border-radius: 0.125rem;
    }

    .img-instruments-admin-thumb--cover { box-shadow: 0 0 0 2px #c4a12d; }
    .img-instruments-admin-thumb--dragging { opacity: 0.4; cursor: grabbing; }

    .img-instruments-admin-thumb-inner { width: 100%; height: 100%; overflow: hidden; border-radius: 0.125rem; }
    .img-instruments-admin-thumb-inner img { width: 100%; height: 100%; object-fit: cover; }

    .img-instruments-thumb-overlay {
        position: absolute; inset: 0;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0; transition: opacity 0.15s;
        display: flex; align-items: flex-end; justify-content: flex-end;
        padding: 0.25rem; border-radius: 0.125rem;
    }

    .img-instruments-admin-thumb:hover .img-instruments-thumb-overlay { opacity: 1; }

    .img-instruments-thumb-set-cover {
        padding: 0.25rem; margin-right: 0.25rem;
        background: rgba(15, 10, 5, 0.9);
        border: 1px solid rgba(196, 161, 45, 0.4);
        border-radius: 9999px;
        color: rgba(196, 161, 45, 0.6);
        transition: all 0.15s;
        &:hover { background: rgba(196, 161, 45, 0.2); border-color: #c4a12d; color: #c4a12d; }
    }

    .img-instruments-thumb-set-cover svg { width: 0.625rem; height: 0.625rem; }

    .img-instruments-thumb-purge {
        padding: 0.25rem;
        background: rgba(127, 29, 29, 0.9);
        border-radius: 9999px; color: white; transition: all 0.15s;
        &:hover { background: rgb(220, 38, 38); }
    }

    .img-instruments-thumb-purge svg { width: 0.625rem; height: 0.625rem; }

    .img-instruments-pending { position: relative; width: 3rem; aspect-ratio: 2/3; flex-shrink: 0; border-radius: 0.125rem; }

    .img-instruments-pending img {
        width: 100%; height: 100%; object-fit: cover;
        border-radius: 0.125rem;
        border: 1px solid rgba(196, 161, 45, 0.2);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        cursor: pointer;
    }

    .img-instruments-pending-remove {
        position: absolute; top: -0.25rem; right: -0.25rem;
        background: rgba(127, 29, 29, 0.9); border-radius: 9999px;
        width: 1rem; height: 1rem;
        display: flex; align-items: center; justify-content: center;
        color: white; transition: all 0.15s;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        &:hover { background: rgb(220, 38, 38); }
    }

    .img-instruments-pending-remove svg { width: 0.625rem; height: 0.625rem; }

    .img-instruments-queue { display: flex; flex-direction: column; gap: 0.375rem; }

    .img-instruments-main        { margin-left: 1rem; flex: 1; }
    .img-instruments-main--fixed { flex: none; }

    .img-instruments-main-frame            { position: relative; overflow: hidden; border-radius: 0.75rem; }
    .img-instruments-main-frame--clickable { cursor: pointer; }

    .img-instruments-main-bg       { position: absolute; inset: 0; }
    .img-instruments-main-bg--blur { background-size: cover; background-position: center; transform: scale(1.15); filter: blur(28px); }

    .img-instruments-main-img { max-width: none; }
    .img-instruments-main-frame--clickable .img-instruments-main-img { transition: opacity 0.3s; }
    .img-instruments-main-frame--clickable:hover .img-instruments-main-img { opacity: 0.75; }

    .img-instruments-main-cover { width: 100%; height: 100%; object-fit: cover; }
    .img-instruments-main-frame--clickable .img-instruments-main-cover { transition: opacity 0.3s; }
    .img-instruments-main-frame--clickable:hover .img-instruments-main-cover { opacity: 0.75; }

    .img-instruments-no-image { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
    .img-instruments-no-image--public { color: #594b3e; font-style: italic; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; }
    .img-instruments-no-image-label { font-size: 9px; color: #594b3e; text-transform: uppercase; letter-spacing: 0.1em; text-align: center; padding: 0 0.5rem; }

    /* === Admin sidebar === */
    .admin-sidebar-backdrop {
        position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6);
    }
    @media (min-width: 1024px) { .admin-sidebar-backdrop { display: none; } }

    .admin-sidebar-nav {
        position: relative; height: 100%; width: 100%;
        display: flex; flex-direction: column;
        background: #0c0804; border-right: 1px solid rgba(196, 161, 45, 0.2);
        padding: 1rem; gap: 2rem; font-family: var(--font-nav); overflow-x: hidden;
    }

    .admin-sidebar-header { display: flex; align-items: center; justify-content: space-between; padding: 0 0.5rem; }

    .admin-sidebar-logo-text {
        color: #f0d8aa; font-size: 1.25rem; font-family: var(--font-heading);
        text-transform: uppercase; letter-spacing: 0.05em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    }

    .admin-sidebar-collapse-btn {
        color: #B9A581; transition: transform 0.2s;
        &:hover { color: #fffbcf; }
        &:active { transform: scale(0.95); }
        svg { width: 1.5rem; height: 1.5rem; }
    }
    @media (max-width: 1023px) { .admin-sidebar-collapse-btn { display: none; } }

    .admin-sidebar-close-btn {
        color: #B9A581; &:hover { color: #fffbcf; }
        svg { width: 1.5rem; height: 1.5rem; }
    }
    @media (min-width: 1024px) { .admin-sidebar-close-btn { display: none; } }

    .admin-sidebar-links { display: flex; flex-direction: column; gap: 0.5rem; }

    .admin-nav-link {
        display: flex; align-items: center;
        padding: 0.75rem; border-radius: 0.25rem;
        color: #B9A581; text-transform: uppercase; font-size: 0.875rem; letter-spacing: 0.025em;
        transition: color 0.15s, background 0.15s;
        &:hover { color: #fffbcf; background: rgba(0, 0, 0, 0.2); }
        svg { width: 1.5rem; height: 1.5rem; flex-shrink: 0; }
    }

    .admin-nav-link--small { font-size: 0.75rem; letter-spacing: 0.1em; svg { width: 1.25rem; height: 1.25rem; } }

    .admin-nav-icon-wrap { position: relative; flex-shrink: 0; }

    .admin-nav-badge {
        position: absolute; top: -0.25rem; right: -0.25rem;
        background: #c4a12d; color: black; font-size: 9px; font-weight: bold;
        border-radius: 9999px; width: 1rem; height: 1rem;
        display: flex; align-items: center; justify-content: center; line-height: 1;
    }

    .admin-nav-label { margin-left: 1rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

    .admin-sidebar-footer { padding-top: 1.5rem; border-top: 1px solid rgba(196, 161, 45, 0.1); }

    .admin-nav-logout {
        width: 100%; display: flex; align-items: center;
        padding: 0.75rem; border-radius: 0.25rem;
        color: #991b1b; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.1em;
        border: none; background: transparent; cursor: pointer; transition: color 0.15s, background 0.15s;
        &:hover { color: rgb(185, 28, 28); background: rgba(127, 29, 29, 0.2); }
        svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
    }

    /* === Admin layout responsive patterns === */
    .admin-table-desktop { display: none; }
    @media (min-width: 1024px) { .admin-table-desktop { display: block; } }

    .admin-mobile-list { display: flex; flex-direction: column; gap: 1rem; padding: 0 1rem; }
    @media (min-width: 640px) { .admin-mobile-list { padding: 0; } }
    @media (min-width: 1024px) { .admin-mobile-list { display: none; } }

    /* === Admin card subpatterns === */
    .admin-card-body { display: flex; flex-direction: column; gap: 0.75rem; }
    .admin-card-header { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid rgba(196, 161, 45, 0.05); padding-bottom: 0.5rem; }
    .admin-card-title { font-weight: 500; }
    .admin-card-subtitle { font-size: 10px; color: #594b3e; text-transform: uppercase; letter-spacing: 0.1em; }
    .admin-card-actions { display: flex; gap: 1rem; padding-top: 1rem; justify-content: center; }
    .admin-card-actions--gap-sm { gap: 0.5rem; padding-top: 0.5rem; }
    .admin-card-actions--wrap { flex-wrap: wrap; }
    .admin-card-actions--end { justify-content: flex-end; }
    .admin-card-msg-preview { font-size: 0.75rem; color: #594b3e; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; cursor: pointer; }

    /* === Admin table modifiers === */
    .admin-table-heading--center { text-align: center; }
    .admin-table-heading--right { text-align: right; }
    .admin-table-cell--center { text-align: center; }
    .admin-table-cell--right { text-align: right; }
    .admin-table-cell--bold { font-weight: 500; }
    .admin-table-cell--muted { color: #594b3e; }
    .admin-table-cell--secondary { color: #B9A581; }
    .admin-table-cell--truncate { max-width: 20rem; }
    .admin-table-cell--truncate .admin-cell-secondary { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 28rem; }
    .admin-table-row--dimmed { opacity: 0.5; }

    /* === Status badges === */
    .admin-status-published { color: #4ade80; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
    .admin-status-draft { color: #594b3e; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-style: italic; }

    /* === Admin form actions + header === */
    .admin-form-actions { display: flex; justify-content: flex-end; gap: 1rem; margin-top: 1.5rem; padding: 0 1rem; }
    @media (min-width: 640px) { .admin-form-actions { padding: 0; } }
    .admin-form { display: flex; flex-direction: column; gap: 2rem; }
    .admin-form-body { display: flex; flex-direction: column; gap: 1.5rem; }
    .admin-form-errors { border-radius: 0.25rem; background: rgba(59, 0, 0, 0.2); border: 1px solid rgba(248, 113, 113, 0.4); padding: 1rem; margin-bottom: 1.5rem; }
    .admin-form-errors-heading { font-size: 0.875rem; font-weight: 600; color: #f87171; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
    .admin-form-errors-list { font-size: 0.875rem; color: rgba(248, 113, 113, 0.8); list-style: disc; padding-left: 1.25rem; }
    .admin-form-rte-section { padding-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
    .admin-form-rte-section .admin-form-label { margin-bottom: 1rem; }
    .admin-form-section-divider { padding-top: 1rem; border-top: 1px solid rgba(196, 161, 45, 0.1); }
    .admin-header-actions { display: flex; gap: 0.5rem; align-items: center; }
    .admin-btn-utility--icon { display: inline-flex; align-items: center; gap: 0.5rem; svg { width: 1rem; height: 1rem; } }
    .admin-filter-clear-row { display: flex; justify-content: flex-end; padding-top: 0.5rem; }

    /* === Admin published toggle === */
    .admin-toggle-row { display: flex; align-items: center; gap: 0.75rem; }
    .admin-toggle-label { display: inline-flex; align-items: center; cursor: pointer; }
    .admin-toggle-input { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
    .admin-toggle-track {
        position: relative; width: 2.75rem; height: 1.5rem;
        border-radius: 9999px; background: rgba(196, 161, 45, 0.2);
        transition: background 0.15s;
        &::after {
            content: ''; position: absolute; top: 2px; left: 2px;
            background: white; border-radius: 9999px; width: 1.25rem; height: 1.25rem;
            transition: transform 0.15s;
        }
    }
    .admin-toggle-input:checked + .admin-toggle-track { background: #c4a12d; &::after { transform: translateX(1.25rem); } }
    .admin-toggle-text { font-size: 0.875rem; color: #B9A581; }

    /* === Admin input prefix === */
    .admin-input-prefix-wrap { position: relative; }
    .admin-input-prefix { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: #594b3e; }
    .admin-input-prefix-wrap .admin-form-input { padding-left: 2.5rem; }

    /* === Admin messages header === */
    .admin-msg-header-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-top: 0.75rem; }
    @media (min-width: 640px) { .admin-msg-header-actions { display: flex; align-items: center; margin-top: 0; } }
    .admin-msg-view-blocked {
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        gap: 0.25rem; font-size: 0.75rem; font-weight: bold; text-transform: uppercase;
        letter-spacing: 0.1em; color: #B9A581; padding: 0 0.5rem; text-align: center; transition: color 0.15s;
        &:hover { color: #fffbcf; }
        svg { width: 1rem; height: 1rem; flex-shrink: 0; }
    }
    @media (min-width: 640px) { .admin-msg-view-blocked { flex-direction: row; gap: 0.375rem; } }

    /* === Admin search section (blocked emails) === */
    .admin-search-section { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 2rem; }
    .admin-search-input-wrap { flex: 1; max-width: 24rem; }
    .admin-search-clear { font-size: 0.875rem; color: rgba(196, 161, 45, 0.6); transition: color 0.15s; &:hover { color: #c4a12d; } }

    /* === Admin canvas === */
    .admin-canvas-layout { display: grid; grid-template-columns: auto 1fr; }
    .admin-canvas-preview-col { display: flex; justify-content: center; }
    .admin-canvas-preview-inner { display: inline-block; }
    .admin-preview-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
    .admin-save-status-wrap { display: flex; align-items: center; gap: 0.5rem; }
    .save-status-check { display: flex; color: #4caf50; width: 1.25rem; height: 1.25rem; transition: opacity 0.3s; }
    .save-status-check svg { width: 1.25rem; height: 1.25rem; }
    .save-status-check--hidden { opacity: 0; pointer-events: none; }
    .admin-canvas-container { display: inline-block; background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(196, 161, 45, 0.2); border-radius: 0.5rem; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
    .admin-canvas { position: relative; overflow: hidden; background: #0a0704; user-select: none; }
    .admin-canvas--grab { cursor: grab; }
    .admin-canvas--default { cursor: default; }
    .admin-canvas-blur-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
    .admin-canvas-color-bg { position: absolute; inset: 0; }
    .admin-canvas-image { position: absolute; user-select: none; max-width: none; }
    .admin-canvas-empty {
        position: absolute; inset: 0;
        display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
        background: rgba(13, 9, 5, 0.75); border: 1px dashed rgba(196, 161, 45, 0.2);
        border-radius: 0.375rem; margin: 1rem; pointer-events: none; transition: all 0.3s;
        svg { width: 2.5rem; height: 2.5rem; color: rgba(196, 161, 45, 0.3); }
    }
    .admin-canvas-empty-text { text-align: center; padding: 0 1rem; }
    .admin-canvas-empty-title { color: rgba(196, 161, 45, 0.7); font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; font-weight: bold; margin-bottom: 0.25rem; display: block; }
    .admin-canvas-empty-subtitle { font-size: 10px; color: #594b3e; display: block; }
    .admin-canvas-upload-btn { font-size: 10px; padding: 0.375rem 1rem; margin-top: 0.25rem; cursor: pointer; pointer-events: auto; }
    .admin-canvas-toolbar { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem; background: #110b05; border-top: 1px solid rgba(196, 161, 45, 0.15); box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06); }
    .admin-canvas-toolbar-label { color: #594b3e; font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; flex-shrink: 0; font-weight: bold; }
    .admin-canvas-toolbar-value { color: #c4a12d; font-size: 10px; font-weight: bold; width: 2.5rem; flex-shrink: 0; text-align: center; }
    .admin-canvas-toolbar-value--right { text-align: right; }
    .admin-canvas-toolbar .admin-range { flex: 1; min-width: 0; }
    .admin-canvas-mode-btn { font-size: 10px; padding: 0.125rem 0.5rem; border-radius: 0.25rem; border: 1px solid; transition: colors 0.15s; flex-shrink: 0; cursor: pointer; }
    .admin-canvas-color-input { flex: 1; min-width: 0; height: 1.5rem; border-radius: 0.25rem; cursor: pointer; border: 1px solid rgba(196, 161, 45, 0.2); background: transparent; padding: 0; }
    .admin-canvas-change-actions { position: absolute; bottom: 0.75rem; right: 0.75rem; display: flex; gap: 0.5rem; }
    .admin-canvas-change-clear {
        background: rgba(15, 10, 5, 0.95); border: 1px solid rgba(248, 113, 113, 0.4);
        color: #f87171; padding: 0.375rem 0.75rem; border-radius: 0.25rem;
        font-size: 10px; font-weight: bold; text-transform: uppercase; letter-spacing: 0.05em;
        cursor: pointer; backdrop-filter: blur(4px); transition: all 0.15s; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        &:hover { background: black; }
    }
    .admin-canvas-change-label {
        background: rgba(15, 10, 5, 0.95); border: 1px solid rgba(196, 161, 45, 0.3);
        color: #B9A581; padding: 0.375rem 0.75rem; border-radius: 0.25rem;
        font-size: 10px; font-weight: bold; text-transform: uppercase; letter-spacing: 0.05em;
        cursor: pointer; backdrop-filter: blur(4px); transition: all 0.15s; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        display: block; &:hover { background: black; color: #fffbcf; }
    }
    .admin-canvas-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
    .admin-canvas-header-actions { display: flex; align-items: center; gap: 0.25rem; }
    .admin-canvas-clear-btn { color: #B9A581; cursor: pointer; transition: all 0.15s; &:hover { color: #fffbcf; } }

    /* === Admin slide creator === */
    .admin-slide-creator-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
    .admin-slide-creator-mode { display: inline-flex; border-radius: 0.25rem; border: 1px solid rgba(196, 161, 45, 0.2); overflow: hidden; }
    .admin-slide-creator-mode-btn {
        padding: 0.375rem 1rem; font-size: 10px; font-weight: bold; text-transform: uppercase;
        letter-spacing: 0.05em; transition: color 0.15s, background 0.15s; cursor: pointer;
        & + & { border-left: 1px solid rgba(196, 161, 45, 0.2); }
    }
    .admin-slide-creator-commit {
        border: 1px solid rgba(196, 161, 45, 0.3); color: #B9A581; padding: 0.375rem 1rem;
        border-radius: 0.25rem; font-size: 10px; font-weight: bold; text-transform: uppercase;
        letter-spacing: 0.05em; transition: all 0.15s; cursor: pointer;
        &:hover { color: #fffbcf; background: rgba(196, 161, 45, 0.1); }
    }
    .admin-slide-before-after { overflow-x: auto; padding-bottom: 0.5rem; margin: 0 -1rem; padding-left: 1rem; padding-right: 1rem; }
    @media (min-width: 640px) { .admin-slide-before-after { margin: 0; padding-left: 0; padding-right: 0; } }
    .admin-slide-canvas-container { display: inline-block; background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(196, 161, 45, 0.2); border-radius: 0.5rem; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
    .admin-slide-labels { display: flex; border-bottom: 1px solid rgba(196, 161, 45, 0.15); background: rgba(196, 161, 45, 0.02); }
    .admin-slide-label-col { text-align: center; padding: 0.625rem 0; flex: 1; & + & { border-left: 1px solid rgba(196, 161, 45, 0.15); } }
    .admin-slide-label-text { font-size: 0.75rem; font-family: var(--font-heading); color: #f0d8aa; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 600; }
    .admin-slide-canvas-row { display: flex; & > * + * { border-left: 1px solid rgba(196, 161, 45, 0.15); } }
    .admin-canvas-flex-col { display: flex; flex-direction: column; flex-shrink: 0; }

    /* === Admin slide thumbs === */
    .admin-slide-thumb { height: 3rem; width: auto; border: 1px solid rgba(196, 161, 45, 0.1); border-radius: 0.25rem; }
    .admin-slide-thumb--large { height: 8rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
    .admin-slide-mobile-preview { background: rgba(196, 161, 45, 0.02); padding: 1rem; border-bottom: 1px solid rgba(196, 161, 45, 0.2); display: flex; justify-content: center; margin-bottom: 1rem; margin-left: -1.5rem; margin-right: -1.5rem; margin-top: -1rem; border-radius: 0.5rem 0.5rem 0 0; }

    /* === Admin article form radio group === */
    .admin-radio-group { display: flex; gap: 1.5rem; }
    .admin-radio-option { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
    .admin-radio-option span { font-size: 0.875rem; color: #B9A581; }
    .admin-radio-option input[type="radio"] { accent-color: #c4a12d; }
    .admin-form-type-group { display: flex; flex-direction: column; gap: 1rem; }

    /* === Admin slide form section === */
    .admin-slide-form-section { display: flex; flex-direction: column; gap: 1rem; border-top: 1px solid rgba(196, 161, 45, 0.1); }

    /* === Admin blocked email subtitle === */
    .admin-header-subtitle { font-size: 0.75rem; color: #594b3e; margin-top: 0.25rem; }

    /* === Admin slug preview === */
    .admin-slug-preview { margin-top: 0.25rem; font-size: 10px; color: #594b3e; font-family: monospace; letter-spacing: 0.05em; }
    .admin-file-current { font-size: 10px; color: #594b3e; margin-top: 0.25rem; }
    .admin-form-hint { font-size: 10px; color: #594b3e; font-style: italic; margin-top: 0.25rem; display: block; }
    .admin-form-hint--url { color: #594b3e; font-style: normal; }

    /* === Admin sidebar container responsive === */
    .admin-sidebar-container {
        position: fixed; inset: 0; z-index: 50;
        transition: all 0.3s ease-in-out;
    }
    @media (min-width: 1024px) {
        .admin-sidebar-container {
            position: relative; inset: auto; z-index: auto;
            display: flex !important; /* override .hidden - sidebar always visible on desktop */
        }
    }

    /* === Admin sidebar width states (JS-toggled) === */
    .admin-sidebar-expanded  { width: 16rem; }
    .admin-sidebar-collapsed { width: 5rem; }

    /* === Admin table dividers (replaces divide-y divide-logo-primary/10) === */
    .admin-table tbody tr + tr { border-top: 1px solid rgba(196, 161, 45, 0.1); }

    /* === Admin table cell content helpers === */
    .admin-cell-title { font-weight: 500; }
    .admin-cell-secondary { font-size: 0.75rem; color: #594b3e; margin-top: 2px; }

    /* === Sort column links === */
    .admin-sort-link {
        display: inline-flex;
        align-items: center;
        transition: color 0.15s;
        &:hover { color: #fffbcf; }
    }
    .admin-sort-link-inner { display: inline-flex; align-items: center; }
    .admin-sort-icon { margin-left: 0.375rem; font-weight: bold; }
    .admin-sort-icon--active   { color: #c4a12d; }
    .admin-sort-icon--inactive { color: #594b3e; opacity: 0.3; }
    .admin-cell-tiny { font-size: 10px; color: #594b3e; }

    /* === Admin card content helpers === */
    .admin-card-title { font-weight: 500; }
    .admin-card-muted { color: #594b3e; font-size: 0.875rem; }

    /* === Admin search block === */
    .admin-search-block { margin-bottom: 2rem; }
    .admin-search-form { display: flex; gap: 0.75rem; align-items: center; }

    /* === Admin messages header button width === */
    .admin-msg-header-actions form { width: 100%; text-align: center; }
    @media (min-width: 640px) { .admin-msg-header-actions form { width: auto; } }

    /* === Admin layout === */
    .admin-mobile-header {
        display: flex; align-items: center; justify-content: space-between;
        background: #0c0804; border-bottom: 1px solid rgba(196, 161, 45, 0.2); padding: 1rem;
    }
    @media (min-width: 1024px) { .admin-mobile-header { display: none; } }
    .admin-mobile-header-title { color: var(--color-heading); font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.05em; }
    .admin-mobile-menu-btn { color: #B9A581; transition: color 0.15s; &:hover { color: #fffbcf; } svg { width: 1.5rem; height: 1.5rem; } }
    .admin-layout { display: flex; min-height: 100vh; }
    .admin-main { flex: 1; display: flex; flex-direction: column; min-width: 0; background: rgba(0, 0, 0, 0.4); overflow: hidden; }
    .admin-content-area { flex: 1; overflow-y: auto; padding: 2rem; }
    .admin-content-inner { max-width: 80rem; margin: 0 auto; }

    /* === Admin modal === */
    .admin-modal-backdrop { position: fixed; inset: 0; z-index: 50; display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px); }
    .admin-modal-card { background: #0c0804; border: 1px solid rgba(196, 161, 45, 0.3); border-radius: 0.75rem; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); padding: 2rem; max-width: 32rem; width: 100%; margin: 0 1rem; }
    .admin-modal-card--sm { max-width: 24rem; }
    .admin-modal-body { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
    .admin-modal-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
    .admin-modal-subject { color: var(--color-heading); font-family: var(--font-heading); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
    .admin-modal-date { color: #594b3e; font-size: 0.75rem; white-space: nowrap; padding-top: 2px; }
    .admin-modal-meta { border-top: 1px solid rgba(196, 161, 45, 0.1); padding-top: 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
    .admin-modal-sender { color: var(--color-on-surface); font-size: 0.875rem; font-weight: 500; }
    .admin-modal-email { color: #594b3e; font-size: 0.75rem; }
    .admin-modal-content { border-top: 1px solid rgba(196, 161, 45, 0.1); padding-top: 1rem; }
    .admin-modal-body-text { color: var(--color-on-surface); font-size: 0.875rem; line-height: 1.625; white-space: pre-wrap; }
    .admin-modal-footer { display: flex; gap: 0.75rem; justify-content: flex-end; border-top: 1px solid rgba(196, 161, 45, 0.1); padding-top: 1rem; }
    .admin-modal-footer--no-border { border-top: none; padding-top: 0; }
    .admin-modal-confirm-text { color: var(--color-on-surface); font-size: 0.875rem; line-height: 1.625; margin-bottom: 1.5rem; }
    .admin-modal-close-btn { padding: 0.5rem 1.25rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: #594b3e; border: 1px solid rgba(196, 161, 45, 0.2); border-radius: 0.25rem; transition: all 0.15s; &:hover { border-color: rgba(196, 161, 45, 0.4); color: var(--color-on-surface); } }
    .admin-modal-action-btn { padding: 0.5rem 1.25rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: black; background: #c4a12d; border-radius: 0.25rem; font-weight: bold; transition: all 0.15s; &:hover { background: rgba(196, 161, 45, 0.8); } }
    .admin-modal-danger-btn { padding: 0.5rem 1.25rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: white; background: #7f1d1d; border-radius: 0.25rem; font-weight: bold; transition: all 0.15s; &:hover { background: #991b1b; } }

    /* === Admin form input modifiers === */
    .admin-form-input--resizable { resize: vertical; }
    .admin-form-input--disabled { opacity: 0.5; cursor: not-allowed; }

    /* === Admin slide thumb medium (form preview) === */
    .admin-slide-thumb--medium { height: 6rem; width: auto; border: 1px solid rgba(196, 161, 45, 0.2); border-radius: 0.25rem; }

    /* === Auth screens === */
    .auth-page {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 3rem;
        padding-bottom: 3rem;
        position: relative;
        overflow: hidden;
        background-color: #1d1309;
    }

    @media (min-width: 640px)  { .auth-page { padding-left: 1.5rem; padding-right: 1.5rem; } }
    @media (min-width: 1024px) { .auth-page { padding-left: 2rem;   padding-right: 2rem; } }

    .auth-glow { position: absolute; width: 50%; height: 50%; border-radius: 9999px; filter: blur(120px); }
    .auth-glow--tl { top: 0; left: -25%; background: rgba(196, 161, 45, 0.1); }
    .auth-glow--br { bottom: 0; right: -25%; background: rgba(242, 152, 36, 0.1); }

    .auth-center { position: relative; z-index: 10; }
    @media (min-width: 640px) { .auth-center { margin: 0 auto; width: 100%; max-width: 28rem; } }

    .auth-logo-wrap  { display: flex; justify-content: center; margin-bottom: 2rem; }
    .auth-logo-group { position: relative; }

    .auth-logo-glow {
        position: absolute;
        inset: -4px;
        background: linear-gradient(to right, #c4a12d, #f29824);
        border-radius: 0.5rem;
        filter: blur(4px);
        opacity: 0.25;
        transition: opacity 1s;
    }
    .auth-logo-group:hover .auth-logo-glow { opacity: 0.5; transition-duration: 200ms; }

    .auth-logo-box {
        position: relative;
        padding: 0.75rem 1rem;
        background: black;
        box-shadow: 0 0 0 1px rgba(196, 161, 45, 0.2);
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        line-height: 1;
    }

    .auth-logo-img { height: 5rem; width: auto; }

    .auth-title {
        text-align: center;
        font-family: var(--font-heading);
        font-size: 2.25rem;
        font-weight: 800;
        letter-spacing: 0.1em;
        color: #f0d8aa;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
    }

    .auth-subtitle {
        text-align: center;
        color: rgba(185, 165, 129, 0.8);
        font-size: 0.875rem;
        margin-bottom: 2rem;
        letter-spacing: 0.025em;
    }

    .auth-card-wrap { margin-top: 2rem; position: relative; z-index: 10; padding-left: 1rem; padding-right: 1rem; }
    @media (min-width: 640px) { .auth-card-wrap { margin: 2rem auto 0; width: 100%; max-width: 28rem; padding: 0; } }

    .auth-card {
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(24px);
        border: 1px solid rgba(196, 161, 45, 0.2);
        padding: 2.5rem 1.5rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        border-radius: 1.5rem;
    }
    @media (min-width: 640px) { .auth-card { padding-left: 3rem; padding-right: 3rem; } }

    .auth-alert { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; padding: 1rem; border-radius: 0.75rem; }
    .auth-alert--danger  { background: rgba(59, 0, 0, 0.2);   border: 1px solid rgba(248, 113, 113, 0.4); animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
    .auth-alert--success { background: rgba(28, 67, 0, 0.2);  border: 1px solid rgba(74, 222, 128, 0.4); }
    .auth-alert-icon { flex-shrink: 0; width: 1.25rem; height: 1.25rem; }
    .auth-alert-icon--danger  { color: #f87171; }
    .auth-alert-icon--success { color: #4ade80; }
    .auth-alert-msg { font-size: 0.875rem; font-weight: 500; }
    .auth-alert-msg--danger  { color: #f87171; }
    .auth-alert-msg--success { color: #4ade80; }

    .auth-form  { display: flex; flex-direction: column; gap: 1.5rem; }
    .auth-field { display: flex; flex-direction: column; }

    .auth-label {
        display: block;
        font-size: 0.75rem;
        font-weight: 600;
        color: #846646;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.5rem;
    }

    .auth-label-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
    .auth-label-row .auth-label { margin-bottom: 0; }

    .auth-forgot-link {
        font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
        color: #c4a12d; transition: color 0.15s;
        &:hover { color: #f0d8aa; }
    }

    .auth-input-group { position: relative; }

    .auth-input-icon { position: absolute; top: 0; bottom: 0; left: 0; padding-left: 1rem; display: flex; align-items: center; pointer-events: none; }
    .auth-input-icon svg { width: 1.25rem; height: 1.25rem; color: #806a58; transition: color 0.15s; }
    .auth-input-group:focus-within .auth-input-icon svg { color: #c4a12d; }

    .auth-input {
        display: block;
        width: 100%;
        padding: 0.75rem 1rem 0.75rem 3rem;
        background: rgba(29, 19, 9, 0.5);
        border: 1px solid rgba(196, 161, 45, 0.2);
        color: #b9a581;
        border-radius: 0.75rem;
        outline: none;
        transition: all 0.15s;
        &::placeholder { color: #594b3e; }
        &:focus { box-shadow: 0 0 0 1px #c4a12d; border-color: #c4a12d; }
    }

    .auth-submit {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        border-radius: 0.75rem;
        color: #1d1309;
        font-weight: 700;
        background: linear-gradient(to right, #c4a12d, #f29824);
        box-shadow: 0 10px 15px -3px rgba(196, 161, 45, 0.2);
        transition: all 0.15s;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 0.875rem;
        border: none;
        &:hover { background: linear-gradient(to right, #f0d8aa, #f39d2e); }
        &:active { transform: scale(0.98); }
    }

    .auth-footer { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(196, 161, 45, 0.1); display: flex; justify-content: center; }

    .auth-footer-link {
        display: flex; align-items: center; gap: 0.5rem;
        color: #846646; transition: color 0.15s;
        font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em;
        &:hover { color: #fffbcf; }
    }
    .auth-footer-link svg { width: 1rem; height: 1rem; }

    /* ================================================================
       Classes migrated from tailwind.config.js addComponents
       ================================================================ */

    /* --- Layout --- */
    .admin-header-wrapper {
        margin-bottom: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    @media (min-width: 640px) {
        .admin-header-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-left: 0;
            padding-right: 0;
        }
    }

    .admin-title {
        margin-bottom: 0 !important;
        font-family: var(--font-heading);
        color: #f0d8aa;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    /* --- Containers --- */
    .admin-card {
        background-color: black;
        border: 1px solid rgba(196, 161, 45, 0.2);
        border-radius: 0.5rem;
        padding: 1rem 1.5rem;
        backdrop-filter: blur(4px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    }

    .admin-table-container {
        background-color: black;
        border: 1px solid rgba(196, 161, 45, 0.2);
        border-radius: 0.5rem;
        overflow: hidden;
        backdrop-filter: blur(4px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    }

    /* --- Tables --- */
    .admin-table {
        min-width: 100%;
    }

    .admin-table-heading {
        padding: 1rem 1.5rem;
        text-align: left;
        font-size: 0.75rem;
        font-weight: 600;
        color: #846646;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        border-bottom: 1px solid rgba(196, 161, 45, 0.1);
        background-color: rgba(29, 19, 9, 0.05);
    }

    .admin-table-cell {
        padding: 1rem 1.5rem;
        white-space: nowrap;
        font-size: 0.875rem;
        color: #b9a581;
    }

    .admin-table-row {
        border-bottom: 1px solid rgba(196, 161, 45, 0.1);
        transition: color 0.15s, background-color 0.15s, border-color 0.15s;

        &:hover { background-color: rgba(29, 19, 9, 0.05); }
    }

    /* --- Forms --- */
    .admin-form-group > * + * { margin-top: 0.5rem; }

    .admin-form-grid-2 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .admin-form-grid-3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .admin-form-label {
        display: block;
        font-size: 0.75rem;
        font-weight: 600;
        color: #846646;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .admin-form-input {
        display: block;
        width: 100%;
        background-color: #110b05;
        border: 1px solid rgba(196, 161, 45, 0.2);
        border-radius: 0.25rem;
        padding: 0.5rem 1rem;
        color: #b9a581;
        outline: none;
        transition: all 0.15s;
        font-family: var(--font-body);

        &:focus {
            border-color: #c4a12d;
            box-shadow: 0 0 0 1px #c4a12d;
        }
    }

    .admin-form-select {
        display: block;
        width: 100%;
        background-color: #110b05;
        border: 1px solid rgba(196, 161, 45, 0.2);
        border-radius: 0.25rem;
        padding: 0.5rem 2.5rem 0.5rem 1rem;
        color: #b9a581;
        outline: none;
        transition: all 0.15s;
        font-family: var(--font-body);
        -webkit-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a0855a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        background-size: 1rem;

        &:focus {
            border-color: #c4a12d;
            box-shadow: 0 0 0 1px #c4a12d;
        }
    }

    .admin-form-checkbox-wrapper {
        display: flex;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(196, 161, 45, 0.1);
        border-radius: 0.25rem;
        padding: 0.625rem 1rem;
        width: 100%;
    }

    .admin-form-checkbox-wrapper > * + * { margin-left: 0.75rem; }

    .admin-form-checkbox {
        height: 1rem;
        width: 1rem;
        accent-color: #c4a12d;
        border: 1px solid rgba(196, 161, 45, 0.2);
        background-color: black;
        border-radius: 0.25rem;
    }

    /* --- Buttons --- */
    .admin-btn-save {
        margin-top: 1rem;
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 1.5rem;
        border-radius: 0.25rem;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        font-size: 0.875rem;
        font-weight: 500;
        color: black;
        background-color: #c4a12d;
        transition: all 0.15s;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        cursor: pointer;
        border: none;

        &:hover { background-color: rgba(196, 161, 45, 0.8); }
    }

    @media (min-width: 640px) { .admin-btn-save { margin-top: 0; } }

    .admin-btn-new {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
        border-radius: 0.25rem;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        color: black;
        background-color: #c4a12d;
        transition: all 0.15s;
        cursor: pointer;
        border: none;

        &:hover { background-color: rgba(196, 161, 45, 0.8); }
    }

    .admin-btn-cancel,
    .admin-btn-utility {
        padding: 0.5rem 1.5rem;
        font-size: 0.75rem;
        font-weight: 600;
        color: #846646;
        transition: color 0.15s;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        cursor: pointer;
        background: none;
        border: none;

        &:hover { color: #fffbcf; }
    }

    /* Filter button turns gold when a filter is active (iconActive child is visible) */
    .admin-btn-utility:has([data-admin-filter-target="iconActive"]:not(.hidden)) {
        color: #c4a12d;
    }

    .admin-btn-edit {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
        border-radius: 0.25rem;
        color: #b9a581;
        transition: all 0.15s;
        cursor: pointer;
        background: none;
        border: none;

        &:hover { color: #fffbcf; background-color: rgba(196, 161, 45, 0.1); }
    }

    .admin-icon-btn-danger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
        border-radius: 0.25rem;
        color: #991b1b;
        transition: all 0.15s;
        cursor: pointer;
        background: none;
        border: none;

        &:hover { color: #b91c1c; background-color: rgba(127, 29, 29, 0.2); }
    }

    .admin-btn-danger {
        display: inline-flex;
        align-items: center;
        padding: 0.25rem 0.75rem;
        border-radius: 0.375rem;
        font-size: 0.75rem;
        font-weight: 500;
        color: #991b1b;
        background-color: rgba(127, 29, 29, 0.1);
        transition: all 0.15s;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        cursor: pointer;
        border: none;

        &:hover { background-color: rgba(127, 29, 29, 0.2); color: #b91c1c; }
    }

    .admin-btn-mobile-utility {
        padding: 0.625rem 1rem;
        text-align: center;
        background-color: transparent;
        border: 1px solid rgba(196, 161, 45, 0.2);
        border-radius: 0.25rem;
        font-size: 0.75rem;
        font-weight: 700;
        color: #846646;
        transition: all 0.15s;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        cursor: pointer;
        white-space: nowrap;

        &:hover { color: #fffbcf; border-color: rgba(196, 161, 45, 0.4); }
    }

    .admin-btn-mobile-edit {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.25rem;
        height: 2.25rem;
        border-radius: 0.25rem;
        color: #b9a581;
        transition: all 0.15s;
        cursor: pointer;
        background: none;
        border: none;

        &:hover { color: #fffbcf; background-color: rgba(196, 161, 45, 0.1); }
    }

    .admin-icon-btn-mobile-danger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.25rem;
        height: 2.25rem;
        border-radius: 0.25rem;
        color: #991b1b;
        transition: all 0.15s;
        cursor: pointer;
        background: none;
        border: none;

        &:hover { color: #b91c1c; background-color: rgba(127, 29, 29, 0.2); }
    }

    .admin-btn-mobile-danger {
        padding: 0.625rem 1rem;
        background-color: rgba(127, 29, 29, 0.1);
        border-radius: 0.25rem;
        font-size: 0.75rem;
        font-weight: 700;
        color: #991b1b;
        transition: all 0.15s;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        cursor: pointer;
        border: none;

        &:hover { background-color: rgba(127, 29, 29, 0.2); color: #b91c1c; }
    }

    /* --- Mobile card patterns --- */
    .admin-mobile-card-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        align-items: center;
        font-size: 0.875rem;
        border-bottom: 1px solid rgba(196, 161, 45, 0.05);
        padding-bottom: 0.5rem;

        &:last-child { border-bottom: 0; }
    }

    .admin-mobile-card-label {
        color: #846646;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 10px;
        text-align: right;
        padding-right: 0.5rem;
    }

    .admin-mobile-card-value {
        color: #b9a581;
        font-weight: 500;
        text-align: left;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .admin-mobile-card-value-badge {
        color: #c4a12d;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    /* --- Utils --- */
    .admin-table-actions-cell {
        padding: 1rem 1.5rem;
        white-space: nowrap;
        font-size: 0.875rem;
        color: #b9a581;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0.25rem;
    }

    .admin-empty-state {
        padding: 3rem 1.5rem;
        text-align: center;
        color: #594b3e;
        font-style: italic;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 0.875rem;
    }

    /* --- Badges --- */
    .admin-badge-gold {
        padding: 0.25rem 0.5rem;
        border-radius: 9999px;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        background-color: rgba(196, 161, 45, 0.1);
        color: #c4a12d;
        border: 1px solid rgba(196, 161, 45, 0.2);
    }

    .admin-badge-success {
        padding: 0.25rem 0.5rem;
        border-radius: 9999px;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        background-color: rgba(74, 222, 128, 0.1);
        color: #4ade80;
        border: 1px solid rgba(74, 222, 128, 0.2);
    }

    .admin-badge-danger {
        padding: 0.25rem 0.5rem;
        border-radius: 9999px;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        background-color: rgba(248, 113, 113, 0.1);
        color: #f87171;
        border: 1px solid rgba(248, 113, 113, 0.2);
    }

    /* --- RTE --- */
    .admin-rte-container {
        background-color: black;
        border: 1px solid rgba(196, 161, 45, 0.2);
        border-radius: 0.25rem;
        padding: 0.25rem;
        min-height: 500px;
    }

    /* --- Public layout --- */
    .public-container {
        max-width: 64rem;
        margin-left: auto;
        margin-right: auto;
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
    }

    @media (min-width: 640px)  { .public-container { padding-left: 1.5rem; padding-right: 1.5rem; } }
    @media (min-width: 1024px) { .public-container { padding-left: 2rem;   padding-right: 2rem; } }

    .public-main-content {
        flex: 1 1 0%;
        min-width: 0;
    }

    .public-layout-with-sidebar {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    @media (min-width: 1024px) { .public-layout-with-sidebar { flex-direction: row; } }

    /* --- Semantic surface primitives --- */
    .surface-panel {
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(12px);
        border-radius: 0.75rem;
        border: 1px solid rgba(196, 161, 45, 0.2);
        padding: 1rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    @media (min-width: 768px) { .surface-panel { padding: 2rem; } }

    .surface-panel-flex {
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(12px);
        border-radius: 0.75rem;
        border: 1px solid rgba(196, 161, 45, 0.2);
        padding: 1rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    @media (min-width: 768px) { .surface-panel-flex { padding: 2rem; } }

    .surface-panel-bleed {
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(12px);
        border-radius: 0.75rem;
        border: 1px solid rgba(196, 161, 45, 0.2);
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .surface-subtle {
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 0.5rem;
        border: 1px solid rgba(196, 161, 45, 0.1);
    }

    .content-richtext {
        max-width: none;
        color: #b9a581;
        line-height: 1.625;
        font-size: 1rem;
        font-family: var(--font-body);
    }

    .content-richtext-compact {
        max-width: none;
        color: #b9a581;
        line-height: 1.625;
        font-size: 0.875rem;
        font-family: var(--font-body);
        opacity: 0.8;
    }

    .content-label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #594b3e;
        font-weight: 700;
    }

    .body-heading-2 {
        font-family: var(--font-heading);
        color: #c4a12d;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 1.2rem;
    }

    .body-heading-3 {
        font-family: var(--font-heading);
        font-size: 1rem;
        color: #f0d8aa;
        text-transform: uppercase;
        letter-spacing: 0.025em;
    }

    /* --- Semantic grid primitives --- */
    .layout-grid-2-compact {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .layout-grid-2-relaxed {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .layout-grid-3-balanced {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .layout-grid-3-relaxed {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .layout-grid-image-thumbs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    @media (min-width: 640px) { .layout-grid-image-thumbs { grid-template-columns: repeat(4, 1fr); } }
    @media (min-width: 768px) { .layout-grid-image-thumbs { grid-template-columns: repeat(6, 1fr); } }

    .layout-grid-stack {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* --- Admin filter --- */
    .admin-filter {
        margin-bottom: 2rem;
        background-color: rgba(29, 19, 9, 0.4);
        padding: 1.5rem;
        border-radius: 0.5rem;
        border: 1px solid rgba(196, 161, 45, 0.1);
        transition: all 0.15s;
    }

    .admin-filter-controls {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .admin-filter-controls > * {
        flex: 1;
        min-width: 10rem;
        max-width: 100%;
    }

    @media (min-width: 768px) { .admin-filter-controls > * { max-width: 50%; } }

    .admin-filter-controls > .admin-filter-controls-wide { min-width: 16rem; }

    .admin-filter-label {
        display: block;
        font-size: 0.75rem;
        font-weight: 600;
        color: rgba(196, 161, 45, 0.4);
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .admin-filter-label-active { color: #c4a12d; }

    .admin-filter-clear {
        font-size: 0.875rem;
        color: rgba(196, 161, 45, 0.6);
        transition: color 0.15s;

        &:hover { color: #c4a12d; }
    }

    .admin-filter-clear-btn {
        color: rgba(196, 161, 45, 0.4);
        padding: 0.25rem;
        border-radius: 0.25rem;
        transition: color 0.15s;
        background: none;
        border: none;
        cursor: pointer;

        &:hover { color: #c4a12d; }
    }

    /* --- Public form atoms --- */
    .form-label-subtle {
        display: block;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #594b3e;
        margin-bottom: 0.25rem;
        font-weight: 700;
    }

    .form-input-public {
        width: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(196, 161, 45, 0.2);
        border-radius: 0.25rem;
        padding: 0.75rem 1rem;
        color: #b9a581;
        font-size: 0.875rem;
        outline: none;
        transition: all 0.15s;

        &::placeholder { color: rgba(89, 75, 62, 0.4); }
        &:focus { border-color: #c4a12d; box-shadow: 0 0 0 1px #c4a12d; }
    }

    .btn-accent-block {
        display: inline-block;
        width: 100%;
        text-align: center;
        padding-top: 1rem;
        padding-bottom: 1rem;
        background-color: rgba(196, 161, 45, 0.05);
        border: 1px solid rgba(196, 161, 45, 0.4);
        color: #c4a12d;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 0.75rem;
        font-weight: 700;
        transition: all 0.3s;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

        &:hover { background-color: rgba(196, 161, 45, 0.1); border-color: #c4a12d; }
    }

    /* --- Public activity filter --- */
    .public-filter-title {
        font-family: var(--font-heading);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: #c4a12d;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(196, 161, 45, 0.2);
        font-size: 1.2rem;
    }

    .public-filter-button {
        text-align: left;
        padding: 0.5rem 1rem;
        border-radius: 0.25rem;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        transition: all 0.15s;
        color: #806a58;
        font-weight: 700;
        background: none;
        border: none;
        cursor: pointer;
        display: block;
        width: 100%;

        &:hover { background-color: rgba(196, 161, 45, 0.1); }
    }

    .active-filter {
        background-color: rgba(196, 161, 45, 0.2);
        color: #fffbcf;
        border-right: 2px solid #c4a12d;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}

@layer content {
    .richtext {
        font-family: var(--font-body);
        font-size: 1rem;
        line-height: 1.8;
        color: var(--color-on-surface);

        h1 {
            font-family: var(--font-heading);
            font-size: 1.7rem;
            color: var(--color-heading);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin: 1.5rem 0 0.75rem;
        }

        h2 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            color: var(--color-primary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin: 1.5rem 0 0.75rem;
        }

        h3 {
            font-family: var(--font-nav);
            font-size: 1rem;
            color: var(--color-heading);
            margin: 1.25rem 0 0.5rem;
        }

        p { margin: 0 0 var(--space-block); }

        a { color: var(--color-primary); text-decoration: underline; }
        a:hover { color: var(--color-heading); }

        strong, b { font-weight: bold; color: var(--color-heading); }
        em, i     { font-style: italic; }

        blockquote {
            border-left: 4px solid var(--color-primary);
            padding-left: 1.5em;
            font-style: italic;
            margin: 2em 0;
            color: var(--color-on-surface-variant);
        }

        ul { list-style: disc;    padding-left: 1.5em; margin: 0.75rem 0; }
        ol { list-style: decimal; padding-left: 1.5em; margin: 0.75rem 0; }
        li { margin-bottom: 0.25rem; }

        hr { border: none; border-top: 1px solid var(--color-outline); margin: 2rem 0; }

        img    { max-width: 100%; height: auto; }
        figure { margin: 1.5rem 0; }
        figure img { display: block; }

        &::after { content: ""; display: table; clear: both; }
    }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *



 */

/* Themed range slider - tracks and thumbs matching admin gold palette */
.admin-range {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    min-width: 0;
    height: 4px;
    background: transparent;
    outline: none;
    cursor: pointer;
}

.admin-range::-webkit-slider-runnable-track {
    height: 4px;
    background: rgba(196, 161, 45, 0.12);
    border-radius: 2px;
    border: 1px solid rgba(196, 161, 45, 0.25);
}

.admin-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #c4a12d;
    margin-top: -6px;
    cursor: pointer;
    border: 0;
    box-shadow: 0 0 6px rgba(196, 161, 45, 0.35);
}

.admin-range::-moz-range-track {
    height: 4px;
    background: rgba(196, 161, 45, 0.12);
    border-radius: 2px;
    border: 1px solid rgba(196, 161, 45, 0.25);
}

.admin-range::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #c4a12d;
    border: 0;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(196, 161, 45, 0.35);
}

.admin-range-sm::-webkit-slider-thumb {
    width: 10px;
    height: 10px;
    margin-top: -4px;
}

.admin-range-sm::-moz-range-thumb {
    width: 10px;
    height: 10px;
}

/* Truncation tooltip - shown above Ruby-truncated text on hover */
.admin-tooltip-wrapper {
    position: relative;
    cursor: pointer;
}

.admin-tooltip-content {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a1a0e;
    border: 1px solid rgba(196, 161, 45, 0.25);
    color: #d4c89a;
    font-size: 11px;
    line-height: 1.4;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: normal;
    word-break: break-word;
    z-index: 100;
    pointer-events: none;
    max-width: 320px;
    min-width: 120px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.admin-tooltip-wrapper:hover .admin-tooltip-content {
    display: block;
}

.admin-tooltip-arrow {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(196, 161, 45, 0.25);
}
