/* reset.css */
/* Minimal, deliberate reset. Component spacing is owned by component files. */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

body {
    min-height: 100vh;
    text-rendering: optimizeLegibility;
}

ul[role="list"],
ol[role="list"] {
    list-style: none;
}

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

input,
button,
textarea,
select {
    font: inherit;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

a {
    color: inherit;
    text-decoration: none;
}

:focus-visible {
    outline: 3px solid var(--color-focus, #1264a3);
    outline-offset: 3px;
}

[hidden] {
    display: none !important;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* variables.css */
:root {
    /* Measured layout frame from the supplied desktop references. */
    --container-width: 1150px;
    --container-padding: 24px;
    --content-narrow-width: 760px;

    /* Typography: local/system fonts only; no external request is required. */
    --font-sans: Arial, "Helvetica Neue", Helvetica, sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --line-height-tight: 1.2;
    --line-height-copy: 1.55;

    /* Core colors measured/normalized from the supplied Version 1.0 images. */
    --color-page-background: #767676;
    --color-surface: #ffffff;
    --color-surface-soft: #f5f5f5;
    --color-text: #303030;
    --color-text-muted: #6d6d6d;
    --color-border: #dedede;
    --color-border-strong: #c5c5c5;
    --color-orange: #ef8b00;
    --color-orange-bright: #f49a0b;
    --color-blue: #3398b2;
    --color-green: #5ac75b;
    --color-red: #e9696f;
    --color-focus: #1264a3;

    --space-0: 0;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 32px;
    --space-8: 40px;
    --space-9: 48px;
    --space-10: 64px;

    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 24px;
    --radius-pill: 999px;

    --shadow-card: 0 0 0 3px rgb(255 255 255 / 55%);
    --shadow-floating: 0 10px 30px rgb(0 0 0 / 18%);
    --transition-fast: 150ms ease;
    --transition-medium: 280ms ease;

    --z-base: 1;
    --z-header: 100;
    --z-sticky: 150;
    --z-dropdown: 200;
    --z-modal: 1000;
}

/* layout.css */
html,
body {
    min-height: 100%;
    margin: 0;
    padding: 0;
}

body {
    min-width: 320px;
    background-color: var(--color-page-background);
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: var(--line-height-copy);
}

.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    position: relative;
    z-index: var(--z-base);
    width: 100%;
    flex: 1 0 auto;
}

.site-main--home {
    padding-bottom: var(--space-8);
}

.container,
.content-frame {
    width: min(100% - (2 * var(--container-padding)), var(--container-width));
    margin-inline: auto;
}

.content-frame {
    padding: var(--space-7);
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.content-frame--article {
    max-width: 980px;
}

.content-frame--narrow {
    max-width: var(--content-narrow-width);
}

.page-heading {
    margin-bottom: var(--space-6);
}

.page-heading__title {
    color: var(--color-text);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
}

.page-heading__description {
    max-width: 75ch;
    margin-top: var(--space-3);
    color: var(--color-text-muted);
}

.content-article__featured-image {
    margin-bottom: var(--space-6);
    overflow: hidden;
    border-radius: var(--radius-md);
}

.content-article__body {
    color: var(--color-text);
}

.content-article__body > * + * {
    margin-top: 1.25em;
}

.content-article__body a {
    color: #1d618d;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.content-article__body ul,
.content-article__body ol {
    padding-left: 1.4em;
}

.content-article__body ul {
    list-style: disc;
}

.content-article__body ol {
    list-style: decimal;
}

img {
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

body {
    background-image: none;
}

@media (min-width: 992px) {
    body {
        background-image: url('../images/background_tile.png');
        background-repeat: repeat;
        background-position: top left;
    }
}

@media (max-width: 767px) {
    :root {
        --container-padding: 14px;
    }

    .content-frame {
        padding: var(--space-5);
        border-radius: var(--radius-sm);
    }
}

/* Optional low-glare appearance activated by the desktop moon control. */
html.directory-appearance-soft body {
    --color-page-background: #5f5f5f;
    --color-surface: #f6f6f6;
    --color-surface-soft: #ececec;
}

/* header.css */
/* ========================================================================== 
   Header / top information bar
   ========================================================================== */

.topbar {
    position: relative;
    z-index: var(--z-header);
    width: 100%;
    height: 32px;
    background: #fdfdfd;
    border-bottom: 3px solid #c5c5c5;
}

.topbar__inner {
    width: min(100%, var(--container-width));
    height: 29px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.topbar__status {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: #4e4e4e;
    font: 400 16px/29px var(--font-sans);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.topbar__language {
    position: relative;
    flex: 0 0 auto;
    min-width: 34px;
    min-height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    border: 0;
    background: transparent;
    color: #4e4e4e;
    font: 400 12px/1 var(--font-sans);
    white-space: nowrap;
}

.topbar__language:disabled {
    cursor: default;
    opacity: 1;
}

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

.topbar__language-chevron {
    color: #8a8a8a;
    font-size: 11px;
}

/* ========================================================================== 
   Desktop masthead — measured against 1169 px and 992 px references
   ========================================================================== */

.site-header {
    position: relative;
    z-index: calc(var(--z-header) + 1);
    width: 100%;
    height: 179px;
    overflow: visible;
}

.site-header__inner {
    position: relative;
    width: min(100%, var(--container-width));
    height: 100%;
    margin: 0 auto;
    overflow: visible;
}

.site-header__desktop-stack {
    position: absolute;
    top: 30px;
    left: 0;
    width: 460px;
}

.site-header__brand {
    width: 450px;
    max-width: 100%;
    display: block;
    line-height: 0;
}

.site-header__logo {
    width: 450px;
    height: auto;
    object-fit: contain;
}

.site-header__promo {
    position: absolute;
    z-index: 4;
    top: 12px;
    left: 480px;
    width: 390px;
    min-height: 72px;
    padding: 10px 30px 10px 47px;
    display: flex;
    align-items: center;
    border: 3px solid #f2a000;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 4px rgb(0 0 0 / 30%);
    color: #4b4b4b;
    line-height: 1.25;
}

a.site-header__promo:hover,
a.site-header__promo:focus-visible {
    border-color: #dc7800;
    box-shadow: 0 4px 12px rgb(0 0 0 / 24%);
}

.site-header__promo-icon {
    position: absolute;
    top: 17px;
    left: 12px;
    width: 28px;
    height: 34px;
    display: grid;
    place-items: center;
}

.site-header__promo-icon svg,
.site-header__promo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-header__promo-copy {
    min-width: 0;
    display: block;
    font-size: 12px;
}

.site-header__promo-title {
    display: block;
    margin-bottom: 4px;
    color: #4b4b4b;
    font-size: 14px;
    font-weight: 700;
}

.site-header__promo-line {
    display: block;
}

.site-header__promo-cta {
    color: #ef8300;
    font-weight: 700;
}

.site-header__promo-badge {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f39a00;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.site-header__promo-pointer {
    position: absolute;
    top: 24px;
    right: -16px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #f2a000;
}

.site-header__promo-pointer::after {
    content: "";
    position: absolute;
    top: -6px;
    left: -15px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #fff;
}

.site-header__character {
    position: absolute;
    z-index: 5;
    top: -31px;
    right: 0;
    width: 280px;
    height: auto;
    pointer-events: none;
    user-select: none;
}

.site-header__appearance-toggle {
    position: absolute;
    z-index: 6;
    right: 254px;
    bottom: 18px;
    width: 40px;
    height: 40px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #262930;
    box-shadow: 0 1px 2px rgb(0 0 0 / 35%);
    cursor: pointer;
}

.site-header__appearance-moon {
    position: relative;
    width: 18px;
    height: 18px;
    display: block;
    overflow: hidden;
    border: 2px solid #fff;
    border-radius: 50%;
}

.site-header__appearance-moon::after {
    content: "";
    position: absolute;
    top: -4px;
    left: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #262930;
}

.site-header__mobile-logo,
.site-header__mobile-tagline,
.site-header__menu-toggle {
    display: none;
}

/* navigation.css */
/* ========================================================================== 
   Responsive off-canvas navigation
   ========================================================================== */

.mobile-navigation {
    position: fixed;
    z-index: calc(var(--z-modal) + 20);
    inset: 0;
    display: none;
    pointer-events: none;
    visibility: hidden;
}

.mobile-navigation.is-open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-navigation__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgb(0 0 0 / 55%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.mobile-navigation.is-open .mobile-navigation__backdrop {
    opacity: 1;
}

.mobile-navigation__panel {
    position: relative;
    width: min(86vw, 360px);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: #fff;
    box-shadow: 12px 0 32px rgb(0 0 0 / 28%);
    transform: translateX(-104%);
    transition: transform var(--transition-medium);
}

.mobile-navigation.is-open .mobile-navigation__panel {
    transform: translateX(0);
}

.mobile-navigation__header {
    min-height: 112px;
    padding: 10px 62px 10px 18px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e7e7e7;
    background: #7b7b7b;
}

.mobile-navigation__brand {
    width: 118px;
    line-height: 0;
}

.mobile-navigation__brand img {
    width: 100%;
    height: auto;
}

.mobile-navigation__close {
    position: absolute;
    top: 20px;
    right: 16px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-navigation__close span::before,
.mobile-navigation__close span::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 7px;
    width: 30px;
    height: 4px;
    border-radius: 4px;
    background: #fff;
}

.mobile-navigation__close span::before {
    transform: rotate(45deg);
}

.mobile-navigation__close span::after {
    transform: rotate(-45deg);
}

.mobile-navigation__content {
    padding: 10px 0 28px;
    flex: 1 0 auto;
}

.mobile-navigation__list,
.mobile-navigation__list .sub-menu {
    list-style: none;
}

.mobile-navigation__list a {
    min-height: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ededed;
    color: #4a4a4a;
    font-size: 16px;
    font-weight: 600;
}

.mobile-navigation__list a:hover,
.mobile-navigation__list a:focus-visible,
.mobile-navigation__list .current-menu-item > a,
.mobile-navigation__list .current-menu-ancestor > a {
    background: #fff4e3;
    color: #dc7900;
}

.mobile-navigation__list .sub-menu a {
    min-height: 44px;
    padding-left: 42px;
    background: #f8f8f8;
    font-size: 14px;
    font-weight: 500;
}

.mobile-navigation__quick-links {
    padding: 18px 24px 0;
    display: grid;
    gap: 10px;
}

.mobile-navigation__quick-links a {
    color: #4f4f4f;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mobile-navigation__footer {
    min-height: 58px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #e5e5e5;
    background: #f7f7f7;
    color: #555;
    font-size: 14px;
}

body.mobile-navigation-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .mobile-navigation {
        display: block;
    }
}

/* search.css */
/* ========================================================================== 
   Shared accessible utility classes
   ========================================================================== */

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

/* ========================================================================== 
   Desktop header search
   ========================================================================== */

.header-search {
    position: relative;
    width: 460px;
    height: 40px;
    margin-top: 18px;
}

.header-search__input {
    width: 100%;
    height: 40px;
    padding: 0 54px 0 20px;
    border: 3px solid #d1d1d1;
    border-radius: 9px;
    outline: 0;
    background: #fff;
    color: #383838;
    font: 400 15px/34px var(--font-sans);
    box-sizing: border-box;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.header-search__input::placeholder {
    color: #9498a0;
    opacity: 1;
}

.header-search__input:focus {
    border-color: #ef8b00;
    box-shadow: 0 0 0 3px rgb(239 139 0 / 18%);
}

.header-search__submit {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 40px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.header-search__submit-icon,
.search-overlay__search-icon,
.site-header__search-toggle-icon {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    border: 3px solid #ef8b00;
    border-radius: 50%;
    box-sizing: border-box;
}

.header-search__submit-icon::after,
.search-overlay__search-icon::after,
.site-header__search-toggle-icon::after {
    content: "";
    position: absolute;
    right: -8px;
    bottom: -5px;
    width: 9px;
    height: 3px;
    border-radius: 2px;
    background: #ef8b00;
    transform: rotate(45deg);
    transform-origin: left center;
}

.site-header__search-toggle {
    display: none;
}

/* ========================================================================== 
   Full-screen responsive search
   ========================================================================== */

.search-overlay {
    position: fixed;
    z-index: calc(var(--z-modal) + 10);
    inset: 0;
    display: none;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.search-overlay__panel {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: #fff;
}

.search-overlay__topbar {
    position: sticky;
    z-index: 2;
    top: 0;
    min-height: 90px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 18px 20px;
    border-bottom: 1px solid #e4e4e4;
    background: #fff;
    box-sizing: border-box;
}

.search-overlay__form {
    position: relative;
    flex: 1 1 auto;
}

.search-overlay__search-icon {
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    pointer-events: none;
}

.search-overlay__input {
    width: 100%;
    height: 54px;
    padding: 0 16px 0 38px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #444;
    font: 400 22px/54px var(--font-sans);
    box-sizing: border-box;
}

.search-overlay__input::placeholder {
    color: #999;
    opacity: 1;
}

.search-overlay__close {
    position: relative;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.search-overlay__close span::before,
.search-overlay__close span::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 7px;
    width: 30px;
    height: 4px;
    border-radius: 3px;
    background: #555;
}

.search-overlay__close span::before {
    transform: rotate(45deg);
}

.search-overlay__close span::after {
    transform: rotate(-45deg);
}

.search-overlay__content {
    width: min(100%, 1240px);
    margin: 0 auto;
    padding: 22px 20px 48px;
    box-sizing: border-box;
}

.search-overlay__heading {
    margin: 0 0 18px;
    color: #4d4d4d;
    font: 600 18px/1.3 var(--font-sans);
}

.search-overlay__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 18px;
}

.search-overlay__entry {
    min-width: 0;
}

.search-overlay__entry-link {
    display: block;
    color: #4b4b4b;
    text-decoration: none;
}

.search-overlay__entry-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    overflow: hidden;
    border: 1px solid #dedede;
    border-radius: 5px;
    background: #f1f1f1;
}

.search-overlay__entry-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.search-overlay__entry-placeholder {
    position: absolute;
    inset: 0;
    display: block;
    background: linear-gradient(135deg, #f2f2f2, #dfdfdf);
}

.search-overlay__entry-title {
    display: block;
    margin-top: 9px;
    overflow: hidden;
    font: 500 16px/1.35 var(--font-sans);
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-overlay__empty {
    color: #777;
    font: 400 16px/1.5 var(--font-sans);
}

body.search-overlay-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .header-search--desktop,
    .site-header__desktop-stack {
        display: none;
    }

    .search-overlay {
        display: block;
    }

    .site-header__search-toggle {
        position: absolute;
        z-index: 8;
        top: 18px;
        right: 16px;
        width: 48px;
        height: 48px;
        display: grid;
        place-items: center;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .site-header__search-toggle-icon {
        width: 28px;
        height: 28px;
        border-width: 4px;
        border-color: #fff;
    }

    .site-header__search-toggle-icon::after {
        right: -11px;
        bottom: -7px;
        width: 12px;
        height: 4px;
        background: #fff;
    }
}

@media (max-width: 760px) {
    .search-overlay__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .site-header__search-toggle {
        top: 14px;
        right: 10px;
        width: 44px;
        height: 44px;
    }

    .site-header__search-toggle-icon {
        width: 28px;
        height: 28px;
        border-width: 4px;
    }

    .site-header__search-toggle-icon::after {
        right: -11px;
        bottom: -7px;
        width: 12px;
        height: 4px;
    }
}

@media (max-width: 520px) {
    .search-overlay__topbar {
        min-height: 72px;
        gap: 12px;
        padding: 9px 12px;
    }

    .search-overlay__input {
        height: 50px;
        font-size: 18px;
        line-height: 50px;
    }

    .search-overlay__content {
        padding: 18px 10px 36px;
    }

    .search-overlay__grid {
        gap: 20px 10px;
    }

    .search-overlay__entry-title {
        font-size: 14px;
    }
}

/* ========================================================================== 
   Search form used in content templates
   ========================================================================== */

.content-search {
    margin-bottom: var(--space-6);
    display: flex;
    gap: var(--space-2);
}

.content-search__input {
    min-width: 0;
    height: 44px;
    padding: 0 14px;
    flex: 1 1 auto;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
}

.content-search__input:focus {
    border-color: var(--color-orange);
    outline: 0;
    box-shadow: 0 0 0 3px rgb(239 139 0 / 16%);
}

.content-search__button {
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--color-orange);
    color: #fff;
    cursor: pointer;
}

@media (max-width: 480px) {
    .content-search {
        flex-direction: column;
    }
}

/* ========================================================================== 
   Build 0008: productive live search
   ========================================================================== */

[data-live-search-form] {
    position: relative;
}

.directory-live-search[hidden] {
    display: none !important;
}

.directory-live-search {
    position: absolute;
    z-index: calc(var(--z-modal) + 20);
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    overflow: hidden;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 45px rgb(0 0 0 / 22%);
    color: #383838;
    text-align: left;
}

.directory-live-search__status {
    min-height: 22px;
    margin: 0;
    padding: 13px 16px 10px;
    border-bottom: 1px solid #ededed;
    color: #737373;
    font-size: 13px;
    line-height: 1.35;
}

.directory-live-search__status:empty {
    display: none;
}

.directory-live-search__body {
    max-height: min(520px, calc(100vh - 190px));
    overflow-y: auto;
    overscroll-behavior: contain;
}

.directory-live-search__group + .directory-live-search__group {
    border-top: 1px solid #ededed;
}

.directory-live-search__group-title {
    margin: 0;
    padding: 10px 15px 6px;
    color: #929292;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.directory-live-search__item {
    min-width: 0;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    padding: 10px 15px;
    color: #3f3f3f;
    text-decoration: none;
    transition: background-color 120ms ease, color 120ms ease;
}

.directory-live-search__item:hover,
.directory-live-search__item:focus-visible,
.directory-live-search__item.is-keyboard-active {
    outline: 0;
    background: #fff3df;
    color: #b96500;
}

.directory-live-search__media {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid #e1e1e1;
    border-radius: 7px;
    background: #f2f2f2;
    color: #e58500;
    font-size: 17px;
    font-weight: 700;
}

.directory-live-search__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.directory-live-search__copy {
    min-width: 0;
}

.directory-live-search__title,
.directory-live-search__meta,
.directory-live-search__excerpt {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.directory-live-search__title {
    color: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
}

.directory-live-search__meta {
    margin-top: 2px;
    color: #888;
    font-size: 12px;
    line-height: 1.3;
}

.directory-live-search__rating {
    min-width: 38px;
    padding: 5px 7px;
    border-radius: 999px;
    background: #f29200;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.directory-live-search__count {
    color: #989898;
    font-size: 12px;
    white-space: nowrap;
}

.directory-live-search__all {
    min-height: 44px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #e5e5e5;
    background: #f29200;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.directory-live-search__all:hover,
.directory-live-search__all:focus-visible {
    outline: 0;
    background: #dc8200;
    color: #fff;
}

.directory-live-search__empty {
    margin: 0;
    padding: 24px 16px;
    color: #717171;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.header-search .directory-live-search {
    top: 46px;
    width: 520px;
    left: 0;
}

.search-overlay__form .directory-live-search--overlay {
    position: fixed;
    top: 90px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.search-overlay__form .directory-live-search__body {
    max-height: none;
}

/* ========================================================================== 
   Build 0008: search results page
   ========================================================================== */

.site-main--search {
    padding-top: 22px;
}

.directory-search-page {
    width: min(100% - (2 * var(--container-padding)), var(--container-width));
    margin-inline: auto;
    padding: 26px 28px 48px;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-card);
    box-sizing: border-box;
}

.directory-search-page__header {
    max-width: 850px;
    margin-bottom: 24px;
}

.directory-search-page__eyebrow {
    margin: 0 0 5px;
    color: #f08c00;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.directory-search-page__title {
    margin: 0;
    color: #464646;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.08;
}

.directory-search-page__summary {
    margin: 10px 0 0;
    color: #777;
    font-size: 16px;
    line-height: 1.55;
}

.directory-search-page .content-search {
    position: relative;
    max-width: 850px;
    margin-bottom: 34px;
    gap: 0;
}

.directory-search-page .content-search__input {
    height: 54px;
    padding: 0 154px 0 18px;
    border: 2px solid #d1d1d1;
    border-radius: 8px;
    color: #454545;
    font-size: 17px;
}

.directory-search-page .content-search__button {
    position: absolute;
    z-index: 2;
    top: 5px;
    right: 5px;
    min-width: 138px;
    min-height: 44px;
    border-radius: 6px;
    font-weight: 700;
}

.directory-search-page .directory-live-search--content {
    top: 60px;
}

.directory-search-section-heading {
    margin-bottom: 15px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.directory-search-section-heading h2 {
    margin: 0;
    color: #4a4a4a;
    font-size: 24px;
    line-height: 1.2;
}

.directory-search-section-heading p {
    max-width: 580px;
    margin: 0;
    color: #8a8a8a;
    font-size: 13px;
    line-height: 1.45;
    text-align: right;
}

.directory-search-categories {
    margin-bottom: 36px;
}

.directory-search-categories__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.directory-search-category {
    min-width: 0;
    min-height: 82px;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border: 1px solid #dedede;
    border-radius: 7px;
    background: #fafafa;
    color: #4b4b4b;
    text-decoration: none;
    transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.directory-search-category:hover,
.directory-search-category:focus-visible {
    border-color: #f0991b;
    outline: 0;
    box-shadow: 0 8px 22px rgb(0 0 0 / 9%);
    transform: translateY(-1px);
}

.directory-search-category__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background: #f29200;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.directory-search-category__icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.directory-search-category__copy {
    min-width: 0;
}

.directory-search-category__copy strong,
.directory-search-category__copy small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.directory-search-category__copy strong {
    font-size: 16px;
    line-height: 1.25;
}

.directory-search-category__copy small {
    margin-top: 3px;
    color: #8d8d8d;
    font-size: 12px;
}

.directory-search-category__arrow {
    color: #ee8b00;
    font-size: 20px;
}

.directory-search-results {
    padding-top: 30px;
    border-top: 1px solid #e2e2e2;
}

.directory-search-results__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 18px;
}

.directory-search-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dcdcdc;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 3px 10px rgb(0 0 0 / 6%);
    transition: box-shadow 160ms ease, transform 160ms ease;
}

.directory-search-card:hover,
.directory-search-card:focus-within {
    box-shadow: 0 12px 28px rgb(0 0 0 / 13%);
    transform: translateY(-2px);
}

.directory-search-card__media {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    overflow: hidden;
    border-bottom: 1px solid #e0e0e0;
    background: #ededed;
}

.directory-search-card__image,
.directory-search-card__placeholder {
    width: 100%;
    height: 100%;
    display: block;
}

.directory-search-card__image {
    object-fit: cover;
    transition: transform 220ms ease;
}

.directory-search-card:hover .directory-search-card__image {
    transform: scale(1.025);
}

.directory-search-card__placeholder {
    background: linear-gradient(135deg, #f0f0f0, #d9d9d9);
}

.directory-search-card__body {
    padding: 15px;
}

.directory-search-card__identity {
    min-width: 0;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.directory-search-card__favicon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    border-radius: 7px;
    background: #f5f5f5;
    color: #ed8b00;
    font-weight: 800;
}

.directory-search-card__favicon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.directory-search-card__identity-copy {
    min-width: 0;
}

.directory-search-card__title {
    margin: 0;
    overflow: hidden;
    font-size: 18px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.directory-search-card__title a {
    color: #474747;
    text-decoration: none;
}

.directory-search-card__title a:hover,
.directory-search-card__title a:focus-visible {
    color: #df8000;
}

.directory-search-card__domain {
    margin: 3px 0 0;
    overflow: hidden;
    color: #999;
    font-size: 12px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.directory-search-card__rating {
    padding: 5px 7px;
    border-radius: 999px;
    background: #f29200;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.directory-search-card__badges {
    margin-top: 11px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.directory-search-card__badges span {
    padding: 3px 7px;
    border-radius: 999px;
    background: #585858;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.directory-search-card__excerpt {
    min-height: 63px;
    margin: 12px 0 0;
    display: -webkit-box;
    overflow: hidden;
    color: #737373;
    font-size: 14px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.directory-search-card__categories {
    min-height: 25px;
    margin-top: 11px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.directory-search-card__categories a {
    padding: 3px 7px;
    border: 1px solid #e0e0e0;
    border-radius: 999px;
    color: #777;
    font-size: 11px;
    line-height: 1.2;
    text-decoration: none;
}

.directory-search-card__categories a:hover,
.directory-search-card__categories a:focus-visible {
    border-color: #ef920e;
    color: #d87b00;
}

.directory-search-card__action {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #e48600;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.directory-search-empty {
    margin-top: 10px;
    padding: clamp(42px, 8vw, 90px) 22px;
    border: 1px dashed #d4d4d4;
    border-radius: 8px;
    background: #fafafa;
    text-align: center;
}

.directory-search-empty__icon {
    position: relative;
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    display: block;
    border: 6px solid #f29200;
    border-radius: 50%;
}

.directory-search-empty__icon::after {
    content: "";
    position: absolute;
    right: -17px;
    bottom: -9px;
    width: 22px;
    height: 6px;
    border-radius: 4px;
    background: #f29200;
    transform: rotate(45deg);
}

.directory-search-empty h2 {
    margin: 0;
    color: #4c4c4c;
    font-size: clamp(24px, 4vw, 34px);
}

.directory-search-empty p {
    max-width: 650px;
    margin: 12px auto 24px;
    color: #777;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .site-main--search {
        padding-top: 0;
    }

    .directory-search-page {
        width: 100%;
        padding: 24px 22px 42px;
        border-radius: 0;
        box-shadow: none;
    }

    .directory-search-categories__grid,
    .directory-search-results__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .search-overlay__form .directory-live-search--overlay {
        top: 90px;
    }

    .directory-search-section-heading {
        display: block;
    }

    .directory-search-section-heading p {
        margin-top: 5px;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .search-overlay__form .directory-live-search--overlay {
        top: 72px;
    }

    .directory-live-search__item {
        grid-template-columns: 38px minmax(0, 1fr) auto;
        gap: 9px;
        padding: 10px 12px;
    }

    .directory-live-search__media {
        width: 38px;
        height: 38px;
    }

    .directory-search-page {
        padding: 19px 14px 36px;
    }

    .directory-search-page__title {
        font-size: 31px;
    }

    .directory-search-page .content-search {
        display: block;
        margin-bottom: 28px;
    }

    .directory-search-page .content-search__input {
        height: 50px;
        padding: 0 54px 0 14px;
        font-size: 15px;
    }

    .directory-search-page .content-search__button {
        top: 5px;
        right: 5px;
        min-width: 42px;
        width: 42px;
        min-height: 40px;
        overflow: hidden;
        color: transparent;
        font-size: 0;
    }

    .directory-search-page .content-search__button::before {
        content: "";
        width: 15px;
        height: 15px;
        display: block;
        margin: 0 auto;
        border: 3px solid #fff;
        border-radius: 50%;
    }

    .directory-search-page .content-search__button::after {
        content: "";
        position: absolute;
        top: 25px;
        left: 26px;
        width: 8px;
        height: 3px;
        border-radius: 2px;
        background: #fff;
        transform: rotate(45deg);
    }

    .directory-search-page .directory-live-search--content {
        top: 56px;
    }

    .directory-search-categories__grid,
    .directory-search-results__grid {
        grid-template-columns: 1fr;
    }

    .directory-search-category {
        min-height: 72px;
        grid-template-columns: 46px minmax(0, 1fr) auto;
    }

    .directory-search-category__icon {
        width: 46px;
        height: 46px;
    }

    .directory-search-card__excerpt {
        min-height: auto;
    }
}

/* cards.css */
.entry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-5);
}

.entry-card {
    min-width: 0;
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.entry-card__media {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    overflow: hidden;
    background: #ededed;
}

.entry-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.entry-card__placeholder {
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(135deg, #f1f1f1, #dddddd);
}

.entry-card:hover .entry-card__image {
    transform: scale(1.025);
}

.entry-card__body {
    padding: var(--space-5);
}

.entry-card__title {
    font-size: 20px;
    line-height: 1.25;
}

.entry-card__title a:hover,
.entry-card__title a:focus-visible {
    color: var(--color-orange);
}

.entry-card__excerpt {
    margin-top: var(--space-3);
    color: var(--color-text-muted);
    font-size: 15px;
}

.entry-card__link {
    margin-top: var(--space-4);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-orange);
    font-weight: var(--font-weight-semibold);
}

@media (max-width: 900px) {
    .entry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .entry-grid {
        grid-template-columns: 1fr;
    }
}

/* categories.css */
/* ========================================================================== 
   Homepage category grid and ranked previews
   ========================================================================== */

.category-grid-section {
    width: min(100%, 1150px);
    margin: 0 auto;
    padding: 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
}

.category-grid__column {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-card {
    --category-accent: #858585;
    min-width: 0;
    height: var(--category-desktop-height, 700px);
    padding: 11px 10px 9px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: var(--category-border-width, 3px) solid rgba(var(--category-rgb, 238, 238, 238), var(--category-border-opacity, .5));
    border-radius: var(--category-border-radius, 10px);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.52);
    color: #000;
}

.category-card__header {
    min-width: 0;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #4e4e4e;
}

.category-card__icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
}

.category-card__icon img,
.category-card__icon svg {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.category-card__title {
    min-width: 0;
    overflow: hidden;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.15;
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-card__rule {
    position: relative;
    height: 5px;
    margin: 3px 2px 9px;
    display: block;
    flex: 0 0 auto;
    overflow: hidden;
    background: #e5e5e5;
    border-radius: 999px;
}

.category-card__rule span {
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: 50%;
    width: 58px;
    background: var(--category-accent);
    border-radius: inherit;
    transform: translateX(-50%);
    transition: width 280ms ease;
}

.category-card__header:hover + .category-card__rule span,
.category-card__rule:hover span {
    width: 100%;
}

.category-card__description {
    margin: 0 2px 7px;
    flex: 0 0 auto;
    color: #4e4e4e;
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
}

.category-card__links {
    --category-preview-columns: 1;
    min-height: 0;
    margin: 0 -2px 8px 0;
    padding: 0 7px 0 0;
    display: grid;
    grid-template-columns: repeat(var(--category-preview-columns), minmax(0, 1fr));
    grid-auto-rows: 24px;
    align-content: start;
    flex: 1 1 auto;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-color: #c4c4c4 transparent;
    scrollbar-width: thin;
}

.category-card__links::-webkit-scrollbar {
    width: 6px;
}

.category-card__links::-webkit-scrollbar-track {
    background: transparent;
}

.category-card__links::-webkit-scrollbar-thumb {
    background: #c4c4c4;
    border-radius: 999px;
}

.category-card__link-row {
    min-width: 0;
    min-height: 24px;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 20px;
    align-items: center;
    column-gap: 4px;
}

.category-card__rank {
    width: 24px;
    color: #8b8b8b;
    font-size: 11px;
    line-height: 1;
    text-align: right;
}

.category-card__visited-arrow {
    display: none;
    color: #26a63b;
    font-size: 16px;
    font-weight: 800;
}

.category-card__link-row.is-visited .category-card__number {
    display: none;
}

.category-card__link-row.is-visited .category-card__visited-arrow {
    display: inline;
}

.category-card__site-link {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    color: #000;
    transition: color 150ms ease;
}

.category-card__site-link:hover,
.category-card__site-link:focus-visible {
    color: #777;
}

.category-card__favicon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
}

.category-card__favicon img {
    width: 16px;
    height: 16px;
    object-fit: cover;
}

.category-card__favicon-fallback {
    width: 16px;
    height: 16px;
    display: grid;
    place-items: center;
    background: #1f1f1f;
    border-radius: 50%;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
}

.category-card__site-title {
    min-width: 0;
    overflow: hidden;
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-card__badge {
    flex: 0 0 auto;
    padding: 1px 4px 2px;
    border-radius: 3px;
    background: #1598bf;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
}

.category-card__badge--new {
    padding-inline: 1px;
    background: transparent;
    color: #ef8b00;
    font-size: 11px;
    font-style: italic;
    transform: rotate(-6deg);
}

.category-card__badge--premium {
    background: #ef8b00;
}

.category-card__badge--verified {
    background: #44a85c;
}

.category-card__detail-link {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    color: #e4a53e;
    transition: opacity 150ms ease, color 150ms ease;
}

.category-card__detail-link svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.category-card__link-row:hover .category-card__detail-link,
.category-card__detail-link:focus-visible {
    opacity: 1;
    pointer-events: auto;
}

.category-card__detail-link:hover {
    color: #000;
}

.category-card__button {
    min-height: 38px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex: 0 0 auto;
    background: var(--category-accent);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    transition: filter 150ms ease, transform 150ms ease;
}

.category-card__button-icon {
    font-size: 23px;
    font-weight: 300;
    line-height: .8;
}

.category-card__button:hover,
.category-card__button:focus-visible {
    filter: brightness(0.92);
    transform: translateY(-1px);
}

@media (min-width: 992px) and (max-width: 1169px) {
    .category-grid-section {
        width: calc(100% - 18px);
    }

    .category-card {
        padding-inline: 8px;
    }

    .category-card__title {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .category-grid-section {
        width: calc(100% - 106px);
        max-width: 1150px;
        padding: 0;
    }

    .category-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 13px;
    }

    .category-card {
        height: var(--category-tablet-height, 510px);
        padding: 13px 14px 10px;
        border-radius: max(10px, var(--category-border-radius, 10px));
    }

    .category-card__header {
        min-height: 46px;
        gap: 9px;
    }

    .category-card__icon,
    .category-card__icon img,
    .category-card__icon svg {
        width: 42px;
        height: 42px;
    }

    .category-card__icon {
        flex-basis: 42px;
    }

    .category-card__title {
        font-size: 17px;
    }

    .category-card__rule {
        margin: 2px 1px 10px;
    }

    .category-card__rule span {
        width: 68px;
    }

    .category-card__description {
        margin: 0 8px 9px;
        font-size: 14px;
        line-height: 1.35;
    }

    .category-card__links {
        margin: 0 -2px 9px 0;
        padding-right: 9px;
        grid-auto-rows: 30px;
        column-gap: 22px;
    }

    .category-card__link-row {
        min-height: 30px;
        grid-template-columns: 26px minmax(0, 1fr) 22px;
        column-gap: 5px;
    }

    .category-card__rank {
        width: 26px;
        font-size: 12px;
    }

    .category-card__favicon,
    .category-card__favicon img,
    .category-card__favicon-fallback {
        width: 18px;
        height: 18px;
    }

    .category-card__favicon {
        flex-basis: 18px;
    }

    .category-card__site-title {
        font-size: 16px;
    }

    .category-card__badge {
        font-size: 10px;
    }

    .category-card__detail-link {
        width: 22px;
        height: 22px;
    }

    .category-card__button {
        min-height: 40px;
        border-radius: 12px;
        font-size: 16px;
    }
}

@media (min-width: 900px) and (max-width: 991px) {
    .category-card {
        height: var(--category-wide-height, 510px);
    }
}

@media (min-width: 601px) and (max-width: 899px) {
    .category-grid-section {
        margin-top: 14px;
    }

    .category-card__links {
        grid-auto-rows: 34px;
        column-gap: 28px;
    }

    .category-card__link-row {
        min-height: 34px;
    }

    .category-card__site-title {
        font-size: 17px;
    }

    .category-card {
        padding-top: 18px;
        padding-bottom: 12px;
    }

    .category-card__header {
        min-height: 58px;
    }

    .category-card__rule {
        margin-bottom: 14px;
    }

    .category-card__description {
        margin-bottom: 14px;
    }
}

@media (max-width: 600px) {
    .category-grid-section {
        width: calc(100% - 106px);
        min-width: 214px;
    }

    .category-grid {
        gap: 14px;
    }

    .category-card {
        height: var(--category-mobile-height, 616px);
        padding: 8px 10px 7px;
        border-width: max(3px, var(--category-border-width, 3px));
        border-radius: 12px;
    }

    .category-card__header {
        min-height: 44px;
        gap: 7px;
    }

    .category-card__icon,
    .category-card__icon img,
    .category-card__icon svg {
        width: 38px;
        height: 38px;
    }

    .category-card__icon {
        flex-basis: 38px;
    }

    .category-card__title {
        font-size: 14px;
        letter-spacing: -0.2px;
        line-height: 1.15;
    }

    .category-card__rule {
        height: 4px;
        margin: 0 2px 5px;
    }

    .category-card__description {
        margin: 0 2px 5px;
        font-size: 13px;
        line-height: 1.3;
    }

    .category-card__links {
        margin-bottom: 5px;
        padding-right: 5px;
        grid-auto-rows: 22px;
        column-gap: 0;
    }

    .category-card__links::-webkit-scrollbar {
        width: 5px;
    }

    .category-card__link-row {
        min-height: 22px;
        grid-template-columns: 25px minmax(0, 1fr) 0;
        column-gap: 5px;
    }

    .category-card__rank {
        width: 25px;
        font-size: 12px;
    }

    .category-card__visited-arrow {
        font-size: 16px;
    }

    .category-card__site-link {
        gap: 7px;
    }

    .category-card__favicon,
    .category-card__favicon img,
    .category-card__favicon-fallback {
        width: 18px;
        height: 18px;
    }

    .category-card__favicon {
        flex-basis: 18px;
    }

    .category-card__favicon-fallback {
        font-size: 11px;
    }

    .category-card__site-title {
        font-size: 16px;
    }

    .category-card__badge {
        font-size: 10px;
    }

    .category-card__detail-link {
        display: none;
    }

    .category-card__button {
        min-height: 38px;
        padding-inline: 10px;
        border-radius: 14px;
        font-size: clamp(15px, 4.8vw, 18px);
    }

    .category-card__button-icon {
        font-size: 25px;
    }
}

@media (max-width: 340px) {
    .category-grid-section {
        width: calc(100% - 82px);
        min-width: 0;
    }

    .category-card__description {
        font-size: 15px;
    }

    .category-card__site-title {
        font-size: 15px;
    }
}

/* category-page.css */
/* ========================================================================== 
   Version 1.0 category archive
   ========================================================================== */

.category-page {
    width: min(100%, var(--container-width));
    margin: 0 auto var(--space-8);
}

.category-page__surface {
    min-width: 0;
    padding: 14px 16px 20px;
    overflow: hidden;
    background: #fff;
    border: 3px solid #c8c8c8;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgb(0 0 0 / 16%);
}

.category-page__header {
    min-width: 0;
}

.category-page__title-row {
    min-width: 0;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 10px;
}

.category-page__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
}

.category-page__icon img,
.category-page__icon svg {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.category-page__title {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
    color: #4a4a4a;
    font-size: clamp(20px, 2.25vw, 25px);
    font-weight: 700;
    line-height: 1.14;
    text-transform: uppercase;
}

.category-page__alert {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 2px solid #dedede;
    border-radius: 50%;
    background: #fff;
    color: var(--color-orange);
}

.category-page__alert svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.category-page__disclaimer {
    min-width: 0;
    margin: 1px 48px 0 48px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.category-page__disclaimer-copy {
    position: relative;
    min-width: 0;
    max-height: 1.45em;
    overflow: hidden;
    flex: 1 1 auto;
    color: #666;
    font-size: 14px;
    line-height: 1.45;
    white-space: nowrap;
    text-overflow: clip;
}

.category-page__disclaimer-copy::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 100%;
    background: linear-gradient(90deg, rgb(255 255 255 / 0%), #fff 78%);
    pointer-events: none;
}

.category-page__disclaimer-copy strong {
    color: #555;
}

.category-page__disclaimer.is-expanded .category-page__disclaimer-copy {
    max-height: none;
    white-space: normal;
}

.category-page__disclaimer.is-expanded .category-page__disclaimer-copy::after {
    display: none;
}

.category-page__disclaimer-toggle {
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ef8300;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.45;
    white-space: nowrap;
}

.category-page__disclaimer-toggle:hover,
.category-page__disclaimer-toggle:focus-visible {
    color: #ca6f00;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.category-page__rule {
    height: 3px;
    margin: 10px 0 12px;
    background: #e7e7e7;
}

.category-page__layout {
    min-width: 0;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
}

.category-results,
.category-results__grid {
    min-width: 0;
}

.category-results__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 10px 10px;
}

.category-introduction {
    min-width: 0;
    max-height: 228px;
    padding: 2px 3px 0;
    overflow: hidden;
    grid-column: span 2;
    color: #4e4e4e;
}

.category-introduction::after {
    content: "";
    position: sticky;
    bottom: 0;
    width: 100%;
    height: 34px;
    margin-top: -34px;
    display: block;
    background: linear-gradient(180deg, rgb(255 255 255 / 0%), #fff 90%);
    pointer-events: none;
}

.category-introduction__title {
    margin: 0 0 5px;
    color: #4a4a4a;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}

.category-introduction__content {
    font-size: 14px;
    line-height: 1.55;
}

.category-introduction__content > * + * {
    margin-top: 1em;
}

.category-introduction__content a {
    color: #d97800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Website result cards ---------------------------------------------------- */

.directory-website-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    color: #4f4f4f;
}

.directory-website-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.04;
    overflow: hidden;
    background: #181818;
    border-radius: 5px;
}

.directory-website-card__image-link,
.directory-website-card__image,
.directory-website-card__placeholder {
    width: 100%;
    height: 100%;
    display: block;
}

.directory-website-card__image {
    object-fit: cover;
    object-position: top center;
    transition: transform 260ms ease, filter 260ms ease;
}

.directory-website-card__placeholder {
    display: grid;
    place-items: center;
    background:
        linear-gradient(145deg, rgb(255 255 255 / 8%), transparent 45%),
        linear-gradient(120deg, #111, #303030 55%, #151515);
    color: rgb(255 255 255 / 42%);
    font-size: clamp(52px, 8vw, 100px);
    font-weight: 700;
}

.directory-website-card__media::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 36%;
    background: linear-gradient(180deg, transparent, rgb(0 0 0 / 88%));
    pointer-events: none;
}

.directory-website-card__actions {
    position: absolute;
    z-index: 3;
    top: 50%;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-42%);
    transition: opacity 180ms ease, transform 180ms ease;
}

.directory-website-card:hover .directory-website-card__actions,
.directory-website-card:focus-within .directory-website-card__actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%);
}

.directory-website-card:hover .directory-website-card__image,
.directory-website-card:focus-within .directory-website-card__image {
    filter: brightness(.5);
    transform: scale(1.025);
}

.directory-website-card__action {
    min-height: 46px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 2px solid rgb(255 255 255 / 65%);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 35%);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.directory-website-card__action--review {
    background: #f8a047;
}

.directory-website-card__action--external {
    background: #2db564;
}

.directory-website-card__action:hover,
.directory-website-card__action:focus-visible {
    filter: brightness(.95);
}

.directory-website-card__action svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.directory-website-card__caption {
    position: absolute;
    z-index: 2;
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-width: 0;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    color: #fff;
}

.directory-website-card__rank {
    color: #efefef;
    font-size: 13px;
}

.directory-website-card__name {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    overflow: hidden;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.directory-website-card__favicon {
    flex: 0 0 19px;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background: #ef8b00;
    color: #fff;
    font-size: 10px;
}

.directory-website-card__favicon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.directory-website-card__excerpt {
    min-height: 2.8em;
    margin: 5px 4px 0;
    display: -webkit-box;
    overflow: hidden;
    color: #777;
    font-size: 12px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media (min-width: 992px) and (max-width: 1169px) {
    .category-page__surface {
        border-right-width: 2px;
        border-left-width: 2px;
        border-radius: 9px;
    }

    .category-page__layout {
        grid-template-columns: 268px minmax(0, 1fr);
        gap: 14px;
    }

    .category-results__grid {
        gap: 10px;
    }

    .directory-website-card__actions {
        right: 10px;
        left: 10px;
    }

    .directory-website-card__action {
        min-height: 42px;
        padding-inline: 10px;
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    body.tax-directory_category .site-header {
        height: 90px;
        min-height: 90px;
    }

    body.tax-directory_category .site-header__mobile-logo {
        top: -1px;
        width: 105px;
        height: 82px;
    }

    body.tax-directory_category .site-header__mobile-logo-image {
        width: 105px;
        height: 82px;
    }

    body.tax-directory_category .site-header__mobile-tagline {
        display: none;
    }

    .category-page {
        width: 100%;
        margin: 0;
    }

    .category-page__surface {
        padding: 10px 4px 24px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .category-page__title-row {
        grid-template-columns: 42px minmax(0, 1fr) 44px;
        gap: 9px;
    }

    .category-page__icon,
    .category-page__icon img,
    .category-page__icon svg {
        width: 42px;
        height: 42px;
    }

    .category-page__title {
        font-size: clamp(20px, 3.2vw, 25px);
    }

    .category-page__disclaimer {
        margin: -1px 48px 0 52px;
    }

    .category-page__rule {
        margin: 12px 0 14px;
    }

    .category-page__layout {
        display: block;
    }

    .directory-sidebar {
        display: none;
    }

    .category-results__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 11px 10px;
    }

    .category-introduction {
        max-height: 200px;
        padding: 0 0 4px;
        grid-column: 1 / -1;
        order: -1;
    }

    .category-introduction__title {
        font-size: 18px;
    }

    .category-introduction__content {
        font-size: 15px;
        line-height: 1.55;
    }

    .directory-website-card__excerpt {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .category-page__surface {
        padding-inline: 6px;
    }

    .category-page__title-row {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
    }

    .category-page__title {
        font-size: clamp(19px, 3.5vw, 24px);
    }

    .category-page__disclaimer-copy,
    .category-page__disclaimer-toggle {
        font-size: 13px;
    }

    .category-results__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .category-introduction {
        max-height: 224px;
    }

    .directory-website-card__action {
        min-height: 44px;
    }
}

@media (max-width: 560px) {
    body.tax-directory_category .site-header {
        height: 84px;
        min-height: 84px;
    }

    body.tax-directory_category .site-header__mobile-logo {
        width: 96px;
        height: 76px;
    }

    body.tax-directory_category .site-header__mobile-logo-image {
        width: 96px;
        height: 76px;
    }

    .category-page__surface {
        padding: 8px 8px 22px;
    }

    .category-page__title-row {
        grid-template-columns: 34px minmax(0, 1fr) 38px;
        gap: 6px;
    }

    .category-page__icon,
    .category-page__icon img,
    .category-page__icon svg {
        width: 34px;
        height: 34px;
    }

    .category-page__title {
        font-size: 18px;
    }

    .category-page__alert {
        width: 36px;
        height: 36px;
    }

    .category-page__disclaimer {
        margin: 4px 0 0 40px;
        align-items: flex-start;
        gap: 8px;
    }

    .category-page__disclaimer-copy {
        font-size: 12px;
    }

    .category-page__disclaimer-toggle {
        font-size: 12px;
    }

    .category-page__rule {
        margin: 10px 0 12px;
    }

    .category-results__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .category-introduction {
        max-height: none;
        grid-column: 1;
    }

    .category-introduction::after {
        display: none;
    }

    .category-introduction__title {
        font-size: 17px;
    }

    .category-introduction__content {
        font-size: 14px;
    }

    .directory-website-card__media {
        aspect-ratio: 1.15 / 1;
    }

    .directory-website-card__actions {
        right: 18px;
        left: 18px;
    }

    .directory-website-card__excerpt {
        min-height: auto;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .directory-website-card__actions,
    .directory-website-card__image {
        transition: none;
    }
}

/* detail-page.css */
/* ========================================================================== 
   Version 1.0 website detail / review page
   ========================================================================== */

.detail-page {
    width: min(100%, 1070px);
    margin: 0 auto var(--space-8);
}

.detail-page__surface {
    min-width: 0;
    padding: 12px 14px 18px;
    overflow: hidden;
    background: #fff;
    border: 3px solid #c8c8c8;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgb(0 0 0 / 16%);
}

.site-main--website-detail .breadcrumb {
    margin: 0 0 10px;
}

.detail-review-layout {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(250px, 29%) minmax(360px, 1fr) minmax(240px, 27%);
    align-items: start;
    gap: 12px;
}

.detail-review-media,
.detail-review-copy,
.detail-directory-promo {
    min-width: 0;
}

/* Screenshot gallery ----------------------------------------------------- */

.website-gallery {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 3px solid #d6d6d6;
    border-radius: 5px;
    background: #efefef;
}

.website-gallery__browserbar {
    height: 35px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border-bottom: 1px solid #d4d4d4;
    color: #323232;
    font-size: 15px;
}

.website-gallery__mascot {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #ececec;
    color: #8d8d8d;
    font-size: 8px;
    font-weight: 700;
}

.website-gallery__browser-favicon {
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 50%;
    background: #ef8b00;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.website-gallery__browser-favicon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.website-gallery__domain {
    min-width: 0;
    overflow: hidden;
    flex: 1 1 auto;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.website-gallery__lock {
    flex: 0 0 auto;
    color: #c9c9c9;
    font-size: 12px;
}

.website-gallery__viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #191919;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.website-gallery__viewport::-webkit-scrollbar {
    display: none;
}

.website-gallery__track {
    display: flex;
    align-items: stretch;
}

.website-gallery__slide {
    min-width: 100%;
    aspect-ratio: .83;
    flex: 0 0 100%;
    overflow: hidden;
    background: #222;
}

.website-gallery__slide--placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #222, #4b4b4b);
    color: rgb(255 255 255 / 60%);
    font-size: 16px;
}

.website-gallery__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
}

.website-gallery__arrow {
    position: absolute;
    z-index: 6;
    top: calc(50% - 10px);
    width: 40px;
    height: 40px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgb(36 36 36 / 65%);
    color: #fff;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.website-gallery__arrow:hover,
.website-gallery__arrow:focus-visible {
    background: var(--color-orange);
    transform: scale(1.04);
}

.website-gallery__arrow--previous {
    left: 6px;
}

.website-gallery__arrow--next {
    right: 6px;
    background: var(--color-orange);
}

.website-gallery__visit {
    position: absolute;
    z-index: 5;
    top: 50%;
    right: 17px;
    left: 17px;
    min-height: 54px;
    padding: 8px 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 3px solid #26763f;
    border-radius: 13px;
    background: #2eb964;
    color: #fff;
    box-shadow: 0 2px 4px rgb(0 0 0 / 28%);
    font-size: clamp(15px, 1.8vw, 20px);
    font-weight: 700;
    line-height: 1.1;
    transform: translateY(-24%);
}

.website-gallery__visit:hover,
.website-gallery__visit:focus-visible {
    background: #25a858;
}

.website-gallery__visit > span:nth-child(2) {
    min-width: 0;
    overflow: hidden;
    flex: 1 1 auto;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.website-gallery__visit-favicon {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 50%;
    background: #fff;
}

.website-gallery__visit-favicon:empty {
    display: none;
}

.website-gallery__visit-favicon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.website-gallery__visit svg {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.website-gallery__counter {
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6f6f6f;
    font-size: 14px;
    line-height: 1;
}

.detail-review-media__disclosure {
    margin: 8px 4px 10px;
    color: #444;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
}

.detail-category-link {
    min-height: 50px;
    padding: 7px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #717171;
    border-radius: 9px;
    background: #fff;
    color: #666;
}

.detail-category-link:hover,
.detail-category-link:focus-visible {
    border-color: var(--color-orange);
    color: #444;
}

.detail-category-link__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--color-orange);
}

.detail-category-link__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-category-link__copy {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0 5px;
    font-size: 14px;
    line-height: 1.2;
}

.detail-category-link__copy strong {
    color: #5d5d5d;
}

.detail-review-utilities {
    min-height: 34px;
    padding: 5px 2px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.detail-review-utilities__report,
.detail-review-utilities__disclaimer {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: #6e6e6e;
    font-size: 13px;
    line-height: 1.2;
}

.detail-review-utilities__report {
    font-weight: 600;
}

.detail-review-utilities__report svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.detail-review-utilities__disclaimer {
    padding: 0;
    cursor: pointer;
}

.detail-review-utilities__report:hover,
.detail-review-utilities__report:focus-visible,
.detail-review-utilities__disclaimer:hover,
.detail-review-utilities__disclaimer:focus-visible {
    color: var(--color-orange);
}

.detail-review-disclaimer {
    margin: 4px 2px 0;
    padding: 9px 10px;
    border-radius: 5px;
    background: #f4f4f4;
    color: #686868;
    font-size: 11px;
    line-height: 1.35;
}

/* Editorial review ------------------------------------------------------- */

.detail-review-jump {
    min-height: 34px;
    padding: 3px 8px;
    display: flex;
    align-items: center;
    gap: 7px;
    overflow: hidden;
    border-radius: 11px;
    background: #f0f1f4;
    color: #989ba4;
    font-size: 16px;
    line-height: 1.1;
}

.detail-review-jump > span:nth-child(2) {
    min-width: 0;
    overflow: hidden;
    flex: 1 1 auto;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-review-jump__favicons {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.detail-review-jump__favicons > span {
    width: 28px;
    height: 28px;
    margin-left: -5px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #ef8b00;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
}

.detail-review-jump__favicons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-review-copy__header {
    margin: 10px 0 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.detail-review-copy__rank {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 3px solid #f2f2f2;
    border-radius: 50%;
    background: var(--color-orange);
    color: #fff;
    font-size: 23px;
    line-height: 1;
}

.detail-review-copy__title {
    margin: 0;
    color: #4b4b4b;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 600;
    line-height: 1.08;
}

.detail-review-copy__url {
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #20a759;
    font-size: 13px;
}

.detail-review-copy__url img {
    width: 17px;
    height: 17px;
    object-fit: contain;
}

.detail-review-nav {
    margin: 0 0 7px 62px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.detail-review-nav a {
    padding: 3px 8px;
    border-radius: 999px;
    background: #f3f3f3;
    color: #777;
    font-size: 11px;
    line-height: 1.3;
}

.detail-review-nav a:hover,
.detail-review-nav a:focus-visible {
    background: #e9e9e9;
    color: var(--color-orange);
}

.detail-review-copy__content {
    position: relative;
    max-height: 285px;
    padding: 0 13px 12px 0;
    overflow: auto;
    color: #4f4f4f;
    font-size: 14px;
    line-height: 1.56;
    scrollbar-color: #c9c9c9 transparent;
    scrollbar-width: thin;
}

.detail-review-copy__content::after {
    content: "";
    position: sticky;
    right: 0;
    bottom: -12px;
    left: 0;
    height: 35px;
    margin-top: -35px;
    display: block;
    background: linear-gradient(180deg, rgb(255 255 255 / 0%), #fff 85%);
    pointer-events: none;
}

.detail-review-copy__content > * + * {
    margin-top: .75em;
}

.detail-review-facts {
    min-width: 0;
    margin-top: 9px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 10px;
}

.detail-review-facts__list {
    min-width: 0;
}

.detail-review-facts__list + .detail-review-facts__list {
    margin-top: 5px;
}

.detail-review-facts__list ul {
    display: grid;
    gap: 3px;
}

.detail-review-facts__list li {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: #505050;
    font-size: 13px;
    line-height: 1.28;
}

.detail-review-facts__list li > span {
    width: 14px;
    height: 14px;
    margin-top: 1px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #25b966;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.detail-review-facts__list--drawbacks li > span {
    background: #e26666;
}

.detail-rating {
    min-width: 135px;
    padding-left: 12px;
    border-left: 1px solid #eee;
    text-align: center;
}

.detail-rating__thumbs {
    display: flex;
    justify-content: center;
    gap: 1px;
    font-size: 24px;
    line-height: 1;
}

.detail-rating__thumbs span {
    filter: grayscale(1);
    opacity: .28;
}

.detail-rating__thumbs span.is-active {
    filter: none;
    opacity: 1;
}

.detail-rating p {
    margin-top: 4px;
    color: #7a7a7a;
    font-size: 12px;
}

/* Directory promotion ---------------------------------------------------- */

.detail-directory-promo__media {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    border: 4px solid #e3e3e3;
    border-radius: 5px;
    background: #f0f0f0;
}

.detail-directory-promo__image,
.detail-directory-promo__placeholder {
    width: 100%;
    min-height: 470px;
    display: block;
}

.detail-directory-promo__image {
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.detail-directory-promo__placeholder {
    display: grid;
    place-items: center;
    background:
        linear-gradient(rgb(255 255 255 / 38%), rgb(255 255 255 / 38%)),
        repeating-linear-gradient(0deg, #d8d8d8 0 22px, #efefef 22px 46px);
    color: #949494;
    font-weight: 700;
}

.detail-directory-promo__button {
    position: absolute;
    z-index: 2;
    top: 48%;
    left: 50%;
    min-width: 165px;
    min-height: 54px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 3px solid #7f6a55;
    border-radius: 5px;
    background: #ff9f42;
    color: #fff;
    font-size: 18px;
    transform: translate(-50%, -50%);
}

.detail-directory-promo__button:hover,
.detail-directory-promo__button:focus-visible {
    background: #ef8b28;
}

/* Related websites ------------------------------------------------------- */

.detail-related {
    margin-top: 22px;
}

.detail-related__header {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.detail-related__title-wrap {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
}

.detail-related__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--color-orange);
}

.detail-related__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-related__title {
    min-width: 0;
    margin: 0;
    color: #6d6d6d;
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

.detail-related__all {
    min-height: 40px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 0 0 auto;
    border: 2px solid #777;
    border-radius: 8px;
    color: #6a6a6a;
    font-size: 14px;
}

.detail-related__all:hover,
.detail-related__all:focus-visible {
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.detail-related__grid {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.detail-related-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 5px;
    background: #111;
}

.detail-related-card__link,
.detail-related-card__media {
    position: relative;
    width: 100%;
    display: block;
}

.detail-related-card__media {
    aspect-ratio: 1.15;
    overflow: hidden;
}

.detail-related-card__image,
.detail-related-card__placeholder,
.detail-related-card__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.detail-related-card__image {
    object-fit: cover;
    object-position: top center;
    transition: transform 240ms ease;
}

.detail-related-card__placeholder {
    background: linear-gradient(135deg, #1a1a1a, #5d5d5d);
}

.detail-related-card__shade {
    background: linear-gradient(180deg, transparent 45%, rgb(0 0 0 / 90%));
}

.detail-related-card__caption {
    position: absolute;
    z-index: 2;
    right: 9px;
    bottom: 8px;
    left: 9px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.detail-related-card__rank {
    flex: 0 0 auto;
    color: #bdbdbd;
    font-size: 14px;
}

.detail-related-card__title {
    min-width: 0;
    overflow: hidden;
    flex: 1 1 auto;
    font-size: 16px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-related-card__favicon {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 50%;
    background: #fff;
    color: #444;
    font-size: 10px;
    font-weight: 700;
}

.detail-related-card__favicon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-related-card__link:hover .detail-related-card__image,
.detail-related-card__link:focus-visible .detail-related-card__image {
    transform: scale(1.035);
}

/* Breakpoints ------------------------------------------------------------ */

@media (min-width: 992px) and (max-width: 1100px) {
    .detail-page {
        width: 100%;
    }

    .detail-page__surface {
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .detail-review-layout {
        grid-template-columns: minmax(260px, 31%) minmax(330px, 1fr) minmax(235px, 29%);
        gap: 10px;
    }

    .detail-review-copy__title {
        font-size: 30px;
    }

    .detail-review-copy__content {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .detail-page {
        width: 100%;
        margin-bottom: 0;
    }

    .detail-page__surface {
        padding: 10px 8px 18px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .site-main--website-detail .breadcrumb {
        margin: 2px -2px 12px;
        overflow: hidden;
        font-size: 15px;
        white-space: nowrap;
    }

    .site-main--website-detail .breadcrumb__list {
        flex-wrap: nowrap;
        overflow: hidden;
    }

    .site-main--website-detail .breadcrumb__item,
    .site-main--website-detail .breadcrumb__link,
    .site-main--website-detail .breadcrumb__current {
        flex: 0 0 auto;
    }

    .site-main--website-detail .breadcrumb__item:last-child {
        min-width: 80px;
        overflow: hidden;
    }

    .site-main--website-detail .breadcrumb__item:last-child .breadcrumb__current {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .detail-review-layout {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .detail-review-media,
    .detail-review-copy,
    .detail-directory-promo {
        width: 100%;
    }

    .website-gallery {
        max-width: 620px;
        margin: 0 auto;
        border-radius: 6px;
    }

    .website-gallery__viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
    }

    .website-gallery__track {
        gap: 10px;
        padding-right: 10%;
    }

    .website-gallery__slide {
        min-width: 86%;
        flex-basis: 86%;
        scroll-snap-align: start;
    }

    .website-gallery__arrow {
        display: none;
    }

    .website-gallery__visit {
        right: 4%;
        left: 4%;
        min-height: 64px;
        font-size: 22px;
    }

    .detail-review-media__disclosure {
        max-width: 680px;
        margin: 14px auto 18px;
        padding: 0 8px;
        font-size: 15px;
        line-height: 1.35;
    }

    .detail-category-link {
        max-width: 410px;
        min-height: 76px;
        margin: 0 auto;
        padding: 10px 18px;
        border-color: #cfcfcf;
        border-radius: 999px;
        box-shadow: 0 2px 0 #cfcfcf;
    }

    .detail-category-link__copy {
        font-size: 17px;
    }

    .detail-review-copy {
        padding: 0 0 2px;
    }

    .detail-review-jump,
    .detail-review-nav,
    .detail-review-copy__url {
        display: none;
    }

    .detail-review-copy__header {
        justify-content: center;
        align-items: center;
        margin: 0 0 18px;
    }

    .detail-review-copy__rank {
        width: 66px;
        height: 66px;
        font-size: 29px;
    }

    .detail-review-copy__title {
        font-size: clamp(30px, 7vw, 42px);
    }

    .detail-review-copy__content {
        max-height: 520px;
        padding: 0 13px 18px 0;
        overflow-y: auto;
        font-size: clamp(18px, 4.2vw, 25px);
        line-height: 1.65;
    }

    .detail-review-facts {
        margin-top: 24px;
        display: block;
    }

    .detail-review-facts__list {
        padding: 0 5px;
    }

    .detail-review-facts__list li {
        gap: 9px;
        font-size: clamp(17px, 3.9vw, 22px);
        line-height: 1.45;
    }

    .detail-review-facts__list li > span {
        width: 18px;
        height: 18px;
        margin-top: 5px;
        font-size: 14px;
    }

    .detail-rating {
        margin: 22px 0 0;
        padding: 0;
        border-left: 0;
    }

    .detail-rating__thumbs {
        font-size: clamp(32px, 8vw, 48px);
    }

    .detail-rating p {
        margin-top: 8px;
        font-size: clamp(17px, 4vw, 23px);
    }

    .detail-review-utilities {
        margin-top: 18px;
        min-height: 48px;
        padding: 0 5px;
    }

    .detail-review-utilities__report,
    .detail-review-utilities__disclaimer {
        font-size: clamp(16px, 4vw, 21px);
    }

    .detail-review-utilities__report svg {
        width: 30px;
        height: 30px;
    }

    .detail-review-disclaimer {
        padding: 12px;
        font-size: 14px;
    }

    .detail-directory-promo__media {
        max-width: 710px;
        margin: 0 auto;
    }

    .detail-directory-promo__image,
    .detail-directory-promo__placeholder {
        min-height: 420px;
        max-height: 620px;
    }

    .detail-directory-promo__button {
        min-width: 230px;
        min-height: 74px;
        font-size: 25px;
    }

    .detail-related {
        margin-top: 38px;
    }

    .detail-related__header {
        align-items: flex-start;
    }

    .detail-related__title {
        font-size: clamp(22px, 5.7vw, 34px);
        line-height: 1.45;
    }

    .detail-related__all {
        width: 58px;
        height: 58px;
        min-height: 58px;
        padding: 0;
        border-radius: 13px;
        font-size: 30px;
    }

    .detail-related__all span:first-child {
        display: none;
    }

    .detail-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .detail-related-card__media {
        aspect-ratio: .92;
    }
}

@media (max-width: 600px) {
    .detail-page__surface {
        padding-right: 5px;
        padding-left: 5px;
    }

    .site-main--website-detail .breadcrumb {
        margin-bottom: 12px;
        font-size: 13px;
    }

    .site-main--website-detail .breadcrumb__icon,
    .site-main--website-detail .breadcrumb__icon img,
    .site-main--website-detail .breadcrumb__home-fallback {
        width: 29px;
        height: 29px;
    }

    .website-gallery {
        width: calc(100% - 44px);
        margin-left: 52px;
        overflow: visible;
        border-width: 3px;
    }

    .website-gallery__viewport {
        overflow-x: auto;
    }

    .website-gallery__browserbar {
        font-size: 15px;
    }

    .website-gallery__slide {
        min-width: 88%;
        flex-basis: 88%;
        aspect-ratio: .82;
    }

    .website-gallery__visit {
        min-height: 60px;
        border-radius: 12px;
        font-size: 19px;
    }

    .detail-review-media__disclosure {
        margin-top: 16px;
        font-size: 15px;
    }

    .detail-category-link {
        max-width: calc(100% - 80px);
    }

    .detail-category-link__copy {
        display: grid;
        font-size: 15px;
    }

    .detail-review-copy__header {
        gap: 12px;
    }

    .detail-review-copy__rank {
        width: 62px;
        height: 62px;
        font-size: 27px;
    }

    .detail-review-copy__title {
        font-size: 29px;
    }

    .detail-review-copy__content {
        max-height: 520px;
        font-size: 19px;
        line-height: 1.65;
    }

    .detail-review-facts__list li {
        font-size: 17px;
    }

    .detail-review-utilities {
        padding-right: 6px;
        padding-left: 6px;
    }

    .detail-review-utilities__report,
    .detail-review-utilities__disclaimer {
        font-size: 16px;
    }

    .detail-review-utilities__report span {
        max-width: 190px;
    }

    .detail-directory-promo__image,
    .detail-directory-promo__placeholder {
        min-height: 390px;
    }

    .detail-related__icon {
        width: 44px;
        height: 44px;
    }

    .detail-related__title {
        font-size: 22px;
    }

    .detail-related__all {
        width: 52px;
        height: 52px;
        min-height: 52px;
    }

    .detail-related-card__title {
        font-size: 14px;
    }

    .detail-related-card__rank {
        font-size: 12px;
    }
}

@media (max-width: 390px) {
    .website-gallery {
        width: calc(100% - 54px);
        margin-left: 54px;
    }

    .detail-review-copy__rank {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .detail-review-copy__title {
        font-size: 27px;
    }

    .detail-review-copy__content {
        font-size: 18px;
    }

    .detail-review-utilities__report span {
        max-width: 170px;
    }
}

.detail-review-mobile-meta {
    display: none;
}

@media (max-width: 991px) {
    .detail-category-link--desktop,
    .detail-review-utilities--desktop,
    .detail-review-media > .detail-review-disclaimer {
        display: none;
    }

    .detail-review-mobile-meta {
        margin-top: 22px;
        display: block;
    }

    .detail-review-mobile-meta .detail-category-link {
        display: flex;
    }

    .detail-review-mobile-meta .detail-review-utilities {
        display: flex;
    }
}

/* Editorial preview ------------------------------------------------------ */

.detail-editorial-preview {
    margin: 0 0 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px 16px;
    border: 2px solid #dba617;
    border-radius: 7px;
    background: #fcf9e8;
    color: #3c434a;
    font-size: 14px;
}

.detail-editorial-preview strong {
    color: #805b00;
}

.detail-editorial-preview span {
    min-width: 0;
    flex: 1 1 auto;
}

.detail-editorial-preview a {
    flex: 0 0 auto;
    font-weight: 700;
}

@media (max-width: 600px) {
    .detail-editorial-preview {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }
}

/* components.css */
.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
    z-index: calc(var(--z-modal) + 10);
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    clip-path: none;
    background: var(--color-surface);
    color: var(--color-text);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-floating);
    white-space: normal;
}

.content-panel {
    padding: clamp(28px, 5vw, 64px);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-align: center;
}

.content-panel__eyebrow {
    color: var(--color-orange);
    font-size: 15px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.content-panel__title {
    margin-top: var(--space-2);
    font-size: clamp(28px, 5vw, 48px);
    line-height: var(--line-height-tight);
}

.content-panel__content {
    max-width: 58ch;
    margin: var(--space-4) auto 0;
    color: var(--color-text-muted);
}

.content-panel__actions {
    margin-top: var(--space-6);
    display: flex;
    justify-content: center;
}

.ui-button {
    min-height: 42px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: var(--radius-lg);
    background: var(--color-orange);
    color: #fff;
    font-weight: var(--font-weight-medium);
    transition: filter var(--transition-fast), transform var(--transition-fast);
}

.ui-button:hover,
.ui-button:focus-visible {
    filter: brightness(0.94);
    transform: translateY(-1px);
}

.breadcrumb {
    margin-bottom: var(--space-5);
    color: var(--color-text-muted);
    font-size: 14px;
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.breadcrumb__item,
.breadcrumb__link,
.breadcrumb__current {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb__item + .breadcrumb__item::before {
    content: "›";
    color: #9b9b9b;
    font-size: 20px;
    line-height: 1;
}

.breadcrumb__link {
    color: var(--color-orange);
}

.breadcrumb__current {
    color: #929292;
}

.breadcrumb__marker {
    color: var(--color-orange);
    font-size: 17px;
    line-height: 1;
}

.breadcrumb__icon {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    display: inline-grid;
    place-items: center;
}

.breadcrumb__icon:empty {
    display: none;
}

.breadcrumb__icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.breadcrumb__home-fallback {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border: 2px solid var(--color-orange);
    border-radius: 50%;
    background: #fff;
    color: var(--color-orange);
    font-size: 8px;
    font-weight: 700;
}

.breadcrumb__link:hover,
.breadcrumb__link:focus-visible {
    color: #c66d00;
}

.site-main--directory-category .breadcrumb {
    margin: 0 0 10px;
    font-size: 14px;
}

@media (max-width: 560px) {
    .site-main--directory-category .breadcrumb {
        margin-bottom: 8px;
        overflow: hidden;
        font-size: 12px;
        white-space: nowrap;
    }

    .site-main--directory-category .breadcrumb__list {
        flex-wrap: nowrap;
        overflow: hidden;
    }

    .site-main--directory-category .breadcrumb__current,
    .site-main--directory-category .breadcrumb__link {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .site-main--directory-category .breadcrumb__icon,
    .site-main--directory-category .breadcrumb__icon img,
    .site-main--directory-category .breadcrumb__home-fallback {
        width: 23px;
        height: 23px;
    }
}

.navigation.pagination {
    margin-top: var(--space-7);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
}

.page-numbers {
    min-width: 38px;
    min-height: 38px;
    padding: 7px 11px;
    display: inline-grid;
    place-items: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.page-numbers.current {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color: #fff;
}

/* accessibility.css */
/* WCAG-oriented refinements which preserve the supplied Version 1.0 design. */
[id] {
    scroll-margin-top: 24px;
}

button,
input,
select,
textarea,
a {
    -webkit-tap-highlight-color: rgb(239 139 0 / 22%);
}

button:disabled,
[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: .58;
}

[aria-busy="true"] {
    cursor: progress;
}

.content-article__body a:not(.ui-button) {
    text-decoration-thickness: .1em;
}

@media (prefers-contrast: more) {
    :root {
        --color-text: #111;
        --color-text-muted: #444;
        --color-border: #aaa;
        --color-border-strong: #777;
        --color-focus: #005fcc;
    }

    .ui-button,
    .site-actions__item,
    .directory-age-gate__confirm {
        border: 2px solid currentColor;
    }
}

@media (forced-colors: active) {
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }

    .ui-button,
    .site-actions__item,
    .directory-age-gate__confirm,
    .directory-age-gate__exit,
    .directory-website-card__action {
        border: 2px solid ButtonText;
    }

    .directory-age-gate__backdrop {
        background: Canvas;
    }
}

/* compliance.css */
/* Optional 18+ confirmation. Hidden entirely until enabled in Directory Core. */
.directory-age-gate[hidden] {
    display: none !important;
}

.directory-age-gate {
    position: fixed;
    z-index: calc(var(--z-modal) + 100);
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
}

.directory-age-gate__backdrop {
    position: absolute;
    inset: 0;
    background: rgb(20 20 20 / 92%);
    backdrop-filter: blur(8px);
}

.directory-age-gate__panel {
    position: relative;
    width: min(100%, 560px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: clamp(28px, 6vw, 52px);
    border: 3px solid rgb(255 255 255 / 72%);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 28px 90px rgb(0 0 0 / 52%);
    color: #303030;
    text-align: center;
}

.directory-age-gate__mark {
    width: 84px;
    height: 84px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border: 5px solid var(--color-orange);
    border-radius: 50%;
    color: var(--color-orange);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.directory-age-gate__title {
    font-size: clamp(30px, 6vw, 46px);
    line-height: 1.05;
}

.directory-age-gate__description {
    max-width: 48ch;
    margin: 18px auto 0;
    color: #555;
}

.directory-age-gate__storage-note,
.directory-age-gate__noscript {
    margin-top: 14px;
    color: #767676;
    font-size: 13px;
}

.directory-age-gate__actions {
    margin-top: 26px;
    display: grid;
    gap: 12px;
}

.directory-age-gate__confirm,
.directory-age-gate__exit {
    min-height: 50px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
}

.directory-age-gate__confirm {
    background: var(--color-orange);
    color: #fff;
}

.directory-age-gate__exit {
    border: 2px solid #bcbcbc;
    background: #f4f4f4;
    color: #444;
}

body.directory-age-gate-open {
    overflow: hidden;
}

@media (max-width: 480px) {
    .directory-age-gate {
        padding: 10px;
    }

    .directory-age-gate__panel {
        max-height: calc(100vh - 20px);
        padding: 28px 20px;
        border-radius: 10px;
    }
}

/* sidebar.css */
/* ========================================================================== 
   Desktop category navigation sidebar
   ========================================================================== */

.directory-sidebar {
    min-width: 0;
    background: #fff;
}

.directory-sidebar__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.directory-sidebar__item {
    position: relative;
    min-width: 0;
    border-bottom: 1px solid #e4e4e4;
}

.directory-sidebar__link {
    min-width: 0;
    min-height: 56px;
    padding: 6px 5px 6px 2px;
    display: grid;
    grid-template-columns: 10px 38px minmax(0, 1fr) 12px;
    align-items: center;
    gap: 6px;
    color: #4e4e4e;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.directory-sidebar__link:hover,
.directory-sidebar__link:focus-visible,
.directory-sidebar__item.is-current .directory-sidebar__link {
    background: #fafafa;
    color: #333;
}

.directory-sidebar__status {
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.directory-sidebar__item:nth-child(3n + 1) .directory-sidebar__status {
    color: #f19a00;
}

.directory-sidebar__item:nth-child(3n + 2) .directory-sidebar__status {
    color: #42b8cf;
}

.directory-sidebar__item:nth-child(3n) .directory-sidebar__status {
    color: #58bd68;
}

.directory-sidebar__item.is-current .directory-sidebar__status {
    color: #20a9c6;
}

.directory-sidebar__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
}

.directory-sidebar__icon img,
.directory-sidebar__icon svg {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.directory-sidebar__copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.directory-sidebar__name {
    overflow: hidden;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.directory-sidebar__meta {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    overflow: hidden;
    color: #a0a0a0;
    font-size: 10px;
    line-height: 1;
}

.directory-sidebar__favicons {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 2px;
    overflow: hidden;
}

.directory-sidebar__favicon {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background: #555;
    color: #fff;
    font-size: 7px;
    font-weight: 700;
}

.directory-sidebar__favicon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.directory-sidebar__count {
    flex: 0 0 auto;
    white-space: nowrap;
}

.directory-sidebar__chevron {
    color: #969696;
    font-size: 19px;
    line-height: 1;
    text-align: right;
}

/* footer.css */
/* ========================================================================== 
   Version 1.0 footer scene, editorial footer and persistent actions
   ========================================================================== */

.footer-scene {
    position: relative;
    width: 100%;
    margin-top: clamp(28px, 5vw, 72px);
    overflow: hidden;
    background: #7b7b7b;
}

.footer-scene__viewport {
    width: 100%;
    overflow: hidden;
}

.footer-scene__image {
    width: 100%;
    min-width: 1180px;
    max-width: none;
    display: block;
    margin-left: 50%;
    transform: translateX(-50%);
}

.site-footer {
    position: relative;
    z-index: 2;
    width: 100%;
    flex: 0 0 auto;
}

.site-footer__editorial {
    background: #147fc5;
    color: #fff;
}

.site-footer__editorial-inner {
    padding-top: clamp(42px, 5vw, 82px);
    padding-bottom: clamp(64px, 7vw, 108px);
}

.site-footer__editorial-copy {
    max-width: 1050px;
    margin-inline: auto;
    color: #fff;
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.8;
}

.site-footer__editorial-copy > * + * {
    margin-top: 1.65em;
}

.site-footer__editorial-copy a {
    color: #ffe000;
    font-weight: 700;
    text-decoration-thickness: 2px;
}

.site-footer__main {
    position: relative;
    background: #ff9700;
    color: #111;
}

.site-footer__main-inner {
    min-height: 240px;
    padding-top: 76px;
    padding-bottom: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

.site-footer__mascot {
    position: absolute;
    z-index: 4;
    top: -56px;
    left: 50%;
    width: 98px;
    height: 86px;
    overflow: hidden;
    transform: translateX(-50%);
    pointer-events: none;
}

.site-footer__mascot img {
    position: absolute;
    top: -7px;
    left: -43px;
    width: 182px;
    max-width: none;
}

.site-footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
}

.site-footer__social-link {
    width: 43px;
    height: 43px;
    padding: 0;
    display: inline-grid;
    place-items: center;
    overflow: hidden;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #6b6b6b;
    box-shadow: 0 1px 0 rgb(0 0 0 / 12%);
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
    color: #ef8b00;
    transform: translateY(-3px);
    box-shadow: 0 7px 16px rgb(0 0 0 / 18%);
}

.site-footer__social-link svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer__mini-avatar {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    background: #fff;
}

.site-footer__mini-avatar img {
    position: absolute;
    top: -2px;
    left: -20px;
    width: 83px;
    max-width: none;
}

.site-footer__social-link--blog span {
    color: #333;
    font-size: 8px;
    font-weight: 700;
    line-height: .95;
    text-align: center;
}

.site-footer__navigation {
    width: 100%;
}

.site-footer__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 38px;
    list-style: none;
}

.site-footer__menu + .site-footer__menu {
    margin-top: 12px;
}

.site-footer__menu li {
    margin: 0;
}

.site-footer__menu a {
    color: #111;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity var(--transition-fast);
}

.site-footer__menu a:hover,
.site-footer__menu a:focus-visible {
    opacity: .58;
}

.site-footer__jobs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #111;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;
    text-decoration: none;
    text-transform: uppercase;
}

.site-footer__jobs:hover,
.site-footer__jobs:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-footer__jobs-face {
    font-size: 18px;
    line-height: 1;
}

.site-footer__jobs-status {
    width: 12px;
    height: 12px;
    display: inline-block;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #1ecf40;
    box-shadow: 0 0 0 2px rgb(255 255 255 / 45%);
}

.site-footer__copyright {
    padding: 22px 0;
    background: #f08a00;
    color: #111;
    font-size: 12px;
    text-align: center;
}

.site-actions {
    position: fixed;
    z-index: var(--z-sticky);
    top: 50%;
    right: 0;
    display: grid;
    gap: 4px;
    transform: translateY(-50%);
}

.site-actions__item {
    min-width: 45px;
    min-height: 46px;
    padding: 10px 11px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 45%);
    border-right: 0;
    border-radius: 8px 0 0 8px;
    color: #fff;
    box-shadow: 0 4px 15px rgb(0 0 0 / 22%);
    text-decoration: none;
    transform: translateX(calc(100% - 45px));
    transition: transform var(--transition-medium), filter var(--transition-fast);
}

.site-actions__item--feedback {
    background: #ef8b00;
}

.site-actions__item--report {
    background: #333b46;
}

.site-actions__item:hover,
.site-actions__item:focus-visible {
    filter: brightness(1.04);
    transform: translateX(0);
}

.site-actions__item svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-actions__item span {
    padding-right: 4px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

html.directory-appearance-soft .site-footer__editorial {
    background: #126fae;
}

html.directory-appearance-soft .footer-scene__image {
    filter: saturate(.86) brightness(.94);
}

@media (max-width: 991px) {
    body {
        padding-bottom: 58px;
    }

    .footer-scene {
        margin-top: 34px;
    }

    .footer-scene__viewport {
        height: clamp(230px, 47vw, 380px);
    }

    .footer-scene__image {
        width: auto;
        min-width: 0;
        height: 100%;
        margin-left: 50%;
    }

    .site-footer__editorial-inner {
        padding-top: 42px;
        padding-bottom: 82px;
    }

    .site-footer__editorial-copy {
        font-size: 15px;
        line-height: 1.7;
    }

    .site-footer__main-inner {
        padding-top: 70px;
    }

    .site-footer__menu {
        gap: 12px 24px;
    }

    .site-actions {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1px;
        transform: none;
    }

    .site-actions__item {
        min-width: 0;
        min-height: 58px;
        padding: 10px 14px;
        justify-content: center;
        border: 0;
        border-radius: 0;
        transform: none;
    }

    .site-actions__item span {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .footer-scene__viewport {
        height: 225px;
    }

    .footer-scene__image {
        margin-left: 49%;
    }

    .site-footer__editorial-inner {
        padding-top: 34px;
        padding-bottom: 72px;
    }

    .site-footer__editorial-copy {
        font-size: 14px;
        line-height: 1.65;
    }

    .site-footer__editorial-copy > * + * {
        margin-top: 1.35em;
    }

    .site-footer__main-inner {
        padding-top: 68px;
        padding-bottom: 28px;
        gap: 23px;
    }

    .site-footer__mascot {
        top: -50px;
        width: 90px;
        height: 78px;
    }

    .site-footer__mascot img {
        left: -39px;
        width: 168px;
    }

    .site-footer__social {
        gap: 7px;
    }

    .site-footer__social-link {
        width: 39px;
        height: 39px;
    }

    .site-footer__menu {
        gap: 13px 18px;
    }

    .site-footer__menu a {
        font-size: 11px;
    }

    .site-footer__jobs {
        max-width: 310px;
        font-size: 11px;
        text-align: center;
    }

    .site-footer__jobs-face {
        display: none;
    }

    .site-footer__copyright {
        padding: 18px 0;
        font-size: 11px;
    }

    .site-actions__item {
        min-height: 54px;
    }

    .site-actions__item svg {
        width: 20px;
        height: 20px;
    }

    .site-actions__item span {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-actions__item,
    .site-footer__social-link {
        transition: none;
    }
}

/* responsive.css */
/* ========================================================================== 
   Header breakpoint contract
   992 px = desktop reference, 991 px = compact responsive reference
   ========================================================================== */

@media (min-width: 992px) and (max-width: 1169px) {
    .site-header__promo {
        left: 48%;
        width: 360px;
        transform: translateX(-35%);
    }

    .site-header__character {
        width: 250px;
    }
}

@media (max-width: 991px) {
    .topbar,
    .site-header__character,
    .site-header__desktop-stack,
    .site-header__brand,
    .site-header__promo,
    .site-header__appearance-toggle,
    .header-search--desktop {
        display: none;
    }

    .site-header {
        width: 100%;
        height: 144px;
        min-height: 144px;
        padding: 0;
        overflow: visible;
        background: #7a7a7a;
    }

    .site-header__inner {
        position: relative;
        width: 100%;
        height: 100%;
        margin: 0 auto;
        overflow: visible;
    }

    .site-header__mobile-logo {
        position: absolute;
        z-index: 7;
        top: 0;
        left: 50%;
        width: 120px;
        height: 85px;
        display: block;
        overflow: hidden;
        line-height: 0;
        transform: translateX(-50%);
    }

    .site-header__mobile-logo-image {
        width: 120px;
        height: 85px;
        object-fit: contain;
    }

    .site-header__menu-toggle {
        position: absolute;
        z-index: 8;
        top: 18px;
        left: 16px;
        width: 48px;
        height: 48px;
        padding: 0;
        display: grid;
        place-items: center;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .site-header__menu-toggle-lines {
        width: 34px;
        display: grid;
        gap: 7px;
    }

    .site-header__menu-toggle-lines span {
        width: 100%;
        height: 4px;
        display: block;
        border-radius: 4px;
        background: #fff;
    }

    .site-header__mobile-tagline {
        position: absolute;
        right: 70px;
        bottom: 15px;
        left: 70px;
        display: block;
        overflow: hidden;
        color: #fff;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.25;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .site-main:not(.site-main--home) {
        padding: 0 0 var(--space-7);
    }
}

@media (max-width: 600px) {
    .site-header {
        height: 108px;
        min-height: 108px;
    }

    .site-header__mobile-logo {
        top: -2px;
        width: 105px;
        height: 75px;
    }

    .site-header__mobile-logo-image {
        width: 105px;
        height: 75px;
    }

    .site-header__menu-toggle {
        top: 14px;
        left: 10px;
        width: 44px;
        height: 44px;
    }

    .site-header__menu-toggle-lines {
        width: 30px;
        gap: 6px;
    }

    .site-header__menu-toggle-lines span {
        height: 4px;
    }

    .site-header__mobile-tagline {
        right: 14px;
        bottom: 11px;
        left: 14px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .site-header__mobile-tagline {
        font-size: 13px;
    }
}

@media (min-width: 992px) {
    .site-main:not(.site-main--home) {
        padding-bottom: var(--space-8);
    }
}


/* BUILD 0011 performance containment */
.footer-scene,
.site-footer,
.detail-related {
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
}

@media (max-width: 991px) {
    .footer-scene,
    .site-footer {
        contain-intrinsic-size: 1px 980px;
    }
}

/* BUILD 0029: coordinate-based Directory Asset Engine ------------------- */
.category-card__icon > .directory-asset-icon,
.category-page__icon > .directory-asset-icon,
.directory-search-category__icon > .directory-asset-icon,
.directory-sidebar__icon > .directory-asset-icon,
.detail-category-link__icon > .directory-asset-icon,
.detail-related__icon > .directory-asset-icon,
.breadcrumb__icon > .directory-asset-icon {
    width: 100%;
    height: 100%;
}

.directory-sidebar__favicon {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
}
