/* =========================================================
   TrendHub Publisher
   Public Design System
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --theme-primary: #2563eb;
    --theme-primary-dark: #1d4ed8;
    --theme-accent: #38bdf8;

    --theme-dark: #0f172a;
    --theme-dark-soft: #172033;

    --theme-background: #f8fafc;
    --theme-surface: #ffffff;
    --theme-surface-soft: #f1f5f9;

    --theme-text: #172033;
    --theme-muted: #64748b;

    --theme-border: #e2e8f0;

    --theme-success: #16a34a;
    --theme-danger: #dc2626;
    --theme-warning: #d97706;

    --shadow-sm:
        0 1px 3px rgba(15, 23, 42, .06);

    --shadow-md:
        0 10px 30px rgba(15, 23, 42, .08);

    --shadow-lg:
        0 22px 55px rgba(15, 23, 42, .13);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --container: 1200px;
}


/* =========================================================
   Themes
========================================================= */

html[data-theme="ocean"] {
    --theme-primary: #2563eb;
    --theme-primary-dark: #1d4ed8;
    --theme-accent: #38bdf8;
    --theme-dark: #0f172a;
}

html[data-theme="red"] {
    --theme-primary: #dc2626;
    --theme-primary-dark: #b91c1c;
    --theme-accent: #fb7185;
    --theme-dark: #181112;
}

html[data-theme="purple"] {
    --theme-primary: #7c3aed;
    --theme-primary-dark: #6d28d9;
    --theme-accent: #c084fc;
    --theme-dark: #171124;
}

html[data-theme="emerald"] {
    --theme-primary: #059669;
    --theme-primary-dark: #047857;
    --theme-accent: #34d399;
    --theme-dark: #0d1c18;
}

html[data-theme="orange"] {
    --theme-primary: #ea580c;
    --theme-primary-dark: #c2410c;
    --theme-accent: #fb923c;
    --theme-dark: #21150f;
}


/* =========================================================
   Base
========================================================= */

body {
    margin: 0;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--theme-text);
    background: var(--theme-background);

    line-height: 1.65;

    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width:
        min(
            var(--container),
            calc(100% - 40px)
        );

    margin-inline: auto;
}

.narrow {
    width:
        min(
            760px,
            calc(100% - 40px)
        );

    margin-inline: auto;
}


/* =========================================================
   Header
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background:
        rgba(255, 255, 255, .96);

    backdrop-filter: blur(14px);

    border-bottom:
        1px solid var(--theme-border);
}

.header-inner {
    min-height: 76px;

    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 28px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    font-size: 22px;
    font-weight: 900;

    letter-spacing: -.04em;
}

.brand-mark {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            var(--theme-primary),
            var(--theme-accent)
        );

    color: #fff;

    font-size: 17px;
    font-weight: 900;
}

.brand-text {
    color: var(--theme-dark);
}

.desktop-nav {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 26px;
}

.desktop-nav a {
    text-decoration: none;

    color: #475569;

    font-size: 14px;
    font-weight: 700;

    transition: .2s ease;
}

.desktop-nav a:hover {
    color: var(--theme-primary);
}

.search-form {
    display: flex;

    min-width: 270px;
}

.search-form input {
    min-width: 0;
    width: 100%;

    border:
        1px solid var(--theme-border);

    border-right: 0;

    border-radius:
        12px 0 0 12px;

    background: #fff;

    padding:
        10px 13px;

    outline: 0;
}

.search-form input:focus {
    border-color:
        var(--theme-primary);
}

.search-form button {
    border: 0;

    border-radius:
        0 12px 12px 0;

    padding:
        0 17px;

    background:
        var(--theme-dark);

    color: #fff;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;
}

.mobile-nav {
    display: none;

    border-top:
        1px solid var(--theme-border);

    background: #fff;
}

.mobile-nav-scroll {
    display: flex;

    gap: 18px;

    overflow-x: auto;

    scrollbar-width: none;
}

.mobile-nav-scroll::-webkit-scrollbar {
    display: none;
}

.mobile-nav a {
    padding:
        11px 0;

    flex: 0 0 auto;

    text-decoration: none;

    color: #475569;

    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   Buttons
========================================================= */

.button {
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding:
        0 20px;

    border-radius: 12px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 800;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.button:hover {
    transform:
        translateY(-2px);
}

.button-primary {
    background:
        var(--theme-primary);

    color: #fff;

    box-shadow:
        0 12px 24px
        color-mix(
            in srgb,
            var(--theme-primary) 25%,
            transparent
        );
}

.button-primary:hover {
    background:
        var(--theme-primary-dark);
}

.button-ghost {
    color: #fff;

    border:
        1px solid
        rgba(255, 255, 255, .22);

    background:
        rgba(255, 255, 255, .08);
}


/* =========================================================
   Homepage Hero
========================================================= */

.home-hero {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 25%,
            color-mix(
                in srgb,
                var(--theme-primary) 45%,
                transparent
            ),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--theme-dark),
            #1e293b
        );

    color: #fff;
}

.home-hero::before {
    content: "";

    position: absolute;

    inset:
        auto auto -160px -100px;

    width: 440px;
    height: 440px;

    border-radius: 50%;

    background:
        var(--theme-primary);

    opacity: .11;

    filter: blur(4px);
}

.home-hero-grid {
    min-height: 520px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(320px, .75fr);

    align-items: center;

    gap: 70px;

    position: relative;
    z-index: 1;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color:
        rgba(
            255,
            255,
            255,
            .72
        );

    text-transform: uppercase;

    letter-spacing: .14em;

    font-size: 12px;
    font-weight: 900;
}

.pulse-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background:
        var(--theme-accent);

    box-shadow:
        0 0 0
        6px
        color-mix(
            in srgb,
            var(--theme-accent) 18%,
            transparent
        );
}

.home-hero h1 {
    max-width: 760px;

    margin:
        18px 0 22px;

    font-size:
        clamp(
            44px,
            6vw,
            78px
        );

    line-height: .98;

    letter-spacing: -.055em;

    color: #fff;
}

.home-hero-content > p {
    max-width: 650px;

    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            .72
        );

    font-size: 18px;
}

.hero-actions {
    margin-top: 30px;

    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.hero-stats {
    margin-top: 42px;

    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.hero-stats > div {
    min-width: 130px;

    padding:
        13px 16px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .10
        );

    border-radius: 14px;

    background:
        rgba(
            255,
            255,
            255,
            .05
        );
}

.hero-stats strong {
    display: block;

    color: #fff;

    font-size: 21px;

    line-height: 1.2;
}

.hero-stats span {
    color:
        rgba(
            255,
            255,
            255,
            .58
        );

    font-size: 12px;
}

.hero-visual {
    min-height: 340px;

    position: relative;

    display: grid;
    place-items: center;
}

.hero-orbit {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .12
        );
}

.hero-orbit-one {
    width: 330px;
    height: 330px;
}

.hero-orbit-two {
    width: 245px;
    height: 245px;
}

.trend-radar {
    position: relative;
    z-index: 2;

    width: 210px;
    min-height: 210px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 28px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            color-mix(
                in srgb,
                var(--theme-primary) 85%,
                #fff 15%
            ),
            var(--theme-primary-dark)
        );

    box-shadow:
        0 30px 70px
        rgba(
            0,
            0,
            0,
            .28
        );
}

.radar-label {
    color:
        rgba(
            255,
            255,
            255,
            .7
        );

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .14em;

    font-weight: 900;
}

.trend-radar strong {
    margin:
        3px 0;

    color: #fff;

    font-size: 44px;

    line-height: 1;
}

.trend-radar p {
    margin: 8px 0 0;

    color:
        rgba(
            255,
            255,
            255,
            .78
        );

    font-size: 13px;

    line-height: 1.45;
}


/* =========================================================
   Shared Section
========================================================= */

.section {
    padding:
        70px 0;
}

.section:nth-of-type(even) {
    background:
        var(--theme-surface);
}

.section-heading {
    margin-bottom: 30px;

    display: flex;

    justify-content:
        space-between;

    align-items:
        flex-end;

    gap: 30px;
}

.section-heading h2 {
    margin:
        5px 0 5px;

    color:
        var(--theme-dark);

    font-size:
        clamp(
            28px,
            4vw,
            40px
        );

    line-height: 1.1;

    letter-spacing: -.035em;
}

.section-heading p {
    max-width: 620px;

    margin: 0;

    color:
        var(--theme-muted);
}

.section-kicker,
.eyebrow {
    color:
        var(--theme-primary);

    text-transform: uppercase;

    letter-spacing: .14em;

    font-size: 11px;
    font-weight: 900;
}


/* =========================================================
   Trend Badges
========================================================= */

.trend {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    padding:
        5px 9px;

    border-radius: 999px;

    text-transform: uppercase;

    letter-spacing: .045em;

    font-size: 10px;
    font-weight: 900;

    background: #e2e8f0;
    color: #475569;
}

.trend.exploding {
    background: #fee2e2;
    color: #b91c1c;
}

.trend.rising {
    background: #dcfce7;
    color: #15803d;
}

.trend.stable {
    background: #e0f2fe;
    color: #0369a1;
}

.trend.declining {
    background: #fef3c7;
    color: #b45309;
}

.trend.archived {
    background: #e2e8f0;
    color: #475569;
}


/* =========================================================
   Featured
========================================================= */

.featured-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.7fr)
        minmax(300px, .75fr);

    gap: 22px;
}

.featured-main-card {
    min-height: 500px;
}

.featured-main-media {
    position: relative;

    min-height: 500px;
    height: 100%;

    display: block;

    overflow: hidden;

    border-radius:
        var(--radius-lg);

    background:
        var(--theme-dark);

    text-decoration: none;

    box-shadow:
        var(--shadow-md);
}

.featured-main-media img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .55s ease;
}

.featured-main-media:hover img {
    transform:
        scale(1.035);
}

.featured-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(15, 23, 42, .08),
            rgba(15, 23, 42, .95)
        );
}

.featured-content {
    position: absolute;

    inset:
        auto 0 0;

    padding: 34px;

    z-index: 2;

    color: #fff;
}

.featured-content h3 {
    max-width: 760px;

    margin:
        15px 0 10px;

    color: #fff;

    font-size:
        clamp(
            28px,
            4vw,
            46px
        );

    line-height: 1.08;

    letter-spacing: -.04em;
}

.featured-content p {
    max-width: 700px;

    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            .74
        );
}

.featured-category {
    display: inline-flex;

    margin-top: 17px;

    color:
        rgba(
            255,
            255,
            255,
            .72
        );

    font-size: 12px;
    font-weight: 700;
}

.featured-secondary {
    display: grid;

    gap: 15px;
}

.featured-side-card a {
    height: 100%;

    display: grid;

    grid-template-columns:
        110px
        minmax(0, 1fr);

    gap: 16px;

    align-items: center;

    padding: 12px;

    border:
        1px solid
        var(--theme-border);

    border-radius:
        var(--radius-md);

    background:
        var(--theme-surface);

    text-decoration: none;

    transition:
        .2s ease;
}

.featured-side-card a:hover {
    transform:
        translateY(-2px);

    border-color:
        color-mix(
            in srgb,
            var(--theme-primary) 35%,
            var(--theme-border)
        );

    box-shadow:
        var(--shadow-md);
}

.featured-side-image {
    height: 100px;

    overflow: hidden;

    border-radius:
        12px;

    background:
        var(--theme-surface-soft);
}

.featured-side-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.featured-side-content h3 {
    margin:
        9px 0 0;

    color:
        var(--theme-dark);

    line-height: 1.25;

    font-size: 16px;
}


/* =========================================================
   Topic Cards
========================================================= */

.trend-card-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.trend-card {
    position: relative;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border:
        1px solid
        var(--theme-border);

    border-radius:
        var(--radius-md);

    background:
        var(--theme-surface);

    box-shadow:
        var(--shadow-sm);

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.trend-card:hover {
    transform:
        translateY(-5px);

    border-color:
        color-mix(
            in srgb,
            var(--theme-primary) 35%,
            var(--theme-border)
        );

    box-shadow:
        var(--shadow-md);
}

.trend-card-main {
    flex: 1;

    display: flex;
    flex-direction: column;

    text-decoration: none;
}

.trend-card-media {
    position: relative;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background:
        var(--theme-surface-soft);
}

.trend-card-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .4s ease;
}

.trend-card:hover
.trend-card-media img {
    transform:
        scale(1.045);
}

.trend-card-status {
    position: absolute;

    top: 13px;
    left: 13px;

    z-index: 2;
}

.trend-card-body {
    padding:
        20px 20px 15px;
}

.trend-card-body h3 {
    margin:
        0 0 10px;

    color:
        var(--theme-dark);

    font-size: 20px;

    line-height: 1.25;

    letter-spacing: -.02em;
}

.trend-card-body p {
    display: -webkit-box;

    margin: 0;

    overflow: hidden;

    color:
        var(--theme-muted);

    font-size: 14px;

    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.read-story {
    margin-top: 18px;

    display: inline-flex;

    gap: 7px;

    color:
        var(--theme-primary);

    font-size: 13px;
    font-weight: 800;
}

.trend-card-category {
    padding:
        13px 20px 16px;

    border-top:
        1px solid
        var(--theme-border);

    text-decoration: none;

    color:
        var(--theme-muted);

    font-size: 12px;
    font-weight: 700;
}

.trend-card-category:hover {
    color:
        var(--theme-primary);
}


/* =========================================================
   Placeholder Images
========================================================= */

.media-placeholder,
.video-placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            var(--theme-dark),
            color-mix(
                in srgb,
                var(--theme-primary) 55%,
                var(--theme-dark)
            )
        );

    color:
        rgba(
            255,
            255,
            255,
            .82
        );

    font-weight: 900;

    letter-spacing: .16em;
}

.media-placeholder.small {
    font-size: 10px;
}


/* =========================================================
   Homepage Videos
========================================================= */

.video-section {
    background:
        var(--theme-dark) !important;

    color: #fff;
}

.video-section
.section-heading h2 {
    color: #fff;
}

.video-section
.section-heading p {
    color:
        rgba(
            255,
            255,
            255,
            .62
        );
}

.video-section
.section-kicker {
    color:
        var(--theme-accent);
}

.video-card-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.home-video-card {
    overflow: hidden;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .09
        );

    border-radius:
        var(--radius-md);

    background:
        rgba(
            255,
            255,
            255,
            .05
        );
}

.home-video-card > a {
    text-decoration: none;
}

.home-video-media {
    position: relative;

    aspect-ratio: 16 / 10;

    overflow: hidden;
}

.home-video-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .4s ease;
}

.home-video-card:hover
.home-video-media img {
    transform:
        scale(1.045);
}

.video-platform {
    position: absolute;

    top: 12px;
    left: 12px;

    padding:
        5px 8px;

    border-radius: 7px;

    background:
        rgba(
            15,
            23,
            42,
            .82
        );

    color: #fff;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .08em;
}

.play-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        var(--theme-primary);

    color: #fff;

    font-size: 20px;
}

.home-video-content {
    padding: 18px;
}

.home-video-content h3 {
    margin:
        0 0 10px;

    color: #fff;

    font-size: 17px;

    line-height: 1.3;
}

.home-video-content span {
    color:
        var(--theme-accent);

    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   Updates
========================================================= */

.home-updates {
    overflow: hidden;

    border:
        1px solid
        var(--theme-border);

    border-radius:
        var(--radius-lg);

    background:
        var(--theme-surface);
}

.home-update {
    position: relative;

    display: grid;

    grid-template-columns:
        14px
        150px
        minmax(0, 1fr);

    gap: 18px;

    align-items:
        flex-start;

    padding: 23px;

    border-bottom:
        1px solid
        var(--theme-border);
}

.home-update:last-child {
    border-bottom: 0;
}

.update-marker {
    width: 10px;
    height: 10px;

    margin-top: 7px;

    border-radius: 50%;

    background:
        var(--theme-primary);

    box-shadow:
        0 0 0
        5px
        color-mix(
            in srgb,
            var(--theme-primary) 12%,
            transparent
        );
}

.update-time {
    padding-top: 1px;

    color:
        var(--theme-muted);

    font-size: 12px;
    font-weight: 700;
}

.update-content h3 {
    margin: 0;

    color:
        var(--theme-dark);

    font-size: 17px;
}

.update-content h3 a {
    text-decoration: none;
}

.update-content h3 a:hover {
    color:
        var(--theme-primary);
}

.update-content p {
    margin:
        3px 0 0;

    color:
        var(--theme-muted);

    font-size: 13px;
}

.importance-critical
.update-marker,
.importance-high
.update-marker {
    background:
        var(--theme-danger);
}


/* =========================================================
   Category Cards
========================================================= */

.category-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;
}

.category-card {
    min-height: 96px;

    display: flex;

    align-items: center;
    justify-content:
        space-between;

    gap: 15px;

    padding:
        20px;

    border:
        1px solid
        var(--theme-border);

    border-radius:
        var(--radius-md);

    background:
        var(--theme-surface);

    text-decoration: none;

    transition:
        .2s ease;
}

.category-card:hover {
    transform:
        translateY(-3px);

    border-color:
        var(--theme-primary);

    box-shadow:
        var(--shadow-md);
}

.category-card strong {
    display: block;

    color:
        var(--theme-dark);

    font-size: 17px;
}

.category-card span {
    color:
        var(--theme-muted);

    font-size: 12px;
}

.category-arrow {
    font-size: 22px !important;

    color:
        var(--theme-primary) !important;
}


/* =========================================================
   Topic / Entity / Listing Existing Pages
========================================================= */

.topic-page {
    padding-top: 40px;
}

.breadcrumbs {
    color:
        var(--theme-muted);

    font-size: 13px;
}

.breadcrumbs a:hover {
    color:
        var(--theme-primary);
}

.topic-hero {
    padding:
        28px 0 38px;
}

.topic-hero h1 {
    max-width: 980px;

    margin:
        14px 0;

    color:
        var(--theme-dark);

    font-size:
        clamp(
            40px,
            6vw,
            72px
        );

    line-height: 1.02;

    letter-spacing: -.055em;
}

.lead {
    max-width: 850px;

    color:
        #475569;

    font-size: 20px;
}

.meta {
    color:
        var(--theme-muted);

    font-size: 12px;
}

.cover {
    width: 100%;

    max-height: 650px;

    margin-top: 28px;

    object-fit: contain;

    object-position: center;

    border-radius:
        var(--radius-lg);

    background:
        #eef2f7;

    box-shadow:
        var(--shadow-sm);
}

.content-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 2fr)
        minmax(290px, .8fr);

    gap: 44px;

    align-items: start;
}

.prose {
    color:
        #334155;

    font-size: 18px;

    line-height: 1.85;
}

.section-block {
    margin:
        48px 0;
}

.section-block h2 {
    margin-bottom: 20px;

    color:
        var(--theme-dark);

    font-size: 30px;

    letter-spacing: -.025em;
}

.video-list {
    display: grid;

    gap: 18px;
}

.video-card,
.side-card,
.card {
    border:
        1px solid
        var(--theme-border);

    border-radius:
        var(--radius-md);

    background:
        var(--theme-surface);

    padding: 20px;

    box-shadow:
        var(--shadow-sm);
}

.video-frame {
    position: relative;

    aspect-ratio: 16 / 9;

    margin:
        12px 0;

    overflow: hidden;

    border-radius:
        13px;

    background: #0f172a;
}

.video-frame iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}

.timeline {
    padding-left: 20px;

    border-left:
        2px solid
        var(--theme-border);
}

.activity {
    margin:
        22px 0;
}

.activity time,
.timeline-row time {
    color:
        var(--theme-muted);

    font-size: 12px;
}

.pin {
    display: inline-flex;

    padding:
        3px 7px;

    border-radius: 6px;

    background:
        var(--theme-dark);

    color: #fff;

    font-size: 10px;
    font-weight: 800;
}

.timeline-row {
    display: grid;

    grid-template-columns:
        160px
        minmax(0, 1fr);

    gap: 20px;

    padding:
        17px 0;

    border-bottom:
        1px solid
        var(--theme-border);
}

.gallery {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;
}

.gallery figure {
    margin: 0;
}

.gallery img {
    width: 100%;

    height: auto;

    display: block;

    border-radius:
        var(--radius-md);

    background:
        var(--theme-surface-soft);
}

.gallery figcaption {
    margin-top: 7px;

    color:
        var(--theme-muted);

    font-size: 12px;
}

.side-card {
    margin-bottom: 18px;

    display: grid;

    gap: 10px;
}

.side-card h3 {
    margin:
        0 0 5px;

    color:
        var(--theme-dark);
}

.side-card > a {
    display: grid;

    padding:
        9px 0;

    border-bottom:
        1px solid
        var(--theme-border);

    text-decoration: none;
}

.side-card > a:hover {
    color:
        var(--theme-primary);
}

.side-card small {
    color:
        var(--theme-muted);
}

.tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.tags a {
    display: inline-flex;

    padding:
        7px 10px;

    border-radius: 9px;

    background:
        var(--theme-surface-soft);

    text-decoration: none;

    color:
        #475569;

    font-size: 12px;
    font-weight: 700;
}

.tags a:hover {
    color:
        var(--theme-primary);
}

details {
    margin-bottom: 12px;

    border:
        1px solid
        var(--theme-border);

    border-radius:
        12px;

    background:
        var(--theme-surface);

    padding:
        14px 17px;
}

summary {
    cursor: pointer;

    color:
        var(--theme-dark);

    font-weight: 800;
}


/* =========================================================
   Listing / Search
========================================================= */

.listing-head {
    margin-bottom: 30px;
}

.listing-head h1 {
    margin:
        5px 0;

    color:
        var(--theme-dark);

    font-size:
        clamp(
            36px,
            5vw,
            54px
        );

    letter-spacing: -.04em;
}

.pagination {
    display: flex;

    gap: 7px;

    margin-top: 30px;
}

.pagination a {
    min-width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border:
        1px solid
        var(--theme-border);

    border-radius: 10px;

    background:
        var(--theme-surface);

    text-decoration: none;

    font-weight: 700;
}

.pagination a.active {
    background:
        var(--theme-primary);

    border-color:
        var(--theme-primary);

    color: #fff;
}


/* =========================================================
   Entity
========================================================= */

.entity-head {
    display: grid;

    grid-template-columns:
        220px
        minmax(0, 1fr);

    gap: 34px;

    align-items: center;

    padding-top: 55px;
}

.entity-head img {
    width: 220px;
    height: 220px;

    object-fit: cover;

    border-radius:
        var(--radius-lg);

    box-shadow:
        var(--shadow-md);
}


/* =========================================================
   Footer
========================================================= */

.site-footer {
    margin-top: 70px;

    padding:
        55px 0 24px;

    background:
        var(--theme-dark);

    color:
        rgba(
            255,
            255,
            255,
            .65
        );
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1fr auto;

    gap: 30px;

    align-items: start;
}

.footer-brand {
    color: #fff;

    text-decoration: none;

    font-size: 24px;
    font-weight: 900;

    letter-spacing: -.04em;
}

.footer-grid p {
    max-width: 480px;

    margin:
        8px 0 0;

    font-size: 14px;
}

.footer-links {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;
}

.footer-links a {
    color:
        rgba(
            255,
            255,
            255,
            .75
        );

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 38px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

    display: flex;

    justify-content:
        space-between;

    gap: 20px;

    font-size: 12px;
}


/* =========================================================
   Responsive
========================================================= */

@media (
    max-width: 1080px
) {

    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .header-inner {
        grid-template-columns:
            auto
            minmax(0, 1fr);
    }

    .search-form {
        justify-self: end;
    }

    .home-hero-grid {
        grid-template-columns:
            minmax(0, 1.15fr)
            minmax(260px, .65fr);

        gap: 35px;
    }

    .trend-card-grid,
    .video-card-grid,
    .category-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}


@media (
    max-width: 760px
) {

    .container {
        width:
            min(
                100% - 28px,
                var(--container)
            );
    }

    .header-inner {
        min-height: auto;

        grid-template-columns: 1fr;

        gap: 12px;

        padding:
            13px 0;
    }

    .site-brand {
        justify-self: start;
    }

    .search-form {
        width: 100%;
        min-width: 0;

        justify-self: stretch;
    }

    .home-hero-grid {
        min-height: auto;

        grid-template-columns: 1fr;

        padding:
            65px 0;
    }

    .hero-visual {
        display: none;
    }

    .home-hero h1 {
        font-size:
            clamp(
                42px,
                13vw,
                62px
            );
    }

    .home-hero-content > p {
        font-size: 16px;
    }

    .hero-stats {
        margin-top: 30px;
    }

    .hero-stats > div {
        flex:
            1 1 100px;
    }

    .section {
        padding:
            48px 0;
    }

    .section-heading {
        align-items:
            flex-start;

        flex-direction: column;

        margin-bottom: 22px;
    }

    .featured-layout,
    .content-grid,
    .entity-head {
        grid-template-columns: 1fr;
    }

    .featured-main-card,
    .featured-main-media {
        min-height: 410px;
    }

    .featured-secondary {
        grid-template-columns: 1fr;
    }

    .trend-card-grid,
    .video-card-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .home-update {
        grid-template-columns:
            12px
            minmax(0, 1fr);

        gap:
            11px 14px;
    }

    .update-time {
        grid-column: 2;
    }

    .update-content {
        grid-column: 2;
    }

    .topic-hero h1 {
        font-size:
            clamp(
                38px,
                12vw,
                58px
            );
    }

    .lead {
        font-size: 18px;
    }

    .cover {
        max-height: 520px;

        object-fit: contain;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .timeline-row {
        grid-template-columns: 1fr;

        gap: 5px;
    }

    .entity-head img {
        width: 150px;
        height: 150px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

}


@media (
    max-width: 420px
) {

    .home-hero h1 {
        font-size: 42px;
    }

    .featured-main-card,
    .featured-main-media {
        min-height: 350px;
    }

    .featured-content {
        padding: 22px;
    }

    .featured-content h3 {
        font-size: 28px;
    }

}


/* =========================================================
   TrendHub Topic Page V1
========================================================= */

.topic-header-section {
    padding: 42px 0 10px;
    background:
        linear-gradient(
            180deg,
            #fff,
            var(--theme-background)
        );
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.breadcrumbs a {
    text-decoration: none;
    font-weight: 700;
}

.topic-hero {
    padding: 28px 0 48px;
}

.topic-hero-copy {
    max-width: 1000px;
}

.topic-label-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.topic-category-label {
    color: var(--theme-muted);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.topic-category-label:hover {
    color: var(--theme-primary);
}

.topic-meta {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    color: var(--theme-muted);
    font-size: 12px;
}

.topic-meta span {
    display: inline-flex;
    gap: 5px;
}

.topic-meta strong {
    color: #475569;
}

.topic-cover-shell {
    margin-top: 34px;
    min-height: 320px;
    max-height: 680px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--theme-border);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(
            135deg,
            #eef2f7,
            #f8fafc
        );
    box-shadow: var(--shadow-md);
}

.topic-cover-shell .cover {
    width: 100%;
    height: auto;
    max-height: 680px;
    margin: 0;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.topic-main-column {
    min-width: 0;
}

.content-section-heading {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.content-section-heading h2 {
    margin: 4px 0 0;
    color: var(--theme-dark);
    font-size: clamp(26px, 4vw, 34px);
    line-height: 1.15;
    letter-spacing: -.035em;
}

.article-body {
    padding: 28px;
    border: 1px solid var(--theme-border);
    border-radius: var(--radius-md);
    background: var(--theme-surface);
    box-shadow: var(--shadow-sm);
}

.featured-video-card {
    padding: 22px;
}

.video-card-heading {
    margin-bottom: 14px;
}

.video-card-heading h3,
.video-card h3 {
    margin: 8px 0 0;
    color: var(--theme-dark);
    font-size: 20px;
    line-height: 1.3;
}

.video-source-badge {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 7px;
    background:
        color-mix(
            in srgb,
            var(--theme-primary) 10%,
            #fff
        );
    color: var(--theme-primary);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
}

.video-description {
    color: var(--theme-muted);
}

.source-row {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--theme-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--theme-muted);
    font-size: 12px;
}

.source-row a,
.source-link {
    color: var(--theme-primary);
    font-weight: 800;
}


/* Live Feed */

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--theme-danger);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.live-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--theme-danger);
    box-shadow:
        0 0 0 5px
        rgba(220, 38, 38, .10);
}

.live-feed {
    overflow: hidden;
    border: 1px solid var(--theme-border);
    border-radius: var(--radius-lg);
    background: var(--theme-surface);
}

.live-feed-item {
    position: relative;
    display: grid;
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 16px;
    padding: 24px;
    border-bottom: 1px solid var(--theme-border);
}

.live-feed-item:last-child {
    border-bottom: 0;
}

.live-feed-marker {
    width: 11px;
    height: 11px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--theme-primary);
    box-shadow:
        0 0 0 5px
        color-mix(
            in srgb,
            var(--theme-primary) 11%,
            transparent
        );
}

.live-feed-item.importance-high
.live-feed-marker,
.live-feed-item.importance-critical
.live-feed-marker {
    background: var(--theme-danger);
}

.live-feed-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.live-feed-meta time {
    color: var(--theme-muted);
    font-size: 12px;
    font-weight: 700;
}

.live-feed-content h3 {
    margin: 8px 0;
    color: var(--theme-dark);
    font-size: 19px;
}

.live-feed-content p {
    margin: 0;
    color: #475569;
}

.verification-row {
    margin-top: 13px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--theme-muted);
    font-size: 11px;
}

.verification-row a {
    color: var(--theme-primary);
}

.verification-badge {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-weight: 800;
}

.verification-confirmed,
.verification-official_statement {
    background: #dcfce7;
    color: #166534;
}

.verification-unverified,
.verification-rumor {
    background: #fef3c7;
    color: #92400e;
}


/* Timeline */

.topic-timeline {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--theme-border);
    border-radius: var(--radius-lg);
    background: var(--theme-surface);
}

.topic-timeline-row {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 24px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--theme-border);
}

.topic-timeline-row:last-child {
    border-bottom: 0;
}

.topic-timeline-date {
    display: flex;
    flex-direction: column;
    color: var(--theme-muted);
    font-size: 12px;
}

.topic-timeline-date time {
    color: #475569;
    font-weight: 800;
}

.topic-timeline-event h3 {
    margin: 0;
    color: var(--theme-dark);
    font-size: 17px;
}

.topic-timeline-event p {
    margin: 6px 0 0;
    color: var(--theme-muted);
}


/* Gallery */

.topic-gallery {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.topic-gallery-item {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--theme-border);
    border-radius: var(--radius-md);
    background: var(--theme-surface);
}

.topic-gallery-image {
    min-height: 280px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #eef2f7;
}

.topic-gallery-image img {
    width: 100%;
    max-height: 580px;
    object-fit: contain;
}

.topic-gallery-item figcaption {
    padding: 12px 14px;
    color: var(--theme-muted);
    font-size: 12px;
}


/* FAQ */

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    padding: 17px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-plus {
    color: var(--theme-primary);
    font-size: 22px;
    line-height: 1;
}

.faq-item[open] .faq-plus {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 18px;
    color: var(--theme-muted);
}

.faq-answer p {
    margin: 0;
}


/* Topic Sidebar */

.topic-sidebar {
    min-width: 0;
}

.topic-sidebar-sticky {
    position: sticky;
    top: 120px;
}

.side-card-kicker {
    color: var(--theme-primary);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 9px;
    font-weight: 900;
}

.topic-jump-links {
    display: grid;
}

.topic-jump-links a {
    padding: 9px 0;
    border-bottom: 1px solid var(--theme-border);
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.topic-jump-links a:last-child {
    border-bottom: 0;
}

.topic-jump-links a:hover {
    color: var(--theme-primary);
}

.entity-sidebar-list,
.related-topic-list {
    display: grid;
}

.entity-sidebar-item,
.related-topic-list a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.entity-sidebar-item strong {
    color: var(--theme-dark);
}

.entity-sidebar-item small {
    display: block;
    margin-top: 2px;
}

.primary-star {
    color: #f59e0b;
}

.related-topic-list a > span:first-child {
    font-weight: 700;
}

.related-topic-list a > span:last-child,
.entity-sidebar-item > span:last-child {
    color: var(--theme-primary);
}


/* =========================================================
   Topic Responsive
========================================================= */

@media (max-width: 900px) {

    .content-grid {
        grid-template-columns: 1fr;
    }

    .topic-sidebar-sticky {
        position: static;
    }

    .topic-sidebar {
        order: 2;
    }

}


@media (max-width: 700px) {

    .topic-header-section {
        padding-top: 26px;
    }

    .topic-hero {
        padding-bottom: 30px;
    }

    .topic-meta {
        display: grid;
        gap: 7px;
    }

    .topic-cover-shell {
        min-height: 230px;
    }

    .article-body {
        padding: 20px;
    }

    .content-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .topic-timeline-row {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .topic-timeline-date {
        flex-direction: row;
        gap: 8px;
    }

    .topic-gallery {
        grid-template-columns: 1fr;
    }

    .topic-gallery-image {
        min-height: 220px;
    }

}


/* =========================================================
   Archive / Search / Entity Design
========================================================= */

.archive-page,
.entity-page {
    min-height: 70vh;
}

.archive-hero {
    padding: 64px 0 54px;

    background:
        linear-gradient(
            180deg,
            #fff,
            var(--theme-background)
        );

    border-bottom:
        1px solid
        var(--theme-border);
}

.archive-hero-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}

.archive-hero h1 {
    margin: 6px 0 8px;

    color:
        var(--theme-dark);

    font-size:
        clamp(
            42px,
            6vw,
            68px
        );

    line-height: 1;

    letter-spacing: -.05em;
}

.archive-hero p {
    max-width: 700px;

    margin: 0;

    color:
        var(--theme-muted);

    font-size: 16px;
}

.archive-count {
    min-width: 110px;

    padding: 18px 20px;

    border:
        1px solid
        var(--theme-border);

    border-radius:
        var(--radius-md);

    background:
        var(--theme-surface);

    box-shadow:
        var(--shadow-sm);
}

.archive-count strong {
    display: block;

    color:
        var(--theme-dark);

    font-size: 28px;

    line-height: 1;
}

.archive-count span {
    color:
        var(--theme-muted);

    font-size: 12px;
}

.archive-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 22px;
}

.archive-topic-card {
    overflow: hidden;

    border:
        1px solid
        var(--theme-border);

    border-radius:
        var(--radius-md);

    background:
        var(--theme-surface);

    box-shadow:
        var(--shadow-sm);

    transition:
        .2s ease;
}

.archive-topic-card:hover {
    transform:
        translateY(-4px);

    border-color:
        color-mix(
            in srgb,
            var(--theme-primary) 30%,
            var(--theme-border)
        );

    box-shadow:
        var(--shadow-md);
}

.archive-topic-link {
    display: block;

    height: 100%;

    text-decoration: none;
}

.archive-topic-media {
    position: relative;

    aspect-ratio:
        16 / 10;

    overflow: hidden;

    background:
        var(--theme-surface-soft);
}

.archive-topic-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .4s ease;
}

.archive-topic-card:hover
.archive-topic-media img {
    transform:
        scale(1.045);
}

.archive-topic-status {
    position: absolute;

    top: 13px;
    left: 13px;
}

.archive-topic-body {
    padding: 20px;
}

.archive-topic-body h2,
.archive-topic-body h3 {
    margin: 0 0 10px;

    color:
        var(--theme-dark);

    font-size: 21px;

    line-height: 1.25;

    letter-spacing: -.025em;
}

.archive-topic-body p {
    display: -webkit-box;

    margin: 0;

    overflow: hidden;

    color:
        var(--theme-muted);

    font-size: 14px;

    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.archive-read-link {
    display: inline-flex;

    margin-top: 17px;

    color:
        var(--theme-primary);

    font-size: 13px;
    font-weight: 800;
}


/* Search */

.archive-search-form {
    max-width: 760px;

    margin:
        0 0 34px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;
}

.archive-search-form input {
    width: 100%;

    min-height: 52px;

    border:
        1px solid
        var(--theme-border);

    border-right: 0;

    border-radius:
        13px 0 0 13px;

    background: #fff;

    padding:
        0 16px;

    outline: 0;
}

.archive-search-form input:focus {
    border-color:
        var(--theme-primary);
}

.archive-search-form button {
    min-height: 52px;

    padding:
        0 24px;

    border: 0;

    border-radius:
        0 13px 13px 0;

    background:
        var(--theme-primary);

    color: #fff;

    font-weight: 800;

    cursor: pointer;
}

.archive-search-form button:hover {
    background:
        var(--theme-primary-dark);
}


/* Empty state */

.empty-state {
    padding:
        55px 28px;

    border:
        1px dashed
        #cbd5e1;

    border-radius:
        var(--radius-lg);

    background:
        var(--theme-surface);

    text-align: center;
}

.empty-state-icon {
    width: 56px;
    height: 56px;

    margin:
        0 auto 16px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        color-mix(
            in srgb,
            var(--theme-primary) 10%,
            #fff
        );

    color:
        var(--theme-primary);

    font-size: 22px;
    font-weight: 900;
}

.empty-state h2 {
    margin:
        0 0 6px;

    color:
        var(--theme-dark);
}

.empty-state p {
    margin: 0;

    color:
        var(--theme-muted);
}


/* Entity */

.entity-hero-section {
    padding:
        68px 0 60px;

    background:
        linear-gradient(
            180deg,
            #fff,
            var(--theme-background)
        );

    border-bottom:
        1px solid
        var(--theme-border);
}

.entity-profile {
    display: grid;

    grid-template-columns:
        260px
        minmax(0, 1fr);

    gap: 42px;

    align-items: center;
}

.entity-profile-media {
    width: 260px;
    height: 260px;

    overflow: hidden;

    border:
        1px solid
        var(--theme-border);

    border-radius:
        var(--radius-lg);

    background:
        var(--theme-surface-soft);

    box-shadow:
        var(--shadow-md);
}

.entity-profile-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.entity-placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            var(--theme-dark),
            var(--theme-primary)
        );

    color: #fff;

    font-size: 72px;
    font-weight: 900;
}

.entity-profile-copy h1 {
    margin:
        7px 0 15px;

    color:
        var(--theme-dark);

    font-size:
        clamp(
            44px,
            6vw,
            72px
        );

    line-height: 1;

    letter-spacing: -.05em;
}

.entity-lead {
    max-width: 800px;

    margin: 0;

    color:
        #475569;

    font-size: 18px;
}

.entity-actions {
    margin-top: 26px;

    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.entity-back-button {
    border:
        1px solid
        var(--theme-border);

    background:
        var(--theme-surface);

    color:
        var(--theme-dark);
}

.entity-back-button:hover {
    border-color:
        var(--theme-primary);

    color:
        var(--theme-primary);
}

.entity-content-layout {
    max-width: 900px;
}

.entity-biography {
    padding: 28px;

    border:
        1px solid
        var(--theme-border);

    border-radius:
        var(--radius-md);

    background:
        var(--theme-surface);

    box-shadow:
        var(--shadow-sm);
}

.entity-faq-section {
    background:
        var(--theme-surface);
}

.entity-faq-list {
    max-width: 900px;
}


/* Responsive */

@media (
    max-width: 980px
) {

    .archive-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .entity-profile {
        grid-template-columns:
            200px
            minmax(0, 1fr);
    }

    .entity-profile-media {
        width: 200px;
        height: 200px;
    }

}


@media (
    max-width: 700px
) {

    .archive-hero {
        padding:
            44px 0 38px;
    }

    .archive-hero-inner {
        align-items:
            flex-start;

        flex-direction:
            column;
    }

    .archive-count {
        min-width: 95px;
    }

    .archive-grid {
        grid-template-columns:
            1fr;
    }

    .archive-search-form {
        grid-template-columns:
            1fr;
    }

    .archive-search-form input {
        border-right:
            1px solid
            var(--theme-border);

        border-radius:
            12px;
    }

    .archive-search-form button {
        margin-top: 8px;

        border-radius:
            12px;
    }

    .entity-profile {
        grid-template-columns:
            1fr;

        gap: 25px;
    }

    .entity-profile-media {
        width: 160px;
        height: 160px;
    }

    .entity-placeholder {
        font-size: 48px;
    }

}