/*************************
**  Our Tasmania Website
**  help styles sheet
**  Build V. 0.2
**  Build Notes: the elements that relate to the help components of the site dark build
**
**********************/


/* ═══════════════════════════════════════════════════
    INTRO CARD
═══════════════════════════════════════════════════ */
.intro-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg); padding: 2.5rem 3rem;
    position: relative; overflow: hidden;
}
.intro-card::before {
    content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
    background: linear-gradient(to bottom, var(--emerald), transparent);
}
.intro-card::after {
    content: ''; position: absolute; bottom: -60px; right: -60px;
    width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle, var(--emerald-glow) 0%, transparent 65%);
    pointer-events: none;
}
.intro-card__over {
    font-family: var(--font-mono); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--emerald); display: block; margin-bottom: .75rem;
}
.intro-card h2 {
    font-family: var(--font-display); font-size: 1.8rem; font-weight: 800;
    color: var(--ink); margin-bottom: 1rem; line-height: 1.1;
}
.intro-card p {
    font-size: .9rem; color: var(--ink-2); line-height: 1.9; margin-bottom: 0;
}
.intro-card a { color: var(--emerald); text-decoration: none; transition: color .15s; }
.intro-card a:hover { color: var(--emerald-lt); text-decoration: underline; }
@media (max-width: 767px) { .intro-card { padding: 1.75rem 1.5rem; } }

/* ═══════════════════════════════════════════════════
   FAQ CATEGORY CARDS
═══════════════════════════════════════════════════ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}
@media (max-width: 767px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg); overflow: hidden; text-decoration: none;
    display: flex; flex-direction: column;
    transition: border-color .25s, transform .2s, box-shadow .25s;
    position: relative;
}
.faq-card:hover {
    border-color: var(--emerald-rule); transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.faq-card__accent {
    height: 3px;
    background: linear-gradient(90deg, var(--emerald), transparent);
    transition: opacity .25s;
}
.faq-card__body { padding: 1.75rem 2rem 2rem; flex: 1; display: flex; flex-direction: column; }

.faq-card__icon {
    width: 40px; height: 40px; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    background: var(--emerald-dim);
    color: var(--emerald); font-size: .95rem; margin-bottom: 1rem; flex-shrink: 0;
}
.faq-card__title {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
    color: var(--ink); margin-bottom: .65rem; text-decoration: none;
    transition: color .15s;
}
.faq-card:hover .faq-card__title { color: var(--emerald-lt); }

.faq-card__intro {
    font-family: var(--font-mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-2); margin-bottom: .6rem;
}
.faq-card__topics {
    list-style: none; padding: 0; margin: 0; flex: 1;
}
.faq-card__topics li {
    display: flex; align-items: center; gap: .6rem;
    font-size: .82rem; color: var(--ink-2); line-height: 1.5;
    padding: .4rem 0; border-bottom: 1px solid var(--rule);
}
.faq-card__topics li:last-child { border-bottom: none; }
.faq-card__topics li::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%;
    background: var(--emerald-rule); flex-shrink: 0;
}

/* Empty state */
.faq-card__empty {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: .5rem; padding: 1.5rem 0; flex: 1; text-align: center;
}
.faq-card__empty i { font-size: 2.4rem; color: var(--ink-2); opacity: .3; margin-bottom: 1.2rem; }
.faq-card__empty span {
    font-family: var(--font-mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--ink-2);
}

.faq-card__cta {
    display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.25rem;
    font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--emerald); text-decoration: none; border-bottom: 1px solid var(--emerald-rule); padding-bottom: 2px;
    align-self: flex-start; transition: color .15s, border-color .15s;
}
.faq-card:hover .faq-card__cta { color: var(--emerald-lt); border-color: var(--emerald-lt); }
/* ═══════════════════════════════════════════════════
  FAQ LAYOUT
═══════════════════════════════════════════════════ */

/* ── Page intro strip ── */
.faq-intro {
    background: var(--bg-card);
    border-radius: var(--radius-lg); padding: 2.5rem 3rem;
    position: relative; overflow: hidden;
}
.faq-intro::after {
    content: ''; position: absolute; bottom: -50px; right: -50px;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(90,158,58,.05) 0%, transparent 70%);
    pointer-events: none;
}
.faq-intro__over {
    font-family: var(--font-mono); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--emerald); display: block; margin-bottom: .6rem;
}
.faq-intro__title {
    font-family: var(--font-display); font-size: 1.8rem; font-weight: 800;
    color: var(--ink); margin-bottom: .6rem; line-height: 1.1;
}
.faq-intro__sub { color: var(--ink-3); font-size: .88rem; line-height: 1.75; margin: 0; }

/* ── FAQ two-column wrapper ── */
.faq-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; align-items: start; }
@media (max-width: 991px) { .faq-layout { grid-template-columns: 1fr; } }

/* ── Category sidebar ── */
.faq-sidebar {
    background: var(--bg-card); 
    border-radius: var(--radius-lg); overflow: hidden;
    position: sticky; top: 80px;
}
.faq-sidebar__header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--rule);
    display: flex; align-items: center; gap: .65rem;
    position: relative;
}
.faq-sidebar__header::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--emerald), transparent);
}
.faq-sidebar__header-label {
    font-family: var(--font-mono); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--ink-4);
}
.faq-sidebar__header i { color: var(--emerald); font-size: .85rem; }

/* Nav pills */
.faq-nav-list { list-style: none; padding: .75rem; margin: 0; display: flex; flex-direction: column; gap: .3rem; }
.faq-nav-btn {
    display: flex; align-items: center; gap: .75rem;
    width: 100%; padding: .7rem 1rem;
    background: transparent; border-radius: var(--radius); color: var(--ink-3);
    font-family: var(--font-body); font-size: .82rem;
    cursor: pointer; text-align: left;
    transition: background .18s, border-color .18s, color .18s;
    position: relative; border: none;
}
.faq-nav-btn i { font-size: .85rem; flex-shrink: 0; width: 16px; text-align: center; }
.faq-nav-btn .faq-nav-count {
    margin-left: auto; flex-shrink: 0;
    font-family: var(--font-mono); font-size: .6rem; letter-spacing: .08em;
    color: var(--ink-4); background: rgba(255,255,255,.04);
    border-radius: 100px;
    padding: .15rem .55rem; transition: all .18s;
}
.faq-nav-btn:hover {
    background: rgba(255,255,255,.04); border-color: var(--rule-warm); color: var(--ink-2);
}
.faq-nav-btn.active {
    background: var(--emerald-dim); border-color: var(--emerald-rule); color: var(--emerald);
}
.faq-nav-btn.active .faq-nav-count { background: rgba(90,158,58,.15); border-color: var(--emerald-rule); color: var(--emerald); }

/* Sidebar species highlight */
.faq-sidebar__highlight {
    margin: 0; padding: .75rem;
    border-top: 1px solid var(--rule);
}
.faq-sidebar__highlight-label {
    font-family: var(--font-mono); font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--ink-4); display: block; padding: .5rem .35rem .65rem;
}
/* Mini species card — same overlay pattern as sp-card */
.faq-sp-card {
    display: block; text-decoration: none;
    border-radius: var(--radius); overflow: hidden;
    position: relative; aspect-ratio: 4/3;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.faq-sp-card:hover { border-color: var(--teal-rule); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.5); }
.faq-sp-card img.card-bg {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform .55s ease;
}
.faq-sp-card:hover img.card-bg { transform: scale(1.06); }
.faq-sp-card__veil {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,12,10,.95) 0%, rgba(8,12,10,.5) 40%, transparent 70%);
}
.faq-sp-card__accent { position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--teal); z-index: 2; }
.faq-sp-card__badges {
    position: absolute; top: .5rem; left: .6rem;
    display: flex; gap: .3rem; z-index: 3;
}
.faq-sp-card__badges img { width: 22px; height: 22px; filter: drop-shadow(0 1px 4px rgba(0,0,0,.7)); }
.faq-sp-card__body {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    padding: .75rem .85rem .85rem 1rem;
}
.faq-sp-card__name {
    font-family: var(--font-display); font-size: .88rem; font-weight: 700;
    color: var(--ink); display: block; margin-bottom: .15rem;
    text-shadow: 0 1px 5px rgba(0,0,0,.7);
}
.faq-sp-card__latin {
    font-family: var(--font-mono); font-size: .6rem; font-style: italic;
    color: rgba(240,237,230,.5); letter-spacing: .04em;
}

/* ── FAQ content panel ── */
.faq-panel { display: none; }
.faq-panel.active { display: block; }

.faq-panel__header { margin-bottom: 2rem; }
.faq-panel__title {
    font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900; color: var(--ink); line-height: 1.1; margin-bottom: .75rem;
}
.faq-panel__title em { font-style: italic; color: var(--emerald-lt); }
.faq-panel__intro {
    color: var(--ink-3); font-size: .88rem; line-height: 1.8;
    max-width: 640px;
}
/* IUCN logo + intro row */
.faq-panel__intro-row {
    display: flex; gap: 1.5rem; align-items: flex-start;
    background: var(--bg-2);
    border-radius: var(--radius-lg); padding: 1.5rem;
    margin-bottom: 2rem;

}
.faq-panel__intro-row img { width: 80px; flex-shrink: 0; }
.faq-panel__intro-row p { color: var(--ink-3); font-size: .86rem; line-height: 1.8; margin: 0; }
.faq-panel__intro-row p a { color: var(--emerald); text-decoration: none; }
.faq-panel__intro-row p a:hover { color: var(--emerald-lt); }

/* ── Dark accordion ── */
.ot-accordion { display: flex; flex-direction: column; gap: .5rem; }

.ot-acc-item {
    background: var(--bg-card); 
    border-radius: var(--radius-lg); overflow: hidden;
    transition: border-color .2s;
}


.ot-acc-trigger {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1.1rem 1.5rem; background: transparent; border: none; cursor: pointer;
    text-align: left;
    transition: background .2s;
}
.ot-acc-trigger:hover { background: rgba(255,255,255,.025); }
.ot-acc-item.is-open .ot-acc-trigger { background: rgba(90,158,58,.04); }

.ot-acc-trigger__text {
    font-family: var(--font-body); font-size: .9rem; font-weight: 500;
    color: var(--ink-2); line-height: 1.4;
    transition: color .2s;
}
.ot-acc-item.is-open .ot-acc-trigger__text { color: var(--ink); }

.ot-acc-trigger__icon {
    flex-shrink: 0; width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.04);
    border-radius: var(--radius); color: var(--ink-4); font-size: .75rem;
    transition: background .2s, border-color .2s, color .2s, transform .3s ease;
}
.ot-acc-item.is-open .ot-acc-trigger__icon {
    background: var(--emerald-dim); border-color: var(--emerald-rule); color: var(--emerald);
    transform: rotate(45deg);
}

.ot-acc-body {
    max-height: 0; overflow: hidden;
    transition: max-height .4s cubic-bezier(.25,.46,.45,.94);
}
.ot-acc-body__inner {
    padding: 1.25rem 1.5rem 1.5rem;
}
/* Icon + text layout inside accordion body */
.ot-acc-body__row {
    display: flex; gap: 1.5rem; align-items: flex-start;
}
.ot-acc-body__icon { width: 72px; flex-shrink: 0; }
.ot-acc-body__icon img { width: 100%; display: block; }
.ot-acc-body__text {
    display: flex; gap: 1.5rem; align-items: flex-start;
    font-size: .875rem; color: var(--ink-3); line-height: 1.85; flex: 1;
}
.ot-acc-body__text img { width: 80px; flex-shrink: 0; }
.ot-acc-body__text p { color: var(--ink-3); font-size: .86rem; line-height: 1.8; margin: 0; }
.ot-acc-body__text p a { color: var(--emerald); text-decoration: none; }
.ot-acc-body__text p a:hover { color: var(--emerald-lt); }

@media (max-width: 575px) {
    .ot-acc-body__row { flex-direction: column; }
    .ot-acc-body__icon { width: 60px; }
}
@media (max-width: 991px) {
    .faq-sidebar { position: static; }
}

/* ═══════════════════════════════════════════════════
   INTRO CARD — top of page summary
═══════════════════════════════════════════════════ */
.help-intro {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}
.help-intro::before {
    content: ''; display: block;
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--emerald), rgba(90,158,58,0));
}
/* large faint background icon */
.help-intro::after {
    content: '';
    position: absolute; right: -20px; bottom: -30px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(90,158,58,.07) 0%, transparent 70%);
    pointer-events: none;
}
.help-intro__over {
    font-family: var(--font-mono);
    font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--emerald); margin-bottom: .65rem; display: block;
}
.help-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800; color: var(--ink);
    line-height: 1.15; margin-bottom: .85rem;
}
.help-intro p {
    font-size: .9rem; color: var(--ink-2);
    line-height: 1.85; font-weight: 300;
    max-width: 680px; margin-bottom: 0;
}
.help-intro p a {
    color: var(--emerald); text-decoration: none;
    border-bottom: 1px solid var(--emerald-rule);
    transition: color .15s, border-color .15s;
}
.help-intro p a:hover { color: var(--emerald-lt); border-color: var(--emerald); }

/* ═══════════════════════════════════════════════════
   HELP SECTION CARDS
═══════════════════════════════════════════════════ */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.help-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    text-decoration: none;
    position: relative;
    transition: border-color .3s, transform .25s, box-shadow .3s;
}
.help-card:hover {
    border-color: var(--emerald-rule);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 0 1px var(--emerald-rule);
}
/* top accent strip */
.help-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--emerald), transparent);
    opacity: 0; transition: opacity .3s;
}
.help-card:hover::before { opacity: 1; }
/* corner glow */
.help-card::after {
    content: '';
    position: absolute; inset: 0; border-radius: var(--radius-lg);
    background: radial-gradient(ellipse at 0% 100%, rgba(90,158,58,.06) 0%, transparent 55%);
    opacity: 0; transition: opacity .4s; pointer-events: none;
}
.help-card:hover::after { opacity: 1; }

/* About cards use a compact row layout instead of the standard head/body
   structure, so their spacing belongs on the card itself. */
.about-card {
    padding: 1.25rem 1.35rem;
}

.help-card__head {
    padding: 1.5rem 1.75rem 1.25rem;
    background: var(--bg-2);
    display: flex; align-items: center; gap: 1rem;
    position: relative;
}

.help-card:hover .help-card__head::before { transform: scaleY(1); }

.help-card__icon {
    width: 48px; height: 48px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--emerald-dim);
    border-radius: var(--radius);
    color: var(--emerald); font-size: 1.1rem;
    transition: background .25s, box-shadow .25s;
}
.help-card:hover .help-card__icon {
    background: rgba(90,158,58,.18);
    box-shadow: 0 0 14px rgba(90,158,58,.28);
}

.help-card__title {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 700;
    color: var(--ink); margin: 0; line-height: 1.2;
}

.help-card__body {
    padding: 1.5rem 1.75rem;
    flex: 1; display: flex; flex-direction: column; gap: 1rem;
}
.help-card__body p {
    font-size: .875rem; color: var(--ink-2);
    line-height: 1.85; font-weight: 300; margin: 0;
}

.help-card__cta {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--font-mono);
    font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--emerald); margin-top: auto;
    transition: gap .2s, color .2s;
}
.help-card__cta i { transition: transform .2s; }
.help-card:hover .help-card__cta { color: var(--emerald-lt); gap: .75rem; }
.help-card:hover .help-card__cta i { transform: translateX(3px); }



/* ═══════════════════════════════════════════════════
    CONTACT CTA STRIP
═══════════════════════════════════════════════════ */
.help-contact {
    display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
    background: var(--emerald-dim);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    margin-bottom: 3rem;
    position: relative; overflow: hidden;
}
.help-contact::before {
    content: '';
    position: absolute; right: -50px; top: -50px;
    width: 180px; height: 180px; border-radius: 50%;
    border: 1px solid var(--emerald-rule); opacity: .4;
    pointer-events: none;
}
.help-contact::after {
    content: '';
    position: absolute; right: 20px; bottom: -30px;
    width: 100px; height: 100px; border-radius: 50%;
    border: 1px solid var(--emerald-rule); opacity: .25;
    pointer-events: none;
}
.help-contact__icon {
    width: 52px; height: 52px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--emerald); border-radius: var(--radius);
    color: #0e100f; font-size: 1.1rem;
}
.help-contact__text { flex: 1; min-width: 0; }
.help-contact__text strong {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 700;
    color: var(--ink); display: block; margin-bottom: .2rem;
}
.help-contact__text span {
    font-size: .845rem; color: var(--ink-2); font-weight: 300;
}
.help-contact__btn {
    display: inline-flex; align-items: center; gap: .55rem;
    background: var(--emerald); color: #0e100f;
    font-family: var(--font-mono); font-size: .7rem;
    letter-spacing: .12em; text-transform: uppercase;
    padding: .75rem 1.5rem; border-radius: var(--radius);
    text-decoration: none; font-weight: 600;
    transition: background .2s, transform .15s, box-shadow .2s;
    white-space: nowrap;
}
.help-contact__btn:hover {
    background: var(--emerald-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(90,158,58,.35);
    color: #0e100f;
}

@media (max-width: 575px) {
    .help-contact { flex-direction: column; align-items: flex-start; }
    .help-grid { grid-template-columns: 1fr; }
}
/* ═══════════════════════════════════════════════════
   GLOSSARY TABLE WRAPPER
═══════════════════════════════════════════════════ */
.gloss-term {
    font-family: var(--font-display); font-size: .9rem; font-weight: 700;
    color: var(--ink); white-space: nowrap;
}
.gloss-def { font-size: .82rem; color: var(--ink-3); line-height: 1.6; }
.gloss-cat {
    display: inline-flex; align-items: center; gap: .35rem;
    font-family: var(--font-mono); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase;
    padding: .22rem .7rem; border-radius: 100px;
    color: var(--amber); background: var(--amber-dim);
    white-space: nowrap;
}
.gloss-date { font-family: var(--font-mono); font-size: .7rem; color: var(--ink-4); white-space: nowrap; }

/* View button */
.btn-view {
    width: 75px; height: 32px; display: flex; align-items: center; justify-content: center;
    background: var(--teal-dim); border-radius: var(--radius);
    border: none;
    /* A <button>: with no border of its own the browser draws one, 2px and
       white. Transparent keeps :hover's border-color working and stops the
       button shifting when it lands. */
    /* The icon is the whole of this button, and --ink-3 reads 3.16:1 on --bg-3
       in light theme. --ink-2 gives 4.68:1 light and 7.97:1 dark. */
    color: var(--ink-2); font-size: .78rem; text-decoration: none; cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
}
.btn-view:hover { background: var(--emerald-dim); color: var(--emerald); }

/* DataTables controls
   The search input and length select are styled once, in styles-x-tables.css,
   which loads after this file and used to win silently. Two rules for the same
   selector disagreeing about the field's colour is how it ended up invisible. */
div.dt-container .dt-search input:focus,
div.dt-container .dt-length select:focus {
    border-color: var(--emerald-rule) !important;
    box-shadow: 0 0 0 2px var(--emerald-dim) !important;
}
div.dt-container .dt-search label,
div.dt-container .dt-length label {
    color: var(--ink-4) !important; font-size: .78rem !important;
    font-family: var(--font-mono) !important;
}

div.dt-container .dt-info { color: var(--ink-4) !important; font-family: var(--font-mono) !important; font-size: .7rem !important; }
div.dt-container select option { background: var(--bg-3); color: var(--ink); }
table.dataTable > thead > tr > th.dt-orderable-asc:before,
table.dataTable > thead > tr > th.dt-orderable-desc:after { color: var(--ink-4) !important; opacity: .4; }
table.dataTable > thead > tr > th.dt-ordering-asc:before,
table.dataTable > thead > tr > th.dt-ordering-desc:after { color: var(--emerald) !important; opacity: 1; }

/* Light theme: help surfaces use the shared ivory field-guide treatment. */
html[data-theme="light"] .page-changelog .ot-hero__sub {
    color: var(--ink-2);
}

html[data-theme="light"] .about-card,
html[data-theme="light"] .faq-card,
html[data-theme="light"] .faq-sidebar,
html[data-theme="light"] .faq-sp-card,
html[data-theme="light"] .help-card,
html[data-theme="light"] .help-contact,
html[data-theme="light"] .intro-card,
html[data-theme="light"] .ot-acc-body {
    background: var(--bg-card);

    color: var(--ink);
    box-shadow: 0 8px 24px rgba(55,45,28,.06);
}

/* FAQ species names are rendered over a dark photo veil. */
html[data-theme="light"] .faq-sp-card__name {
    color: #f7f2e8;
}

/* Same reason as the name above: this accent sits on the photo, not on the
   page, so it keeps the dark theme's bright teal. The light --teal is a dark
   teal chosen to read on parchment, which on this veil measured 2.7:1. */
html[data-theme="light"] .faq-sp-card__accent {
    background: #5ab4c8;
}
html[data-theme="light"] .faq-sp-card:hover {
    border-color: rgba(90,180,200,.35);
}

