﻿/* =========================================================
   ARGUMENTUM - ALAP SZÍNEK
   A teljes frontend ezeket a változókat használja.
   ========================================================= */
:root {
    --nb-bg: #fbfaf8;
    --nb-surface: #ffffff;
    --nb-surface-warm: #f3efe8;
    --nb-text: #191911;
    --nb-muted: #6d695f;
    --nb-gold: #9b7444;
    --nb-gold-dark: #75532d;
    --nb-red: #9c2e20;
    --nb-green: #384b30;
    --nb-border: #d8d1c5;
    --nb-border-dark: #b5aa99;
    --nb-shadow: 0 12px 30px rgba(25, 25, 17, 0.07);
    --nb-serif: Georgia, "Times New Roman", serif;
    --nb-sans: Arial, Helvetica, sans-serif;
    --nb-content-width: 1320px;
}

/* =========================================================
   ALAPOK
   ========================================================= */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--nb-bg);
    color: var(--nb-text);
    font-family: var(--nb-sans);
    font-size: 16px;
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--nb-red);
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.nb-container {
    width: min(calc(100% - 48px), var(--nb-content-width));
    margin: 0 auto;
}

.site-main {
    min-height: 60vh;
}

/* =========================================================
   FEJLÉC
   ========================================================= */
.site-header {
    background: var(--nb-bg);
}

.site-topbar {
    border-bottom: 1px solid var(--nb-border);
    background: var(--nb-text);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-topbar__inner {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-topbar__motto span {
    margin: 0 7px;
    color: var(--nb-gold);
}

.site-topbar__links {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
}

.site-topbar__links a {
    color: rgba(255, 255, 255, 0.82);
}

.site-topbar__links a:hover {
    color: #ffffff;
}

.site-branding {
    background: var(--nb-bg);
}

.site-branding__inner {
    height: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-brand {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-brand-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: auto;
    max-width: 100%;
}

.site-logo-mark-wrap {
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
    width: 168px;
    height: 168px;
    margin-right: -34px;
    margin-bottom: -34px;
}

.site-logo-mark {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 5;
}

.site-logo-wordmark-wrap {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    width: 780px;
    max-width: min(100%, 780px);
    margin-bottom: -18px;
}

.site-logo-wordmark {
    display: block;
    width: 100%;
    max-height: 126px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 4;
}

.site-brand-mobile {
    display: none;
}

.site-logo-mobile-mark,
.site-logo-mobile-wordmark {
    display: block;
    height: auto;
}

.site-navigation {
    padding: 0;
    border-top: 1px solid var(--nb-border-dark);
    border-bottom: 3px solid var(--nb-text);
    background: var(--nb-bg);
}

.site-navigation__inner {
    min-height: 48px;
    display: flex;
    align-items: stretch;
    position: relative;
}

.site-navigation .navbar-collapse {
    align-items: stretch;
}

@media (min-width: 992px) {
    .site-logo-mark-wrap::after {
        content: "";
        position: absolute;
        left: 10px;
        right: 10px;
        bottom: 37px;
        height: 3px;
        background: var(--nb-bg);
        z-index: 1;
        pointer-events: none;
    }

    .site-logo-wordmark-wrap::after {
        content: "";
        position: absolute;
        left: 72px;
        right: 72px;
        bottom: 6px;
        height: 3px;
        background: var(--nb-bg);
        z-index: 1;
        pointer-events: none;
    }

    .site-navigation {
        border-top: 1px solid var(--nb-border-dark);
    }

    .site-navigation .navbar-collapse {
        margin-left: 268px;
    }

    .site-menu {
        justify-content: flex-start;
    }
}



.site-menu {
    width: 100%;
    justify-content: center;
    gap: 2px;
}

.site-menu .nav-item {
    display: flex;
}

.site-menu .nav-link {
    display: flex;
    align-items: center;
    padding: 0 18px;
    color: var(--nb-text);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    transition: color 0.18s ease, border-color 0.18s ease;
}

.site-menu .nav-link:hover,
.site-menu .nav-link.active {
    color: var(--nb-red);
    border-bottom-color: var(--nb-gold);
}

.site-search-button {
    width: 52px;
    min-width: 52px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.site-search-button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.site-search-button:hover,
.site-search-button[aria-expanded="true"] {
    color: var(--nb-red);
}

.site-search-panel {
    position: absolute;
    z-index: 40;
    top: calc(100% + 3px);
    right: 0;
    width: min(420px, calc(100vw - 32px));
    padding: 14px;
    background: var(--nb-surface);
    border: 1px solid var(--nb-border);
    border-top: 0;
    box-shadow: var(--nb-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.site-search-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-search-form {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--nb-text);
}

.site-search-form input {
    min-width: 0;
    flex: 1;
    padding: 10px 4px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--nb-text);
    font-size: 14px;
}

.site-search-form input::placeholder {
    color: var(--nb-muted);
}

.site-search-form button {
    width: 42px;
    min-width: 42px;
    border: 0;
    background: transparent;
    color: var(--nb-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-search-form button:hover {
    color: var(--nb-red);
}

.site-search-form svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.site-menu-toggle {
    width: 46px;
    min-width: 46px;
    padding: 11px;
    border: 0;
    box-shadow: none !important;
}

.site-menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--nb-text);
}

.breaking-bar {
    border-bottom: 1px solid var(--nb-border);
    background: var(--nb-surface-warm);
}

.breaking-bar__inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 18px;
    overflow: hidden;
}

.breaking-bar__label {
    flex: 0 0 auto;
    padding: 5px 9px;
    background: var(--nb-red);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.breaking-bar__items {
    min-width: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
}

.breaking-bar__items a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    max-width: 520px;
    padding-right: 22px;
    margin-right: 22px;
    border-right: 1px solid var(--nb-border-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
}

.breaking-bar__items time {
    margin-right: 8px;
    color: var(--nb-gold-dark);
    font-weight: 700;
}

/* =========================================================
   CÍMLAP - VEZETŐ BLOKK
   ========================================================= */
.home-page {
    padding-top: 36px;
    padding-bottom: 70px;
}

.lead-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.78fr) minmax(340px, 0.92fr);
    gap: 30px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--nb-border-dark);
}

.lead-story {
    min-width: 0;
}

.article-image-link {
    display: block;
}

.article-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(155, 116, 68, 0.15), rgba(56, 75, 48, 0.09)),
        var(--nb-surface-warm);
    border: 1px solid var(--nb-border);
}

.article-image::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(155, 116, 68, 0.32);
}

.article-image span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nb-muted);
    font-family: var(--nb-serif);
    font-size: 15px;
    font-style: italic;
}

/* Ideiglenes cikkképek. Később ugyanez a markup DB-ből kapja majd a kép URL-jét. */
.article-image--photo::before {
    display: none;
}

.article-image__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article-image--lead {
    aspect-ratio: 16 / 9;
}

.article-image--featured {
    aspect-ratio: 16 / 9;
}

.article-image--category {
    aspect-ratio: 16 / 9;
}

.lead-story__content {
    padding-top: 16px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px;
    color: var(--nb-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.article-category {
    color: var(--nb-gold-dark);
}

.article-category--red {
    color: var(--nb-red);
}

.article-category--green {
    color: var(--nb-green);
}

.article-meta time::before {
    content: "•";
    margin-right: 10px;
    color: var(--nb-border-dark);
}

.lead-story h1,
.featured-story h2,
.article-card h3,
.category-lead h3,
.compact-article h4,
.opinion-card h3 {
    font-family: var(--nb-serif);
    font-weight: 700;
    color: var(--nb-text);
}

.lead-story h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(31px, 2.35vw, 44px);
    line-height: 1.06;
    letter-spacing: -0.025em;
}

.lead-story h1 a:hover,
.featured-story h2 a:hover,
.article-card h3 a:hover,
.category-lead h3 a:hover,
.compact-article h4 a:hover,
.opinion-card h3 a:hover {
    color: var(--nb-red);
}

.lead-story p {
    max-width: 850px;
    margin: 12px 0 0;
    color: var(--nb-muted);
    font-family: var(--nb-serif);
    font-size: 18px;
    line-height: 1.55;
}

.featured-column {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-left: 1px solid var(--nb-border);
    padding-left: 24px;
}

.featured-story {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--nb-border);
}

.featured-story--large .article-meta {
    margin-top: 12px;
}

.featured-story h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: -0.015em;
}

.featured-story--compact h2 {
    font-size: 19px;
}

.featured-story--compact p {
    margin: 7px 0 0;
    color: var(--nb-muted);
    font-size: 14px;
}

.featured-story--last {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

/* =========================================================
   SZEKCIÓK
   ========================================================= */
.news-section {
    padding-top: 48px;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.section-heading--bordered {
    padding-bottom: 13px;
    border-bottom: 3px double var(--nb-gold);
}

.section-heading__eyebrow {
    display: block;
    margin-bottom: 2px;
    color: var(--nb-gold-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;
    font-family: var(--nb-serif);
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -0.015em;
}

.section-heading__link {
    padding-bottom: 4px;
    color: var(--nb-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.section-heading__link span {
    margin-left: 5px;
    color: var(--nb-red);
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.article-card {
    min-width: 0;
}

.article-card .article-meta {
    margin-top: 14px;
}

.article-card h3 {
    margin: 0;
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: -0.012em;
}

.article-card p {
    margin: 10px 0 0;
    color: var(--nb-muted);
    font-size: 14px;
}

.category-section {
    margin-top: 8px;
}

.category-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    gap: 42px;
}

.category-lead .article-meta {
    margin-top: 15px;
}

.category-lead h3 {
    max-width: 820px;
    margin: 0;
    font-size: 29px;
    line-height: 1.15;
}

.category-lead p {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--nb-muted);
}

.compact-list {
    border-top: 1px solid var(--nb-border-dark);
}

.compact-article {
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid var(--nb-border);
}


.compact-article .article-meta {
    margin-bottom: 4px;
}

.compact-article .article-meta time::before {
    display: none;
}

.compact-article h4 {
    margin: 0;
    font-size: 19px;
    line-height: 1.25;
}

.compact-article--last {
    border-bottom-color: var(--nb-border-dark);
}

/* =========================================================
   KIEMELT / VÉLEMÉNY BLOKK
   ========================================================= */
.opinion-section {
    margin-top: 52px;
    padding: 30px;
    background: var(--nb-text);
    color: #ffffff;
    box-shadow: var(--nb-shadow);
    position: relative;
}

.opinion-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--nb-red) 0 33.33%, var(--nb-bg) 33.33% 66.66%, var(--nb-green) 66.66% 100%);
}

.section-heading--light {
    margin-bottom: 24px;
}

.section-heading--light h2 {
    color: #ffffff;
}

.section-heading--light .section-heading__eyebrow {
    color: #c8a16d;
}

.section-heading--light .section-heading__link {
    color: rgba(255, 255, 255, 0.68);
}

.opinion-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.opinion-card {
    min-width: 0;
    background: var(--nb-text);
    display: flex;
    flex-direction: column;
}

.opinion-card__image-link {
    display: block;
    overflow: hidden;
}

.opinion-card__image {
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #282720;
    color: rgba(255, 255, 255, 0.52);
    font-family: var(--nb-serif);
    font-size: 18px;
}

.opinion-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 180ms ease;
}

.opinion-card__image-link:hover img {
    transform: scale(1.025);
}

.opinion-card__content {
    flex: 1;
    padding: 24px 26px 26px;
    display: flex;
    flex-direction: column;
}

.opinion-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.opinion-card__label {
    color: #c8a16d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.opinion-card__meta time {
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    white-space: nowrap;
}

.opinion-card h3 {
    margin: 15px 0 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.2;
}

.opinion-card h3 a {
    color: inherit;
}

.opinion-card h3 a:hover {
    color: #d5b387;
}

.opinion-card p {
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.55;
}

/* =========================================================
   LÁBLÉC
   ========================================================= */
.site-footer {
    margin-top: 30px;
    border-top: 4px solid var(--nb-gold);
    background: #11110d;
    color: rgba(255, 255, 255, 0.7);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding-top: 42px;
    padding-bottom: 36px;
}

.site-footer__brand {
    color: #ffffff;
    font-family: var(--nb-serif);
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.site-footer p {
    max-width: 520px;
    margin: 7px 0 0;
    font-family: var(--nb-serif);
    font-size: 14px;
}

.site-footer__links {
    display: flex;
    gap: 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.site-footer__links a:hover {
    color: #ffffff;
}

.site-footer__bottom {
    padding-top: 16px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 11px;
}

/* =========================================================
   TABLET
   ========================================================= */
@media (max-width: 1100px) {
    .site-menu .nav-link {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 12px;
    }

    .lead-grid {
        grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.9fr);
        gap: 26px;
    }

    .featured-column {
        padding-left: 22px;
    }

    .lead-story h1 {
        font-size: clamp(32px, 4vw, 47px);
    }
}

@media (max-width: 991.98px) {
    .site-branding__inner {
        height: 112px;
        padding: 0 20px;
    }

   .site-logo {
        width: min(100%, 500px);
        max-height: 104px;
    }

    .site-navigation__inner {
        min-height: 48px;
        justify-content: space-between;
    }

    .site-navigation .navbar-collapse {
        position: absolute;
        z-index: 20;
        top: 48px;
        left: 0;
        right: 0;
        background: var(--nb-bg);
        border-bottom: 2px solid var(--nb-text);
        box-shadow: var(--nb-shadow);
    }

    .site-menu {
        display: block;
        padding: 8px 0;
    }

    .site-menu .nav-item {
        display: block;
    }

    .site-menu .nav-link {
        display: block;
        padding: 11px 18px;
        border-bottom: 0;
        margin-bottom: 0;
    }

    .lead-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .featured-column {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        border-left: 0;
        padding-left: 0;
    }

    .featured-story {
        margin: 0;
    }

    .featured-story--large {
        grid-row: span 2;
        padding-right: 24px;
        border-right: 1px solid var(--nb-border);
        border-bottom: 0;
    }

    .featured-story--compact {
        padding-bottom: 20px;
    }

    .featured-story--last {
        padding-bottom: 0;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* =========================================================
   MOBIL
   ========================================================= */
@media (max-width: 767.98px) {
    .nb-container {
        width: min(calc(100% - 28px), var(--nb-content-width));
    }

    .site-topbar__inner {
        justify-content: center;
        min-height: 30px;
    }

    .site-topbar__motto {
        font-size: 9px;
        letter-spacing: 0.055em;
        text-align: center;
    }

    .site-topbar__motto span {
        margin: 0 4px;
    }

    .site-topbar__links {
        display: none;
    }

    .site-branding__inner {
        height: 96px;
        padding: 0 14px;
    }

   .site-logo {
        width: min(100%, 420px);
        max-height: 88px;
    }

    .breaking-bar__inner {
        gap: 11px;
    }

    .breaking-bar__items a {
        max-width: calc(100vw - 100px);
        margin: 0;
        padding: 0;
        border: 0;
    }

    .breaking-bar__items a:not(:first-child) {
        display: none;
    }

    .home-page {
        padding-top: 22px;
        padding-bottom: 45px;
    }

    .lead-grid {
        gap: 26px;
        padding-bottom: 28px;
    }

    .lead-story__content {
        padding-top: 14px;
    }

    .lead-story h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .lead-story p {
        margin-top: 12px;
        font-size: 16px;
    }

    .featured-column {
        display: block;
    }

    .featured-story,
    .featured-story--large,
    .featured-story--compact {
        padding: 0 0 20px;
        margin: 0 0 20px;
        border-right: 0;
        border-bottom: 1px solid var(--nb-border);
    }

    .featured-story--last {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 0;
    }

    .featured-story h2,
    .featured-story--compact h2 {
        font-size: 22px;
    }

    .news-section {
        padding-top: 38px;
    }

    .section-heading {
        align-items: flex-end;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .section-heading__link {
        font-size: 10px;
    }

    .latest-grid,
    .opinion-grid {
        grid-template-columns: 1fr;
    }

    .article-card {
        padding-bottom: 26px;
        border-bottom: 1px solid var(--nb-border);
    }

    .article-card:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .article-card h3,
    .category-lead h3 {
        font-size: 23px;
    }

    .category-section {
        margin-top: 0;
    }

    .opinion-section {
        margin-left: -14px;
        margin-right: -14px;
        margin-top: 42px;
        padding: 26px 18px;
    }

    .opinion-grid {
        gap: 0;
        border: 0;
        background: transparent;
    }

    .opinion-card {
        min-height: 0;
        padding: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .opinion-card__content {
        padding: 20px 0 24px;
    }

    .opinion-card__image {
        aspect-ratio: 16 / 9;
    }

    .opinion-card h3 {
        font-size: 22px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-top: 34px;
    }

    .site-footer__links {
        flex-wrap: wrap;
        gap: 13px 20px;
    }
}

@media (max-width: 480px) {
    .site-topbar__motto {
        white-space: nowrap;
    }

   .site-logo {
        width: min(100%, 360px);
        max-height: 82px;
    }

    .lead-story h1 {
        font-size: 30px;
    }

    .section-heading {
        gap: 12px;
    }

    .section-heading__link {
        max-width: 95px;
        text-align: right;
    }

    .compact-article {
        grid-template-columns: 34px minmax(0, 1fr);
    }
}


/* =========================================================
   2026-09-02: CÍMLAP FELSŐ RÉSZ FINOMHANGOLÁSA
   A fejléc kompaktabb, hogy 1080p-n már a vezető cikk címe is
   bekerüljön az első képernyőbe. A cikkképek egységesen 16:9-esek.
   ========================================================= */
@media (min-width: 1200px) {
    .lead-story h1 {
        max-width: 900px;
    }

    .featured-story--large .article-image {
        aspect-ratio: 16 / 9;
    }
}

/* =========================================================
   RESPONZÍV FINOMHANGOLÁS
   Desktop → tablet → mobil töréspontok.
   ========================================================= */

/* Kisebb desktop / laptop */
@media (max-width: 1280px) {
    .nb-container {
        width: min(calc(100% - 40px), var(--nb-content-width));
    }

    .site-menu .nav-link {
        padding-left: 14px;
        padding-right: 14px;
    }

    .lead-grid {
        grid-template-columns: minmax(0, 1.62fr) minmax(320px, 0.9fr);
        gap: 28px;
    }

    .category-grid {
        gap: 34px;
    }
}

/* Tablet fekvő / kisebb laptop */
@media (max-width: 1024px) {
    .site-topbar__inner {
        min-height: 30px;
    }

    .site-branding__inner {
        height: 108px;
    }

   .site-logo {
        width: min(100%, 500px);
        max-height: 100px;
    }

    .home-page {
        padding-top: 28px;
    }

    .lead-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured-column {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        padding-left: 0;
        border-left: 0;
    }

    .featured-story--large {
        grid-row: span 2;
        padding-right: 24px;
        border-right: 1px solid var(--nb-border);
        border-bottom: 0;
    }

    .featured-story--compact {
        padding-bottom: 18px;
    }

    .latest-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
    }

    .latest-grid .article-card:last-child {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 24px;
        align-items: center;
    }

    .latest-grid .article-card:last-child .article-meta {
        margin-top: 0;
    }

    .opinion-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .opinion-card:last-child {
        grid-column: 1 / -1;
    }
}

/* Tablet álló / mobil navigáció */
@media (max-width: 991.98px) {
    .site-navigation__inner {
        min-height: 46px;
    }

    .site-navigation .navbar-collapse {
        top: 46px;
    }

    .site-menu-toggle {
        align-self: center;
    }

    .site-search-button {
        margin-left: auto;
    }

    .site-search-panel {
        top: calc(100% + 3px);
        right: 0;
    }

    .breaking-bar__inner {
        min-height: 38px;
    }

    .breaking-bar__items a {
        max-width: 430px;
    }

    .section-heading h2 {
        font-size: 31px;
    }

    .category-grid {
        gap: 26px;
    }
}

/* Mobil */
@media (max-width: 767.98px) {
    .nb-container {
        width: min(calc(100% - 28px), var(--nb-content-width));
    }

    .site-topbar__inner {
        min-height: 28px;
    }

    .site-topbar__motto {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .site-branding__inner {
        height: 86px;
        padding-left: 8px;
        padding-right: 8px;
    }

   .site-logo {
        width: min(100%, 390px);
        max-height: 80px;
    }

    .site-navigation__inner {
        min-height: 44px;
    }

    .site-navigation .navbar-collapse {
        top: 44px;
    }

    .site-search-button {
        width: 44px;
        min-width: 44px;
    }

    .site-search-button svg {
        width: 20px;
        height: 20px;
    }

    .site-search-panel {
        width: calc(100vw - 28px);
        right: 0;
        padding: 12px;
    }

    .breaking-bar__inner {
        min-height: 38px;
        gap: 10px;
    }

    .breaking-bar__label {
        padding: 4px 8px;
        font-size: 10px;
    }

    .breaking-bar__items {
        flex: 1;
    }

    .breaking-bar__items a {
        width: 100%;
        max-width: none;
        min-width: 0;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 12px;
    }

    .home-page {
        padding-top: 20px;
        padding-bottom: 42px;
    }

    .lead-grid {
        gap: 24px;
        padding-bottom: 26px;
    }

    .lead-story__content {
        padding-top: 12px;
    }

    .article-meta {
        flex-wrap: wrap;
        gap: 6px 8px;
        margin-bottom: 7px;
        font-size: 10px;
    }

    .lead-story h1 {
        font-size: clamp(29px, 8.3vw, 36px);
        line-height: 1.08;
    }

    .lead-story p {
        font-size: 16px;
        line-height: 1.5;
    }

    .featured-column {
        display: block;
    }

    .featured-story--large,
    .featured-story--compact,
    .featured-story--last {
        padding: 0 0 20px;
        margin: 0 0 20px;
        border-right: 0;
        border-bottom: 1px solid var(--nb-border);
    }

    .featured-story--last {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 0;
    }

    .featured-story h2,
    .featured-story--compact h2 {
        font-size: 21px;
        line-height: 1.2;
    }

    .news-section {
        padding-top: 36px;
    }

    .section-heading {
        gap: 14px;
        margin-bottom: 18px;
    }

    .section-heading--bordered {
        padding-bottom: 11px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .section-heading__link {
        max-width: 120px;
        font-size: 10px;
        line-height: 1.3;
        text-align: right;
    }

    .latest-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .latest-grid .article-card,
    .latest-grid .article-card:last-child {
        display: block;
        grid-column: auto;
        padding: 0 0 26px;
        margin: 0 0 26px;
        border-bottom: 1px solid var(--nb-border);
    }

    .latest-grid .article-card:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 0;
    }

    .article-card .article-meta {
        margin-top: 12px;
    }

    .article-card h3,
    .category-lead h3 {
        font-size: 22px;
        line-height: 1.2;
    }

    .category-lead .article-meta {
        margin-top: 12px;
    }

    .compact-article {
        padding: 17px 0;
    }

    .compact-article h4 {
        font-size: 18px;
    }

    .opinion-section {
        margin-top: 38px;
    }

    .opinion-grid {
        grid-template-columns: 1fr;
    }

    .opinion-card:last-child {
        grid-column: auto;
    }

    .site-footer {
        margin-top: 18px;
    }

    .site-footer__brand {
        font-size: 24px;
    }
}

/* Keskeny mobil */
@media (max-width: 480px) {
    .nb-container {
        width: calc(100% - 20px);
    }

    .site-topbar__motto {
        font-size: 8px;
        letter-spacing: 0.04em;
    }

    .site-branding__inner {
        height: 76px;
        padding: 0 4px;
    }

   .site-logo {
        width: min(100%, 340px);
        max-height: 70px;
    }

    .site-search-panel {
        width: calc(100vw - 20px);
    }

    .home-page {
        padding-top: 16px;
    }

    .lead-story h1 {
        font-size: clamp(27px, 8.7vw, 32px);
    }

    .lead-story p {
        font-size: 15px;
    }

    .section-heading {
        align-items: flex-end;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .section-heading__link {
        max-width: 100px;
        font-size: 9px;
    }

    .article-card h3,
    .category-lead h3 {
        font-size: 21px;
    }

    .opinion-section {
        margin-left: -10px;
        margin-right: -10px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .site-footer__grid {
        gap: 22px;
        padding-top: 30px;
        padding-bottom: 28px;
    }

    .site-footer__links {
        gap: 12px 16px;
    }
}


/* =========================================================
   2026-09-04: MOBIL FEJLÉC – BAL OLDALI KOMPAKT LOGÓ
   Mobilon nagyobb embléma + wordmark jelenik meg.
   ========================================================= */
@media (max-width: 767.98px) {
    .site-header {
        position: relative;
    }

    .site-branding__inner {
        height: 96px;
        justify-content: flex-start;
        padding-left: 0;
        padding-right: 92px;
    }

    .site-brand {
        width: 100%;
        max-width: none;
        justify-content: flex-start;
    }

    .site-brand-desktop {
        display: none;
    }

    .site-brand-mobile {
        width: 100%;
        max-width: none;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 5px;
        overflow: hidden;
    }

    .site-logo-mobile-mark {
        flex: 0 0 88px;
        width: 88px;
        height: 88px;
        object-fit: contain;
    }

    .site-logo-mobile-wordmark {
        flex: 1 1 0;
        min-width: 0;
        width: 100%;
        max-width: none;
        max-height: 72px;
        object-fit: contain;
        object-position: left center;
    }

    .site-navigation {
        position: absolute;
        z-index: 30;
        top: 28px;
        left: 0;
        right: 0;
        height: 96px;
        padding: 0;
        border-top: 0;
        border-bottom: 0;
        background: transparent;
        pointer-events: none;
    }

    .site-navigation__inner {
        width: min(calc(100% - 28px), var(--nb-content-width));
        min-height: 96px;
        height: 96px;
        margin: 0 auto;
        padding: 0;
        justify-content: flex-end;
        align-items: center;
        gap: 0;
        pointer-events: none;
    }

    .site-search-button,
    .site-menu-toggle,
    .site-navigation .navbar-collapse,
    .site-search-panel {
        pointer-events: auto;
    }

    .site-search-button {
        order: 1;
        width: 42px;
        min-width: 42px;
        height: 44px;
        margin-left: auto;
    }

    .site-menu-toggle {
        order: 2;
        width: 44px;
        min-width: 44px;
        height: 44px;
        padding: 9px;
        margin: 0 0 0 4px;
    }

    .site-navigation .navbar-collapse {
        order: 3;
        top: 96px;
        left: 0;
        right: 0;
        width: 100%;
    }

    .site-search-panel {
        top: 96px;
        right: 0;
        width: min(440px, calc(100vw - 28px));
    }
}

@media (max-width: 480px) {
    .site-branding__inner {
        height: 96px;
        padding-right: 86px;
    }

    .site-brand-mobile {
        gap: 4px;
    }

    .site-logo-mobile-mark {
        flex-basis: 82px;
        width: 82px;
        height: 82px;
    }

    .site-logo-mobile-wordmark {
        max-width: none;
        max-height: 66px;
    }

    .site-navigation {
        height: 96px;
    }

    .site-navigation__inner {
        width: calc(100% - 20px);
        min-height: 96px;
        height: 96px;
    }

    .site-navigation .navbar-collapse,
    .site-search-panel {
        top: 96px;
    }

    .site-search-button {
        width: 40px;
        min-width: 40px;
        height: 42px;
    }

    .site-menu-toggle {
        width: 42px;
        min-width: 42px;
        height: 42px;
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* =========================================================
   ROVAT- ÉS CIKKOLDALAK
   ========================================================= */
.listing-page {
    padding-top: 42px;
    padding-bottom: 76px;
}

.listing-page__header {
    margin-bottom: 26px;
    padding-bottom: 15px;
    border-bottom: 3px double var(--nb-gold);
}

.listing-page__header h1 {
    margin: 0;
    font-family: var(--nb-serif);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.listing-lead {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(320px, .88fr);
    gap: 34px;
    align-items: center;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--nb-border-dark);
}

.listing-lead__content h2 {
    margin: 0;
    font-family: var(--nb-serif);
    font-size: clamp(29px, 3vw, 43px);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.listing-lead__content h2 a:hover,
.listing-card h3 a:hover {
    color: var(--nb-red);
}

.listing-lead__content p {
    margin: 14px 0 0;
    color: var(--nb-muted);
    font-family: var(--nb-serif);
    font-size: 17px;
    line-height: 1.55;
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px 22px;
    margin-top: 34px;
}

/* A partial saját wrapperét nem tesszük a grid részévé, így a kártyák közvetlen grid-elemek maradnak. */
.listing-grid > .js-article-batch {
    display: contents;
}

.listing-card {
    min-width: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--nb-border);
}

.listing-card__image-link {
    display: block;
    margin-bottom: 15px;
}

.listing-card__image-link .article-image {
    margin: 0;
    aspect-ratio: 16 / 9;
}

.listing-card__body {
    min-width: 0;
}

.listing-card h3 {
    margin: 0;
    font-family: var(--nb-serif);
    font-size: 22px;
    line-height: 1.2;
}

.listing-card p {
    margin: 9px 0 0;
    color: var(--nb-muted);
    line-height: 1.5;
}

.listing-more {
    display: flex;
    justify-content: center;
    padding: 34px 0 8px;
}

.listing-more__button {
    min-width: 150px;
    padding: 12px 24px;
    border: 1px solid var(--nb-border-dark);
    border-radius: 3px;
    background: transparent;
    color: var(--nb-text);
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .055em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.listing-more__button:hover {
    border-color: var(--nb-red);
    background: var(--nb-red);
    color: #fff;
}

.listing-more__button:disabled {
    cursor: wait;
    opacity: .65;
}

.empty-news-state {
    margin: 34px 0;
    padding: 34px;
    border: 1px solid var(--nb-border);
    background: var(--nb-surface-warm);
    color: var(--nb-muted);
    text-align: center;
    font-family: var(--nb-serif);
}

.public-article {
    max-width: 1040px;
    padding-top: 48px;
    padding-bottom: 90px;
}

.public-article__header {
    max-width: 900px;
    margin: 0 auto 32px;
}

.public-article__category {
    margin-bottom: 12px;
}

.public-article__header h1 {
    margin: 0;
    font-family: var(--nb-serif);
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.public-article__byline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.public-article__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    overflow: hidden;
    border: 1px solid var(--nb-border);
    border-radius: 50%;
    background: var(--nb-surface-warm);
    color: var(--nb-muted);
}

.public-article__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.public-article__avatar svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.public-article__byline-text {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0;
    color: var(--nb-muted);
    font-size: 13px;
    line-height: 1.45;
}

.public-article__author {
    color: var(--nb-text);
    font-weight: 700;
}

.public-article__byline-separator {
    color: var(--nb-muted);
}

.public-article__byline time {
    white-space: nowrap;
}

.public-article__excerpt {
    margin: 18px 0 0;
    color: var(--nb-muted);
    font-family: var(--nb-serif);
    font-size: 20px;
    line-height: 1.55;
}

.public-article__figure {
    margin: 0 0 35px;
}

.public-article__figure img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.public-article__figure figcaption {
    padding-top: 8px;
    color: var(--nb-muted);
    font-size: 12px;
}

.public-article__content {
    max-width: 880px;
    min-width: 0;
    margin: 0 auto;
    font-family: var(--nb-serif);
    font-size: 19px;
    line-height: 1.75;
    overflow-wrap: break-word;
}

.public-article__content p {
    margin: 0 0 1.3em;
}

.public-article__content > img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
}

.public-article__content figure.article-image-embed {
    display: block;
    max-width: 100%;
    margin: 30px auto;
}

.public-article__content figure.article-image-embed img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
}

.public-article__content figure.article-image-embed figcaption {
    padding-top: 8px;
    color: var(--nb-muted);
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
}

.public-article__content .article-table-embed {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 28px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.public-article__content .article-table-embed table {
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
}

.public-article__content .article-table-embed th,
.public-article__content .article-table-embed td {
    min-width: 90px;
    padding: 9px 10px;
    border: 1px solid var(--nb-border-dark);
    vertical-align: top;
}

.public-article__content iframe.ql-video {
    display: block;
    width: min(100%, 820px);
    aspect-ratio: 16 / 9;
    height: auto;
    margin: 30px auto;
    border: 0;
}

.breaking-bar__label {
    text-decoration: none;
}

@media (max-width: 1100px) {
    .listing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .listing-lead {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .listing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .listing-page {
        padding-top: 26px;
    }

    .public-article {
        padding-top: 30px;
    }
}

@media (max-width: 520px) {
    .listing-grid {
        grid-template-columns: 1fr;
    }
}

/* Rovatoldal: 1 nagy + 3 kiemelt, alatta négyoszlopos cikkrács */
.listing-featured-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.72fr) minmax(330px, .9fr);
    gap: 30px;
    padding-bottom: 34px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--nb-border-dark);
}

.listing-featured-lead__content { padding-top: 15px; }
.listing-featured-lead h2 {
    margin: 7px 0 9px;
    font-family: var(--nb-serif);
    font-size: clamp(28px, 2.5vw, 43px);
    line-height: 1.05;
}
.listing-featured-lead p { margin: 0; color: var(--nb-muted); line-height: 1.58; }

.listing-featured-side {
    display: grid;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 0;
}
.listing-featured-side__item {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 0 0 17px;
    margin: 0 0 17px;
    border-bottom: 1px solid var(--nb-border);
}
.listing-featured-side__item:last-child { margin-bottom: 0; }
.listing-featured-side__image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--nb-surface-warm);
    border: 1px solid var(--nb-border);
}
.listing-featured-side__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.listing-featured-side h3 {
    margin: 5px 0 5px;
    font-family: var(--nb-serif);
    font-size: 20px;
    line-height: 1.12;
}
.listing-featured-side p {
    margin: 0;
    color: var(--nb-muted);
    font-size: 13px;
    line-height: 1.42;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px 24px;
}
.listing-grid > .js-article-batch { display: contents; }
.listing-card { min-width: 0; }
.listing-card__image-link { display: block; margin-bottom: 12px; }
.listing-card__body h3 {
    margin: 6px 0 8px;
    font-family: var(--nb-serif);
    font-size: 21px;
    line-height: 1.15;
}
.listing-card__body p { margin: 0; color: var(--nb-muted); font-size: 14px; line-height: 1.5; }

@media (max-width: 1100px) {
    .listing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
    .listing-featured-grid { grid-template-columns: 1fr; }
    .listing-featured-side { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: none; gap: 18px; }
    .listing-featured-side__item { display: block; border-bottom: 0; margin: 0; padding: 0; }
    .listing-featured-side__image { margin-bottom: 10px; }
}
@media (max-width: 760px) {
    .listing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .listing-featured-side { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
    .listing-grid { grid-template-columns: 1fr; }
}
.listing-featured-side__image.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nb-muted);
    font-family: var(--nb-serif);
    font-size: 12px;
    font-style: italic;
}

/* Rovatnézet: a felső négy cikk ugyanazt a címlapi lead/featured elrendezést használja. */
.listing-page .listing-lead-grid {
    margin-bottom: 0;
}

/* Article presentation settings */
.article-highlight--brown {
    background: #3f2d22;
    color: #fff;
    padding: 18px;
}
.article-highlight--black {
    background: #090909;
    color: #fff;
    padding: 18px;
}
.article-highlight--brown a,
.article-highlight--brown h1,
.article-highlight--brown h2,
.article-highlight--brown h3,
.article-highlight--brown h4,
.article-highlight--brown p,
.article-highlight--brown time,
.article-highlight--black a,
.article-highlight--black h1,
.article-highlight--black h2,
.article-highlight--black h3,
.article-highlight--black h4,
.article-highlight--black p,
.article-highlight--black time {
    color: inherit;
}
.article-highlight--brown .article-category,
.article-highlight--black .article-category {
    color: #f1d4a8;
}
.article-adult-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 29px;
    height: 21px;
    padding: 0 6px;
    margin-left: 8px;
    border: 1px solid currentColor;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}
.public-article__adult-notice {
    max-width: 880px;
    margin: 0 auto 22px;
    padding: 11px 14px;
    border: 1px solid #8f2c22;
    background: #fff4f2;
    color: #7b2119;
    font-weight: 800;
}
.public-article__video {
    max-width: 880px;
    margin: 0 auto 28px;
    aspect-ratio: 16 / 9;
    background: #000;
}
.public-article__video iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}


/* Felnőtt tartalom: borítóképek elmosása és életkor-megerősítés */
.article-image__img--adult,
.public-article__figure--adult img {
    filter: blur(18px);
    transform: scale(1.04);
}

.article-image,
.opinion-card__image,
.public-article__figure--adult {
    overflow: hidden;
}

html.adult-confirm-open,
html.adult-confirm-open body {
    overflow: hidden;
}

.adult-confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.adult-confirm-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 14, 11, .78);
    backdrop-filter: blur(5px);
}

.adult-confirm-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(440px, 100%);
    padding: 30px 28px 26px;
    border: 1px solid #c9b99e;
    background: #fffdf9;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
    text-align: center;
}

.adult-confirm-modal__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 36px;
    margin-bottom: 14px;
    padding: 0 10px;
    border: 2px solid #8f2c22;
    color: #8f2c22;
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
}

.adult-confirm-modal__dialog h2 {
    margin: 0 0 8px;
    color: #2b211a;
    font-size: 25px;
}

.adult-confirm-modal__dialog p {
    margin: 0 0 24px;
    color: #5d5148;
    font-size: 17px;
}

.adult-confirm-modal__actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.adult-confirm-modal__button {
    min-width: 112px;
    padding: 10px 18px;
    border: 1px solid #aa9272;
    border-radius: 4px;
    background: #fff;
    color: #34261d;
    font-weight: 700;
    cursor: pointer;
}

.adult-confirm-modal__button--primary {
    border-color: #7c522b;
    background: #7c522b;
    color: #fff;
}

.adult-confirm-modal__button:hover {
    filter: brightness(.96);
}
