/*
 * content-page.css
 *
 * Bespoke styling for the default page template (page.php) and any
 * derived page-{slug}.php templates that opt in by rendering inside
 * <main class="dmsark-page"> ... <div class="page-content-inner"> wrappers.
 *
 * Two distinct regions:
 *   1) .page-hero          — small dark band with title + optional subtitle,
 *                            visually consistent with the homepage hero but
 *                            ~1/3 the height and no CTAs.
 *   2) .page-content-inner — long-form prose container (~720px), styled
 *                            for comfortable reading. All element styling
 *                            (h1-h6, p, ul, ol, blockquote, code, pre, hr,
 *                            table, a) is scoped here so it only affects
 *                            the page body, not navs/footers/etc.
 *
 * Design tokens (--gold-*, --bg, --ink, --font-display, --font-body) come
 * from style.css :root. No tokens are redefined here.
 */

/* ──────────────────────────────────────────────────────────────────────────
   PAGE HERO BAND
   Slim version of the homepage hero. Gold-on-dark, with a faint radial
   glow and a hairline rule beneath the title.
   ────────────────────────────────────────────────────────────────────────── */

.dmsark-page .page-hero {
    position: relative;
    padding: clamp(120px, 18vh, 200px) 24px clamp(56px, 9vh, 88px);
    text-align: center;
    background:
        radial-gradient(
            ellipse at 50% 0%,
            rgba(212, 175, 55, 0.1),
            transparent 60%
        ),
        var(--bg);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    overflow: hidden;
}

.dmsark-page .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(
        ellipse at 50% 30%,
        #000 30%,
        transparent 75%
    );
    pointer-events: none;
}

.dmsark-page .page-hero-inner {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
}

.dmsark-page .page-hero-title {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.01em;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
    background: linear-gradient(
        180deg,
        var(--gold-200) 0%,
        var(--gold-400) 60%,
        var(--gold-500) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

.dmsark-page .page-hero-subtitle {
    margin: 18px auto 0;
    max-width: 640px;
    font-family: var(--font-body);
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.6;
    font-weight: 400;
    color: rgba(253, 247, 237, 0.65);
}

/* ──────────────────────────────────────────────────────────────────────────
   CONTENT CONTAINER
   ────────────────────────────────────────────────────────────────────────── */

.dmsark-page .page-content-wrap {
    background: var(--bg);
    padding: clamp(48px, 8vh, 96px) 24px clamp(72px, 12vh, 128px);
}

.dmsark-page .page-content-inner {
    max-width: 720px;
    margin: 0 auto;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.75;
    color: rgba(253, 247, 237, 0.82);
    letter-spacing: 0.005em;
}

/* ──────────────────────────────────────────────────────────────────────────
   PROSE — HEADINGS
   ────────────────────────────────────────────────────────────────────────── */

.dmsark-page .page-content-inner h1,
.dmsark-page .page-content-inner h2,
.dmsark-page .page-content-inner h3,
.dmsark-page .page-content-inner h4,
.dmsark-page .page-content-inner h5,
.dmsark-page .page-content-inner h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gold-200);
    letter-spacing: 0.01em;
    line-height: 1.2;
    margin: 2em 0 0.6em;
}

.dmsark-page .page-content-inner > :first-child {
    margin-top: 0;
}

.dmsark-page .page-content-inner h2 {
    font-size: clamp(26px, 3vw, 34px);
    padding-bottom: 0.4em;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.dmsark-page .page-content-inner h3 {
    font-size: clamp(22px, 2.4vw, 26px);
    color: var(--gold-300);
}

.dmsark-page .page-content-inner h4 {
    font-size: clamp(18px, 2vw, 20px);
    color: var(--gold-300);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dmsark-page .page-content-inner h5,
.dmsark-page .page-content-inner h6 {
    font-size: 16px;
    color: rgba(253, 247, 237, 0.85);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ──────────────────────────────────────────────────────────────────────────
   PROSE — PARAGRAPHS, LISTS, INLINE
   ────────────────────────────────────────────────────────────────────────── */

.dmsark-page .page-content-inner p {
    margin: 0 0 1.2em;
}

.dmsark-page .page-content-inner a {
    color: var(--gold-400) !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(212, 175, 55, 0.45);
    transition:
        color 0.18s ease,
        text-decoration-color 0.18s ease;
}

.dmsark-page .page-content-inner a:hover,
.dmsark-page .page-content-inner a:focus {
    color: var(--gold-300) !important;
    text-decoration-color: var(--gold-300);
}

.dmsark-page .page-content-inner strong,
.dmsark-page .page-content-inner b {
    color: rgba(253, 247, 237, 0.95);
    font-weight: 600;
}

.dmsark-page .page-content-inner em,
.dmsark-page .page-content-inner i {
    color: rgba(253, 247, 237, 0.9);
    font-style: italic;
}

.dmsark-page .page-content-inner ul,
.dmsark-page .page-content-inner ol {
    margin: 0 0 1.2em !important;
    padding-left: 1.4em !important;
    list-style: revert !important;
}

.dmsark-page .page-content-inner ul {
    list-style: disc !important;
}

.dmsark-page .page-content-inner ol {
    list-style: decimal !important;
}

.dmsark-page .page-content-inner li {
    margin: 0.4em 0 !important;
    padding-left: 0.2em;
}

.dmsark-page .page-content-inner li::marker {
    color: var(--gold-400);
}

.dmsark-page .page-content-inner li > ul,
.dmsark-page .page-content-inner li > ol {
    margin: 0.4em 0 !important;
}

/* ──────────────────────────────────────────────────────────────────────────
   PROSE — BLOCKQUOTES, HR, CODE, PRE
   ────────────────────────────────────────────────────────────────────────── */

.dmsark-page .page-content-inner blockquote {
    margin: 1.6em 0;
    padding: 1em 1.4em;
    border-left: 3px solid var(--gold-500);
    background: rgba(212, 175, 55, 0.04);
    color: rgba(253, 247, 237, 0.88);
    font-style: italic;
    border-radius: 0 6px 6px 0;
}

.dmsark-page .page-content-inner blockquote p:last-child {
    margin-bottom: 0;
}

.dmsark-page .page-content-inner hr {
    border: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.4),
        transparent
    );
    margin: 2.4em 0;
}

.dmsark-page .page-content-inner code {
    font-family:
        ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
    font-size: 0.92em;
    padding: 0.15em 0.45em;
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-200);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 4px;
}

.dmsark-page .page-content-inner pre {
    margin: 1.4em 0;
    padding: 1.1em 1.3em;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 8px;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.55;
}

.dmsark-page .page-content-inner pre code {
    padding: 0;
    background: transparent;
    border: 0;
    color: rgba(253, 247, 237, 0.92);
    font-size: inherit;
}

/* ──────────────────────────────────────────────────────────────────────────
   PROSE — TABLES, FIGURES, MEDIA
   ────────────────────────────────────────────────────────────────────────── */

.dmsark-page .page-content-inner table {
    width: 100%;
    margin: 1.6em 0;
    border-collapse: collapse;
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 8px;
    overflow: hidden;
    font-size: 15px;
}

.dmsark-page .page-content-inner th,
.dmsark-page .page-content-inner td {
    padding: 0.8em 1em;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    vertical-align: top;
}

.dmsark-page .page-content-inner thead th {
    background: rgba(212, 175, 55, 0.06);
    color: var(--gold-200);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.dmsark-page .page-content-inner tbody tr:last-child td {
    border-bottom: 0;
}

.dmsark-page .page-content-inner img,
.dmsark-page .page-content-inner figure {
    max-width: 100%;
    height: auto;
    margin: 1.6em auto;
    display: block;
    border-radius: 8px;
}

.dmsark-page .page-content-inner figure {
    border-radius: 0;
}

.dmsark-page .page-content-inner figcaption {
    margin-top: 0.6em;
    font-size: 14px;
    color: rgba(253, 247, 237, 0.55);
    text-align: center;
    font-style: italic;
}

/* ──────────────────────────────────────────────────────────────────────────
   PAGINATION (wp_link_pages)
   ────────────────────────────────────────────────────────────────────────── */

.dmsark-page .page-pagination {
    margin-top: 2.4em;
    padding-top: 1.4em;
    border-top: 1px solid rgba(212, 175, 55, 0.16);
    font-family: var(--font-display);
    font-size: 14px;
    color: rgba(253, 247, 237, 0.6);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
}

.dmsark-page .page-pagination a,
.dmsark-page .page-pagination > span:not(:first-child) {
    display: inline-block;
    margin: 0 0.3em;
    padding: 0.3em 0.7em;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 4px;
    color: var(--gold-300) !important;
    text-decoration: none !important;
}

.dmsark-page .page-pagination a:hover {
    border-color: var(--gold-400);
    color: var(--gold-200) !important;
}

/* ──────────────────────────────────────────────────────────────────────────
   SINGLE POST — extra chrome on top of the prose styling
   .post-eyebrow      — category links above the title
   .post-meta         — author / date / reading-time row under the title
   .post-featured-image — wide hero image between hero band and prose
   .post-tags         — tag chips at the end of the prose
   .post-footer-nav   — "Back to all posts" link at the very bottom
   ────────────────────────────────────────────────────────────────────────── */

.dmsark-page .post-eyebrow {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 0.8em;
}

.dmsark-page .post-eyebrow a {
    color: var(--gold-400) !important;
    text-decoration: none !important;
    border-bottom: 1px solid transparent;
    transition:
        border-color 0.18s ease,
        color 0.18s ease;
}

.dmsark-page .post-eyebrow a:hover,
.dmsark-page .post-eyebrow a:focus {
    color: var(--gold-300) !important;
    border-bottom-color: var(--gold-400);
}

.dmsark-page .post-meta {
    margin-top: 1.4em;
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(253, 247, 237, 0.55);
    display: flex;
    flex-wrap: wrap;
    gap: 0.6em;
    justify-content: center;
    align-items: center;
}

.dmsark-page .post-meta-sep {
    color: rgba(212, 175, 55, 0.4);
}

.dmsark-page .post-featured-image {
    margin: 0 auto;
    padding: clamp(32px, 5vh, 56px) 24px 0;
    max-width: 1080px;
    background: var(--bg);
}

.dmsark-page .post-featured-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.6);
}

.dmsark-page .post-tags {
    margin-top: 2.4em;
    padding-top: 1.4em;
    border-top: 1px solid rgba(212, 175, 55, 0.16);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    align-items: center;
    font-family: var(--font-body);
}

.dmsark-page .post-tags-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(253, 247, 237, 0.5);
    margin-right: 0.4em;
}

.dmsark-page .post-tag {
    display: inline-block;
    padding: 0.3em 0.8em;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 999px;
    font-size: 13px;
    color: var(--gold-300) !important;
    text-decoration: none !important;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}

.dmsark-page .post-tag:hover,
.dmsark-page .post-tag:focus {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold-400);
    color: var(--gold-200) !important;
}

.dmsark-page .post-footer-nav {
    margin-top: 2.4em;
    text-align: center;
}

.dmsark-page .post-back-link {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold-400) !important;
    text-decoration: none !important;
    padding: 0.6em 1.2em;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    transition:
        border-color 0.18s ease,
        color 0.18s ease,
        background 0.18s ease;
}

.dmsark-page .post-back-link:hover,
.dmsark-page .post-back-link:focus {
    border-color: var(--gold-400);
    color: var(--gold-300) !important;
    background: rgba(212, 175, 55, 0.06);
}

/* ──────────────────────────────────────────────────────────────────────────
   BLOG INDEX — home.php / page-blog.php
   Single-column stacked list. Each .blog-item is a generous editorial block
   with optional featured-image thumb (wide, atop), title, meta, excerpt,
   and a read-more arrow.
   ────────────────────────────────────────────────────────────────────────── */

/* Beat prose-link underlines on the blog index cards. */
.dmsark-page.dmsark-blog .page-content-inner a,
.dmsark-page.dmsark-blog .blog-list a,
.dmsark-blog .blog-item-title a,
.dmsark-blog .blog-item-readmore {
    text-decoration: none !important;
}

.dmsark-blog .blog-list-wrap {
    background: var(--bg);
    padding: clamp(48px, 8vh, 96px) 24px clamp(72px, 12vh, 128px);
}

.dmsark-blog .blog-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 6vh, 72px);
}

.dmsark-blog .blog-item {
    display: flex;
    flex-direction: column;
    gap: 1.4em;
    padding-bottom: clamp(40px, 6vh, 72px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.dmsark-blog .blog-item:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
}

.dmsark-blog .blog-item-thumb {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    background: rgba(0, 0, 0, 0.3);
}

.dmsark-blog .blog-item-thumb img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.dmsark-blog .blog-item-thumb:hover img,
.dmsark-blog .blog-item-thumb:focus img {
    transform: scale(1.03);
}

.dmsark-blog .blog-item-body {
    display: flex;
    flex-direction: column;
    gap: 0.6em;
}

.dmsark-blog .blog-item-meta {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(253, 247, 237, 0.5);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    align-items: center;
}

.dmsark-blog .blog-item-meta span[aria-hidden] {
    color: rgba(212, 175, 55, 0.4);
}

.dmsark-blog .blog-item-title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(24px, 3.2vw, 32px);
    line-height: 1.2;
    color: var(--gold-200);
    letter-spacing: 0.01em;
}

.dmsark-blog .blog-item-title a {
    color: inherit !important;
    text-decoration: none !important;
    border-bottom: 1px solid transparent;
    transition:
        border-color 0.18s ease,
        color 0.18s ease;
}

.dmsark-blog .blog-item-title a:hover,
.dmsark-blog .blog-item-title a:focus {
    color: var(--gold-300) !important;
    border-bottom-color: rgba(212, 175, 55, 0.4);
}

.dmsark-blog .blog-item-excerpt {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: rgba(253, 247, 237, 0.72);
}

.dmsark-blog .blog-item-excerpt p {
    margin: 0 0 0.8em;
}

.dmsark-blog .blog-item-excerpt p:last-child {
    margin-bottom: 0;
}

.dmsark-blog .blog-item-readmore {
    align-self: flex-start;
    margin-top: 0.4em;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold-400) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.2em;
    transition:
        color 0.18s ease,
        gap 0.18s ease,
        border-color 0.18s ease;
}

.dmsark-blog .blog-item-readmore:hover,
.dmsark-blog .blog-item-readmore:focus {
    color: var(--gold-300) !important;
    gap: 0.6em;
    border-bottom-color: var(--gold-400);
}

.dmsark-blog .blog-empty {
    text-align: center;
    padding: 3em 1em;
    font-family: var(--font-body);
    font-size: 17px;
    color: rgba(253, 247, 237, 0.55);
    font-style: italic;
}

/* ──────────────────────────────────────────────────────────────────────────
   BLOG PAGINATION (the_posts_pagination)
   ────────────────────────────────────────────────────────────────────────── */

.dmsark-blog .blog-pagination {
    margin-top: clamp(40px, 6vh, 72px);
    text-align: center;
    font-family: var(--font-display);
}

.dmsark-blog .blog-pagination .nav-links {
    display: inline-flex;
    gap: 0.4em;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.dmsark-blog .blog-pagination .page-numbers {
    display: inline-block;
    min-width: 2.4em;
    padding: 0.45em 0.9em;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: rgba(253, 247, 237, 0.6) !important;
    text-decoration: none !important;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    background: transparent;
    transition:
        border-color 0.18s ease,
        color 0.18s ease,
        background 0.18s ease;
}

.dmsark-blog .blog-pagination .page-numbers:hover,
.dmsark-blog .blog-pagination .page-numbers:focus {
    border-color: var(--gold-400);
    color: var(--gold-200) !important;
    background: rgba(212, 175, 55, 0.06);
}

.dmsark-blog .blog-pagination .page-numbers.current {
    background: var(--gold-400);
    color: var(--gold-900) !important;
    border-color: var(--gold-400);
}

.dmsark-blog .blog-pagination .page-numbers.dots {
    border: 0;
    background: transparent;
    color: rgba(253, 247, 237, 0.4) !important;
}

/* ──────────────────────────────────────────────────────────────────────────
   CHANGELOG — page-changelog.php + changelog-entry.php
   Hardcoded index (by date). Titles link to /changelog/{slug}/ detail pages.
   ────────────────────────────────────────────────────────────────────────── */

.dmsark-changelog .changelog-intro {
    margin-bottom: 2.4em;
    padding-bottom: 1.6em;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.dmsark-changelog .changelog-versions {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 5vh, 64px);
}

.dmsark-changelog .changelog-version {
    margin: 0 !important;
    padding: 0;
    list-style: none;
}

.dmsark-changelog .changelog-version-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1em;
    margin-bottom: 1.2em;
    padding-bottom: 0.6em;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.dmsark-changelog .changelog-version-num {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 38px);
    line-height: 1.1;
    color: var(--gold-200);
    letter-spacing: 0.02em;
}

.dmsark-changelog .changelog-version-num time {
    color: inherit;
}

.dmsark-changelog .changelog-version-date {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(253, 247, 237, 0.55);
    white-space: nowrap;
}

.dmsark-changelog .changelog-entries {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}

.dmsark-changelog .changelog-entry {
    margin: 0 !important;
    padding: 0;
    list-style: none;
}

.dmsark-changelog .changelog-entry-link {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 1em;
    align-items: start;
    padding: 1.1em 1.2em;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    text-decoration: none !important;
    color: inherit !important;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}

/* Beat .page-content-inner a underline — cards shouldn't look like body links. */
.dmsark-page.dmsark-changelog .page-content-inner a,
.dmsark-page.dmsark-changelog .page-content-inner a:hover,
.dmsark-page.dmsark-changelog .page-content-inner a:focus {
    text-decoration: none !important;
    text-decoration-color: transparent !important;
}

.dmsark-changelog .changelog-entry-link:hover,
.dmsark-changelog .changelog-entry-link:focus {
    background: rgba(212, 175, 55, 0.07);
    border-color: rgba(212, 175, 55, 0.28);
    transform: translateY(-1px);
}

.dmsark-changelog .changelog-entry-link:focus-visible {
    outline: 2px solid var(--gold-400);
    outline-offset: 2px;
}

@media (max-width: 560px) {
    .dmsark-changelog .changelog-entry-link {
        grid-template-columns: 1fr;
        gap: 0.6em;
    }
}

.dmsark-page .changelog-type,
.dmsark-changelog .changelog-type {
    display: inline-block;
    justify-self: start;
    align-self: start;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35em 0.7em;
    border-radius: 4px;
    white-space: nowrap;
    border: 1px solid transparent;
}

.dmsark-changelog .changelog-type-spacer {
    display: block;
    min-height: 1px;
}

.dmsark-page .changelog-type-added,
.dmsark-changelog .changelog-type-added {
    background: rgba(120, 200, 140, 0.12);
    color: #9fd9b1;
    border-color: rgba(120, 200, 140, 0.3);
}

.dmsark-page .changelog-type-changed,
.dmsark-changelog .changelog-type-changed {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-300);
    border-color: rgba(212, 175, 55, 0.3);
}

.dmsark-page .changelog-type-fixed,
.dmsark-changelog .changelog-type-fixed {
    background: rgba(120, 180, 230, 0.12);
    color: #a8cdec;
    border-color: rgba(120, 180, 230, 0.3);
}

.dmsark-page .changelog-type-security,
.dmsark-changelog .changelog-type-security {
    background: rgba(230, 120, 120, 0.12);
    color: #e69b9b;
    border-color: rgba(230, 120, 120, 0.3);
}

.dmsark-changelog .changelog-entry-body {
    display: flex;
    gap: 1em;
    align-items: flex-start;
    min-width: 0;
}

.dmsark-changelog .changelog-entry-text {
    display: flex;
    flex-direction: column;
    gap: 0.35em;
    min-width: 0;
    flex: 1;
}

.dmsark-changelog .changelog-entry-title {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.35;
    color: rgba(253, 247, 237, 0.92);
    letter-spacing: 0.005em;
}

.dmsark-changelog .changelog-entry-link:hover .changelog-entry-title,
.dmsark-changelog .changelog-entry-link:focus .changelog-entry-title {
    color: var(--gold-200);
}

.dmsark-changelog .changelog-entry-desc {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(253, 247, 237, 0.7);
}

.dmsark-changelog .changelog-entry-more {
    margin-top: 0.25em;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-400);
}

.dmsark-changelog .changelog-empty {
    text-align: center;
    padding: 3em 1em;
    color: rgba(253, 247, 237, 0.55);
    font-style: italic;
}

/* Single hardcoded changelog entry */
.dmsark-changelog-single .changelog-single-eyebrow {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7em;
    align-items: center;
    justify-content: center;
}

.dmsark-changelog-single .changelog-single-eyebrow time {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(253, 247, 237, 0.55);
}

.dmsark-changelog-single .changelog-single-empty {
    color: rgba(253, 247, 237, 0.55);
    font-style: italic;
}

.dmsark-changelog-single .changelog-badge {
    display: inline-block;
    margin-left: 0.4em;
    padding: 0.2em 0.55em;
    vertical-align: middle;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-300);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 4px;
}

.dmsark-changelog-single .changelog-shot {
    margin: 1.4em 0 1.8em !important;
}

.dmsark-changelog-single .changelog-gallery .changelog-shot {
    margin: 0 !important;
}

.dmsark-changelog-single .changelog-shot-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35em;
    min-height: 200px;
    padding: 1.5em;
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(212, 175, 55, 0.04),
            rgba(212, 175, 55, 0.04) 12px,
            rgba(212, 175, 55, 0.08) 12px,
            rgba(212, 175, 55, 0.08) 24px
        );
    border: 1px dashed rgba(212, 175, 55, 0.35);
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(253, 247, 237, 0.45);
    text-align: center;
}

.dmsark-changelog-single .changelog-shot-hint {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(253, 247, 237, 0.65);
}

.dmsark-changelog-single .changelog-shot figcaption {
    margin-top: 0.55em;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(253, 247, 237, 0.5);
    text-align: center;
}

.dmsark-changelog-single .changelog-shot img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.16);
    box-shadow: 0 18px 48px -28px rgba(0, 0, 0, 0.75);
    background: #0a0a0a;
}

.dmsark-changelog-single .changelog-shot img.changelog-shot-zoomable {
    cursor: zoom-in;
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

.dmsark-changelog-single .changelog-shot img.changelog-shot-zoomable:hover,
.dmsark-changelog-single .changelog-shot img.changelog-shot-zoomable:focus {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 22px 56px -24px rgba(0, 0, 0, 0.85);
}

.dmsark-changelog-single .changelog-shot img.changelog-shot-zoomable:focus-visible {
    outline: 2px solid var(--gold-400);
    outline-offset: 3px;
}

/* Lightbox */
.dmsark-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 4vw, 40px);
    background: rgba(8, 6, 4, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: zoom-out;
}

.dmsark-lightbox[hidden] {
    display: none !important;
}

body.dmsark-lightbox-open {
    overflow: hidden;
}

.dmsark-lightbox-figure {
    margin: 0;
    max-width: min(1200px, 100%);
    max-height: 100%;
    cursor: default;
}

.dmsark-lightbox-img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 120px);
    width: auto;
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 40px 100px -40px rgba(0, 0, 0, 0.9);
    background: #0a0a0a;
}

.dmsark-lightbox-caption {
    margin-top: 0.85em;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.45;
    color: rgba(253, 247, 237, 0.7);
    text-align: center;
}

.dmsark-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 999px;
    background: rgba(26, 22, 14, 0.9);
    color: var(--gold-200);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}

.dmsark-lightbox-close:hover,
.dmsark-lightbox-close:focus {
    background: rgba(40, 32, 18, 0.95);
    border-color: rgba(212, 175, 55, 0.55);
    color: var(--gold-100);
}

.dmsark-lightbox-close:focus-visible {
    outline: 2px solid var(--gold-400);
    outline-offset: 2px;
}

.dmsark-changelog-single .changelog-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    margin: 1.6em 0 2em;
}

.dmsark-changelog-single .changelog-gallery-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    align-items: stretch;
}

.dmsark-changelog-single .changelog-gallery-pair .changelog-shot {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Equal image frame height for the side-by-side pair */
.dmsark-changelog-single .changelog-gallery-pair .changelog-shot img {
    width: 100%;
    height: clamp(220px, 32vw, 340px);
    object-fit: cover;
    object-position: top center;
}

.dmsark-changelog-single .changelog-gallery-pair .changelog-shot figcaption {
    margin-top: auto;
    padding-top: 0.55em;
}

/* Scribe: compact equal 3-column row */
.dmsark-changelog-single .changelog-gallery--scribe {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85em;
    align-items: start;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.dmsark-changelog-single .changelog-gallery--scribe .changelog-shot {
    display: flex;
    flex-direction: column;
}

.dmsark-changelog-single .changelog-gallery--scribe .changelog-shot img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    object-position: top center;
    background: #0a0a0a;
}

.dmsark-changelog-single .changelog-gallery--scribe .changelog-shot figcaption {
    font-size: 12px;
}

/* UI chrome shots (modals, sidebars, crops) — don't stretch full prose width */
.dmsark-changelog-single .changelog-shot--ui {
    max-width: 420px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.dmsark-changelog-single .changelog-shot--ui img {
    width: 100%;
    height: auto !important;
    max-height: 420px;
    object-fit: contain;
    object-position: top center;
    background: #0a0a0a;
}

.dmsark-changelog-single .changelog-gallery--ui {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    align-items: start;
    max-width: 640px;
    margin: 1.6em auto 2em;
}

.dmsark-changelog-single .changelog-gallery--ui .changelog-shot--ui {
    max-width: none;
    margin: 0 !important;
}

.dmsark-changelog-single .changelog-gallery--ui .changelog-shot--ui img {
    max-height: 320px;
}

@media (max-width: 720px) {
    .dmsark-changelog-single .changelog-gallery-pair,
    .dmsark-changelog-single .changelog-gallery--scribe,
    .dmsark-changelog-single .changelog-gallery--ui {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .dmsark-changelog-single .changelog-gallery-pair .changelog-shot img {
        height: clamp(200px, 55vw, 280px);
    }

    .dmsark-changelog-single .changelog-gallery--scribe .changelog-shot img {
        max-height: 240px;
    }

    .dmsark-changelog-single .changelog-shot--ui {
        max-width: min(420px, 100%);
    }

    .dmsark-changelog-single .changelog-gallery--ui .changelog-shot--ui img {
        max-height: 280px;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   SUPPORT — page-support.php + support-entry.php
   Help hub collections + article detail pages at /support/{slug}/.
   ────────────────────────────────────────────────────────────────────────── */

.dmsark-support .support-collections {
    display: flex;
    flex-direction: column;
    gap: clamp(36px, 5vh, 56px);
}

.dmsark-support .support-collection {
    padding: 1.4em 1.5em;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 12px;
}

.dmsark-support .support-collection-head {
    margin-bottom: 1.1em;
    padding-bottom: 0.9em;
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
}

.dmsark-support .support-collection-title {
    margin: 0 0 0.35em !important;
    padding: 0 !important;
    border: 0 !important;
    font-family: var(--font-display);
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 600;
    color: var(--gold-200);
}

.dmsark-support .support-collection-summary {
    margin: 0 0 0.4em !important;
    font-size: 15px;
    color: rgba(253, 247, 237, 0.7);
}

.dmsark-support .support-collection-meta {
    margin: 0 !important;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(253, 247, 237, 0.45);
}

.dmsark-support .support-article-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0.85em;
}

.dmsark-support .support-article-list li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

.dmsark-page.dmsark-support .page-content-inner a.support-article-link,
.dmsark-support .support-article-link {
    display: flex;
    flex-direction: column;
    gap: 0.35em;
    padding: 1em 1.1em;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    text-decoration: none !important;
    color: inherit !important;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}

.dmsark-support .support-article-link:hover,
.dmsark-support .support-article-link:focus {
    background: rgba(212, 175, 55, 0.06);
    border-color: rgba(212, 175, 55, 0.28);
    transform: translateY(-1px);
}

.dmsark-support .support-article-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    color: rgba(253, 247, 237, 0.94);
}

.dmsark-support .support-article-link:hover .support-article-title,
.dmsark-support .support-article-link:focus .support-article-title {
    color: var(--gold-200);
}

.dmsark-support .support-article-summary {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(253, 247, 237, 0.62);
}

.dmsark-support .support-article-more {
    margin-top: 0.15em;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-400);
}

.dmsark-support .support-collection-empty {
    margin: 0 !important;
    font-style: italic;
    color: rgba(253, 247, 237, 0.5);
}

.dmsark-support .support-need-help {
    margin-top: clamp(40px, 6vh, 64px);
    padding-top: 1.6em;
    border-top: 1px solid rgba(212, 175, 55, 0.14);
}

.dmsark-support .support-need-help-title {
    margin: 0 0 0.5em !important;
    padding: 0 !important;
    border: 0 !important;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gold-200);
}

.dmsark-support-single .support-single-eyebrow {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55em;
    align-items: center;
    justify-content: center;
}

.dmsark-support-single .support-steps {
    margin: 0 0 1.6em !important;
    padding-left: 1.25em !important;
}

.dmsark-support-single .support-steps > li {
    margin-bottom: 1.15em !important;
}

.dmsark-support-single .support-steps > li > strong {
    display: block;
    margin-bottom: 0.35em;
    font-family: var(--font-display);
    font-size: 17px;
    color: rgba(253, 247, 237, 0.95);
}

.dmsark-support-single .support-steps p {
    margin: 0 0 0.7em;
}

.dmsark-support-single .support-steps p:last-child {
    margin-bottom: 0;
}

/* ──────────────────────────────────────────────────────────────────────────
   ROADMAP — page-roadmap.php
   Groups by status (In Progress → Planned → Shipped). Each group has a
   colored status pill at the top and a list of items below.
   ────────────────────────────────────────────────────────────────────────── */

.dmsark-roadmap .roadmap-intro {
    margin-bottom: 2.4em;
    padding-bottom: 1.6em;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.dmsark-roadmap .roadmap-group {
    margin-bottom: clamp(40px, 6vh, 72px);
}

.dmsark-roadmap .roadmap-group:last-of-type {
    margin-bottom: 0;
}

.dmsark-roadmap .roadmap-group-head {
    display: flex;
    align-items: center;
    gap: 0.8em;
    margin-bottom: 1.2em;
    padding-bottom: 0.6em;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.dmsark-roadmap .roadmap-status-pill {
    display: inline-block;
    padding: 0.45em 0.95em;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid transparent;
}

.dmsark-roadmap .roadmap-status-in-progress {
    background: rgba(212, 175, 55, 0.14);
    color: var(--gold-200);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.06);
}

.dmsark-roadmap .roadmap-status-planned {
    background: rgba(180, 180, 220, 0.08);
    color: #c8cce0;
    border-color: rgba(180, 180, 220, 0.25);
}

.dmsark-roadmap .roadmap-status-shipped {
    background: rgba(120, 200, 140, 0.1);
    color: #9fd9b1;
    border-color: rgba(120, 200, 140, 0.3);
}

.dmsark-roadmap .roadmap-group-count {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(253, 247, 237, 0.4);
    letter-spacing: 0.02em;
}

.dmsark-roadmap .roadmap-items {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.dmsark-roadmap .roadmap-item {
    margin: 0 !important;
    padding: 1.2em 1.4em;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    list-style: none;
}

.dmsark-roadmap .roadmap-item-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1em;
}

.dmsark-roadmap .roadmap-item-title {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 18px;
    color: rgba(253, 247, 237, 0.92);
    line-height: 1.3;
}

.dmsark-roadmap .roadmap-item-target {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-400);
    white-space: nowrap;
}

.dmsark-roadmap .roadmap-item-desc {
    margin-top: 0.6em;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(253, 247, 237, 0.72);
}

.dmsark-roadmap .roadmap-item-desc p {
    margin: 0 0 0.6em;
}

.dmsark-roadmap .roadmap-item-desc p:last-child {
    margin-bottom: 0;
}

.dmsark-roadmap .roadmap-empty {
    text-align: center;
    padding: 3em 1em;
    color: rgba(253, 247, 237, 0.55);
    font-style: italic;
}

/* ──────────────────────────────────────────────────────────────────────────
   AI ETHICS — page-ai-ethics.php
   The page reuses the homepage's .faq-list / .faq-item / .faq-q / .faq-a
   pattern (styles live in homepage.css and are loaded sitewide). The only
   things we tweak here are:
     1) vertical spacing around the FAQ block so it doesn't crash into the
        intro paragraph above or the "Looking Ahead" heading below.
     2) collapse the bottom margin on the LAST element inside each .faq-a
        so it doesn't compound with the .faq-a padding-bottom.
     3) the prose ul/ol/p rules from .page-content-inner cascade INTO the
        FAQ panels (which is what we want — bulleted lists with markers
        inside the answers), but the FAQ panel's own 14px size + muted
        color need to win over the 17px prose color. We let them.
   ────────────────────────────────────────────────────────────────────────── */

.dmsark-ai-ethics .ai-ethics-faq {
    margin: 2em 0 2.4em;
}

.dmsark-ai-ethics .ai-ethics-faq .faq-a > *:last-child {
    margin-bottom: 0 !important;
}

.dmsark-ai-ethics .ai-ethics-faq .faq-a ul,
.dmsark-ai-ethics .ai-ethics-faq .faq-a ol {
    margin: 0 0 0.9em !important;
    padding-left: 1.3em !important;
}

.dmsark-ai-ethics .ai-ethics-faq .faq-a li {
    margin: 0.3em 0 !important;
    color: rgba(253, 247, 237, 0.7);
}

.dmsark-ai-ethics .ai-ethics-faq .faq-a li::marker {
    color: var(--gold-400);
}

/* ──────────────────────────────────────────────────────────────────────────
   ABOUT US — page-about.php
   Wider bands for photos + founders grid; timeline for key dates.
   ────────────────────────────────────────────────────────────────────────── */

.dmsark-about .about-lede {
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.65;
    color: rgba(253, 247, 237, 0.88);
    margin-bottom: 0;
}

.dmsark-about .about-figure {
    max-width: 640px;
    margin: clamp(40px, 6vh, 64px) auto;
    padding: 0 24px;
}

.dmsark-about .about-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.16);
    box-shadow: 0 24px 64px -32px rgba(0, 0, 0, 0.65);
}

.dmsark-about .about-figure figcaption {
    margin-top: 0.9em;
    font-family: var(--font-body);
    font-size: 14px;
    font-style: italic;
    text-align: center;
    color: rgba(253, 247, 237, 0.5);
}

.dmsark-about .about-founders {
    margin: clamp(48px, 8vh, 88px) 0;
    padding: clamp(48px, 7vh, 72px) 24px;
    background:
        radial-gradient(
            ellipse at 50% 0%,
            rgba(212, 175, 55, 0.06),
            transparent 55%
        ),
        rgba(212, 175, 55, 0.02);
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.dmsark-about .about-founders-inner {
    max-width: 920px;
    margin: 0 auto;
}

.dmsark-about .about-section-title {
    margin: 0 0 0.5em !important;
    padding: 0 !important;
    border: 0 !important;
    font-family: var(--font-display);
    font-size: clamp(28px, 3.4vw, 36px);
    font-weight: 600;
    text-align: center;
    color: var(--gold-200);
}

.dmsark-about .about-section-lead {
    margin: 0 auto 2em;
    max-width: 520px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(253, 247, 237, 0.6);
}

.dmsark-about .about-founders-photo {
    margin: 0 0 2.4em;
}

.dmsark-about .about-founders-photo img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: center 35%;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.16);
    box-shadow: 0 24px 64px -32px rgba(0, 0, 0, 0.65);
}

.dmsark-about .about-founders-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 32px);
}

@media (max-width: 640px) {
    .dmsark-about .about-founders-grid {
        grid-template-columns: 1fr;
    }
}

.dmsark-about .about-founder-card {
    padding: 1.6em 1.4em;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 12px;
    text-align: center;
}

.dmsark-about .about-founder-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1em;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.5);
}

.dmsark-about .about-founder-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dmsark-about .about-founder-avatar--noah img {
    object-position: 18% center;
}

.dmsark-about .about-founder-avatar--nick img {
    object-position: 82% center;
}

.dmsark-about .about-founder-name {
    margin: 0 0 0.2em !important;
    padding: 0 !important;
    border: 0 !important;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--gold-200);
}

.dmsark-about .about-founder-role {
    margin: 0 0 0.8em;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-400);
}

.dmsark-about .about-founder-bio {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(253, 247, 237, 0.72);
    text-align: left;
}

.dmsark-about .about-timeline {
    list-style: none !important;
    margin: 1.6em 0 2em !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 2px solid rgba(212, 175, 55, 0.25);
}

.dmsark-about .about-timeline-item {
    margin: 0 !important;
    padding: 0 0 1.8em 1.6em !important;
    list-style: none !important;
    position: relative;
}

.dmsark-about .about-timeline-item:last-child {
    padding-bottom: 0 !important;
}

.dmsark-about .about-timeline-item::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 0.35em;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold-400);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.dmsark-about .about-timeline-date {
    display: block;
    margin-bottom: 0.35em;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-400);
}

.dmsark-about .about-timeline-title {
    margin: 0 0 0.4em !important;
    padding: 0 !important;
    border: 0 !important;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--gold-200);
}

.dmsark-about .about-timeline-body p {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(253, 247, 237, 0.75);
}

.dmsark-about .about-timeline-body p:last-child {
    margin-bottom: 0;
}

/* ──────────────────────────────────────────────────────────────────────────
   SCREEN-READER UTILITY (used by skip-link in header.php)
   ────────────────────────────────────────────────────────────────────────── */

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

.skip-link:focus {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    width: auto;
    height: auto;
    clip: auto;
    padding: 0.6em 1em;
    background: var(--gold-400);
    color: var(--gold-900);
    border-radius: 4px;
    font-family: var(--font-display);
    font-weight: 600;
    text-decoration: none;
}
