/*
Theme Name: Universal Sisters
Theme URI: https://universal-sisters.local/
Author: Portfolio Team
Description: Editorial multilingual sister-site research theme for Universal Sisters.
Version: 0.2.4
Text Domain: universal-sisters
*/

:root {
    --ink: #17211f;
    --muted: #5f6b66;
    --paper: #f5efe4;
    --panel: #fffaf0;
    --line: #ded2bf;
    --teal: #0f4f4a;
    --teal-2: #123c3b;
    --coral: #c9654b;
    --amber: #d9a441;
    --blue: #386c7a;
    --shadow: 0 22px 70px rgba(23, 33, 31, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 250, 240, 0.14);
    background: rgba(18, 60, 59, 0.95);
    color: #fffaf0;
    backdrop-filter: blur(12px);
}

.header-inner,
.container,
.container-wide {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--amber);
    color: var(--teal-2);
    font-weight: 900;
}

.nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav a {
    border-radius: 999px;
    padding: 8px 12px;
    color: rgba(255, 250, 240, 0.86);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.nav a:hover {
    background: rgba(255, 250, 240, 0.11);
    color: #fff;
}

.language-switcher {
    position: relative;
}

.language-switcher summary {
    display: inline-flex;
    align-items: center;
    min-height: 35px;
    border: 1px solid rgba(255, 250, 240, 0.2);
    border-radius: 999px;
    padding: 7px 12px;
    color: #fffaf0;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.language-switcher summary::-webkit-details-marker {
    display: none;
}

.language-switcher summary::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 2px solid #f1c46d;
    border-bottom: 2px solid #f1c46d;
    transform: translateY(-2px) rotate(45deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: 230px;
    gap: 6px;
    border: 1px solid rgba(222, 210, 191, 0.7);
    border-radius: 8px;
    background: #fffaf0;
    padding: 8px;
    color: var(--ink);
    box-shadow: 0 18px 50px rgba(8, 20, 19, 0.26);
}

.language-menu a {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 10px;
    border-radius: 6px;
    padding: 10px;
    color: var(--ink);
}

.language-menu a:hover,
.language-menu a.is-current {
    background: #efe5d6;
    color: var(--teal);
}

.language-menu span {
    font-size: 12px;
    font-weight: 900;
}

.language-menu small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.hero {
    position: relative;
    min-height: 410px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #102220;
    color: #fffaf0;
}

.locale-market-hero {
    min-height: 370px;
}

.locale-market-hero .hero-inner {
    padding: 70px 0 54px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(13, 27, 26, 0.94) 0%, rgba(13, 27, 26, 0.78) 38%, rgba(13, 27, 26, 0.18) 78%), url("assets/images/research-hero.png");
    background-size: cover;
    background-position: center;
}

.hero-inner {
    position: relative;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 96px 0 72px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: #f1c46d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    max-width: 760px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 700;
}

.hero-copy {
    max-width: 620px;
    margin: 18px 0 0;
    color: rgba(255, 250, 240, 0.82);
    font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-actions-centered {
    justify-content: center;
}

.page-hero .hero-actions-centered {
    max-width: 760px;
}

.hero-actions-centered .button {
    min-width: 230px;
    min-height: 58px;
    border: 1px solid rgba(255, 250, 240, 0.28);
    box-shadow: 0 14px 30px rgba(10, 24, 23, 0.22);
    font-size: 18px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 8px;
    padding: 12px 16px;
    background: var(--amber);
    color: #14201f;
    font-weight: 800;
    text-decoration: none;
}

.button.secondary {
    border: 1px solid rgba(255, 250, 240, 0.28);
    background: rgba(255, 250, 240, 0.08);
    color: #fffaf0;
}

.section {
    padding: 70px 0;
}

.compact-section {
    padding-top: 54px;
}

.casino-section {
    padding: 34px 0 58px;
    background: linear-gradient(180deg, #eadfce 0%, #f5efe4 100%);
}

.casino-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.45fr);
    align-items: end;
    gap: 26px;
    margin-bottom: 20px;
}

.casino-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3.2vw, 42px);
}

.casino-heading p {
    margin: 0;
    color: var(--muted);
}

.casino-grid-home {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.casino-offer-card {
    position: relative;
    display: flex;
    min-height: 470px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(210, 187, 161, 0.32);
    border-radius: 8px;
    background: linear-gradient(180deg, #102f31 0%, #0b2527 100%);
    color: #dfd3ca;
    box-shadow: 0 14px 32px rgba(12, 29, 29, 0.16);
}

.casino-offer-card::before {
    content: "";
    height: 4px;
    background: #527a73;
}

.casino-offer-card-coral::before {
    background: #b9755d;
}

.casino-offer-card-amber::before {
    background: #c89b4b;
}

.casino-offer-card-blue::before {
    background: #5d8790;
}

.casino-offer-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(198, 143, 102, 0.42);
    border-radius: 50%;
    background: #091b1d;
    color: #c59a77;
    font-size: 12px;
    font-weight: 900;
}

.casino-offer-badge {
    position: absolute;
    top: 10px;
    right: 0;
    max-width: calc(100% - 58px);
    padding: 5px 9px 6px;
    border-radius: 999px 0 0 999px;
    background: #d7a441;
    color: #102b2d;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.casino-offer-logo {
    display: grid;
    place-items: center;
    width: calc(100% - 40px);
    min-height: 96px;
    margin: 22px 20px 20px;
    border-radius: 0;
    background: #020303;
    color: #ebd071;
    font-size: clamp(18px, 1.55vw, 24px);
    font-weight: 900;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.04);
}

.casino-offer-card-coral .casino-offer-logo {
    color: #ffffff;
}

.casino-offer-card-amber .casino-offer-logo {
    color: #f7d488;
}

.casino-offer-card-blue .casino-offer-logo {
    color: #edf7f5;
}

.casino-offer-logo-teal {
    color: #ead449;
}

.casino-offer-logo-coral {
    color: #ffffff;
}

.casino-offer-logo-amber {
    color: #e7c777;
}

.casino-offer-logo-blue {
    color: #d7ecee;
}

.casino-offer-card h3 {
    margin: 0 20px 5px;
    color: #c39573;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    text-align: center;
}

.casino-offer-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 20px 12px;
    font-size: 15px;
    font-weight: 900;
}

.casino-offer-rating .stars {
    color: #c39573;
    line-height: 1;
}

.casino-offer-rating strong {
    color: #e2d4ca;
}

.casino-offer-bonus {
    min-height: 58px;
    margin: 0 20px 13px;
    color: #ded2ca;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

.casino-offer-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0 20px 13px;
}

.casino-offer-stats span {
    display: grid;
    place-items: center;
    min-height: 36px;
    border-radius: 5px;
    background: rgba(255, 250, 240, 0.12);
    color: #d8ccc4;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.casino-offer-payments {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    align-items: center;
    justify-items: center;
    gap: 5px;
    min-height: 34px;
    margin: 0 20px 14px;
}

.payment-token {
    display: grid;
    place-items: center;
    width: 100%;
    min-width: 0;
    max-width: 38px;
    height: 26px;
    border: 1px solid rgba(255, 250, 240, 0.1);
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.1);
    color: #e7ded7;
    font-size: 9px;
    font-weight: 800;
}

.payment-visa {
    max-width: 42px;
    border-color: rgba(92, 105, 168, 0.25);
    background: rgba(92, 105, 168, 0.12);
    color: #9ca8d8;
    font-size: 10px;
    font-style: italic;
}

.payment-mc {
    background: rgba(211, 93, 55, 0.22);
    color: #efc2a8;
    font-size: 9px;
}

.payment-pay {
    background: rgba(255, 250, 240, 0.92);
    color: #17211f;
    font-size: 8px;
}

.payment-btc {
    background: rgba(247, 147, 26, 0.18);
    color: #edbf7f;
}

.payment-eth {
    background: rgba(110, 121, 135, 0.2);
    color: #cbd2d9;
}

.payment-usdt {
    background: rgba(38, 161, 123, 0.18);
    color: #a8ddcc;
}

.payment-ltc {
    background: rgba(52, 93, 157, 0.22);
    color: #b9cbea;
}

.casino-offer-extras {
    min-height: 30px;
    margin: 0 20px 16px;
    color: #c39573;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

.casino-offer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin: auto 20px 20px;
    border: 1px solid #bd8d68;
    border-radius: 4px;
    background: transparent;
    color: #c89a76;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.casino-offer-cta:hover {
    background: #c39573;
    color: #0d292b;
}

.section.alt {
    background: #e9dfd0;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.48fr);
    align-items: end;
    gap: 32px;
    margin-bottom: 28px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    font-family: Georgia, "Times New Roman", serif;
}

.section-heading p,
.muted {
    color: var(--muted);
}

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

.card {
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: 0 10px 30px rgba(23, 33, 31, 0.06);
    overflow: hidden;
}

.card-inner {
    padding: 22px;
}

.card-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    border-radius: 999px;
    padding: 5px 9px;
    background: rgba(15, 79, 74, 0.1);
    color: var(--teal);
    font-size: 12px;
    font-weight: 800;
}

.card h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.locale-card {
    position: relative;
    text-decoration: none;
}

.locale-card::after {
    content: "";
    display: block;
    height: 5px;
    background: linear-gradient(90deg, var(--teal), var(--coral), var(--amber));
}

.fact-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--line);
    box-shadow: var(--shadow);
}

.fact-strip div {
    min-height: 118px;
    padding: 20px;
    background: var(--panel);
}

.fact-strip strong {
    display: block;
    margin-bottom: 6px;
    color: var(--teal);
}

.editorial-section {
    background: var(--paper);
}

.editorial-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 34px;
    align-items: start;
}

.homepage-article {
    border: 1px solid rgba(222, 210, 191, 0.78);
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.74);
    padding: clamp(26px, 4vw, 48px);
    box-shadow: 0 16px 45px rgba(23, 33, 31, 0.07);
}

.homepage-article h2 {
    margin: 42px 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3vw, 40px);
}

.homepage-article h2:first-of-type {
    margin-top: 0;
}

.homepage-article p {
    margin: 0 0 18px;
    color: #263431;
    font-size: 18px;
}

.homepage-article strong {
    color: var(--teal-2);
    font-weight: 900;
}

.homepage-article em {
    color: #6f4d36;
    font-style: italic;
}

.research-table {
    width: 100%;
    margin: 26px 0 38px;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid rgba(222, 210, 191, 0.9);
    border-radius: 8px;
    background: #fffaf0;
    box-shadow: 0 12px 28px rgba(23, 33, 31, 0.06);
}

.research-table caption {
    padding: 0 0 10px;
    color: var(--teal);
    font-size: 15px;
    font-weight: 900;
    text-align: left;
}

.research-table th,
.research-table td {
    border-bottom: 1px solid rgba(222, 210, 191, 0.9);
    padding: 14px 15px;
    text-align: left;
    vertical-align: top;
}

.research-table th {
    background: #123c3b;
    color: #fffaf0;
    font-size: 13px;
    text-transform: uppercase;
}

.research-table td {
    color: #2c3936;
    font-size: 15px;
}

.research-table tr:last-child td {
    border-bottom: 0;
}

.research-table td:first-child {
    color: var(--teal-2);
    font-weight: 800;
}

.signal-list,
.check-list {
    display: grid;
    gap: 10px;
    margin: 8px 0 34px;
    padding-left: 22px;
}

.signal-list li,
.check-list li {
    color: #2c3936;
    font-size: 17px;
}

.two-column-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 0;
    list-style: none;
}

.two-column-list li {
    border: 1px solid rgba(222, 210, 191, 0.9);
    border-radius: 8px;
    background: #fffaf0;
    padding: 14px;
}

.editorial-callout {
    margin: 8px 0 36px;
    border-left: 5px solid var(--amber);
    border-radius: 8px;
    background: #efe5d6;
    padding: 18px 20px;
    color: #25332f;
    font-size: 17px;
}

.homepage-sidebar {
    display: grid;
    position: sticky;
    top: 96px;
    align-self: start;
    gap: 18px;
}

.homepage-sidebar .side-panel {
    position: static;
    top: auto;
}

.compact-note p {
    margin: 0;
    color: var(--muted);
}

.page-hero {
    padding: 74px 0 46px;
    background: linear-gradient(135deg, #123c3b 0%, #17302f 56%, #5d4732 100%);
    color: #fffaf0;
}

.page-hero h1 {
    font-size: clamp(38px, 5vw, 64px);
}

.page-hero p {
    max-width: 760px;
    color: rgba(255, 250, 240, 0.82);
    font-size: 19px;
}

.archive-hero {
    padding: 46px 0 42px;
    background: #123c3b;
    text-align: center;
}

.archive-hero .container {
    display: grid;
    justify-items: center;
}

.archive-hero .container::before {
    content: "";
    width: 72px;
    height: 3px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--amber);
}

.archive-hero .container::after {
    content: "";
    width: min(420px, 58%);
    height: 1px;
    margin-top: 20px;
    background: rgba(255, 250, 240, 0.18);
}

.archive-hero h1 {
    font-size: clamp(34px, 4.3vw, 56px);
}

.archive-hero p {
    max-width: 680px;
    margin: 14px 0 0;
    font-size: 17px;
    text-align: center;
    text-wrap: balance;
}

.research-single-hero,
.listing-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 46px 0 42px;
    border-bottom: 1px solid rgba(222, 210, 191, 0.34);
    background: #123c3b;
    color: #fffaf0;
    text-align: center;
}

.research-single-hero {
    padding: 52px 0 48px;
}

.research-single-hero::before,
.listing-hero::before {
    display: none;
}

.research-single-hero::after,
.listing-hero::after {
    display: none;
}

.research-single-hero .container,
.listing-hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
}

.research-single-hero .container::before,
.listing-hero .container::before {
    content: "";
    width: 72px;
    height: 3px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--amber);
}

.research-single-hero .container::after,
.listing-hero .container::after {
    content: "";
    width: min(420px, 58%);
    height: 1px;
    margin-top: 20px;
    background: rgba(255, 250, 240, 0.18);
}

.research-single-hero h1,
.listing-hero h1 {
    max-width: 860px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4.3vw, 56px);
    text-wrap: balance;
}

.research-single-hero p,
.listing-hero p {
    max-width: 680px;
    margin: 14px 0 0;
    color: rgba(255, 250, 240, 0.78);
    font-size: 17px;
    text-align: center;
    text-wrap: balance;
}

.listing-casino-section {
    padding: 30px 0 52px;
    background: linear-gradient(180deg, #eadfce 0%, #f5efe4 100%);
}

.listing-content-section {
    padding-top: 52px;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
    align-items: start;
}

.article-body {
    border-radius: 8px;
    background: var(--panel);
    padding: 34px;
    box-shadow: 0 14px 45px rgba(23, 33, 31, 0.08);
}

.static-page-body {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    padding: clamp(26px, 4vw, 48px);
    box-shadow: 0 14px 45px rgba(23, 33, 31, 0.08);
}

.static-page-body h2 {
    margin: 34px 0 12px;
    color: var(--teal);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 3vw, 36px);
}

.static-page-body h2:first-child {
    margin-top: 0;
}

.static-page-body p {
    margin: 0 0 18px;
    color: #263431;
    font-size: 18px;
}

.article-body h2 {
    margin-top: 34px;
    font-size: 30px;
}

.article-body h2:first-child {
    margin-top: 0;
}

.section-image {
    overflow: hidden;
    margin: 22px 0 30px;
    border: 1px solid rgba(222, 210, 191, 0.9);
    border-radius: 8px;
    background: #fffaf0;
    box-shadow: 0 12px 30px rgba(23, 33, 31, 0.08);
}

.section-image-under {
    margin-top: 12px;
}

.section-image-after {
    margin-bottom: 38px;
}

.section-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 430px;
    object-fit: cover;
}

.section-image figcaption {
    padding: 10px 14px;
    color: var(--muted);
    font-size: 13px;
}

.trust-box,
.side-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffaf0;
    padding: 22px;
}

.trust-box {
    margin: 22px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.trust-item {
    border-radius: 8px;
    background: #efe5d6;
    padding: 14px;
}

.trust-item span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.trust-item strong {
    display: block;
    margin-top: 5px;
}

.faq-section {
    padding-top: 0;
}

.faq-block {
    margin-top: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffaf0;
    padding: clamp(22px, 3vw, 34px);
    box-shadow: 0 14px 38px rgba(23, 33, 31, 0.07);
}

.faq-block:first-child {
    margin-top: 0;
}

.faq-block h2 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 3vw, 36px);
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    border: 1px solid rgba(222, 210, 191, 0.8);
    border-radius: 8px;
    background: #f7f0e6;
    padding: 0;
}

.faq-list summary {
    padding: 15px 16px;
    color: var(--ink);
    font-weight: 900;
    cursor: pointer;
}

.faq-list p {
    margin: 0;
    padding: 0 16px 16px;
    color: var(--muted);
}

.author-box {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    margin-top: 34px;
    border: 1px solid rgba(15, 79, 74, 0.2);
    border-radius: 8px;
    background: linear-gradient(135deg, #fffaf0 0%, #efe5d6 100%);
    padding: 22px;
}

.author-avatar {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--teal-2);
    color: #f1c46d;
    font-weight: 900;
}

.author-box h2 {
    margin: 0 0 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
}

.author-box .eyebrow {
    margin-bottom: 6px;
    color: var(--teal);
}

.author-role {
    margin: 0 0 8px;
    color: var(--teal);
    font-weight: 800;
}

.author-box p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.side-panel {
    position: sticky;
    top: 96px;
}

.side-panel h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

.link-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.link-list a {
    display: block;
    border-radius: 8px;
    padding: 12px;
    background: #efe5d6;
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
}

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

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

.archive-section {
    padding: 34px 0 62px;
}

.archive-featured-heading,
.archive-list-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(260px, 0.45fr);
    align-items: end;
    gap: 24px;
}

.archive-featured-heading {
    margin-bottom: 18px;
}

.archive-featured-heading h2,
.archive-list-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 3vw, 38px);
}

.archive-featured-heading p:last-child {
    margin: 0;
    color: var(--muted);
}

.featured-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 36px;
}

.featured-archive-card {
    overflow: hidden;
    border: 1px solid rgba(210, 187, 161, 0.42);
    border-radius: 8px;
    background: linear-gradient(180deg, #123c3b 0%, #0d2928 100%);
    color: #efe3d6;
    box-shadow: 0 16px 34px rgba(23, 33, 31, 0.16);
}

.featured-card-media {
    display: grid;
    place-items: center;
    aspect-ratio: 1.85 / 1;
    margin: 18px 18px 0;
    overflow: hidden;
    border-radius: 6px;
    background: #050807;
    color: #d6a176;
    text-decoration: none;
}

.featured-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-card-media span {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: 0;
}

.featured-card-body {
    padding: 18px;
}

.featured-card-body .card-kicker {
    background: rgba(255, 250, 240, 0.12);
    color: #f1c46d;
}

.featured-card-body h3 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
}

.featured-card-body h3 a,
.featured-card-cta {
    color: inherit;
    text-decoration: none;
}

.featured-card-body p {
    min-height: 78px;
    margin: 0;
    color: rgba(255, 250, 240, 0.76);
    font-size: 15px;
}

.featured-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 260px);
    min-height: 56px;
    margin: 20px auto 0;
    border: 1px solid rgba(214, 161, 118, 0.95);
    border-radius: 5px;
    padding: 13px 18px;
    background: rgba(214, 161, 118, 0.08);
    color: #e2ad82;
    font-size: 18px;
    font-weight: 900;
}

.featured-card-cta:hover {
    background: #d6a176;
    color: #0d2928;
}

.archive-list-heading {
    margin: 4px 0 16px;
}

.archive-card {
    display: flex;
    min-height: 254px;
    flex-direction: column;
    border: 1px solid rgba(210, 187, 161, 0.42);
    border-radius: 8px;
    background:
        radial-gradient(circle at 18% 0%, rgba(241, 196, 109, 0.12), transparent 36%),
        linear-gradient(180deg, #123c3b 0%, #0d2928 100%);
    color: #efe3d6;
    padding: 22px;
    box-shadow: 0 16px 34px rgba(23, 33, 31, 0.16);
    text-decoration: none;
}

.article-archive-card {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    border: 1px solid rgba(210, 187, 161, 0.72);
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.88);
    padding: 24px;
    box-shadow: 0 12px 28px rgba(23, 33, 31, 0.06);
    text-decoration: none;
}

.archive-card:hover {
    border-color: rgba(214, 161, 118, 0.92);
    box-shadow: 0 18px 40px rgba(23, 33, 31, 0.2);
    transform: translateY(-2px);
}

.article-archive-card:hover {
    border-color: var(--teal);
    box-shadow: 0 15px 35px rgba(23, 33, 31, 0.09);
}

.archive-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.archive-card-type {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.archive-card .card-kicker {
    background: rgba(255, 250, 240, 0.12);
    color: #f1c46d;
}

.archive-card .archive-card-type {
    color: rgba(255, 250, 240, 0.68);
}

.archive-card h3,
.article-archive-card h3 {
    margin: 0 0 10px;
    font-size: 23px;
}

.archive-card h3 {
    color: #fffaf0;
}

.article-archive-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
}

.archive-card p,
.article-archive-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.archive-card p {
    color: rgba(255, 250, 240, 0.76);
}

.archive-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 220px);
    min-height: 48px;
    margin: auto auto 0;
    border: 1px solid var(--teal);
    border-radius: 6px;
    padding: 10px 16px;
    color: var(--teal);
    font-size: 16px;
    font-weight: 900;
}

.archive-card .archive-card-cta {
    width: min(100%, 260px);
    min-height: 54px;
    border-color: rgba(214, 161, 118, 0.95);
    background: rgba(214, 161, 118, 0.08);
    color: #e2ad82;
    font-size: 17px;
}

.archive-card:hover .archive-card-cta {
    background: #d6a176;
    color: #0d2928;
}

.article-archive-card:hover .archive-card-cta {
    background: var(--teal);
    color: #fffaf0;
}

.cta-band {
    border-radius: 8px;
    padding: 28px;
    background: var(--teal-2);
    color: #fffaf0;
}

.site-footer {
    padding: 40px 0;
    background: #101b1a;
    color: rgba(255, 250, 240, 0.76);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin: 18px 0;
}

.footer-links a {
    color: #f1c46d;
    font-weight: 800;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fffaf0;
}

@media (max-width: 860px) {
    .header-inner,
    .section-heading,
    .casino-heading,
    .archive-featured-heading,
    .archive-list-heading,
    .content-layout {
        grid-template-columns: 1fr;
    }

    .header-inner {
        align-items: flex-start;
        padding: 14px 0;
    }

    .nav {
        width: 100%;
        justify-content: flex-start;
    }

    .language-switcher {
        margin-left: auto;
    }

    .language-menu {
        right: 0;
        width: min(230px, calc(100vw - 32px));
    }

    .grid,
    .fact-strip {
        grid-template-columns: 1fr;
    }

    .archive-grid,
    .article-card-grid,
    .featured-archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .archive-hero {
        padding: 34px 0 32px;
    }

    .archive-hero p {
        font-size: 16px;
    }

    .archive-hero .container::before {
        width: 58px;
        height: 3px;
        margin-bottom: 14px;
    }

    .archive-hero .container::after {
        width: 60%;
        margin-top: 18px;
    }

    .research-single-hero,
    .listing-hero {
        padding: 34px 0 32px;
    }

    .research-single-hero p,
    .listing-hero p {
        font-size: 16px;
    }

    .research-single-hero .container::before,
    .listing-hero .container::before {
        width: 58px;
        height: 3px;
        margin-bottom: 14px;
    }

    .research-single-hero .container::after,
    .listing-hero .container::after {
        width: 60%;
        margin-top: 18px;
    }

    .archive-section {
        padding-top: 26px;
    }

    .archive-featured-heading,
    .archive-list-heading {
        gap: 8px;
    }

    .archive-featured-heading p:last-child {
        font-size: 14px;
    }

    .featured-card-media {
        margin: 10px 10px 0;
    }

    .featured-card-body {
        padding: 12px;
    }

    .featured-card-body h3,
    .archive-card h3,
    .article-archive-card h3 {
        font-size: 18px;
    }

    .featured-card-body p,
    .archive-card p,
    .article-archive-card p {
        font-size: 13px;
    }

    .featured-card-body p {
        min-height: 92px;
    }

    .featured-card-cta {
        width: 100%;
        min-height: 44px;
        font-size: 14px;
    }

    .archive-card,
    .article-archive-card {
        min-height: 204px;
        padding: 14px;
    }

    .archive-card-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
        margin-bottom: 10px;
    }

    .casino-grid-home {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .hero {
        min-height: 430px;
    }

    .hero-inner {
        padding: 58px 0 44px;
    }

    h1 {
        font-size: clamp(34px, 11vw, 48px);
    }

    .casino-section {
        padding-top: 28px;
    }

    .casino-offer-card {
        min-height: 382px;
    }

    .casino-offer-rank {
        top: 9px;
        left: 9px;
        width: 26px;
        height: 26px;
        font-size: 10px;
    }

    .casino-offer-badge {
        top: 8px;
        max-width: calc(100% - 45px);
        padding: 4px 7px 5px;
        font-size: 8px;
    }

    .casino-offer-logo {
        width: calc(100% - 20px);
        min-height: 70px;
        margin: 16px 10px 14px;
        font-size: clamp(12px, 4.2vw, 18px);
    }

    .casino-offer-card h3 {
        margin-right: 10px;
        margin-left: 10px;
        font-size: 18px;
    }

    .casino-offer-rating {
        gap: 5px;
        margin-right: 10px;
        margin-left: 10px;
        font-size: 12px;
    }

    .casino-offer-bonus {
        min-height: 54px;
        margin-right: 9px;
        margin-left: 9px;
        font-size: 12px;
        line-height: 1.32;
    }

    .casino-offer-stats {
        gap: 4px;
        margin-right: 9px;
        margin-left: 9px;
    }

    .casino-offer-stats span {
        min-height: 30px;
        padding: 4px;
        font-size: 10px;
    }

    .casino-offer-payments {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 5px;
        margin-right: 9px;
        margin-left: 9px;
    }

    .payment-token {
        max-width: none;
        height: 23px;
        font-size: 7px;
    }

    .payment-visa {
        max-width: none;
        font-size: 8px;
    }

    .casino-offer-extras {
        margin-right: 9px;
        margin-left: 9px;
        font-size: 11px;
    }

    .casino-offer-cta {
        min-height: 38px;
        margin: auto 9px 11px;
        font-size: 12px;
    }

    .article-body {
        padding: 24px;
    }

    .editorial-layout {
        grid-template-columns: 1fr;
    }

    .homepage-sidebar {
        position: static;
    }

    .homepage-article p,
    .static-page-body p {
        font-size: 16px;
    }

    .research-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .research-table caption {
        white-space: normal;
    }

    .signal-list li,
    .check-list li {
        font-size: 15px;
    }

    .two-column-list {
        grid-template-columns: 1fr;
        padding-left: 0;
    }

    .author-box {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .side-panel {
        position: static;
    }
}

@media (min-width: 861px) and (max-width: 1100px) {
    .casino-grid-home {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
