* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--color-surface, #fff);
    color: var(--color-body, #4b5563);
    font-family: var(--font-body, Arial, sans-serif);
    line-height: 1.55;
}

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

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

.wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.ticker {
    background: var(--color-title, #151515);
    color: #fff;
    font-size: 14px;
}

.ticker-inner {
    display: flex;
    gap: 14px;
    align-items: center;
    min-height: 40px;
}

.ticker strong {
    background: var(--color-accent, #e6382e);
    color: #fff;
    padding: 5px 10px;
    font-family: var(--font-accent, Arial, sans-serif);
    text-transform: uppercase;
}

.masthead {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-bottom: 1px solid #ececec;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: 74px;
    max-height: 74px;
    object-fit: contain;
}

.brand b {
    display: block;
    color: var(--color-title, #151515);
    font-family: var(--font-title, Georgia, serif);
    font-size: 42px;
    line-height: 1;
}

.brand small {
    display: block;
    margin-top: 7px;
    color: var(--color-body, #4b5563);
    font-size: 14px;
}

.search {
    display: flex;
    width: min(360px, 100%);
    border: 1px solid #dedede;
    background: #fff;
}

.search input {
    width: 100%;
    border: 0;
    padding: 13px 14px;
    font: inherit;
    outline: 0;
}

.search button {
    width: 46px;
    border: 0;
    background: var(--color-accent, #e6382e);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.nav {
    display: flex;
    gap: 26px;
    align-items: center;
    min-height: 56px;
    color: var(--color-title, #151515);
    font-weight: 700;
    border-bottom: 3px solid var(--color-title, #151515);
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.nav::-webkit-scrollbar {
    display: none;
}

.nav a {
    white-space: nowrap;
}

.preferred-source-article {
    position: relative;
    width: 250px !important;
    min-height: 60px;
    margin: 0 0 20px;
}

.preferred-source-intro {
    margin: 32px 0 12px;
    padding: 14px 16px;
    border-left: 4px solid var(--color-accent, #e6382e);
    background: var(--color-soft, #f5f6f8);
    color: var(--color-body, #111827);
    font-weight: 600;
    line-height: 1.45;
}

.preferred-source-intro strong {
    color: var(--color-title, #111827);
}

.nav-action,
.nav-search-toggle {
    flex: 0 0 auto;
    min-height: 44px;
    border: 0;
    background: transparent;
    color: var(--color-title, #151515);
    padding: 0;
    font: inherit;
    white-space: nowrap;
}

.nav-action {
    display: inline-flex;
    gap: 7px;
    color: var(--color-accent, #e6382e);
}

.nav-search-toggle {
    display: none;
    width: 44px;
    margin-left: auto;
    font-size: 23px;
}

.podcast-icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bulletin-picker[hidden],
.bulletin-player[hidden],
.bulletin-build[hidden] {
    display: none;
}

.bulletin-picker {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: start center;
    padding: 150px 18px 30px;
}

.bulletin-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100%;
    background: rgba(15, 18, 23, 0.62);
    cursor: default;
}

.bulletin-sheet {
    position: relative;
    width: min(640px, 100%);
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    background: #fff;
    border-top: 6px solid var(--color-accent, #e6382e);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    padding: 26px;
}

.bulletin-sheet-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.bulletin-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--color-accent, #e6382e);
    font: 900 13px var(--font-accent, Arial, sans-serif);
    text-transform: uppercase;
}

.bulletin-sheet h2 {
    margin: 8px 0 4px;
    color: var(--color-title, #151515);
    font: 800 34px/1.05 var(--font-title, Georgia, serif);
}

.bulletin-sheet-head p {
    margin: 0;
}

.bulletin-close,
.bulletin-player-close {
    flex: 0 0 auto;
    width: 48px;
    min-height: 48px;
    border-radius: 50%;
    background: #eef0f3;
    color: var(--color-title, #151515);
    padding: 0;
    font-size: 28px;
}

.bulletin-options {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.bulletin-option {
    position: relative;
    display: grid;
    grid-template-columns: minmax(150px, 0.85fr) minmax(0, 1.15fr) 42px;
    grid-template-areas: "duration window arrow" "duration detail arrow";
    align-items: center;
    min-height: 78px;
    border: 2px solid #e2e5e9;
    background: #fff;
    color: var(--color-title, #151515);
    padding: 12px 14px;
    text-align: left;
}

.bulletin-option:hover,
.bulletin-option:focus-visible {
    border-color: var(--color-accent, #e6382e);
    outline: 0;
}

.bulletin-option strong {
    grid-area: duration;
    color: var(--color-accent, #e6382e);
    font: 900 24px/1 var(--font-accent, Arial, sans-serif);
}

.bulletin-option span {
    grid-area: window;
    font-size: 16px;
    font-weight: 900;
}

.bulletin-option small {
    grid-area: detail;
    color: #727984;
    font-size: 12px;
    font-weight: 700;
}

.bulletin-option i {
    grid-area: arrow;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-accent, #e6382e);
    color: #fff;
    font-style: normal;
}

.bulletin-option i svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.bulletin-build {
    margin-top: 28px;
    padding: 22px;
    background: var(--color-soft, #f4f2ee);
}

.bulletin-build-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--color-title, #151515);
}

.bulletin-progress {
    height: 10px;
    margin-top: 14px;
    overflow: hidden;
    background: #d5d8dd;
}

.bulletin-progress i {
    display: block;
    width: 0;
    height: 100%;
    background: var(--color-accent, #e6382e);
    transition: width 0.25s ease;
}

.bulletin-build p {
    margin: 12px 0;
    font-size: 14px;
}

.bulletin-cancel {
    min-height: 44px;
    background: var(--color-title, #151515);
}

.bulletin-player {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    background: #121419;
    color: #fff;
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.3);
}

.bulletin-player-main {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 126px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(230px, 1fr) auto minmax(300px, 1.35fr);
    gap: 28px;
    align-items: center;
    padding: 16px 52px 16px 0;
}

.bulletin-player-close {
    position: absolute;
    top: 10px;
    right: 0;
    width: 38px;
    min-height: 38px;
    background: #2c3038;
    color: #fff;
    font-size: 23px;
}

.bulletin-now {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.bulletin-now > .podcast-icon {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    color: var(--color-accent, #e6382e);
}

.bulletin-now strong,
.bulletin-now span {
    display: block;
}

.bulletin-now strong {
    color: #fff;
    font-size: 15px;
}

.bulletin-now span {
    color: #aeb4c0;
    font-size: 12px;
}

.bulletin-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.bulletin-controls button {
    width: 52px;
    min-height: 52px;
    border: 1px solid #4a505c;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    padding: 0;
    line-height: 1;
}

.bulletin-controls button b,
.bulletin-controls button small {
    display: block;
}

.bulletin-controls button b {
    font-size: 13px;
}

.bulletin-controls button small {
    margin-top: 1px;
    font-size: 8px;
}

.bulletin-controls .bulletin-play {
    width: 66px;
    min-height: 66px;
    border: 0;
    background: var(--color-accent, #e6382e);
}

.bulletin-play svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.bulletin-play svg[hidden] {
    display: none;
}

.bulletin-timeline {
    display: grid;
    grid-template-columns: 38px minmax(100px, 1fr) 38px 68px;
    gap: 9px;
    align-items: center;
    color: #c9cdd5;
    font-size: 12px;
}

.bulletin-timeline input {
    width: 100%;
    accent-color: var(--color-accent, #e6382e);
}

.bulletin-timeline select {
    min-height: 42px;
    border: 1px solid #4a505c;
    background: #20242b;
    color: #fff;
    padding: 0 8px;
}

body.has-bulletin-player {
    padding-bottom: 126px;
}

.nav a:hover,
.card h3 a:hover,
.lead h1 a:hover,
.story-row h3 a:hover,
.article-body a {
    color: var(--color-accent, #e6382e);
}

.trend-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    min-height: 42px;
    padding: 8px 0 10px;
    border-bottom: 1px solid #ececec;
}

.trend-tags a {
    border: 1px solid #d9dde3;
    background: #fff;
    color: var(--color-title, #151515);
    padding: 5px 10px;
    font-family: var(--font-accent, Arial, sans-serif);
    font-size: 13px;
    font-weight: 900;
}

.trend-tags a:hover {
    border-color: var(--color-accent, #e6382e);
    color: var(--color-accent, #e6382e);
}

.feed-shell {
    padding: 34px 0 58px;
}

.lead {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ececec;
}

.lead-image,
.thumb {
    position: relative;
    overflow: hidden;
    background: var(--color-soft, #f4f2ee);
}

.lead-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.lead-image span,
.thumb span {
    position: absolute;
    left: 12px;
    top: 12px;
    background: var(--color-accent, #e6382e);
    color: #fff;
    padding: 5px 9px;
    font-family: var(--font-accent, Arial, sans-serif);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--color-accent, #e6382e);
    font-family: var(--font-accent, Arial, sans-serif);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.lead h1,
.article-head h1 {
    margin: 0;
    color: var(--color-title, #151515);
    font-family: var(--font-title, Georgia, serif);
    font-size: clamp(34px, 4vw, 62px);
    line-height: 1.02;
    letter-spacing: 0;
}

.lead-body > p:not(.eyebrow),
.article-head > p {
    color: var(--color-body, #4b5563);
    font-size: 18px;
}

.meta {
    color: #7b8088;
    font-size: 13px;
    font-weight: 700;
}

.side-list,
.panel,
.admin-card {
    border-top: 4px solid var(--color-title, #151515);
    background: #fff;
}

.side-list h2,
.panel h2,
.section-head h2,
.article-side h2 {
    margin: 0 0 18px;
    color: var(--color-title, #151515);
    font-family: var(--font-title, Georgia, serif);
    font-size: 25px;
}

.ranked {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid #e8e8e8;
}

.ranked strong {
    color: var(--color-accent, #e6382e);
    font-family: var(--font-title, Georgia, serif);
    font-size: 30px;
    line-height: 1;
}

.ranked span,
.mini span {
    color: var(--color-title, #151515);
    font-weight: 800;
}

.ranked small,
.mini small {
    display: block;
    margin-top: 5px;
    color: #8a8f98;
    font-size: 12px;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0 18px;
    border-top: 1px solid #ececec;
}

.section-head a {
    color: var(--color-accent, #e6382e);
    font-weight: 800;
}

.compact {
    padding-top: 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    padding-bottom: 34px;
}

.feed-grid {
    border-bottom: 1px solid #ececec;
    margin-bottom: 32px;
}

.card {
    min-width: 0;
}

.thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.card h3 {
    margin: 10px 0 8px;
    color: var(--color-title, #151515);
    font-family: var(--font-title, Georgia, serif);
    font-size: 24px;
    line-height: 1.15;
}

.card p {
    margin: 0 0 10px;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 36px;
    padding: 24px 0 54px;
}

.story-list {
    display: grid;
    gap: 22px;
}

.feed-list {
    max-width: 920px;
}

.story-row {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e8e8e8;
}

.story-row img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.feed-item-hidden {
    display: none;
}

.feed-load-wrap {
    display: flex;
    justify-content: center;
    padding: 10px 0 0;
}

.load-more {
    min-width: 220px;
}

.story-row h3 {
    margin: 8px 0;
    color: var(--color-title, #151515);
    font-family: var(--font-title, Georgia, serif);
    font-size: 25px;
    line-height: 1.15;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    background: var(--color-highlight, #0f766e);
    color: #fff;
    padding: 3px 8px;
    font-family: var(--font-accent, Arial, sans-serif);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.panel {
    padding-top: 18px;
}

.announcement-block {
    margin: 8px 0 34px;
    padding: 24px;
    border-top: 4px solid var(--color-title, #151515);
    border-bottom: 1px solid #e5e7eb;
    background: var(--color-soft, #f4f2ee);
}

.announcement-page {
    margin-top: 0;
}

.announcement-note {
    margin: 0 0 5px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 800;
}

.announcement-block h2 {
    margin: 0 0 18px;
    color: var(--color-title, #151515);
    font-family: var(--font-title, Georgia, serif);
    font-size: 28px;
}

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

.announcement-page .announcement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.announcement-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
    min-width: 0;
}

.announcement-card img {
    width: 120px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.announcement-card h3 {
    margin: 5px 0 6px;
    color: var(--color-title, #151515);
    font-family: var(--font-title, Georgia, serif);
    font-size: 18px;
    line-height: 1.18;
}

.announcement-card p {
    margin: 0;
    font-size: 14px;
}

.submit-release {
    display: inline-flex;
    color: var(--color-accent, #e6382e);
    font-weight: 900;
}

.announcement-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    align-items: center;
    margin-top: 18px;
}

.more-releases {
    color: var(--color-title, #151515);
}

.more-releases:hover {
    color: var(--color-accent, #e6382e);
}

.mini {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 12px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid #e8e8e8;
}

.mini img {
    width: 86px;
    height: 68px;
    object-fit: cover;
    background: var(--color-soft, #f4f2ee);
}

.article {
    padding: 40px 0 64px;
}

.article-head {
    max-width: 880px;
    margin: 0 auto 28px;
    text-align: center;
}

.article-head .pill {
    margin-bottom: 16px;
}

.article-image {
    margin: 0 0 36px;
}

.article-image img {
    width: 100%;
    max-height: 640px;
    object-fit: cover;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) 300px;
    gap: 48px;
    justify-content: center;
}

.article-body {
    min-width: 0;
    color: #30343a;
    font-size: 19px;
}

.article-body h2,
.article-body h3 {
    color: var(--color-title, #151515);
    font-family: var(--font-title, Georgia, serif);
    line-height: 1.15;
}

.article-body img {
    height: auto;
    margin: 24px 0;
}

.article-body blockquote {
    margin: 28px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--color-accent, #e6382e);
    background: var(--color-soft, #f4f2ee);
    color: var(--color-title, #151515);
    font-family: var(--font-title, Georgia, serif);
    font-size: 24px;
}

.source {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid #e8e8e8;
    font-size: 14px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid #e8e8e8;
}

.article-tags span {
    width: 100%;
    color: var(--color-title, #151515);
    font-weight: 900;
}

.article-tags a {
    border: 1px solid #d9dde3;
    background: #fff;
    color: var(--color-title, #151515);
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 800;
}

.article-tags a:hover {
    border-color: var(--color-accent, #e6382e);
    color: var(--color-accent, #e6382e);
}

.empty {
    padding: 70px 0;
    text-align: center;
}

.empty h1 {
    color: var(--color-title, #151515);
    font-family: var(--font-title, Georgia, serif);
}

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 0;
    background: var(--color-accent, #e6382e);
    color: #fff;
    padding: 0 16px;
    font: 800 14px var(--font-body, Arial, sans-serif);
    cursor: pointer;
}

.footer {
    background: var(--color-title, #151515);
    color: #d8d8d8;
    padding: 42px 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 32px;
}

.footer h3,
.footer h4 {
    margin: 0 0 12px;
    color: #fff;
    font-family: var(--font-title, Georgia, serif);
}

.footer a {
    color: #fff;
}

.copyright {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 13px;
}

/* Budapest.hu-inspired, site-scoped visual system. */
.theme-budapest {
    background: #fff;
    color: #222;
}

.theme-budapest .ticker {
    border-top: 5px solid #ffd200;
    background: #006faa;
}

.theme-budapest .ticker strong {
    background: #d40d00;
    letter-spacing: 0.04em;
}

.theme-budapest .masthead {
    min-height: 96px;
    border-bottom: 0;
    background: #12326e;
    box-shadow: 0 0 0 100vmax #12326e;
    clip-path: inset(0 -100vmax);
}

.theme-budapest .brand img {
    width: min(264px, 46vw);
    max-height: 58px;
}

.theme-budapest .search {
    border: 1px solid rgba(255, 255, 255, 0.58);
}

.theme-budapest .search button {
    background: #006faa;
}

.theme-budapest .nav-shell {
    border-bottom: 5px solid #d40d00;
    background: #12326e;
}

.theme-budapest .nav {
    min-height: 58px;
    border-bottom: 0;
    color: #fff;
}

.theme-budapest .nav a:hover,
.theme-budapest .nav a:focus-visible,
.theme-budapest .nav-action:hover,
.theme-budapest .nav-action:focus-visible {
    color: #ffd200;
    outline: 0;
}

.theme-budapest .nav-action,
.theme-budapest .nav-search-toggle {
    color: #fff;
}

.theme-budapest .trend-tags {
    border-bottom-color: #c5e9f5;
    background: #e6f1f7;
    box-shadow: 0 0 0 100vmax #e6f1f7;
    clip-path: inset(0 -100vmax);
}

.theme-budapest .trend-tags a {
    border-color: rgba(0, 111, 170, 0.35);
    color: #12326e;
}

.theme-budapest .lead h1,
.theme-budapest .article-head h1,
.theme-budapest .card h3,
.theme-budapest .story-row h3,
.theme-budapest .footer h3,
.theme-budapest .footer h4 {
    font-weight: 700;
}

.theme-budapest .lead-image span,
.theme-budapest .thumb span {
    background: #d40d00;
}

.theme-budapest .pill {
    background: #006faa;
}

.theme-budapest .load-more {
    border: 2px solid #12326e;
    background: #fff;
    color: #12326e;
}

.theme-budapest .load-more:hover,
.theme-budapest .load-more:focus-visible {
    background: #12326e;
    color: #fff;
}

.theme-budapest .footer {
    border-top: 5px solid #ffd200;
    background: #12326e;
}

/* EVENTEM: modern szakmai magazin MICE-, hotel-, gasztro- és turisztikai témákra. */
.theme-eventem {
    background: linear-gradient(180deg, #fff 0, #fff 540px, var(--color-soft) 100%);
}

.theme-eventem .ticker {
    background: var(--color-title);
    color: #fff;
}

.theme-eventem .ticker strong {
    color: var(--color-highlight);
    letter-spacing: .14em;
}

.theme-eventem .masthead {
    min-height: 112px;
    padding-top: 22px;
    padding-bottom: 22px;
}

.theme-eventem .brand img {
    width: min(470px, 52vw);
    height: 76px;
    object-fit: contain;
    object-position: left center;
}

.theme-eventem .search {
    border: 1px solid #d7dde2;
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
}

.theme-eventem .search button {
    background: var(--color-accent);
    color: #fff;
}

.theme-eventem .nav-shell {
    background: var(--color-title);
    border: 0;
    box-shadow: 0 10px 28px rgba(12, 34, 56, .15);
}

.theme-eventem .nav a,
.theme-eventem .nav-action,
.theme-eventem .nav-search-toggle {
    color: #fff;
    font-weight: 750;
}

.theme-eventem .nav a:hover,
.theme-eventem .nav a:focus-visible,
.theme-eventem .nav-action:hover,
.theme-eventem .nav-action:focus-visible {
    color: var(--color-highlight);
}

.theme-eventem .trend-tags {
    border: 0;
    background: #fff;
    box-shadow: 0 12px 30px rgba(12, 34, 56, .08);
}

.theme-eventem .trend-tags a:hover {
    color: var(--color-accent);
}

.theme-eventem .lead,
.theme-eventem .card,
.theme-eventem .story-row,
.theme-eventem .article-shell {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(12, 34, 56, .09);
}

.theme-eventem .lead h1,
.theme-eventem .article-head h1,
.theme-eventem .card h3,
.theme-eventem .story-row h3 {
    letter-spacing: -.018em;
}

.theme-eventem .lead-image span,
.theme-eventem .thumb span,
.theme-eventem .pill {
    background: var(--color-accent);
    color: #fff;
}

.theme-eventem .article-tags a {
    border-color: #d7dde2;
    color: var(--color-title);
}

.theme-eventem .article-tags a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.theme-eventem .load-more {
    border-color: var(--color-title);
    background: var(--color-title);
    color: #fff;
}

.theme-eventem .load-more:hover,
.theme-eventem .load-more:focus-visible {
    border-color: var(--color-accent);
    background: var(--color-accent);
}

.theme-eventem .footer {
    background: var(--color-title);
    color: #dce3e8;
}

.theme-eventem .footer a,
.theme-eventem .footer h3,
.theme-eventem .footer h4 {
    color: #fff;
}

@media (max-width: 720px) {
    .theme-eventem .masthead {
        min-height: 82px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .theme-eventem .brand img {
        width: min(340px, 76vw);
        height: 58px;
    }

    .theme-eventem .lead,
    .theme-eventem .card,
    .theme-eventem .story-row,
    .theme-eventem .article-shell {
        border-radius: 14px;
    }
}

@media (max-width: 980px) {
    .split,
    .article-layout {
        grid-template-columns: 1fr;
    }

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

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .announcement-grid,
    .announcement-page .announcement-grid {
        grid-template-columns: 1fr;
    }

    .masthead {
        min-height: 94px;
        padding: 14px 0;
    }

    .theme-budapest .masthead {
        min-height: 86px;
    }

    .masthead .search {
        display: none;
        position: absolute;
        z-index: 20;
        top: 134px;
        left: 16px;
        right: 16px;
        width: auto;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
    }

    .masthead .search.is-open {
        display: flex;
    }

    .nav-search-toggle {
        display: inline-flex;
    }

    .bulletin-player-main {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 14px;
        padding-right: 46px;
    }

    .bulletin-timeline {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .wrap {
        width: min(100% - 22px, 1180px);
    }

    .brand b {
        font-size: 34px;
    }

    .theme-budapest .brand img {
        width: min(230px, 72vw);
        max-height: 50px;
    }

    .nav {
        gap: 18px;
    }

    .nav-action {
        gap: 6px;
    }

    .nav-search-toggle {
        margin-left: 0;
    }

    .bulletin-picker {
        align-items: end;
        padding: 0;
    }

    .bulletin-sheet {
        width: 100%;
        max-height: 92vh;
        border-top-width: 5px;
        padding: 20px 16px calc(18px + env(safe-area-inset-bottom));
    }

    .bulletin-sheet h2 {
        font-size: 31px;
    }

    .bulletin-option {
        grid-template-columns: minmax(125px, 0.9fr) minmax(0, 1.1fr) 40px;
        min-height: 82px;
        padding: 11px 10px;
    }

    .bulletin-option strong {
        font-size: 21px;
    }

    .bulletin-player-main {
        width: 100%;
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    }

    .bulletin-player-close {
        top: 8px;
        right: 10px;
    }

    .bulletin-now {
        padding-right: 42px;
    }

    .bulletin-now > .podcast-icon {
        width: 30px;
        height: 30px;
    }

    .bulletin-controls {
        gap: 22px;
    }

    .bulletin-controls button {
        width: 58px;
        min-height: 58px;
    }

    .bulletin-controls .bulletin-play {
        width: 76px;
        min-height: 76px;
    }

    .bulletin-timeline {
        grid-template-columns: 36px minmax(80px, 1fr) 36px 64px;
        grid-column: auto;
    }

    body.has-bulletin-player {
        padding-bottom: 210px;
    }

    .card-grid,
    .story-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .story-row img {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .announcement-block {
        overflow: hidden;
        padding: 20px 14px;
    }

    .announcement-grid,
    .announcement-page .announcement-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        padding: 2px 18px 12px 0;
        scroll-padding-inline: 0 18px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .announcement-grid::-webkit-scrollbar {
        display: none;
    }

    .announcement-grid:focus-visible {
        outline: 2px solid var(--color-accent, #e6382e);
        outline-offset: 4px;
    }

    .announcement-card {
        display: grid;
        flex: 0 0 min(74vw, 310px);
        grid-template-columns: 1fr;
        gap: 0;
        overflow: hidden;
        border: 1px solid rgba(17, 24, 39, 0.12);
        border-radius: 6px;
        background: var(--color-surface, #fff);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .announcement-card:nth-child(n + 7) {
        display: none;
    }

    .announcement-card img {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .announcement-card > div {
        padding: 13px 14px 15px;
    }

    .announcement-card h3 {
        font-size: 19px;
        line-height: 1.22;
    }

    .announcement-actions {
        margin-top: 12px;
    }

    .article-head h1,
    .lead h1 {
        font-size: 36px;
    }
}
