/*
Theme Name: azetfinance.cz
Theme URI: https://azetfinance.cz/
Author: OpenAI
Author URI: https://openai.com/
Description: Moderní modrá WordPress téma pro český finance/news portál s obrázkovou homepage, nastavitelnými barvami, komentáři a TOP články.
Version: 3.8.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: azetfinance-cz
Tags: news, blog, custom-logo, custom-menu, featured-images, sticky-post, theme-options, translation-ready
*/

:root {
    --azet-bg: #ffffff;
    --azet-surface: #ffffff;
    --azet-soft: #f6f6f7;
    --azet-soft-2: #f0f0f2;
    --azet-text: #111111;
    --azet-muted: #686868;
    --azet-border: #e7e7ea;
    --azet-accent: #ff2d7a;
    --azet-accent-soft: rgba(255, 45, 122, 0.11);
    --azet-shadow: 0 24px 80px rgba(17, 17, 17, 0.08);
    --azet-shadow-soft: 0 12px 35px rgba(17, 17, 17, 0.06);
    --azet-radius: 24px;
    --azet-radius-sm: 16px;
    --azet-container: 1240px;
    --azet-reading: 760px;
    --azet-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --azet-font-serif: Newsreader, Merriweather, Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--azet-text);
    background: linear-gradient(180deg, #f7f7f8 0, #ffffff 360px);
    font-family: var(--azet-font-sans);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.azet-dark {
    --azet-bg: #0f0f0f;
    --azet-surface: #171719;
    --azet-soft: #1e1e21;
    --azet-soft-2: #27272b;
    --azet-text: #f5f5f5;
    --azet-muted: #b0b0b5;
    --azet-border: #2b2b30;
    --azet-accent-soft: rgba(255, 45, 122, 0.17);
    --azet-shadow: 0 24px 70px rgba(0, 0, 0, 0.33);
    --azet-shadow-soft: 0 12px 35px rgba(0, 0, 0, 0.22);
    background: #0f0f0f;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

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

a:hover,
a:focus-visible {
    color: var(--azet-accent);
}

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

button {
    cursor: pointer;
}

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

.screen-reader-text:focus {
    display: block;
    width: auto;
    height: auto;
    clip: auto;
    top: 12px;
    left: 12px;
    z-index: 99999;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--azet-text);
    color: var(--azet-bg);
}

:focus-visible {
    outline: 3px solid var(--azet-accent);
    outline-offset: 3px;
}

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

.site-main {
    flex: 1;
}

.container,
.site-header__inner,
.site-footer__inner {
    width: min(calc(100% - 40px), var(--azet-container));
    margin-inline: auto;
}

.has-sticky-header .site-header {
    position: sticky;
    top: 0;
    z-index: 90;
}

.site-header {
    background: rgba(255, 255, 255, 0.84);
    border-bottom: 1px solid rgba(231, 231, 234, 0.78);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, background .25s ease;
}

body.azet-dark .site-header {
    background: rgba(15, 15, 15, 0.86);
    border-bottom-color: var(--azet-border);
}

.site-header.is-scrolled {
    box-shadow: var(--azet-shadow-soft);
}

.site-header__inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
}

.site-branding {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.custom-logo-link {
    display: inline-flex;
    max-width: 220px;
}

.custom-logo {
    max-height: 48px;
    width: auto;
}

.site-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-family: var(--azet-font-serif);
    font-size: clamp(1.55rem, 2.5vw, 2.15rem);
    line-height: 1;
    font-weight: 820;
    letter-spacing: -0.04em;
}

.site-title::before {
    content: "";
    width: 14px;
    height: 30px;
    border-radius: 999px;
    background: var(--azet-accent);
    box-shadow: 0 0 0 8px var(--azet-accent-soft);
}

.site-description {
    margin: 4px 0 0;
    color: var(--azet-muted);
    font-size: .84rem;
}

.primary-navigation {
    min-width: 0;
}

.primary-menu,
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.primary-menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--azet-text);
    font-size: .88rem;
    font-weight: 760;
    line-height: 1.15;
}

.primary-menu a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    background: var(--azet-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}

.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a,
.primary-menu a:hover,
.primary-menu a:focus-visible {
    color: var(--azet-text);
    background: var(--azet-accent-soft);
}

.primary-menu .current-menu-item > a::after,
.primary-menu .current-menu-ancestor > a::after,
.primary-menu a:hover::after,
.primary-menu a:focus-visible::after {
    transform: scaleX(1);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.icon-button,
.mobile-menu-toggle,
.search-submit,
.search-close {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--azet-border);
    border-radius: 999px;
    background: var(--azet-surface);
    color: var(--azet-text);
    box-shadow: none;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.icon-button:hover,
.mobile-menu-toggle:hover,
.search-submit:hover,
.search-close:hover {
    transform: translateY(-1px);
    border-color: var(--azet-accent);
    background: var(--azet-accent-soft);
}

.icon-button svg,
.mobile-menu-toggle svg,
.search-submit svg,
.search-close svg {
    width: 19px;
    height: 19px;
}

.mobile-menu-toggle {
    display: none;
}

.header-ad-wrap {
    width: min(calc(100% - 40px), var(--azet-container));
    margin: 18px auto 0;
}

.ad-slot {
    border: 1px dashed var(--azet-border);
    border-radius: var(--azet-radius-sm);
    padding: 12px;
    background: var(--azet-soft);
    color: var(--azet-muted);
    text-align: center;
}

.ad-slot:empty {
    display: none;
}

.ad-label {
    display: block;
    margin-bottom: 8px;
    color: var(--azet-muted);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.section {
    margin-top: clamp(34px, 6vw, 78px);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--azet-border);
}

.section-title {
    position: relative;
    margin: 0;
    font-family: var(--azet-font-serif);
    font-size: clamp(1.5rem, 2.6vw, 2.25rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-title::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 10px;
    border-radius: 999px;
    background: var(--azet-accent);
    box-shadow: 0 0 0 7px var(--azet-accent-soft);
    vertical-align: .12em;
}

.section-link,
.read-more {
    color: var(--azet-muted);
    font-size: .9rem;
    font-weight: 800;
}

.section-link:hover,
.read-more:hover {
    color: var(--azet-accent);
}

.home-hero {
    padding-top: clamp(24px, 4vw, 50px);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(270px, .85fr) minmax(280px, 340px);
    gap: 22px;
    align-items: stretch;
}

.hero-main {
    min-height: 560px;
    display: flex;
    flex-direction: column;
    border-radius: calc(var(--azet-radius) + 6px);
    background: var(--azet-surface);
    border: 1px solid var(--azet-border);
    box-shadow: var(--azet-shadow);
    overflow: hidden;
}

.hero-main__media {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    background: var(--azet-soft);
}

.hero-main__media img,
.hero-main__media .post-card__image--placeholder {
    width: 100%;
    height: 100%;
    min-height: 310px;
    object-fit: cover;
    transition: transform .45s ease;
}

.hero-main:hover .hero-main__media img {
    transform: scale(1.035);
}

.hero-main__content {
    padding: clamp(24px, 4vw, 40px);
}

.post-category {
    display: inline-flex;
    align-items: center;
    max-width: max-content;
    min-height: 27px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--azet-accent-soft);
    color: var(--azet-accent);
    font-size: .72rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.hero-title {
    margin: 18px 0 12px;
    font-family: var(--azet-font-serif);
    font-size: clamp(2.25rem, 5.2vw, 4.8rem);
    line-height: .94;
    letter-spacing: -0.07em;
}

.hero-excerpt {
    max-width: 680px;
    margin: 0 0 22px;
    color: var(--azet-muted);
    font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: var(--azet-muted);
    font-size: .85rem;
    font-weight: 650;
}

.meta-row span + span::before,
.meta-row time + span::before,
.meta-row a + span::before {
    content: "•";
    margin-right: 12px;
    color: var(--azet-border);
}

.hero-side {
    display: grid;
    gap: 14px;
}

.post-card {
    position: relative;
    display: block;
    border: 1px solid var(--azet-border);
    border-radius: var(--azet-radius);
    background: var(--azet-surface);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.post-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 45, 122, .36);
    box-shadow: var(--azet-shadow-soft);
}

.post-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--azet-soft);
}

.post-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .38s ease;
}

.post-card:hover .post-card__image {
    transform: scale(1.05);
}

.post-card__image--placeholder {
    display: grid;
    place-items: center;
    min-height: 170px;
    background:
        radial-gradient(circle at 18% 12%, var(--azet-accent-soft), transparent 30%),
        linear-gradient(135deg, var(--azet-soft), var(--azet-soft-2));
    color: var(--azet-muted);
    font-family: var(--azet-font-serif);
    font-size: 1.25rem;
    font-weight: 800;
}

.post-card__body {
    padding: 18px;
}

.post-card__title {
    margin: 10px 0 8px;
    font-family: var(--azet-font-serif);
    font-size: clamp(1.1rem, 1.55vw, 1.55rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.post-card__title a {
    background-image: linear-gradient(var(--azet-accent), var(--azet-accent));
    background-size: 0 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size .22s ease;
}

.post-card:hover .post-card__title a {
    background-size: 100% 2px;
    color: var(--azet-text);
}

.post-card__excerpt {
    margin: 0 0 14px;
    color: var(--azet-muted);
    font-size: .95rem;
}

.post-card--compact {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    min-height: 132px;
}

.post-card--compact .post-card__media {
    aspect-ratio: auto;
    height: 100%;
}

.post-card--compact .post-card__body {
    padding: 14px;
}

.post-card--compact .post-card__title {
    font-family: var(--azet-font-sans);
    font-size: .98rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.latest-panel {
    border: 1px solid var(--azet-border);
    border-radius: var(--azet-radius);
    background: var(--azet-surface);
    box-shadow: var(--azet-shadow-soft);
    overflow: hidden;
}

.latest-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 20px 14px;
    border-bottom: 1px solid var(--azet-border);
}

.latest-panel__head h2 {
    margin: 0;
    font-family: var(--azet-font-serif);
    font-size: 1.45rem;
    line-height: 1;
    letter-spacing: -0.04em;
}

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

.latest-list__item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--azet-border);
}

.latest-list__item:last-child {
    border-bottom: 0;
}

.latest-list__time {
    color: var(--azet-accent);
    font-size: .78rem;
    font-weight: 900;
}

.latest-list__title {
    margin: 3px 0 0;
    font-size: .93rem;
    line-height: 1.26;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.latest-list__title a:hover {
    color: var(--azet-accent);
}

.latest-list .post-category {
    min-height: 21px;
    padding: 4px 7px;
    font-size: .62rem;
}

.popular-section {
    position: relative;
}

.popular-shell {
    border: 1px solid var(--azet-border);
    border-radius: calc(var(--azet-radius) + 2px);
    background:
        radial-gradient(circle at top right, var(--azet-accent-soft), transparent 28%),
        var(--azet-surface);
    box-shadow: var(--azet-shadow-soft);
    padding: clamp(18px, 3vw, 30px);
}

.popular-tabs {
    display: inline-flex;
    gap: 8px;
    padding: 6px;
    border: 1px solid var(--azet-border);
    border-radius: 999px;
    background: var(--azet-bg);
}

.popular-tab {
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
    background: transparent;
    color: var(--azet-muted);
    font-size: .86rem;
    font-weight: 900;
}

.popular-tab.is-active,
.popular-tab:hover {
    background: var(--azet-accent);
    color: #fff;
}

.popular-output.is-loading {
    position: relative;
    min-height: 220px;
    opacity: .6;
}

.popular-output.is-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--azet-radius-sm);
    background: linear-gradient(90deg, transparent, var(--azet-accent-soft), transparent);
    background-size: 220% 100%;
    animation: azetShimmer 1.1s infinite linear;
}

@keyframes azetShimmer {
    to { background-position: -220% 0; }
}

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

.popular-item {
    display: grid;
    grid-template-columns: 54px 84px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--azet-border);
    border-radius: var(--azet-radius-sm);
    background: var(--azet-surface);
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.popular-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 45, 122, .42);
    background: var(--azet-bg);
}

.popular-item__rank {
    font-family: var(--azet-font-serif);
    color: var(--azet-accent);
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.popular-item__thumb {
    width: 84px;
    height: 76px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--azet-soft);
}

.popular-item__thumb img,
.popular-item__thumb .post-card__image--placeholder {
    width: 100%;
    height: 100%;
    min-height: 76px;
    object-fit: cover;
}

.popular-item__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 5px;
    color: var(--azet-muted);
    font-size: .72rem;
    font-weight: 800;
}

.popular-item__meta .post-category {
    min-height: 20px;
    padding: 4px 7px;
    font-size: .58rem;
}

.popular-item__title {
    margin: 0;
    font-size: .96rem;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.popular-item__views {
    display: inline-block;
    margin-top: 5px;
    color: var(--azet-muted);
    font-size: .78rem;
    font-weight: 700;
}

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

.category-block__main .post-card__media {
    aspect-ratio: 16 / 9;
}

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

.category-block__grid .post-card__title {
    font-family: var(--azet-font-sans);
    font-size: 1rem;
    line-height: 1.22;
    letter-spacing: -0.025em;
}

.archive-header,
.search-header,
.not-found-header {
    margin-top: clamp(28px, 5vw, 70px);
    padding: clamp(26px, 5vw, 56px);
    border: 1px solid var(--azet-border);
    border-radius: calc(var(--azet-radius) + 4px);
    background: radial-gradient(circle at top right, var(--azet-accent-soft), transparent 30%), var(--azet-surface);
    box-shadow: var(--azet-shadow-soft);
}

.archive-title,
.search-title,
.not-found-title {
    margin: 0;
    font-family: var(--azet-font-serif);
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: .96;
    letter-spacing: -0.07em;
}

.archive-description {
    max-width: 780px;
    margin-top: 16px;
    color: var(--azet-muted);
    font-size: 1.05rem;
}

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

.posts-grid--list {
    grid-template-columns: 1fr;
}

.posts-grid--list .post-card {
    display: grid;
    grid-template-columns: minmax(220px, .4fr) minmax(0, .6fr);
}

.posts-grid--list .post-card__media {
    aspect-ratio: auto;
    min-height: 220px;
}

.pagination-wrap {
    margin: 42px 0 0;
}

.pagination-wrap ul {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination-wrap a,
.pagination-wrap span {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--azet-border);
    border-radius: 999px;
    padding: 8px 13px;
    background: var(--azet-surface);
    font-weight: 850;
}

.pagination-wrap .current,
.pagination-wrap a:hover {
    background: var(--azet-accent);
    border-color: var(--azet-accent);
    color: #fff;
}

.article-wrap {
    width: min(calc(100% - 40px), 1120px);
    margin: clamp(26px, 5vw, 66px) auto 0;
}

.article-hero {
    padding: clamp(22px, 5vw, 58px);
    border: 1px solid var(--azet-border);
    border-radius: calc(var(--azet-radius) + 8px);
    background: radial-gradient(circle at top right, var(--azet-accent-soft), transparent 34%), var(--azet-surface);
    box-shadow: var(--azet-shadow-soft);
}

.article-title {
    max-width: 980px;
    margin: 16px 0 14px;
    font-family: var(--azet-font-serif);
    font-size: clamp(2.4rem, 6vw, 5.7rem);
    line-height: .92;
    letter-spacing: -0.075em;
}

.article-excerpt {
    max-width: 820px;
    margin: 0 0 20px;
    color: var(--azet-muted);
    font-size: clamp(1.08rem, 1.7vw, 1.32rem);
    line-height: 1.45;
}

.article-featured {
    margin-top: 24px;
    overflow: hidden;
    border-radius: var(--azet-radius);
    background: var(--azet-soft);
}

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

.wp-caption-text,
.article-caption {
    margin: 10px 0 0;
    color: var(--azet-muted);
    font-size: .86rem;
}

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 110;
    width: 0;
    height: 3px;
    background: var(--azet-accent);
    box-shadow: 0 0 20px var(--azet-accent);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, var(--azet-reading)) minmax(240px, 300px);
    gap: 52px;
    align-items: start;
    width: min(calc(100% - 40px), 1120px);
    margin: 42px auto 0;
}

.article-content {
    min-width: 0;
    font-size: 1.09rem;
    line-height: 1.82;
}

.article-content > *:first-child {
    margin-top: 0;
}

.article-content p,
.article-content ul,
.article-content ol {
    margin: 0 0 1.45em;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin: 1.8em 0 .7em;
    font-family: var(--azet-font-serif);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.article-content h2 {
    font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.article-content h3 {
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.article-content a {
    color: var(--azet-accent);
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
}

.article-content blockquote {
    margin: 2em 0;
    padding: 24px 26px;
    border-left: 5px solid var(--azet-accent);
    border-radius: 0 var(--azet-radius-sm) var(--azet-radius-sm) 0;
    background: var(--azet-soft);
    font-family: var(--azet-font-serif);
    font-size: 1.35rem;
    line-height: 1.35;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    font-size: .95rem;
}

.article-content th,
.article-content td {
    padding: 12px;
    border: 1px solid var(--azet-border);
}

.article-content th {
    background: var(--azet-soft);
    text-align: left;
}

.article-sidebar {
    position: sticky;
    top: 104px;
}

.side-box {
    border: 1px solid var(--azet-border);
    border-radius: var(--azet-radius);
    background: var(--azet-surface);
    padding: 18px;
    box-shadow: var(--azet-shadow-soft);
}

.side-box + .side-box {
    margin-top: 18px;
}

.side-box__title {
    margin: 0 0 14px;
    font-family: var(--azet-font-serif);
    font-size: 1.35rem;
    line-height: 1;
    letter-spacing: -0.04em;
}

.share-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 42px;
    padding: 10px 13px;
    border: 1px solid var(--azet-border);
    border-radius: 999px;
    color: var(--azet-text);
    font-size: .9rem;
    font-weight: 850;
}

.share-button:hover {
    border-color: var(--azet-accent);
    background: var(--azet-accent-soft);
}

.related-list {
    display: grid;
    gap: 12px;
}

.related-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.related-item__thumb {
    width: 72px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--azet-soft);
}

.related-item__thumb img,
.related-item__thumb .post-card__image--placeholder {
    width: 100%;
    height: 100%;
    min-height: 64px;
    object-fit: cover;
}

.related-item__title {
    margin: 0;
    font-size: .92rem;
    line-height: 1.22;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.page-content {
    width: min(calc(100% - 40px), var(--azet-reading));
    margin: clamp(32px, 5vw, 70px) auto 0;
}

.page-content .article-content {
    width: 100%;
}

.search-form-main {
    display: flex;
    gap: 10px;
    max-width: 620px;
    margin-top: 24px;
}

.search-field,
.search-form-main input[type="search"] {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--azet-border);
    border-radius: 999px;
    background: var(--azet-bg);
    color: var(--azet-text);
    padding: 0 16px;
}

.search-form-main .search-submit {
    width: auto;
    padding-inline: 18px;
    background: var(--azet-accent);
    border-color: var(--azet-accent);
    color: #fff;
    font-weight: 850;
}

.empty-state {
    padding: 26px;
    border: 1px dashed var(--azet-border);
    border-radius: var(--azet-radius);
    background: var(--azet-soft);
    color: var(--azet-muted);
    text-align: center;
}

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    background: rgba(10, 10, 12, .62);
    backdrop-filter: blur(18px);
    padding: 28px;
}

.search-overlay.is-open {
    display: grid;
    place-items: start center;
}

.search-overlay__panel {
    width: min(780px, 100%);
    margin-top: 7vh;
    border: 1px solid var(--azet-border);
    border-radius: calc(var(--azet-radius) + 4px);
    background: var(--azet-surface);
    box-shadow: 0 30px 120px rgba(0, 0, 0, .28);
    padding: clamp(20px, 4vw, 34px);
}

.search-overlay__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.search-overlay__title {
    margin: 0;
    font-family: var(--azet-font-serif);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.search-overlay .search-form {
    display: flex;
    gap: 10px;
}

.search-overlay .search-field {
    min-height: 56px;
    font-size: 1.05rem;
}

.search-overlay .search-submit {
    width: 56px;
    height: 56px;
    background: var(--azet-accent);
    border-color: var(--azet-accent);
    color: #fff;
}

.site-footer {
    margin-top: clamp(54px, 8vw, 96px);
    padding: 42px 0 34px;
    border-top: 1px solid var(--azet-border);
    background: var(--azet-surface);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 36px;
}

.footer-brand .site-title {
    font-size: 1.85rem;
}

.footer-description {
    max-width: 520px;
    margin: 14px 0 0;
    color: var(--azet-muted);
}

.footer-menu {
    display: flex;
    gap: 10px 18px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-menu a {
    color: var(--azet-muted);
    font-size: .92rem;
    font-weight: 800;
}

.footer-menu a:hover {
    color: var(--azet-accent);
}

.footer-widgets {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--azet-border);
    color: var(--azet-muted);
    font-size: .86rem;
}

.wp-block-image img,
.wp-block-gallery img {
    border-radius: var(--azet-radius-sm);
}

.wp-block-button__link {
    border-radius: 999px;
    background: var(--azet-accent);
    color: #fff;
    font-weight: 850;
}

.alignwide {
    max-width: 1050px;
    margin-left: calc((var(--azet-reading) - 1050px) / 2);
    margin-right: calc((var(--azet-reading) - 1050px) / 2);
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

@media (max-width: 1180px) {
    .site-header__inner {
        grid-template-columns: auto auto auto;
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: inline-grid;
    }

    .primary-navigation {
        position: fixed;
        inset: 78px 20px auto 20px;
        display: none;
        max-height: calc(100vh - 98px);
        overflow: auto;
        border: 1px solid var(--azet-border);
        border-radius: var(--azet-radius);
        background: var(--azet-surface);
        padding: 16px;
        box-shadow: var(--azet-shadow);
    }

    .primary-navigation.is-open {
        display: block;
    }

    .primary-menu {
        display: grid;
        justify-content: stretch;
    }

    .primary-menu a {
        width: 100%;
        justify-content: space-between;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    }

    .latest-panel {
        grid-column: 1 / -1;
    }

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

    .latest-list__item:nth-last-child(2) {
        border-bottom: 0;
    }

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

@media (max-width: 900px) {
    .container,
    .site-header__inner,
    .site-footer__inner,
    .article-wrap,
    .article-layout,
    .page-content {
        width: min(calc(100% - 28px), var(--azet-container));
    }

    .hero-grid,
    .category-block,
    .article-layout,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .hero-main {
        min-height: 0;
    }

    .hero-main__media,
    .hero-main__media img,
    .hero-main__media .post-card__image--placeholder {
        min-height: 240px;
    }

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

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

    .article-sidebar {
        position: static;
    }

    .share-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-menu {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    .site-header__inner {
        min-height: 66px;
        gap: 10px;
    }

    .site-title {
        font-size: 1.5rem;
    }

    .site-title::before {
        width: 10px;
        height: 24px;
        box-shadow: 0 0 0 6px var(--azet-accent-soft);
    }

    .custom-logo-link {
        max-width: 160px;
    }

    .icon-button,
    .mobile-menu-toggle,
    .search-submit,
    .search-close {
        width: 38px;
        height: 38px;
    }

    .primary-navigation {
        inset: 66px 14px auto 14px;
    }

    .hero-side,
    .latest-list,
    .popular-list,
    .posts-grid,
    .category-block__grid,
    .footer-widgets {
        grid-template-columns: 1fr;
    }

    .post-card--compact,
    .posts-grid--list .post-card {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .post-card--compact .post-card__media,
    .posts-grid--list .post-card__media {
        min-height: 136px;
    }

    .popular-item {
        grid-template-columns: 46px 74px minmax(0, 1fr);
        gap: 10px;
        padding: 12px;
    }

    .popular-item__rank {
        font-size: 1.6rem;
    }

    .popular-item__thumb {
        width: 74px;
        height: 66px;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .popular-tabs {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .popular-tab {
        padding-inline: 8px;
    }

    .article-hero {
        padding: 22px;
    }

    .article-content {
        font-size: 1.02rem;
    }

    .search-overlay {
        padding: 14px;
    }

    .search-overlay__panel {
        margin-top: 4vh;
    }

    .search-overlay .search-form {
        flex-direction: column;
    }

    .search-overlay .search-submit {
        width: 100%;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

.search-form-main .search-form {
    display: flex;
    gap: 10px;
    width: 100%;
}


/* v1.1 detail refinements: compact typography and landscape thumbnails */
:root {
    --azet-container: 1180px;
    --azet-radius: 18px;
    --azet-radius-sm: 12px;
    --azet-shadow: 0 18px 54px rgba(17, 17, 17, 0.075);
    --azet-shadow-soft: 0 10px 28px rgba(17, 17, 17, 0.055);
}

body {
    background: #fff;
    font-size: 15px;
    line-height: 1.58;
}

.container,
.site-header__inner,
.site-footer__inner {
    width: min(calc(100% - 32px), var(--azet-container));
}

.site-header__inner {
    min-height: 64px;
    gap: 16px;
}

.site-title {
    font-size: clamp(1.26rem, 1.85vw, 1.72rem);
    letter-spacing: -0.035em;
}

.site-title::before {
    width: 8px;
    height: 24px;
    box-shadow: 0 0 0 5px var(--azet-accent-soft);
}

.site-description {
    margin-top: 2px;
    font-size: .73rem;
}

.custom-logo-link {
    max-width: 190px;
}

.custom-logo {
    max-height: 40px;
}

.primary-menu a {
    min-height: 32px;
    padding: 7px 10px;
    font-size: .77rem;
    font-weight: 780;
}

.icon-button,
.mobile-menu-toggle,
.search-submit,
.search-close {
    width: 36px;
    height: 36px;
}

.icon-button svg,
.mobile-menu-toggle svg,
.search-submit svg,
.search-close svg {
    width: 17px;
    height: 17px;
}

.section {
    margin-top: clamp(28px, 5vw, 56px);
}

.section-head {
    margin-bottom: 14px;
    padding-bottom: 10px;
}

.section-title {
    font-size: clamp(1.23rem, 2vw, 1.72rem);
    letter-spacing: -0.035em;
}

.section-title::before {
    width: 7px;
    height: 7px;
    margin-right: 8px;
    box-shadow: 0 0 0 5px var(--azet-accent-soft);
}

.section-link,
.read-more {
    font-size: .78rem;
}

.home-hero {
    padding-top: clamp(18px, 3vw, 36px);
}

.hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(260px, .74fr) minmax(260px, 318px);
    gap: 16px;
}

.hero-main {
    min-height: 0;
    border-radius: 20px;
}

.hero-main__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
}

.hero-main__media img,
.hero-main__media .post-card__image--placeholder {
    min-height: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-main__content {
    padding: clamp(18px, 2.8vw, 28px);
}

.hero-title {
    margin: 12px 0 9px;
    font-size: clamp(1.92rem, 4.1vw, 3.35rem);
    line-height: .99;
    letter-spacing: -0.055em;
}

.hero-excerpt {
    max-width: 620px;
    margin-bottom: 15px;
    font-size: .92rem;
    line-height: 1.52;
}

.post-category {
    min-height: 21px;
    padding: 4px 7px;
    font-size: .56rem;
    letter-spacing: .055em;
}

.meta-row {
    gap: 6px 10px;
    font-size: .7rem;
}

.hero-side {
    gap: 12px;
}

.post-card {
    border-radius: var(--azet-radius-sm);
}

.post-card__media {
    aspect-ratio: 16 / 9;
}

.post-card__body {
    padding: 14px;
}

.post-card__title {
    margin: 8px 0 6px;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.post-card__excerpt {
    margin-bottom: 12px;
    font-size: .84rem;
    line-height: 1.48;
}

.post-card--compact {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: 0;
    align-items: center;
}

.post-card--compact .post-card__media {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
    align-self: center;
}

.post-card--compact .post-card__media img,
.post-card--compact .post-card__media .post-card__image--placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.post-card--compact .post-card__body {
    padding: 11px 12px 11px 10px;
}

.post-card--compact .post-card__title {
    margin: 6px 0 4px;
    font-size: .82rem;
    line-height: 1.18;
    letter-spacing: -0.018em;
}

.post-card--compact .meta-row {
    font-size: .62rem;
}

.latest-panel {
    border-radius: var(--azet-radius-sm);
}

.latest-panel__head {
    padding: 16px 16px 10px;
}

.latest-panel__head h2 {
    font-size: 1.14rem;
    letter-spacing: -0.03em;
}

.latest-list__item {
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 10px;
    padding: 11px 16px;
}

.latest-list__time {
    font-size: .65rem;
}

.latest-list__title {
    font-size: .76rem;
    line-height: 1.24;
    font-weight: 830;
}

.latest-list .post-category {
    min-height: 18px;
    padding: 3px 6px;
    font-size: .5rem;
}

.popular-shell {
    padding: clamp(14px, 2vw, 20px);
    border-radius: 18px;
}

.popular-tabs {
    gap: 5px;
    padding: 4px;
}

.popular-tab {
    padding: 7px 11px;
    font-size: .74rem;
}

.popular-list {
    gap: 10px;
}

.popular-item {
    grid-template-columns: 38px 106px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
    border-radius: var(--azet-radius-sm);
}

.popular-item__rank {
    font-size: 1.35rem;
    letter-spacing: -0.055em;
}

.popular-item__thumb {
    width: 106px;
    height: 60px;
    border-radius: 10px;
}

.popular-item__thumb img,
.popular-item__thumb .post-card__image--placeholder {
    min-height: 0;
    height: 100%;
    object-fit: cover;
}

.popular-item__meta {
    gap: 5px;
    margin-bottom: 4px;
    font-size: .61rem;
}

.popular-item__meta .post-category {
    min-height: 17px;
    padding: 3px 5px;
    font-size: .48rem;
}

.popular-item__title {
    font-size: .78rem;
    line-height: 1.2;
}

.popular-item__views {
    margin-top: 4px;
    font-size: .65rem;
}

.category-block {
    gap: 14px;
}

.category-block__main .post-card__media,
.category-block__grid .post-card__media,
.posts-grid .post-card__media {
    aspect-ratio: 16 / 9;
}

.category-block__grid {
    gap: 12px;
}

.category-block__grid .post-card__title {
    font-size: .86rem;
    line-height: 1.2;
}

.archive-header,
.search-header,
.not-found-header {
    padding: clamp(22px, 4vw, 42px);
    border-radius: 20px;
}

.archive-title,
.search-title,
.not-found-title {
    font-size: clamp(1.8rem, 4.2vw, 3.25rem);
    letter-spacing: -0.055em;
}

.archive-description {
    font-size: .92rem;
}

.posts-grid {
    gap: 15px;
}

.posts-grid--list .post-card {
    grid-template-columns: minmax(220px, .36fr) minmax(0, .64fr);
}

.posts-grid--list .post-card__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
}

.article-title {
    font-size: clamp(1.95rem, 5vw, 4.1rem);
    line-height: .99;
    letter-spacing: -0.055em;
}

.article-excerpt {
    font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.article-featured img {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: none;
    object-fit: cover;
}

.article-content {
    font-size: 1rem;
    line-height: 1.76;
}

.related-item {
    grid-template-columns: 88px minmax(0, 1fr);
}

.related-item__thumb {
    width: 88px;
    height: 50px;
    border-radius: 10px;
}

.related-item__thumb img,
.related-item__thumb .post-card__image--placeholder {
    min-height: 0;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1180px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
    }

    .latest-panel {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .container,
    .site-header__inner,
    .site-footer__inner,
    .article-wrap,
    .article-layout,
    .page-content {
        width: min(calc(100% - 28px), var(--azet-container));
    }

    .hero-title {
        font-size: clamp(1.85rem, 7vw, 2.65rem);
    }

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

    .post-card--compact {
        grid-template-columns: 124px minmax(0, 1fr);
    }

    .popular-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 14.5px;
    }

    .container,
    .site-header__inner,
    .site-footer__inner,
    .article-wrap,
    .article-layout,
    .page-content {
        width: min(calc(100% - 22px), var(--azet-container));
    }

    .site-header__inner {
        min-height: 60px;
    }

    .site-title {
        font-size: 1.28rem;
    }

    .site-title::before {
        width: 7px;
        height: 21px;
    }

    .primary-navigation {
        inset: 60px 11px auto 11px;
    }

    .hero-main__media,
    .post-card__media,
    .category-block__main .post-card__media,
    .category-block__grid .post-card__media,
    .posts-grid .post-card__media {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .hero-main__media img,
    .hero-main__media .post-card__image--placeholder {
        min-height: 0;
    }

    .hero-side,
    .latest-list,
    .posts-grid,
    .category-block__grid,
    .footer-widgets {
        grid-template-columns: 1fr;
    }

    .post-card--compact,
    .posts-grid--list .post-card {
        grid-template-columns: 118px minmax(0, 1fr);
    }

    .post-card--compact .post-card__media,
    .posts-grid--list .post-card__media {
        aspect-ratio: 16 / 9;
        height: auto;
        min-height: 0;
    }

    .post-card--compact .post-card__body {
        padding: 10px;
    }

    .post-card--compact .post-card__title {
        font-size: .8rem;
    }

    .popular-item {
        grid-template-columns: 34px 96px minmax(0, 1fr);
    }

    .popular-item__thumb {
        width: 96px;
        height: 54px;
    }

    .article-content {
        font-size: .98rem;
    }
}


/* v1.2: denser modern news layout, richer accents, fewer empty areas */
:root {
    --azet-bg: #fbfafc;
    --azet-surface: rgba(255,255,255,.94);
    --azet-soft: #fff4f8;
    --azet-soft-2: #f3f0ff;
    --azet-text: #111118;
    --azet-muted: #5f6069;
    --azet-border: rgba(17,17,24,.12);
    --azet-accent: #ff2876;
    --azet-accent-2: #7c3aed;
    --azet-accent-3: #ff8a00;
    --azet-accent-soft: rgba(255,40,118,.12);
    --azet-shadow: 0 18px 48px rgba(17,17,24,.085);
    --azet-shadow-soft: 0 10px 26px rgba(17,17,24,.065);
    --azet-container: 1168px;
    --azet-radius: 16px;
    --azet-radius-sm: 12px;
}

body {
    background:
        radial-gradient(circle at 0 0, rgba(255,40,118,.13), transparent 260px),
        radial-gradient(circle at 100% 20px, rgba(124,58,237,.12), transparent 300px),
        linear-gradient(180deg, #fff 0, #fbfafc 340px, #fff 100%);
    font-size: 14px;
    line-height: 1.55;
}

body.azet-dark {
    --azet-bg: #0d0d11;
    --azet-surface: rgba(22,22,27,.94);
    --azet-soft: #1b1720;
    --azet-soft-2: #191827;
    --azet-border: rgba(255,255,255,.12);
    --azet-muted: #b7b7c1;
    background:
        radial-gradient(circle at 0 0, rgba(255,40,118,.18), transparent 260px),
        radial-gradient(circle at 100% 40px, rgba(124,58,237,.18), transparent 320px),
        #0d0d11;
}

img { display: block; }

.site-header {
    background: rgba(255,255,255,.88);
    border-bottom-color: rgba(17,17,24,.10);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--azet-accent), var(--azet-accent-2), var(--azet-accent-3)) 1;
}

body.azet-dark .site-header { background: rgba(13,13,17,.88); }

.site-header__inner {
    min-height: 58px;
    gap: 14px;
}

.site-title {
    font-size: clamp(1.18rem, 1.55vw, 1.48rem);
    letter-spacing: -0.038em;
}

.site-title::before {
    width: 9px;
    height: 24px;
    background: linear-gradient(180deg, var(--azet-accent), var(--azet-accent-2));
    box-shadow: 0 0 0 5px rgba(255,40,118,.12), 0 10px 22px rgba(255,40,118,.24);
}

.site-description { font-size: .69rem; }

.primary-menu { gap: 2px 4px; }
.primary-menu a {
    min-height: 30px;
    padding: 6px 9px;
    font-size: .71rem;
    font-weight: 820;
}
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a,
.primary-menu a:hover,
.primary-menu a:focus-visible {
    background: linear-gradient(135deg, rgba(255,40,118,.12), rgba(124,58,237,.10));
}
.primary-menu a::after { background: linear-gradient(90deg, var(--azet-accent), var(--azet-accent-2)); }

.icon-button,
.mobile-menu-toggle,
.search-submit,
.search-close {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.84);
}
body.azet-dark .icon-button,
body.azet-dark .mobile-menu-toggle,
body.azet-dark .search-submit,
body.azet-dark .search-close { background: rgba(22,22,27,.84); }

.container,
.site-header__inner,
.site-footer__inner { width: min(calc(100% - 28px), var(--azet-container)); }

.section { margin-top: clamp(22px, 3.8vw, 42px); }
.section-head {
    align-items: center;
    margin-bottom: 11px;
    padding-bottom: 9px;
}
.section-title { font-size: clamp(1.12rem, 1.7vw, 1.48rem); }
.section-title::before {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--azet-accent), var(--azet-accent-2));
}

.home-hero { padding-top: clamp(16px, 2.6vw, 28px); }
.hero-grid {
    grid-template-columns: minmax(0, .98fr) minmax(290px, .86fr) minmax(280px, 314px);
    gap: 14px;
    align-items: start;
}

.hero-main,
.post-card,
.latest-panel,
.popular-shell,
.archive-header,
.search-header,
.not-found-header,
.article-hero,
.side-box {
    border-color: rgba(17,17,24,.13);
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.90));
}
body.azet-dark .hero-main,
body.azet-dark .post-card,
body.azet-dark .latest-panel,
body.azet-dark .popular-shell,
body.azet-dark .archive-header,
body.azet-dark .search-header,
body.azet-dark .not-found-header,
body.azet-dark .article-hero,
body.azet-dark .side-box {
    background: linear-gradient(180deg, rgba(25,25,31,.96), rgba(18,18,24,.92));
}

.hero-main {
    border-radius: 18px;
    box-shadow: var(--azet-shadow);
}
.hero-main__media { aspect-ratio: 16 / 8.6; }
.hero-main__content { padding: clamp(16px, 2.35vw, 24px); }
.hero-title {
    margin: 10px 0 8px;
    font-size: clamp(1.72rem, 3.45vw, 2.85rem);
    line-height: 1.02;
    letter-spacing: -0.052em;
}
.hero-excerpt {
    max-width: 600px;
    margin-bottom: 12px;
    font-size: .86rem;
    line-height: 1.48;
}

.post-category {
    min-height: 18px;
    padding: 4px 7px;
    background: linear-gradient(135deg, var(--azet-accent), var(--azet-accent-2));
    color: #fff;
    box-shadow: 0 6px 16px rgba(255,40,118,.16);
    font-size: .49rem;
    letter-spacing: .065em;
}

.meta-row {
    font-size: .64rem;
    gap: 4px 8px;
}
.meta-row span + span::before,
.meta-row time + span::before,
.meta-row a + span::before { margin-right: 8px; }

.hero-side {
    gap: 10px;
    align-content: start;
    grid-auto-rows: auto;
}
.post-card { box-shadow: 0 7px 22px rgba(17,17,24,.045); }
.post-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255,40,118,.38);
}
.post-card__media { aspect-ratio: 16 / 9; }
.post-card__body { padding: 12px; }
.post-card__title {
    margin: 7px 0 5px;
    font-size: clamp(.92rem, 1.05vw, 1.08rem);
    line-height: 1.16;
    overflow-wrap: anywhere;
}
.post-card__excerpt { font-size: .78rem; line-height: 1.44; margin-bottom: 9px; }

.post-card--compact {
    grid-template-columns: 146px minmax(0, 1fr);
    align-items: stretch;
    min-height: 104px;
}
.post-card--compact .post-card__media {
    height: 100%;
    min-height: 100%;
    border-radius: 0;
}
.post-card--compact .post-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 11px;
    min-width: 0;
}
.post-card--compact .post-card__title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: .76rem;
    line-height: 1.18;
}
.post-card--compact .meta-row { font-size: .57rem; }
.post-card--compact .post-category { min-height: 16px; padding: 3px 6px; font-size: .44rem; }

.latest-panel { border-radius: 14px; box-shadow: var(--azet-shadow-soft); }
.latest-panel__head {
    padding: 13px 14px 9px;
    background: linear-gradient(135deg, rgba(255,40,118,.075), rgba(124,58,237,.055));
}
.latest-panel__head h2 { font-size: 1.02rem; }
.latest-list__item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 9px;
    padding: 10px 14px;
}
.latest-list__time { font-size: .62rem; }
.latest-list__title {
    font-size: .72rem;
    line-height: 1.2;
    letter-spacing: -.01em;
    overflow-wrap: anywhere;
}
.latest-list .post-category { min-height: 15px; padding: 3px 5px; font-size: .42rem; }

.popular-shell {
    padding: 14px;
    background:
        linear-gradient(120deg, rgba(255,40,118,.10), rgba(124,58,237,.08) 42%, rgba(255,138,0,.07)),
        var(--azet-surface);
}
.popular-shell .section-head { margin-bottom: 10px; }
.popular-tabs { background: rgba(255,255,255,.78); }
body.azet-dark .popular-tabs { background: rgba(13,13,17,.70); }
.popular-tab { padding: 6px 10px; font-size: .66rem; }
.popular-tab.is-active,
.popular-tab:hover { background: linear-gradient(135deg, var(--azet-accent), var(--azet-accent-2)); }
.popular-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}
.popular-item {
    grid-template-columns: 34px 82px minmax(0, 1fr);
    gap: 9px;
    padding: 9px;
    border-radius: 11px;
    background: rgba(255,255,255,.86);
}
body.azet-dark .popular-item { background: rgba(25,25,31,.86); }
.popular-item.no-thumb { grid-template-columns: 34px minmax(0, 1fr); }
.popular-item__rank { font-size: 1.12rem; letter-spacing: -.04em; }
.popular-item__thumb {
    width: 82px;
    height: 48px;
    border-radius: 9px;
}
.popular-item__meta { margin-bottom: 3px; gap: 4px; font-size: .55rem; }
.popular-item__meta .post-category { min-height: 15px; padding: 3px 5px; font-size: .40rem; }
.popular-item__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: .72rem;
    line-height: 1.16;
}
.popular-item__views { font-size: .58rem; margin-top: 2px; }

.category-block {
    grid-template-columns: minmax(0, .94fr) minmax(0, 1.08fr);
    gap: 12px;
}
.category-block__grid { gap: 10px; }
.category-block__grid .post-card__title { font-size: .76rem; line-height: 1.18; }

.posts-grid { gap: 12px; }
.archive-header,
.search-header,
.not-found-header { padding: clamp(18px, 3.2vw, 34px); }
.archive-title,
.search-title,
.not-found-title { font-size: clamp(1.5rem, 3.6vw, 2.75rem); }

.article-hero { padding: clamp(18px, 3.4vw, 42px); }
.article-title { font-size: clamp(1.72rem, 4.2vw, 3.45rem); }
.article-layout { gap: 34px; }
.article-content { font-size: .98rem; line-height: 1.72; }
.site-footer { margin-top: clamp(38px, 6vw, 68px); }

@media (max-width: 1180px) {
    .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, .9fr); }
    .latest-panel { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .hero-grid,
    .category-block,
    .article-layout,
    .site-footer__inner { grid-template-columns: 1fr; }
    .hero-side { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .popular-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .container,
    .site-header__inner,
    .site-footer__inner,
    .article-wrap,
    .article-layout,
    .page-content { width: min(calc(100% - 20px), var(--azet-container)); }
    .site-header__inner { min-height: 56px; }
    .site-title { font-size: 1.12rem; }
    .site-description { display: none; }
    .hero-title { font-size: clamp(1.56rem, 8vw, 2.2rem); }
    .hero-side,
    .latest-list,
    .popular-list,
    .posts-grid,
    .category-block__grid,
    .footer-widgets { grid-template-columns: 1fr; }
    .post-card--compact,
    .posts-grid--list .post-card { grid-template-columns: 118px minmax(0, 1fr); }
    .post-card--compact { min-height: 92px; }
    .popular-item { grid-template-columns: 30px 72px minmax(0, 1fr); }
    .popular-item.no-thumb { grid-template-columns: 30px minmax(0, 1fr); }
    .popular-item__thumb { width: 72px; height: 43px; }
    .latest-list__item { padding: 9px 12px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}


/* v1.3.0 readability + layout fixes */
:root {
    --azet-container: 1180px;
}

body {
    background:
        radial-gradient(circle at 0 0, rgba(255,40,118,.08), transparent 220px),
        radial-gradient(circle at 100% 20px, rgba(124,58,237,.08), transparent 260px),
        linear-gradient(180deg, #ffffff 0, #fbfbfd 220px, #ffffff 100%);
    font-size: 14px;
}

.site-header {
    background: rgba(255,255,255,.94);
}

.hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, .85fr) minmax(270px, 300px);
    gap: 16px;
}

.hero-main__media { aspect-ratio: 16 / 9; }
.hero-main__content { padding: 18px 18px 16px; }
.hero-title {
    font-size: clamp(1.95rem, 3.8vw, 3.15rem);
    line-height: 1.02;
    margin: 10px 0 8px;
}
.hero-excerpt {
    font-size: .9rem;
    line-height: 1.52;
}

.post-card__title,
.latest-list__title,
.popular-item__title,
.hero-title {
    overflow-wrap: anywhere;
}

.post-card__title a,
.latest-list__title a,
.popular-item__title a,
.hero-title a {
    color: var(--azet-text);
}

.hero-side {
    gap: 12px;
}

.post-card {
    overflow: hidden;
}

.post-card__body {
    min-width: 0;
}

.post-card__title {
    font-size: clamp(.96rem, 1.1vw, 1.12rem);
    line-height: 1.22;
    margin: 7px 0 6px;
}

.post-card__excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.post-card--compact {
    display: grid !important;
    grid-template-columns: 136px minmax(0, 1fr) !important;
    min-height: 112px;
    align-items: stretch;
}

.post-card--compact .post-card__media {
    aspect-ratio: auto !important;
    height: 100%;
    min-height: 100%;
}

.post-card--compact .post-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 10px 12px;
}

.post-card--compact .post-card__title {
    font-size: .83rem;
    line-height: 1.24;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.post-card--compact .meta-row {
    font-size: .6rem;
}

.latest-panel {
    overflow: hidden;
}

.latest-list__item {
    align-items: start;
    gap: 10px;
}

.latest-list__time {
    font-size: .64rem;
}

.latest-list__title {
    font-size: .78rem;
    line-height: 1.26;
}

.popular-shell {
    padding: 16px;
}

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

.popular-item {
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    min-height: 74px;
}

.popular-item.has-thumb {
    grid-template-columns: 34px 94px minmax(0, 1fr);
}

.popular-item__rank {
    font-size: 1.2rem;
}

.popular-item__thumb {
    width: 94px;
    height: 54px;
}

.popular-item__title {
    font-size: .8rem;
    line-height: 1.24;
    margin: 0;
}

.popular-item__views {
    margin-top: 3px;
    font-size: .62rem;
}

.category-block {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 16px;
    align-items: start;
}

.category-block__grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
}

.category-block__grid .post-card--compact {
    grid-template-columns: 146px minmax(0, 1fr) !important;
    min-height: 110px;
}

.category-block__grid .post-card__title {
    font-size: .84rem;
    line-height: 1.24;
}

.section-link,
.read-more {
    font-size: .8rem;
}

@media (max-width: 1180px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .latest-panel {
        grid-column: 1 / -1;
    }

    .category-block {
        grid-template-columns: 1fr;
    }
}

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

    .hero-side {
        grid-template-columns: 1fr;
    }

    .popular-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: clamp(1.85rem, 8vw, 2.45rem);
    }

    .post-card--compact,
    .category-block__grid .post-card--compact,
    .posts-grid--list .post-card {
        grid-template-columns: 116px minmax(0, 1fr) !important;
    }

    .post-card--compact .post-card__body {
        padding: 9px 10px;
    }

    .latest-list__item {
        grid-template-columns: 38px minmax(0, 1fr);
        padding-inline: 12px;
    }

    .popular-item.has-thumb {
        grid-template-columns: 30px 86px minmax(0, 1fr);
    }

    .popular-item__thumb {
        width: 86px;
        height: 50px;
    }
}


/* v1.4.0 homepage + rubriky + popular refinements */
.home-hero {
    padding-top: 10px;
}

.hero-grid {
    gap: 14px;
    align-items: stretch;
}

.hero-main,
.hero-side .post-card,
.latest-panel,
.popular-shell,
.archive-header,
.archive-lead .post-card,
.archive-stack .post-card {
    box-shadow: 0 10px 28px rgba(17,17,24,.05);
}

.hero-main__content {
    padding: 16px 16px 14px;
}

.hero-title {
    font-size: clamp(1.9rem, 3.4vw, 2.9rem);
    margin-top: 8px;
}

.hero-side .post-card--compact {
    min-height: 96px;
    grid-template-columns: 124px minmax(0, 1fr) !important;
}

.hero-side .post-card--compact .post-card__title {
    -webkit-line-clamp: 2;
}

.latest-panel__head {
    padding: 12px 14px 8px;
}

.latest-panel__head h2 {
    font-size: .98rem;
}

.popular-shell {
    padding: 14px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.9)),
        linear-gradient(120deg, rgba(255,40,118,.12), rgba(124,58,237,.08) 44%, rgba(255,138,0,.08));
}

.popular-shell .section-head {
    margin-bottom: 12px;
    padding-bottom: 10px;
}

.popular-tabs {
    padding: 3px;
    border-radius: 999px;
    border: 1px solid rgba(17,17,24,.08);
}

.popular-tab {
    padding: 6px 10px;
    font-size: .68rem;
    font-weight: 800;
}

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

.popular-item {
    min-height: 86px;
    padding: 12px;
    border: 1px solid rgba(17,17,24,.09);
    border-radius: 14px;
    background: rgba(255,255,255,.86);
}

body.azet-dark .popular-item {
    background: rgba(22,22,27,.92);
}

.popular-item.has-thumb {
    grid-template-columns: 34px 84px minmax(0, 1fr);
}

.popular-item.no-thumb {
    grid-template-columns: 34px minmax(0, 1fr);
}

.popular-item__thumb {
    width: 84px;
    height: 50px;
    border-radius: 10px;
}

.popular-item__title {
    font-size: .78rem;
    line-height: 1.23;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-item__meta {
    margin-bottom: 4px;
}

.archive-header,
.search-header,
.not-found-header {
    margin-top: 14px;
    padding: 20px 22px;
}

.archive-title,
.search-title,
.not-found-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.archive-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
    gap: 16px;
    align-items: start;
}

.archive-lead .post-card {
    border-radius: 16px;
}

.archive-lead .post-card__media {
    aspect-ratio: 16 / 9;
}

.archive-lead .post-card__title {
    font-size: clamp(1.15rem, 1.5vw, 1.5rem);
    line-height: 1.14;
}

.archive-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.archive-stack .post-card--compact {
    grid-template-columns: 146px minmax(0, 1fr) !important;
    min-height: 108px;
}

.archive-stack .post-card--compact .post-card__body {
    padding: 10px 12px;
}

.archive-stack .post-card--compact .post-card__title {
    font-size: .84rem;
    line-height: 1.22;
}

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

    .archive-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .home-hero {
        padding-top: 8px;
    }

    .popular-list {
        grid-template-columns: 1fr;
    }

    .archive-stack .post-card--compact {
        grid-template-columns: 132px minmax(0, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .archive-header,
    .search-header,
    .not-found-header {
        margin-top: 10px;
        padding: 16px 16px;
    }

    .archive-shell {
        gap: 12px;
    }

    .archive-stack .post-card--compact,
    .hero-side .post-card--compact,
    .popular-item.has-thumb {
        grid-template-columns: 110px minmax(0, 1fr) !important;
    }

    .popular-item.no-thumb {
        grid-template-columns: 28px minmax(0, 1fr);
    }

    .popular-item__thumb {
        width: 110px;
        height: auto;
        aspect-ratio: 16/9;
    }
}


/* v1.5.0 serious news portal direction */
:root {
    --azet-bg: #ffffff;
    --azet-surface: #ffffff;
    --azet-soft: #f5f6f8;
    --azet-soft-2: #eef0f3;
    --azet-text: #111318;
    --azet-muted: #5d6470;
    --azet-border: #dfe3e8;
    --azet-accent: #d7194a;
    --azet-accent-2: #111318;
    --azet-accent-3: #8b102f;
    --azet-accent-soft: rgba(215,25,74,.09);
    --azet-shadow: 0 10px 28px rgba(17,19,24,.06);
    --azet-shadow-soft: 0 6px 18px rgba(17,19,24,.05);
    --azet-radius: 12px;
    --azet-radius-sm: 10px;
    --azet-container: 1180px;
}

body {
    background: #fff;
    color: var(--azet-text);
    font-size: 14px;
    line-height: 1.55;
}

body.azet-dark {
    --azet-bg: #0d0f12;
    --azet-surface: #15171b;
    --azet-soft: #1c1f24;
    --azet-soft-2: #242832;
    --azet-text: #f4f5f7;
    --azet-muted: #aab1bc;
    --azet-border: #2a2f38;
    --azet-accent-soft: rgba(215,25,74,.16);
    background: #0d0f12;
}

.site-header {
    border-top: 0;
    border-image: none;
    border-bottom: 1px solid var(--azet-border);
    background: rgba(255,255,255,.96);
    box-shadow: none;
}

body.azet-dark .site-header {
    background: rgba(13,15,18,.96);
}

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

.site-title {
    font-size: clamp(1.12rem, 1.45vw, 1.38rem);
    letter-spacing: -.035em;
}

.site-title::before {
    width: 7px;
    height: 23px;
    background: var(--azet-accent);
    box-shadow: none;
}

.site-description {
    font-size: .67rem;
}

.primary-menu a {
    min-height: 28px;
    padding: 5px 8px;
    border-radius: 6px;
    font-size: .7rem;
    letter-spacing: -.005em;
}

.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a,
.primary-menu a:hover,
.primary-menu a:focus-visible {
    background: var(--azet-soft);
    color: var(--azet-text);
}

.primary-menu a::after {
    left: 8px;
    right: 8px;
    bottom: 3px;
    height: 2px;
    background: var(--azet-accent);
}

.icon-button,
.mobile-menu-toggle,
.search-submit,
.search-close {
    width: 32px;
    height: 32px;
    background: var(--azet-surface);
    border-color: var(--azet-border);
    box-shadow: none;
}

.home-hero {
    padding-top: 8px;
}

.section {
    margin-top: clamp(20px, 3vw, 34px);
}

.section-head {
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--azet-text);
}

.section-title {
    font-family: var(--azet-font-serif);
    font-size: clamp(1.08rem, 1.45vw, 1.38rem);
    letter-spacing: -.035em;
}

.section-title::before {
    width: 7px;
    height: 7px;
    margin-right: 8px;
    background: var(--azet-accent);
    box-shadow: none;
}

.section-link,
.read-more {
    color: var(--azet-muted);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .035em;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .82fr) minmax(280px, 310px);
    gap: 14px;
    align-items: stretch;
}

.hero-main,
.post-card,
.latest-panel,
.popular-shell,
.archive-header,
.article-hero,
.side-box,
.archive-lead .post-card,
.archive-stack .post-card {
    border: 1px solid var(--azet-border);
    background: var(--azet-surface);
    box-shadow: none;
}

.hero-main:hover,
.post-card:hover,
.archive-stack .post-card:hover {
    box-shadow: var(--azet-shadow-soft);
    border-color: #cbd1d9;
}

.hero-main {
    border-radius: 12px;
}

.hero-main__media {
    aspect-ratio: 16 / 8.8;
    border-bottom: 1px solid var(--azet-border);
}

.hero-main__content {
    padding: 16px 17px 15px;
}

.post-category {
    min-height: 18px;
    padding: 3px 7px;
    border: 1px solid rgba(215,25,74,.18);
    background: var(--azet-accent-soft);
    color: var(--azet-accent);
    box-shadow: none;
    font-size: .49rem;
    font-weight: 900;
    letter-spacing: .06em;
}

.hero-title {
    font-size: clamp(2rem, 3.45vw, 3rem);
    line-height: 1.01;
    margin: 9px 0 7px;
}

.hero-excerpt {
    max-width: 620px;
    color: #4f5662;
    font-size: .86rem;
    line-height: 1.48;
    margin-bottom: 11px;
}

body.azet-dark .hero-excerpt {
    color: var(--azet-muted);
}

.meta-row {
    color: var(--azet-muted);
    font-size: .6rem;
    font-weight: 700;
}

.post-card {
    border-radius: 10px;
}

.post-card:hover {
    transform: none;
}

.post-card__media {
    border-bottom: 1px solid var(--azet-border);
}

.post-card__title a,
.latest-list__title a,
.popular-item__title a,
.hero-title a {
    color: var(--azet-text);
}

.post-card:hover .post-card__title a,
.latest-list__title a:hover,
.popular-item__title a:hover,
.hero-title a:hover {
    color: var(--azet-accent);
}

.post-card__title {
    font-size: clamp(.96rem, 1.05vw, 1.1rem);
    line-height: 1.2;
}

.post-card__excerpt {
    color: var(--azet-muted);
    font-size: .76rem;
    line-height: 1.42;
}

.hero-side {
    gap: 10px;
}

.hero-side .post-card--compact,
.post-card--compact,
.archive-stack .post-card--compact,
.category-block__grid .post-card--compact {
    grid-template-columns: 126px minmax(0,1fr) !important;
    min-height: 94px;
}

.post-card--compact .post-card__media {
    border-right: 1px solid var(--azet-border);
    border-bottom: 0;
}

.post-card--compact .post-card__body {
    padding: 9px 11px;
}

.post-card--compact .post-card__title {
    font-size: .78rem;
    line-height: 1.22;
    -webkit-line-clamp: 2;
}

.latest-panel {
    border-radius: 10px;
}

.latest-panel__head {
    padding: 11px 13px 8px;
    border-bottom: 2px solid var(--azet-text);
    background: var(--azet-surface);
}

.latest-panel__head h2 {
    font-size: .98rem;
}

.latest-list__item {
    grid-template-columns: 40px minmax(0,1fr);
    gap: 9px;
    padding: 9px 13px;
    border-bottom: 1px solid var(--azet-border);
}

.latest-list__time {
    color: var(--azet-accent);
    font-size: .62rem;
    font-weight: 900;
}

.latest-list__title {
    font-size: .74rem;
    line-height: 1.23;
    font-weight: 850;
}

.latest-list .post-category {
    display: none;
}

.popular-shell {
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
    background: var(--azet-surface);
}

.popular-shell .section-head {
    margin: 0;
    padding: 12px 14px;
    border-bottom: 2px solid var(--azet-text);
}

.popular-tabs {
    padding: 0;
    border: 1px solid var(--azet-border);
    background: var(--azet-surface);
    border-radius: 999px;
}

.popular-tab {
    padding: 6px 10px;
    color: var(--azet-muted);
    font-size: .65rem;
}

.popular-tab.is-active,
.popular-tab:hover {
    background: var(--azet-text);
    color: #fff;
}

.popular-output {
    padding: 12px 14px 14px;
}

.popular-list {
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 0;
    border: 1px solid var(--azet-border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--azet-surface);
}

.popular-item {
    min-height: 78px;
    padding: 11px;
    border: 0;
    border-right: 1px solid var(--azet-border);
    border-bottom: 1px solid var(--azet-border);
    border-radius: 0;
    background: var(--azet-surface);
    box-shadow: none;
}

.popular-item:nth-child(3n) {
    border-right: 0;
}

.popular-item:nth-last-child(-n+3) {
    border-bottom: 0;
}

.popular-item.has-thumb {
    grid-template-columns: 30px 78px minmax(0,1fr);
    gap: 9px;
}

.popular-item.no-thumb {
    grid-template-columns: 30px minmax(0,1fr);
}

.popular-item__rank {
    color: var(--azet-accent);
    font-family: var(--azet-font-sans);
    font-size: 1rem;
    font-weight: 950;
}

.popular-item__thumb {
    width: 78px;
    height: 46px;
    border-radius: 6px;
}

.popular-item__meta {
    display: none;
}

.popular-item__title {
    font-family: var(--azet-font-sans);
    font-size: .76rem;
    font-weight: 850;
    line-height: 1.23;
}

.popular-item__views {
    color: var(--azet-muted);
    font-size: .58rem;
    margin-top: 3px;
}

.archive-header,
.search-header,
.not-found-header {
    margin-top: 12px;
    padding: 18px 20px;
    border-radius: 10px;
    background: var(--azet-surface);
}

.archive-title,
.search-title,
.not-found-title {
    font-size: clamp(1.7rem, 2.8vw, 2.45rem);
    letter-spacing: -.055em;
}

.archive-description {
    font-size: .86rem;
    margin-top: 8px;
}

.archive-shell {
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    gap: 14px;
}

.archive-lead .post-card__media {
    aspect-ratio: 16 / 9;
}

.archive-lead .post-card__title {
    font-size: clamp(1.08rem, 1.35vw, 1.36rem);
    line-height: 1.16;
}

.archive-stack {
    gap: 10px;
}

.archive-stack .post-card--compact {
    min-height: 96px;
}

.category-block {
    grid-template-columns: minmax(0,.95fr) minmax(340px,1.05fr);
    gap: 14px;
}

.category-block__grid {
    gap: 10px;
}

.category-block__grid .post-card__title {
    font-size: .78rem;
}

@media (max-width: 1180px) {
    .hero-grid {
        grid-template-columns: minmax(0,1fr) minmax(300px,.9fr);
    }
    .latest-panel {
        grid-column: 1 / -1;
    }
    .popular-list {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .popular-item:nth-child(3n) { border-right: 1px solid var(--azet-border); }
    .popular-item:nth-child(2n) { border-right: 0; }
    .popular-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--azet-border); }
    .popular-item:nth-last-child(-n+2) { border-bottom: 0; }
    .archive-shell,
    .category-block {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-side {
        grid-template-columns: 1fr;
    }
    .popular-list {
        grid-template-columns: 1fr;
    }
    .popular-item,
    .popular-item:nth-child(2n),
    .popular-item:nth-child(3n),
    .popular-item:nth-last-child(-n+2),
    .popular-item:nth-last-child(-n+3) {
        border-right: 0;
        border-bottom: 1px solid var(--azet-border);
    }
    .popular-item:last-child { border-bottom: 0; }
}

@media (max-width: 640px) {
    .home-hero { padding-top: 6px; }
    .hero-main__content { padding: 14px; }
    .hero-title { font-size: clamp(1.65rem, 7.5vw, 2.2rem); }
    .post-card--compact,
    .hero-side .post-card--compact,
    .archive-stack .post-card--compact,
    .category-block__grid .post-card--compact {
        grid-template-columns: 110px minmax(0,1fr) !important;
        min-height: 86px;
    }
    .popular-item.has-thumb {
        grid-template-columns: 28px 76px minmax(0,1fr);
    }
    .popular-item__thumb {
        width: 76px;
        height: 44px;
    }
}


/* v1.6.0 serious news density + selectable top article support */
:root {
    --azet-accent: #b20f2f;
    --azet-accent-soft: rgba(178,15,47,.075);
    --azet-border: #d9dde3;
    --azet-text: #101318;
    --azet-muted: #5e6672;
    --azet-radius: 8px;
    --azet-radius-sm: 6px;
    --azet-shadow-soft: 0 8px 22px rgba(16,19,24,.055);
}

body {
    background: #fff;
    font-size: 13.5px;
    line-height: 1.5;
}

.site-header {
    border-top: 3px solid #101318;
    border-bottom: 1px solid #cfd5dd;
    background: rgba(255,255,255,.97);
}

.site-header__inner {
    min-height: 48px;
}

.site-title {
    font-size: clamp(1.16rem, 1.45vw, 1.42rem);
}

.site-title::before {
    width: 7px;
    height: 22px;
    border-radius: 2px;
    background: var(--azet-accent);
    box-shadow: none;
}

.site-description {
    font-size: .64rem;
}

.primary-menu a {
    min-height: 26px;
    padding: 4px 8px;
    font-size: .66rem;
    border-radius: 4px;
}

.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a,
.primary-menu a:hover,
.primary-menu a:focus-visible {
    background: #f2f4f7;
}

.icon-button,
.mobile-menu-toggle,
.search-submit,
.search-close {
    width: 31px;
    height: 31px;
    border-radius: 999px;
}

.home-hero {
    padding-top: 7px;
}

.section {
    margin-top: clamp(22px, 3.2vw, 36px);
}

.section-head {
    margin-bottom: 9px;
    padding-bottom: 7px;
    border-bottom: 2px solid #101318;
}

.section-title {
    font-family: var(--azet-font-serif);
    font-size: clamp(1.05rem, 1.42vw, 1.34rem);
}

.section-title::before {
    width: 5px;
    height: 5px;
    margin-right: 7px;
    box-shadow: none;
    background: var(--azet-accent);
}

.hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(315px, .86fr) minmax(270px, 300px);
    gap: 12px;
    align-items: start;
}

.hero-main,
.post-card,
.latest-panel,
.popular-shell,
.archive-header,
.archive-lead .post-card,
.archive-stack .post-card,
.category-block__main .post-card,
.category-block__grid .post-card {
    border-radius: 7px;
    border-color: var(--azet-border);
    box-shadow: none;
}

.hero-main__media {
    aspect-ratio: 16 / 8.2;
}

.hero-main__content {
    padding: 13px 14px 12px;
}

.hero-title {
    font-size: clamp(1.78rem, 3.05vw, 2.62rem);
    line-height: 1.01;
    letter-spacing: -.052em;
    margin: 7px 0 6px;
}

.hero-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 8px;
    font-size: .8rem;
    line-height: 1.45;
}

.post-category {
    min-height: 16px;
    padding: 2px 6px;
    border-radius: 3px;
    border: 0;
    background: #f5e7eb;
    color: var(--azet-accent);
    font-size: .45rem;
    letter-spacing: .055em;
}

.meta-row {
    font-size: .56rem;
}

.hero-side {
    gap: 8px;
}

.hero-side .post-card--compact,
.post-card--compact,
.archive-stack .post-card--compact,
.category-block__grid .post-card--compact {
    grid-template-columns: 112px minmax(0,1fr) !important;
    min-height: 78px;
}

.hero-side .post-card--compact .post-card__body,
.post-card--compact .post-card__body {
    padding: 7px 9px;
}

.hero-side .post-card--compact .post-card__title,
.post-card--compact .post-card__title {
    font-size: .72rem;
    line-height: 1.18;
    -webkit-line-clamp: 2;
}

.post-card__media {
    aspect-ratio: 16 / 9;
}

.post-card__title {
    font-size: .95rem;
}

.post-card__excerpt {
    font-size: .72rem;
}

.latest-panel {
    align-self: start;
}

.latest-panel__head {
    padding: 9px 11px 7px;
    border-bottom: 2px solid #101318;
}

.latest-panel__head h2 {
    font-size: .9rem;
}

.latest-list__item {
    grid-template-columns: 38px minmax(0,1fr);
    gap: 8px;
    padding: 7px 11px;
}

.latest-list__time {
    font-size: .58rem;
}

.latest-list__title {
    font-size: .68rem;
    line-height: 1.2;
}

.popular-shell {
    border-radius: 7px;
    background: #fff;
}

.popular-shell .section-head {
    padding: 9px 12px;
    border-bottom: 2px solid #101318;
}

.popular-output {
    padding: 0;
}

.popular-list {
    border: 0;
    border-radius: 0;
    grid-template-columns: repeat(3, minmax(0,1fr));
}

.popular-item {
    min-height: 64px;
    padding: 9px 11px;
    border-right: 1px solid var(--azet-border);
    border-bottom: 1px solid var(--azet-border);
}

.popular-item:nth-child(3n) {
    border-right: 0;
}

.popular-item.has-thumb {
    grid-template-columns: 28px 64px minmax(0,1fr);
}

.popular-item.no-thumb {
    grid-template-columns: 28px minmax(0,1fr);
}

.popular-item__rank {
    font-size: .88rem;
    font-weight: 950;
}

.popular-item__thumb {
    width: 64px;
    height: 38px;
    border-radius: 4px;
}

.popular-item__title {
    font-size: .7rem;
    line-height: 1.18;
}

.popular-item__views {
    font-size: .54rem;
}

.popular-tabs {
    border-radius: 4px;
}

.popular-tab {
    border-radius: 3px;
    font-size: .6rem;
}

.category-block,
.archive-shell {
    gap: 12px;
}

.category-block__grid,
.archive-stack {
    gap: 8px;
}

.category-block__grid .post-card--compact,
.archive-stack .post-card--compact {
    min-height: 82px;
}

.category-block__grid .post-card__title,
.archive-stack .post-card__title {
    font-size: .74rem;
}

.archive-header,
.search-header,
.not-found-header {
    margin-top: 10px;
    padding: 14px 16px;
    border-radius: 7px;
}

.archive-title,
.search-title,
.not-found-title {
    font-size: clamp(1.52rem, 2.4vw, 2.05rem);
}

@media (min-width: 1181px) {
    .hero-side .post-card--compact:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 1180px) {
    .hero-grid {
        grid-template-columns: minmax(0,1fr) minmax(300px,.86fr);
    }

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

    .popular-item:nth-child(3n) {
        border-right: 1px solid var(--azet-border);
    }

    .popular-item:nth-child(2n) {
        border-right: 0;
    }
}

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

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

    .latest-panel {
        grid-column: auto;
    }

    .popular-list {
        grid-template-columns: 1fr;
    }

    .popular-item,
    .popular-item:nth-child(2n),
    .popular-item:nth-child(3n) {
        border-right: 0;
    }
}

@media (max-width: 640px) {
    .home-hero {
        padding-top: 5px;
    }

    .hero-side {
        grid-template-columns: 1fr;
    }

    .hero-main__media {
        aspect-ratio: 16 / 9;
    }

    .hero-title {
        font-size: clamp(1.55rem, 7.2vw, 2.1rem);
    }

    .hero-side .post-card--compact,
    .post-card--compact,
    .archive-stack .post-card--compact,
    .category-block__grid .post-card--compact {
        grid-template-columns: 106px minmax(0,1fr) !important;
        min-height: 76px;
    }
}


/* v1.7.0 serious news polish: bigger key titles, no dead space, richer popular cards */
:root {
    --azet-container: 1220px;
    --azet-accent: #c4123f;
    --azet-accent-soft: rgba(196,18,63,.075);
    --azet-border: #cfd4dc;
    --azet-text: #101318;
    --azet-muted: #5d6470;
}

body {
    background: #f6f7f9;
    color: var(--azet-text);
}

.site-header {
    border-top: 0;
    border-bottom: 2px solid #111827;
    background: rgba(255,255,255,.98);
}

.site-header__inner {
    min-height: 48px;
}

.primary-menu a {
    font-size: .72rem;
}

.container,
.site-header__inner,
.site-footer__inner {
    width: min(calc(100% - 22px), var(--azet-container));
}

.home-hero {
    padding-top: 7px;
}

.section {
    margin-top: 20px;
}

.section-head {
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 2px solid #111827;
}

.section-title {
    font-size: clamp(1.18rem, 1.65vw, 1.55rem);
    font-weight: 900;
}

.section-title::before {
    width: 6px;
    height: 6px;
    margin-right: 7px;
    box-shadow: none;
    background: var(--azet-accent);
}

.section-link,
.read-more {
    font-size: .72rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(350px, .96fr) minmax(330px, .88fr);
    gap: 10px;
    align-items: stretch;
}

.hero-main,
.hero-side .post-card,
.latest-panel,
.category-block__main .post-card,
.category-block__grid .post-card,
.archive-lead .post-card,
.archive-stack .post-card,
.popular-shell {
    background: #fff;
    border: 1px solid var(--azet-border);
    border-radius: 5px;
    box-shadow: none;
}

.hero-main {
    height: 100%;
}

.hero-main__media {
    aspect-ratio: 16 / 8.8;
}

.hero-main__content {
    padding: 14px 15px 12px;
}

.hero-title {
    font-size: clamp(2.15rem, 3.65vw, 3.25rem);
    line-height: .98;
    letter-spacing: -.055em;
    margin: 8px 0 7px;
}

.hero-excerpt {
    font-size: .86rem;
    line-height: 1.48;
    -webkit-line-clamp: 3;
    margin-bottom: 9px;
}

.post-category {
    background: #fff0f3;
    color: var(--azet-accent);
    border: 1px solid rgba(196,18,63,.16);
    border-radius: 2px;
    font-size: .47rem;
    font-weight: 950;
    letter-spacing: .07em;
    padding: 2px 5px;
    min-height: 16px;
}

.meta-row {
    font-size: .6rem;
    color: #68707c;
}

.hero-side {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-content: stretch;
}

.hero-side .post-card--compact {
    height: 100%;
}

.hero-side .post-card--compact,
.post-card--compact,
.archive-stack .post-card--compact,
.category-block__grid .post-card--compact {
    grid-template-columns: 122px minmax(0,1fr) !important;
    min-height: 88px;
}

.hero-side .post-card--compact .post-card__body,
.post-card--compact .post-card__body {
    padding: 8px 10px;
}

.hero-side .post-card--compact .post-card__title,
.post-card--compact .post-card__title {
    font-size: .82rem;
    line-height: 1.22;
    font-weight: 850;
    -webkit-line-clamp: 2;
}

.post-card__title {
    font-size: 1.06rem;
    line-height: 1.18;
    font-weight: 900;
}

.category-block__main .post-card__title,
.archive-lead .post-card__title {
    font-size: clamp(1.22rem, 1.65vw, 1.65rem);
    line-height: 1.12;
}

.post-card__excerpt {
    font-size: .78rem;
    line-height: 1.42;
}

.latest-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.latest-panel__head {
    padding: 9px 11px 7px;
    border-bottom: 2px solid #111827;
    background: #fff;
}

.latest-panel__head h2 {
    font-size: 1rem;
    font-weight: 900;
}

.latest-list {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.latest-list__item {
    flex: 1 1 auto;
    grid-template-columns: 40px minmax(0,1fr);
    gap: 8px;
    padding: 8px 11px;
    border-bottom: 1px solid #e3e6eb;
}

.latest-list__title {
    font-size: .76rem;
    line-height: 1.23;
    font-weight: 850;
}

/* Premium but still serious popular/news ranking */
.popular-section {
    margin-top: 18px;
}

.popular-shell {
    overflow: hidden;
    padding: 0;
}

.popular-shell .section-head {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    margin: 0;
    border-bottom: 2px solid #111827;
    background: #fff;
}

.popular-shell .section-title {
    font-size: 1.08rem;
}

.popular-tabs {
    margin-left: auto;
    border: 1px solid #d4d8df;
    border-radius: 999px;
    background: #f6f7f9;
    padding: 2px;
}

.popular-tab {
    min-height: 25px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #1f2937;
    font-size: .64rem;
    font-weight: 900;
}

.popular-tab.is-active,
.popular-tab:hover {
    background: #111827;
    color: #fff;
}

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

.popular-item,
.popular-item.has-thumb,
.popular-item.no-thumb {
    position: relative;
    display: grid;
    grid-template-columns: 118px minmax(0,1fr);
    gap: 10px;
    min-height: 92px;
    padding: 10px;
    border: 0;
    border-right: 1px solid #d9dde3;
    border-bottom: 1px solid #d9dde3;
    border-radius: 0;
    background: #fff;
}

.popular-item:nth-child(3n) {
    border-right: 0;
}

.popular-item__rank {
    position: absolute;
    top: 7px;
    left: 7px;
    z-index: 2;
    display: inline-flex;
    width: 28px;
    height: 24px;
    align-items: center;
    justify-content: center;
    background: var(--azet-accent);
    color: #fff;
    border-radius: 3px;
    font-size: .76rem;
    font-weight: 950;
}

.popular-item__thumb {
    width: 118px;
    height: 72px;
    border-radius: 3px;
    overflow: hidden;
    background: #eef1f5;
}

.popular-item__thumb img,
.popular-item__thumb .post-card__image--placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.popular-item__body {
    min-width: 0;
    align-self: center;
}

.popular-item__meta {
    gap: 5px;
    margin-bottom: 4px;
    font-size: .58rem;
    color: #6b7280;
}

.popular-item__meta .post-category {
    display: none;
}

.popular-item__title {
    font-size: .82rem;
    line-height: 1.2;
    font-weight: 900;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #111827;
}

.popular-item__views {
    margin-top: 4px;
    font-size: .62rem;
    color: #6b7280;
}

/* Category blocks: tighter, no empty whitespace */
.category-block,
.archive-shell {
    grid-template-columns: minmax(0, .98fr) minmax(420px, 1.02fr);
    gap: 10px;
    align-items: stretch;
}

.category-block__main .post-card,
.archive-lead .post-card {
    height: 100%;
}

.category-block__main .post-card__media,
.archive-lead .post-card__media {
    aspect-ratio: 16 / 8.6;
}

.category-block__grid,
.archive-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-content: stretch;
}

.category-block__grid .post-card--compact,
.archive-stack .post-card--compact {
    min-height: 88px;
}

.archive-header,
.search-header,
.not-found-header {
    margin-top: 8px;
    padding: 14px 16px;
    border-radius: 5px;
    background: #fff;
}

.archive-title,
.search-title,
.not-found-title {
    font-size: clamp(1.75rem, 2.6vw, 2.35rem);
}

@media (min-width: 1181px) {
    .hero-side .post-card--compact:nth-child(n+5) {
        display: grid;
    }
}

@media (max-width: 1180px) {
    .hero-grid {
        grid-template-columns: minmax(0,1fr) minmax(320px,.9fr);
    }

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

    .popular-item:nth-child(3n) {
        border-right: 1px solid #d9dde3;
    }

    .popular-item:nth-child(2n) {
        border-right: 0;
    }

    .category-block,
    .archive-shell {
        grid-template-columns: 1fr;
    }
}

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

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

    .popular-list {
        grid-template-columns: 1fr;
    }

    .popular-item,
    .popular-item:nth-child(2n),
    .popular-item:nth-child(3n) {
        border-right: 0;
    }
}

@media (max-width: 640px) {
    .container,
    .site-header__inner,
    .site-footer__inner {
        width: min(calc(100% - 16px), var(--azet-container));
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.35rem);
    }

    .hero-side {
        grid-template-columns: 1fr;
    }

    .popular-item,
    .popular-item.has-thumb,
    .popular-item.no-thumb {
        grid-template-columns: 104px minmax(0,1fr) !important;
    }

    .popular-item__thumb {
        width: 104px;
        height: 64px;
    }

    .hero-side .post-card--compact,
    .post-card--compact,
    .archive-stack .post-card--compact,
    .category-block__grid .post-card--compact {
        grid-template-columns: 108px minmax(0,1fr) !important;
        min-height: 78px;
    }
}


/* v1.9.0 stronger news layout, bigger text, hero carousel, 9-card rubriky */
:root {
    --azet-container: 1260px;
    --azet-text: #111217;
    --azet-muted: #555b66;
    --azet-accent: #d7194a;
}

body {
    font-size: 15.5px;
    line-height: 1.62;
    background: #f4f6f8;
}

.container,
.site-header__inner,
.site-footer__inner {
    width: min(calc(100% - 36px), var(--azet-container));
}

.site-header__inner {
    min-height: 60px;
}

.site-title {
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.site-description {
    font-size: .82rem;
}

.primary-menu a {
    font-size: .88rem;
    font-weight: 850;
    padding: 8px 11px;
}

.section {
    margin-top: 26px;
}

.section-head {
    margin-bottom: 12px;
    padding-bottom: 10px;
}

.section-title {
    font-size: clamp(1.55rem, 2.1vw, 2.05rem);
}

.home-hero {
    padding-top: 12px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .88fr) minmax(330px, .72fr);
    gap: 12px;
    align-items: stretch;
}

.hero-slider {
    position: relative;
    min-width: 0;
}

.hero-slider__track {
    position: relative;
    height: 100%;
}

.hero-slide {
    display: none;
    height: 100%;
}

.hero-slide.is-active {
    display: flex;
    animation: azetHeroFade .32s ease;
}

@keyframes azetHeroFade {
    from { opacity: .35; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-slider__nav {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    gap: 7px;
    padding: 6px;
    border: 1px solid rgba(17,18,23,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(10px);
    z-index: 5;
}

.hero-slider__dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #9aa1ad;
}

.hero-slider__dot.is-active {
    width: 28px;
    background: var(--azet-accent);
}

.hero-main {
    min-height: 0;
    border-radius: 12px;
}

.hero-main__media {
    aspect-ratio: 16 / 8.3;
}

.hero-main__content {
    padding: 20px 22px 18px;
}

.hero-title {
    font-size: clamp(2.55rem, 4.4vw, 4.1rem);
    line-height: .98;
    margin: 12px 0 10px;
    letter-spacing: -0.055em;
}

.hero-excerpt {
    font-size: 1.05rem;
    line-height: 1.58;
    margin-bottom: 12px;
}

.post-category {
    font-size: .62rem;
    padding: 5px 8px;
}

.meta-row {
    font-size: .78rem;
}

.hero-side {
    gap: 10px;
}

.hero-side .post-card--compact {
    grid-template-columns: 142px minmax(0, 1fr) !important;
    min-height: 120px;
    height: 100%;
}

.post-card {
    border-radius: 10px;
}

.post-card__body {
    padding: 14px;
}

.post-card__title {
    font-size: clamp(1.08rem, 1.25vw, 1.32rem);
    line-height: 1.2;
}

.post-card__excerpt {
    font-size: .94rem;
}

.post-card--compact .post-card__title {
    font-size: .95rem;
    line-height: 1.25;
    -webkit-line-clamp: 3;
}

.latest-panel__head h2 {
    font-size: 1.35rem;
}

.latest-list__item {
    padding: 13px 16px;
    min-height: 88px;
}

.latest-list__time {
    font-size: .78rem;
}

.latest-list__title {
    font-size: .98rem;
    line-height: 1.25;
}

/* More attractive Najčtenější with images */
.popular-shell {
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}

.popular-shell .section-head {
    margin: 0;
    padding: 16px 18px 14px;
    border-bottom: 2px solid #111217;
}

.popular-tabs {
    background: #f2f4f7;
}

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

.popular-item {
    position: relative;
    display: grid;
    grid-template-columns: 42px 132px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    min-height: 104px;
    padding: 14px;
    border-right: 1px solid var(--azet-border);
    border-bottom: 1px solid var(--azet-border);
    background: #fff;
}

.popular-item:nth-child(3n) {
    border-right: 0;
}

.popular-item__rank {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 6px;
    background: var(--azet-accent);
    color: #fff;
    font-size: 1rem;
    font-family: var(--azet-font-sans);
    font-weight: 900;
    letter-spacing: -.04em;
}

.popular-item__thumb {
    width: 132px;
    height: 76px;
    border-radius: 6px;
    overflow: hidden;
    background: #e9edf2;
}

.popular-item__thumb img,
.popular-item__thumb .post-card__image--placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.popular-item__meta {
    margin-bottom: 4px;
    font-size: .66rem;
}

.popular-item__title {
    font-size: .94rem;
    line-height: 1.22;
    font-weight: 900;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.popular-item__views {
    margin-top: 4px;
    font-size: .76rem;
}

/* Rubriky: 9 articles, 3x3 with title + featured image */
.archive-header--compact {
    margin-top: 12px;
    padding: 20px 24px;
}

.archive-title {
    font-size: clamp(2.3rem, 4.2vw, 4rem);
}

.archive-section {
    margin-top: 20px;
}

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

.archive-grid--nine .post-card {
    min-height: 100%;
}

.archive-grid--nine .post-card__media {
    aspect-ratio: 16 / 10;
}

.archive-grid--nine .post-card__body {
    padding: 13px 14px 14px;
}

.archive-grid--nine .post-card__title {
    font-size: 1.14rem;
    line-height: 1.22;
    margin: 8px 0 6px;
}

.archive-grid--nine .post-card__excerpt {
    display: none;
}

.archive-grid--nine .meta-row {
    font-size: .72rem;
}

.pagination-wrap {
    margin: 24px 0 0;
}

.pagination-wrap ul {
    gap: 9px;
}

.pagination-wrap a,
.pagination-wrap span {
    min-width: 44px;
    min-height: 40px;
    border-radius: 7px;
    font-size: .88rem;
}

/* Single article: +10% font size and +10% line-height */
.article-content {
    font-size: 1.1rem;
    line-height: 1.92;
}

.article-content p,
.article-content li {
    line-height: 1.92;
}

.article-title {
    font-size: clamp(2.7rem, 5.6vw, 5rem);
}

.article-excerpt {
    font-size: 1.25rem;
    line-height: 1.6;
}

@media (max-width: 1180px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(330px, .82fr);
    }

    .latest-panel {
        grid-column: 1 / -1;
    }

    .popular-list,
    .archive-grid--nine {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .popular-item:nth-child(3n) {
        border-right: 1px solid var(--azet-border);
    }

    .popular-item:nth-child(2n) {
        border-right: 0;
    }
}

@media (max-width: 760px) {
    body {
        font-size: 15px;
    }

    .hero-grid,
    .popular-list,
    .archive-grid--nine {
        grid-template-columns: 1fr;
    }

    .hero-side .post-card--compact,
    .post-card--compact {
        grid-template-columns: 122px minmax(0, 1fr) !important;
    }

    .hero-title {
        font-size: clamp(2.1rem, 9vw, 3rem);
    }

    .popular-item,
    .popular-item.has-thumb {
        grid-template-columns: 36px 110px minmax(0, 1fr);
    }

    .popular-item {
        border-right: 0;
    }

    .popular-item__thumb {
        width: 110px;
        height: 64px;
    }

    .archive-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .article-content {
        font-size: 1.04rem;
        line-height: 1.88;
    }
}


/* v1.11.0 stable compact news reset
   Goal: compact, compatible layout without oversized typography or empty card space. */
:root {
    --azet-container: 1180px;
    --azet-radius: 8px;
    --azet-radius-sm: 6px;
    --azet-text: #111827;
    --azet-muted: #5b6472;
    --azet-border: #d3d9e3;
    --azet-soft: #f5f7fa;
    --azet-surface: #ffffff;
    --azet-accent: #d71958;
    --azet-accent-soft: rgba(215,25,88,.08);
    --azet-shadow: none;
    --azet-shadow-soft: none;
}

html { scroll-behavior: auto; }

body {
    background: #f4f6f9;
    color: var(--azet-text);
    font-size: 15px;
    line-height: 1.55;
}

.container,
.site-header__inner,
.site-footer__inner {
    width: min(calc(100% - 28px), var(--azet-container));
}

.site-header {
    background: rgba(255,255,255,.98);
    border-top: 0;
    border-bottom: 2px solid #111827;
    box-shadow: none;
}

.site-header__inner {
    min-height: 58px;
    gap: 16px;
}

.site-title {
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    letter-spacing: -.04em;
}

.site-title::before {
    width: 9px;
    height: 26px;
    box-shadow: none;
    background: var(--azet-accent);
}

.site-description {
    font-size: .78rem;
}

.primary-menu a {
    min-height: 30px;
    padding: 6px 9px;
    font-size: .78rem;
    font-weight: 850;
}

.icon-button,
.mobile-menu-toggle,
.search-submit,
.search-close {
    width: 34px;
    height: 34px;
    box-shadow: none;
}

.home-hero {
    padding-top: 12px;
}

.section {
    margin-top: 24px;
}

.section-head {
    margin-bottom: 10px;
    padding-bottom: 8px;
    align-items: center;
    border-bottom: 2px solid #111827;
}

.section-title {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.1;
}

.section-title::before {
    width: 7px;
    height: 7px;
    box-shadow: none;
}

.section-link {
    font-size: .78rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* HERO: fixed compact columns, no vertical stretching */
.hero-grid,
.hero-grid--slider {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .88fr) minmax(280px, .72fr) !important;
    gap: 12px;
    align-items: start !important;
}

.hero-slider {
    min-width: 0;
    position: relative;
}

.hero-slider__track {
    position: relative;
    height: auto !important;
}

.hero-slide {
    display: none !important;
    height: auto !important;
}

.hero-slide.is-active {
    display: block !important;
}

.hero-main {
    min-height: 0 !important;
    display: block !important;
    border: 1px solid var(--azet-border);
    border-radius: var(--azet-radius);
    background: #fff;
    overflow: hidden;
    box-shadow: none;
}

.hero-main__media {
    display: block;
    width: 100%;
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
    overflow: hidden;
    background: var(--azet-soft);
}

.hero-main__media img,
.hero-main__media .post-card__image--placeholder {
    width: 100%;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover;
}

.hero-main__content {
    padding: 15px 16px 16px !important;
}

.hero-title {
    margin: 9px 0 8px !important;
    font-size: clamp(1.75rem, 3vw, 2.65rem) !important;
    line-height: 1.03 !important;
    letter-spacing: -.05em !important;
}

.hero-excerpt {
    max-width: 100%;
    margin: 0 0 10px !important;
    color: var(--azet-muted);
    font-size: .94rem !important;
    line-height: 1.5 !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.meta-row {
    gap: 5px 9px;
    font-size: .72rem;
    color: var(--azet-muted);
}

.post-category {
    min-height: 19px;
    padding: 3px 7px;
    border: 1px solid rgba(215,25,88,.24);
    border-radius: 4px;
    background: rgba(215,25,88,.06);
    box-shadow: none;
    color: var(--azet-accent);
    font-size: .58rem;
    font-weight: 900;
}

/* Middle top articles */
.hero-side {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px !important;
    align-content: start;
}

.post-card {
    border: 1px solid var(--azet-border);
    border-radius: var(--azet-radius);
    background: #fff;
    overflow: hidden;
    box-shadow: none !important;
    transform: none !important;
}

.post-card:hover {
    border-color: #aeb7c5;
    box-shadow: none !important;
}

.post-card__media {
    aspect-ratio: 16 / 9 !important;
    min-height: 0 !important;
    background: var(--azet-soft);
    overflow: hidden;
}

.post-card__image,
.post-card__image--placeholder {
    display: grid;
    width: 100%;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover;
}

.post-card__image--placeholder {
    place-items: center;
    background: linear-gradient(135deg, #eef2f7, #f8fafc);
    color: var(--azet-accent);
}

.post-card__image--placeholder span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid #d9e1ec;
    border-radius: 50%;
    background: #fff;
    color: var(--azet-accent);
    font-family: var(--azet-font-sans);
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: 0;
}

.post-card__body {
    padding: 12px 13px !important;
    min-width: 0;
}

.post-card__title {
    margin: 7px 0 5px !important;
    font-size: 1.02rem !important;
    line-height: 1.22 !important;
    letter-spacing: -.02em !important;
    overflow-wrap: anywhere;
}

.post-card__excerpt {
    margin: 0 0 8px;
    color: var(--azet-muted);
    font-size: .86rem;
    line-height: 1.45;
}

.post-card--compact {
    display: grid !important;
    grid-template-columns: 132px minmax(0, 1fr) !important;
    min-height: 98px !important;
    height: auto !important;
    align-items: stretch !important;
}

.post-card--compact .post-card__media {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
}

.post-card--compact .post-card__media img,
.post-card--compact .post-card__media .post-card__image--placeholder {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.post-card--compact .post-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 9px 11px !important;
}

.post-card--compact .post-card__title {
    margin: 0 !important;
    font-size: .82rem !important;
    line-height: 1.23 !important;
    font-family: var(--azet-font-sans);
    font-weight: 900;
    letter-spacing: -.01em !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.post-card--compact .meta-row {
    font-size: .63rem;
}

.post-card--compact .post-category {
    min-height: 17px;
    padding: 2px 6px;
    font-size: .49rem;
}

/* Latest panel */
.latest-panel {
    border: 1px solid var(--azet-border);
    border-radius: var(--azet-radius);
    background: #fff;
    box-shadow: none;
    overflow: hidden;
}

.latest-panel__head {
    padding: 11px 13px 9px !important;
    border-bottom: 2px solid #111827;
    background: #fff;
}

.latest-panel__head h2 {
    font-size: 1.18rem !important;
    line-height: 1.05;
}

.latest-list {
    margin: 0;
    padding: 0;
}

.latest-list__item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 9px !important;
    min-height: 74px !important;
    padding: 10px 13px !important;
    border-bottom: 1px solid var(--azet-border);
    align-items: start;
}

.latest-list__time {
    font-size: .68rem !important;
    font-weight: 900;
    color: var(--azet-accent);
}

.latest-list__title {
    margin: 0 !important;
    font-size: .82rem !important;
    line-height: 1.25 !important;
    font-weight: 900;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Popular */
.popular-shell {
    padding: 0 !important;
    border: 1px solid var(--azet-border);
    border-radius: var(--azet-radius);
    background: #fff !important;
    overflow: hidden;
    box-shadow: none;
}

.popular-shell .section-head {
    margin: 0 !important;
    padding: 12px 14px 10px !important;
    border-bottom: 2px solid #111827;
}

.popular-tabs {
    display: inline-flex;
    gap: 3px;
    padding: 3px !important;
    border: 1px solid var(--azet-border);
    border-radius: 999px;
    background: #f3f5f8;
}

.popular-tab {
    padding: 5px 10px !important;
    border-radius: 999px;
    font-size: .7rem !important;
    font-weight: 900;
}

.popular-tab.is-active,
.popular-tab:hover {
    background: #111827 !important;
    color: #fff !important;
}

.popular-list {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
}

.popular-item,
.popular-item.has-thumb,
.popular-item.no-thumb {
    position: relative;
    display: grid !important;
    grid-template-columns: 88px minmax(0, 1fr) !important;
    gap: 10px !important;
    align-items: center !important;
    min-height: 92px !important;
    padding: 10px !important;
    border-right: 1px solid var(--azet-border);
    border-bottom: 1px solid var(--azet-border);
    background: #fff;
}

.popular-item:nth-child(3n) {
    border-right: 0;
}

.popular-item__rank {
    position: absolute;
    left: 8px;
    top: 8px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 30px;
    height: 24px;
    border-radius: 4px;
    background: var(--azet-accent);
    color: #fff;
    font-family: var(--azet-font-sans);
    font-size: .78rem;
    font-weight: 950;
}

.popular-item__thumb {
    width: 88px !important;
    height: 58px !important;
    border-radius: 5px;
    overflow: hidden;
    background: var(--azet-soft);
}

.popular-item__thumb img,
.popular-item__thumb .post-card__image--placeholder {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.popular-item__body {
    min-width: 0;
}

.popular-item__meta {
    display: none !important;
}

.popular-item__title {
    margin: 0 !important;
    font-family: var(--azet-font-sans);
    font-size: .82rem !important;
    line-height: 1.22 !important;
    font-weight: 900;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-item__views {
    display: block;
    margin-top: 4px !important;
    font-size: .68rem !important;
    color: var(--azet-muted);
    font-weight: 800;
}

/* Homepage categories */
.category-block {
    display: grid !important;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr) !important;
    gap: 12px !important;
    align-items: start !important;
}

.category-block__main .post-card__media {
    aspect-ratio: 16 / 9 !important;
}

.category-block__main .post-card__title {
    font-size: 1.15rem !important;
    line-height: 1.18 !important;
}

.category-block__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 9px !important;
}

.category-block__grid .post-card--compact {
    grid-template-columns: 126px minmax(0, 1fr) !important;
    min-height: 92px !important;
}

/* Category/archive pages: 9 cards, no giant images */
.archive-header,
.archive-header--compact,
.search-header,
.not-found-header {
    margin-top: 12px !important;
    padding: 16px 18px !important;
    border: 1px solid var(--azet-border);
    border-radius: var(--azet-radius);
    background: #fff;
    box-shadow: none;
}

.archive-title,
.search-title,
.not-found-title {
    font-size: clamp(1.75rem, 3vw, 2.45rem) !important;
    line-height: 1.08 !important;
}

.archive-section {
    margin-top: 14px !important;
}

.archive-grid--nine,
.posts-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.archive-grid--nine .post-card__media,
.posts-grid .post-card__media {
    aspect-ratio: 16 / 9 !important;
}

.archive-grid--nine .post-card__title,
.posts-grid .post-card__title {
    font-size: .98rem !important;
    line-height: 1.22 !important;
    font-family: var(--azet-font-sans);
    font-weight: 900;
}

.archive-grid--nine .post-card__excerpt {
    display: none !important;
}

.pagination-wrap {
    margin: 22px 0 0 !important;
}

.pagination-wrap a,
.pagination-wrap span {
    min-width: 36px !important;
    min-height: 34px !important;
    border-radius: 5px !important;
    font-size: .84rem !important;
}

/* Article page: readable, only modestly larger */
.article-title {
    font-size: clamp(2rem, 4vw, 3.45rem) !important;
    line-height: 1.04 !important;
}

.article-excerpt {
    font-size: 1.08rem !important;
    line-height: 1.65 !important;
}

.article-content {
    font-size: 1.06rem !important;
    line-height: 1.86 !important;
}

.article-content p,
.article-content li {
    line-height: 1.86 !important;
}

@media (max-width: 1180px) {
    .hero-grid,
    .hero-grid--slider {
        grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr) !important;
    }

    .latest-panel {
        grid-column: 1 / -1;
    }

    .popular-list,
    .archive-grid--nine,
    .posts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .popular-item:nth-child(3n) {
        border-right: 1px solid var(--azet-border);
    }

    .popular-item:nth-child(2n) {
        border-right: 0;
    }

    .category-block {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 760px) {
    body { font-size: 14px; }

    .container,
    .site-header__inner,
    .site-footer__inner,
    .article-wrap,
    .article-layout,
    .page-content {
        width: min(calc(100% - 22px), var(--azet-container));
    }

    .site-header__inner {
        min-height: 56px;
    }

    .hero-grid,
    .hero-grid--slider,
    .popular-list,
    .archive-grid--nine,
    .posts-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.35rem) !important;
    }

    .hero-side .post-card--compact,
    .post-card--compact,
    .category-block__grid .post-card--compact {
        grid-template-columns: 112px minmax(0, 1fr) !important;
        min-height: 90px !important;
    }

    .popular-item,
    .popular-item.has-thumb,
    .popular-item.no-thumb {
        grid-template-columns: 84px minmax(0, 1fr) !important;
        border-right: 0 !important;
    }

    .popular-item__thumb {
        width: 84px !important;
        height: 54px !important;
    }

    .article-content {
        font-size: 1.02rem !important;
        line-height: 1.78 !important;
    }

    .article-content p,
    .article-content li {
        line-height: 1.78 !important;
    }
}


/* v1.12.0 — compact stable news layout fix */
:root {
    --azet-container: 1160px;
    --azet-radius: 8px;
    --azet-radius-sm: 6px;
}

body {
    background: #f5f6f8 !important;
    font-size: 14.5px !important;
    line-height: 1.5 !important;
}

.container,
.site-header__inner,
.site-footer__inner {
    width: min(calc(100% - 28px), var(--azet-container)) !important;
}

.site-header {
    border-bottom: 2px solid #111827 !important;
    background: #fff !important;
}

.site-header__inner {
    min-height: 54px !important;
}

.site-title {
    font-size: clamp(1.35rem, 1.9vw, 1.75rem) !important;
    line-height: 1.02 !important;
}

.site-description {
    font-size: .78rem !important;
    margin-top: 3px !important;
}

.primary-menu a {
    font-size: .78rem !important;
    min-height: 30px !important;
    padding: 6px 8px !important;
}

.home-hero {
    padding-top: 12px !important;
}

.hero-grid,
.hero-grid--slider {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(285px, .78fr) minmax(260px, .66fr) !important;
    gap: 10px !important;
    align-items: start !important;
}

/* Critical: show only one TOP slide. This removes the huge stacked white space. */
.hero-slider,
.hero-slider__track {
    position: relative !important;
    min-height: 0 !important;
    height: auto !important;
}

.hero-slide {
    display: none !important;
}

.hero-slide.is-active {
    display: flex !important;
}

.hero-main,
.hero-side .post-card,
.latest-panel,
.popular-shell,
.category-block .post-card,
.archive-grid--nine .post-card {
    border: 1px solid #cfd5dd !important;
    border-radius: 7px !important;
    box-shadow: none !important;
    background: #fff !important;
}

.hero-main {
    min-height: 0 !important;
    overflow: hidden !important;
}

.hero-main__media {
    aspect-ratio: 16 / 8.7 !important;
    min-height: 0 !important;
}

.hero-main__media img,
.hero-main__media .post-card__image--placeholder {
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
}

.hero-main__content {
    padding: 14px 16px 13px !important;
}

.hero-title {
    font-size: clamp(1.75rem, 3.05vw, 2.55rem) !important;
    line-height: 1.03 !important;
    letter-spacing: -.045em !important;
    margin: 8px 0 8px !important;
}

.hero-excerpt {
    font-size: .88rem !important;
    line-height: 1.45 !important;
    margin-bottom: 10px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.post-category {
    min-height: 17px !important;
    padding: 3px 6px !important;
    border: 1px solid rgba(224, 31, 78, .28) !important;
    background: #fff4f6 !important;
    color: #d61f4c !important;
    box-shadow: none !important;
    font-size: .52rem !important;
    letter-spacing: .06em !important;
}

.meta-row {
    font-size: .67rem !important;
    line-height: 1.25 !important;
    gap: 5px 9px !important;
}

.hero-side {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    align-content: start !important;
    align-items: start !important;
}

.hero-side .post-card--compact,
.post-card--compact {
    display: grid !important;
    grid-template-columns: 116px minmax(0, 1fr) !important;
    min-height: 86px !important;
    max-height: 104px !important;
    align-items: stretch !important;
    overflow: hidden !important;
}

.hero-side .post-card--compact .post-card__media,
.post-card--compact .post-card__media {
    width: 116px !important;
    height: 100% !important;
    min-height: 86px !important;
    aspect-ratio: auto !important;
    background: #edf0f3 !important;
}

.hero-side .post-card--compact .post-card__media img,
.post-card--compact .post-card__media img,
.hero-side .post-card--compact .post-card__image--placeholder,
.post-card--compact .post-card__image--placeholder {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
}

.post-card--compact .post-card__body {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0 !important;
    padding: 8px 9px !important;
    gap: 3px !important;
}

.post-card--compact .post-card__title {
    font-size: .78rem !important;
    line-height: 1.22 !important;
    margin: 0 !important;
    font-weight: 850 !important;
    letter-spacing: -.01em !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.post-card--compact .meta-row {
    font-size: .58rem !important;
}

.latest-panel {
    align-self: start !important;
    max-height: none !important;
    overflow: hidden !important;
}

.latest-panel__head {
    padding: 10px 12px 8px !important;
    border-bottom: 2px solid #111827 !important;
    background: #fff !important;
}

.latest-panel__head h2 {
    font-size: 1.03rem !important;
    line-height: 1.1 !important;
    margin: 0 !important;
}

.latest-list {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.latest-list__item {
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr) !important;
    gap: 8px !important;
    align-items: start !important;
    min-height: 0 !important;
    padding: 9px 12px !important;
    border-bottom: 1px solid #d9dee5 !important;
}

.latest-list__item:last-child {
    border-bottom: 0 !important;
}

.latest-list__time {
    font-size: .65rem !important;
    line-height: 1.2 !important;
    color: #d61f4c !important;
    font-weight: 900 !important;
}

.latest-list__title {
    font-size: .76rem !important;
    line-height: 1.24 !important;
    margin: 0 !important;
    font-weight: 850 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* Cleaner popular block with real thumbnails / compact fallback */
.section {
    margin-top: 22px !important;
}

.popular-shell {
    padding: 0 !important;
    overflow: hidden !important;
}

.popular-shell .section-head {
    margin: 0 !important;
    padding: 9px 12px !important;
    border-bottom: 2px solid #111827 !important;
    align-items: center !important;
}

.section-title {
    font-size: 1.25rem !important;
    line-height: 1.1 !important;
}

.popular-tabs {
    border: 1px solid #cfd5dd !important;
    border-radius: 999px !important;
    padding: 2px !important;
    background: #fff !important;
}

.popular-tab {
    font-size: .7rem !important;
    padding: 5px 9px !important;
}

.popular-list {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
}

.popular-item,
.popular-item.has-thumb,
.popular-item.no-thumb {
    display: grid !important;
    grid-template-columns: 28px 76px minmax(0, 1fr) !important;
    gap: 8px !important;
    min-height: 74px !important;
    padding: 9px !important;
    border: 0 !important;
    border-right: 1px solid #d9dee5 !important;
    border-bottom: 1px solid #d9dee5 !important;
    border-radius: 0 !important;
    background: #fff !important;
    align-items: center !important;
}

.popular-item:nth-child(3n) {
    border-right: 0 !important;
}

.popular-item__rank {
    position: static !important;
    display: grid !important;
    place-items: center !important;
    width: 28px !important;
    height: 24px !important;
    border-radius: 4px !important;
    background: #d61f4c !important;
    color: #fff !important;
    font-size: .82rem !important;
    font-weight: 900 !important;
}

.popular-item__thumb {
    display: block !important;
    width: 76px !important;
    height: 48px !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    background: #eef1f5 !important;
}

.popular-item__thumb img,
.popular-item__thumb .post-card__image--placeholder {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
    font-size: .8rem !important;
}

.post-card__image--placeholder span {
    font-size: .8rem !important;
    letter-spacing: .02em !important;
}

.popular-item__title {
    font-size: .8rem !important;
    line-height: 1.22 !important;
    font-weight: 850 !important;
    margin: 0 !important;
    -webkit-line-clamp: 2 !important;
}

.popular-item__views {
    font-size: .62rem !important;
    margin-top: 3px !important;
}

/* Homepage category blocks tighter */
.category-block {
    gap: 10px !important;
}

.category-block__grid {
    gap: 8px !important;
}

.category-block__grid .post-card--compact {
    grid-template-columns: 118px minmax(0, 1fr) !important;
    min-height: 86px !important;
}

.category-block__main .post-card__body {
    padding: 11px !important;
}

.category-block__main .post-card__title {
    font-size: 1.05rem !important;
    line-height: 1.18 !important;
}

@media (max-width: 1180px) {
    .hero-grid,
    .hero-grid--slider {
        grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr) !important;
    }

    .latest-panel {
        grid-column: 1 / -1 !important;
    }

    .popular-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .popular-item:nth-child(3n) {
        border-right: 1px solid #d9dee5 !important;
    }

    .popular-item:nth-child(2n) {
        border-right: 0 !important;
    }
}

@media (max-width: 760px) {
    .hero-grid,
    .hero-grid--slider,
    .popular-list {
        grid-template-columns: 1fr !important;
    }

    .hero-title {
        font-size: clamp(1.55rem, 7vw, 2.15rem) !important;
    }

    .hero-side .post-card--compact,
    .post-card--compact,
    .category-block__grid .post-card--compact {
        grid-template-columns: 108px minmax(0, 1fr) !important;
        min-height: 82px !important;
    }

    .popular-item,
    .popular-item.has-thumb,
    .popular-item.no-thumb {
        grid-template-columns: 28px 76px minmax(0, 1fr) !important;
        border-right: 0 !important;
    }
}


/* v1.13.0 — stable top slider + fuller middle column */
:root {
    --azet-container: 1180px;
}

.home-hero {
    padding-top: 10px !important;
}

.hero-grid,
.hero-grid--slider {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, .92fr) minmax(270px, .72fr) !important;
    gap: 10px !important;
    align-items: start !important;
}

@media (min-width: 1001px) {
    .hero-slider {
        height: 438px !important;
        min-height: 438px !important;
        max-height: 438px !important;
        overflow: hidden !important;
    }

    .hero-slider__track,
    .hero-slide.is-active,
    .hero-main {
        height: 100% !important;
        min-height: 0 !important;
    }

    .hero-slide.is-active,
    .hero-main {
        display: flex !important;
        flex-direction: column !important;
    }

    .hero-main__media {
        flex: 0 0 205px !important;
        height: 205px !important;
        min-height: 205px !important;
        aspect-ratio: auto !important;
    }

    .hero-main__content {
        flex: 1 1 auto !important;
        display: flex !important;
        flex-direction: column !important;
        min-height: 0 !important;
        padding: 13px 15px 12px !important;
    }

    .hero-title {
        font-size: clamp(1.55rem, 2.55vw, 2.18rem) !important;
        line-height: 1.04 !important;
        margin: 7px 0 7px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 4 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .hero-excerpt {
        font-size: .82rem !important;
        line-height: 1.43 !important;
        -webkit-line-clamp: 3 !important;
        margin-bottom: 8px !important;
    }

    .hero-main .meta-row {
        margin-top: auto !important;
    }

    .hero-side {
        gap: 7px !important;
    }

    .hero-side .post-card--compact {
        grid-template-columns: 106px minmax(0, 1fr) !important;
        min-height: 66px !important;
        max-height: 66px !important;
        height: 66px !important;
    }

    .hero-side .post-card--compact .post-card__media {
        width: 106px !important;
        min-height: 66px !important;
        height: 66px !important;
    }

    .hero-side .post-card--compact .post-card__body {
        padding: 7px 9px !important;
        gap: 2px !important;
    }

    .hero-side .post-card--compact .post-category {
        min-height: 14px !important;
        padding: 2px 5px !important;
        font-size: .43rem !important;
    }

    .hero-side .post-card--compact .post-card__title {
        font-size: .73rem !important;
        line-height: 1.16 !important;
        -webkit-line-clamp: 2 !important;
    }

    .hero-side .post-card--compact .meta-row {
        font-size: .54rem !important;
        line-height: 1.1 !important;
    }

    .latest-panel {
        max-height: 438px !important;
    }

    .latest-list__item {
        padding: 8px 11px !important;
    }

    .latest-list__title {
        font-size: .73rem !important;
        line-height: 1.2 !important;
        -webkit-line-clamp: 2 !important;
    }
}

@media (max-width: 1180px) and (min-width: 761px) {
    .hero-grid,
    .hero-grid--slider {
        grid-template-columns: minmax(0, 1fr) minmax(300px, .85fr) !important;
    }

    .latest-panel {
        grid-column: 1 / -1 !important;
        max-height: none !important;
    }
}

@media (max-width: 760px) {
    .hero-slider {
        height: auto !important;
        max-height: none !important;
    }

    .hero-main__media {
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 9 !important;
    }

    .hero-title {
        font-size: clamp(1.55rem, 7vw, 2.15rem) !important;
    }
}

/* v1.14.0 requested font increase for Najnovější and category/news sections */
.latest-panel__head h2 {
    font-size: clamp(1.18rem, 1.55vw, 1.45rem) !important;
    line-height: 1.05 !important;
}

.latest-list__item {
    gap: 12px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.latest-list__time {
    font-size: .78rem !important;
    line-height: 1.15 !important;
}

.latest-list__title {
    font-size: clamp(.92rem, 1.08vw, 1.05rem) !important;
    line-height: 1.28 !important;
    letter-spacing: -.01em !important;
}

.latest-list .post-category {
    font-size: .52rem !important;
    padding: 4px 7px !important;
}

.category-block__main .post-card__title,
.archive-lead .post-card__title {
    font-size: clamp(1.28rem, 1.72vw, 1.72rem) !important;
    line-height: 1.15 !important;
}

.category-block__main .post-card__excerpt,
.archive-lead .post-card__excerpt {
    font-size: .96rem !important;
    line-height: 1.55 !important;
}

.category-block__grid .post-card__title,
.archive-stack .post-card__title,
.archive-grid--nine .post-card__title,
.posts-grid .post-card__title {
    font-size: clamp(.98rem, 1.12vw, 1.16rem) !important;
    line-height: 1.28 !important;
}

.category-block__grid .post-card--compact,
.archive-stack .post-card--compact {
    min-height: 118px !important;
}

.category-block__grid .post-card--compact .post-card__body,
.archive-stack .post-card--compact .post-card__body {
    padding: 12px 14px !important;
}

.category-block__grid .meta-row,
.archive-stack .meta-row,
.archive-grid--nine .meta-row,
.posts-grid .meta-row {
    font-size: .72rem !important;
}

.category-block .post-category,
.archive-shell .post-category,
.posts-grid .post-category {
    font-size: .58rem !important;
    padding: 4px 8px !important;
}

.section-title {
    font-size: clamp(1.35rem, 2vw, 1.8rem) !important;
}

.section-link {
    font-size: .9rem !important;
}

@media (max-width: 640px) {
    .latest-list__title {
        font-size: .95rem !important;
    }

    .category-block__main .post-card__title,
    .archive-lead .post-card__title {
        font-size: 1.25rem !important;
    }

    .category-block__grid .post-card__title,
    .archive-stack .post-card__title,
    .archive-grid--nine .post-card__title,
    .posts-grid .post-card__title {
        font-size: 1rem !important;
    }

    .category-block__grid .post-card--compact,
    .archive-stack .post-card--compact {
        min-height: 108px !important;
    }
}

/* v1.5.0 final fixes: header, dark mode, popular thumbnails, article left sidebar */
:root {
    --azet-bg: #f4f6f8;
    --azet-surface: #ffffff;
    --azet-text: #10141d;
    --azet-muted: #5e6675;
    --azet-border: #cfd6df;
    --azet-accent: #d7194a;
    --azet-soft: #f7f9fb;
    --azet-container: 1200px;
}

body {
    background: var(--azet-bg) !important;
    color: var(--azet-text) !important;
}

body.azet-dark,
html.azet-dark body {
    --azet-bg: #101217;
    --azet-surface: #181b22;
    --azet-soft: #20242d;
    --azet-text: #f4f6f8;
    --azet-muted: #aeb6c2;
    --azet-border: #333946;
    --azet-accent: #ff4673;
    background: #101217 !important;
    color: #f4f6f8 !important;
}

body.azet-dark .site-header,
html.azet-dark body .site-header {
    background: #141820 !important;
    border-color: var(--azet-border) !important;
}

body.azet-dark .hero-main,
body.azet-dark .post-card,
body.azet-dark .latest-panel,
body.azet-dark .popular-shell,
body.azet-dark .archive-header,
body.azet-dark .article-hero,
body.azet-dark .side-box,
body.azet-dark .popular-item,
body.azet-dark .search-overlay__panel,
html.azet-dark body .hero-main,
html.azet-dark body .post-card,
html.azet-dark body .latest-panel,
html.azet-dark body .popular-shell,
html.azet-dark body .archive-header,
html.azet-dark body .article-hero,
html.azet-dark body .side-box,
html.azet-dark body .popular-item,
html.azet-dark body .search-overlay__panel {
    background: var(--azet-surface) !important;
    color: var(--azet-text) !important;
    border-color: var(--azet-border) !important;
}

body.azet-dark .post-card__title a,
body.azet-dark .hero-title a,
body.azet-dark .latest-list__title a,
body.azet-dark .popular-item__title a,
body.azet-dark .article-title,
html.azet-dark body .post-card__title a,
html.azet-dark body .hero-title a,
html.azet-dark body .latest-list__title a,
html.azet-dark body .popular-item__title a,
html.azet-dark body .article-title {
    color: var(--azet-text) !important;
}

body.azet-dark .meta-row,
body.azet-dark .hero-excerpt,
body.azet-dark .post-card__excerpt,
body.azet-dark .article-excerpt,
body.azet-dark .archive-description,
html.azet-dark body .meta-row,
html.azet-dark body .hero-excerpt,
html.azet-dark body .post-card__excerpt,
html.azet-dark body .article-excerpt,
html.azet-dark body .archive-description {
    color: var(--azet-muted) !important;
}

.site-header__inner {
    display: flex !important;
    align-items: center !important;
    min-height: 54px !important;
    gap: 18px !important;
    flex-wrap: nowrap !important;
}

.site-branding {
    flex: 0 0 auto !important;
    min-width: max-content !important;
}

.brand-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
}

.site-title {
    font-size: clamp(1.45rem, 2.1vw, 2rem) !important;
    line-height: .95 !important;
    margin: 0 !important;
    white-space: nowrap !important;
    letter-spacing: -0.035em !important;
}

.site-description,
.footer-description {
    display: none !important;
}

.primary-navigation {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow: hidden !important;
}

.primary-menu {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    white-space: nowrap !important;
}

.primary-menu::-webkit-scrollbar { display: none !important; }

.primary-menu a {
    white-space: nowrap !important;
    min-height: 32px !important;
    padding: 7px 8px !important;
    font-size: .88rem !important;
    line-height: 1 !important;
}

.header-actions {
    flex: 0 0 auto !important;
    gap: 8px !important;
}

.icon-button,
.mobile-menu-toggle {
    width: 36px !important;
    height: 36px !important;
}

.home-hero {
    padding-top: 12px !important;
}

.hero-grid,
.hero-grid--slider {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr) minmax(280px, 330px) !important;
    gap: 12px !important;
    align-items: start !important;
}

.hero-slider {
    min-height: 0 !important;
    height: auto !important;
}

.hero-main {
    min-height: 0 !important;
}

.hero-main__media {
    aspect-ratio: 16/9 !important;
    min-height: 0 !important;
    height: auto !important;
}

.hero-main__content {
    padding: 18px 18px 16px !important;
}

.hero-title {
    font-size: clamp(2rem, 3.2vw, 3rem) !important;
    line-height: 1.02 !important;
    margin: 10px 0 8px !important;
}

.hero-excerpt {
    font-size: .93rem !important;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
}

.hero-side {
    gap: 9px !important;
}

.hero-side .post-card--compact {
    grid-template-columns: 126px minmax(0, 1fr) !important;
    min-height: 88px !important;
}

.hero-side .post-card--compact .post-card__body {
    padding: 9px 11px !important;
}

.hero-side .post-card--compact .post-card__title {
    font-size: .86rem !important;
    line-height: 1.2 !important;
    -webkit-line-clamp: 2 !important;
}

.latest-panel {
    max-height: none !important;
}

.latest-panel__head h2 {
    font-size: 1.55rem !important;
}

.latest-list__item {
    padding: 13px 16px !important;
    min-height: 0 !important;
}

.latest-list__title {
    font-size: 1rem !important;
    line-height: 1.28 !important;
    -webkit-line-clamp: 2 !important;
}

.popular-shell {
    padding: 0 !important;
    overflow: hidden !important;
    background: var(--azet-surface) !important;
}

.popular-shell .section-head {
    padding: 14px 18px !important;
    margin-bottom: 0 !important;
    border-bottom: 2px solid var(--azet-text) !important;
}

.popular-list {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
}

.popular-item,
.popular-item.has-image,
.popular-item.no-image {
    display: grid !important;
    grid-template-columns: 42px 102px minmax(0, 1fr) !important;
    gap: 10px !important;
    align-items: center !important;
    min-height: 94px !important;
    padding: 12px !important;
    border: 0 !important;
    border-right: 1px solid var(--azet-border) !important;
    border-bottom: 1px solid var(--azet-border) !important;
    border-radius: 0 !important;
    background: var(--azet-surface) !important;
}

.popular-item__rank {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 8px !important;
    background: var(--azet-accent) !important;
    color: #fff !important;
    font-size: .95rem !important;
    font-weight: 900 !important;
}

.popular-item__thumb {
    width: 102px !important;
    height: 62px !important;
    border-radius: 8px !important;
    background: var(--azet-soft) !important;
    overflow: hidden !important;
}

.popular-item__thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.popular-item__fallback {
    width: 100% !important;
    height: 100% !important;
    display: grid !important;
    place-items: center !important;
    color: var(--azet-accent) !important;
    font-size: .8rem !important;
    font-weight: 900 !important;
}

.popular-item__title {
    font-size: .95rem !important;
    line-height: 1.22 !important;
    margin: 0 !important;
    -webkit-line-clamp: 2 !important;
}

.popular-item__views {
    font-size: .75rem !important;
    margin-top: 3px !important;
    color: var(--azet-muted) !important;
}

.popular-item__meta {
    display: none !important;
}

.article-layout,
.article-layout--left-sidebar {
    width: min(calc(100% - 40px), 1160px) !important;
    margin: 22px auto 0 !important;
    display: grid !important;
    grid-template-columns: 280px minmax(0, 820px) !important;
    gap: 28px !important;
    align-items: start !important;
}

.article-sidebar,
.article-sidebar--left {
    grid-column: 1 !important;
    position: sticky !important;
    top: 74px !important;
    align-self: start !important;
}

.article-main-column {
    grid-column: 2 !important;
    min-width: 0 !important;
}

.article-hero {
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.article-title {
    font-size: clamp(2.15rem, 4.4vw, 4.2rem) !important;
    line-height: 1.02 !important;
    margin: 12px 0 12px !important;
}

.article-featured {
    margin: 20px 0 22px !important;
}

.article-featured img {
    border-radius: 10px !important;
    aspect-ratio: 16/9 !important;
    object-fit: cover !important;
}

.article-content {
    max-width: 780px !important;
    font-size: 1.1rem !important;
    line-height: 1.94 !important;
    background: transparent !important;
}

.side-box {
    padding: 14px !important;
    border-radius: 10px !important;
}

.side-box + .side-box {
    margin-top: 14px !important;
}

@media (max-width: 1180px) {
    .site-header__inner {
        gap: 12px !important;
    }

    .site-title {
        font-size: 1.45rem !important;
    }

    .primary-menu a {
        font-size: .82rem !important;
        padding-inline: 7px !important;
    }

    .hero-grid,
    .hero-grid--slider {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    }

    .latest-panel {
        grid-column: 1 / -1 !important;
    }

    .popular-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    .site-header__inner {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
    }

    .primary-navigation {
        display: none;
    }

    .primary-navigation.is-open {
        display: block !important;
    }

    .mobile-menu-toggle {
        display: inline-grid !important;
    }

    .hero-grid,
    .hero-grid--slider,
    .article-layout,
    .article-layout--left-sidebar {
        grid-template-columns: 1fr !important;
    }

    .article-sidebar,
    .article-sidebar--left,
    .article-main-column {
        grid-column: auto !important;
    }

    .article-sidebar,
    .article-sidebar--left {
        position: static !important;
        order: 2 !important;
    }

    .article-main-column {
        order: 1 !important;
    }
}

@media (max-width: 640px) {
    .site-title {
        font-size: 1.25rem !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
    }

    .popular-list {
        grid-template-columns: 1fr !important;
    }

    .popular-item,
    .popular-item.has-image,
    .popular-item.no-image {
        grid-template-columns: 34px 88px minmax(0, 1fr) !important;
    }

    .popular-item__thumb {
        width: 88px !important;
        height: 54px !important;
    }

    .article-layout,
    .article-layout--left-sidebar {
        width: min(calc(100% - 24px), 1160px) !important;
        margin-top: 16px !important;
    }

    .article-title {
        font-size: 2rem !important;
    }

    .article-content {
        font-size: 1.04rem !important;
        line-height: 1.8 !important;
    }
}


/* v1.6.0 — stability, top homepage, popular titles, right sidebar article */
:root {
    --azet-container: 1220px;
}

/* Homepage top: compact, stable, no empty vertical gaps */
.home-hero {
    padding-top: 12px !important;
}

.hero-grid,
.hero-grid--slider {
    display: grid !important;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr) minmax(300px, 330px) !important;
    gap: 14px !important;
    align-items: start !important;
}

.hero-slider {
    position: relative !important;
    height: clamp(500px, 45vw, 585px) !important;
    min-height: 0 !important;
    overflow: hidden !important;
    border: 1px solid var(--azet-border) !important;
    border-radius: 12px !important;
    background: var(--azet-surface) !important;
}

.hero-slider__track {
    height: 100% !important;
}

.hero-slide {
    display: none !important;
    height: 100% !important;
    min-height: 0 !important;
}

.hero-slide.is-active {
    display: flex !important;
    flex-direction: column !important;
}

.hero-main {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

.hero-main__media {
    height: 48% !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    flex: 0 0 auto !important;
}

.hero-main__media img,
.hero-main__media .post-card__image--placeholder {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
}

.hero-main__content {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    padding: 16px 18px 14px !important;
    display: flex !important;
    flex-direction: column !important;
}

.hero-title {
    font-size: clamp(1.95rem, 3vw, 2.75rem) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.045em !important;
    margin: 8px 0 8px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.hero-excerpt {
    font-size: .92rem !important;
    line-height: 1.48 !important;
    margin: 0 0 10px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.hero-slider__nav {
    position: absolute !important;
    right: 14px !important;
    bottom: 14px !important;
    z-index: 5 !important;
}

.hero-side {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    align-content: start !important;
}

.hero-side .post-card--compact {
    display: grid !important;
    grid-template-columns: 136px minmax(0, 1fr) !important;
    min-height: 86px !important;
    max-height: 92px !important;
}

.hero-side .post-card--compact .post-card__media {
    height: 100% !important;
    min-height: 86px !important;
    aspect-ratio: auto !important;
}

.hero-side .post-card--compact .post-card__body {
    min-width: 0 !important;
    padding: 8px 10px !important;
    justify-content: center !important;
}

.hero-side .post-card--compact .post-card__title {
    font-size: .87rem !important;
    line-height: 1.18 !important;
    margin: 3px 0 3px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.hero-side .post-card--compact .meta-row {
    font-size: .66rem !important;
}

.latest-panel {
    max-height: 585px !important;
    overflow: hidden !important;
}

.latest-panel__head {
    padding: 13px 16px 10px !important;
}

.latest-panel__head h2 {
    font-size: 1.55rem !important;
}

.latest-list__item {
    padding: 13px 16px !important;
}

.latest-list__title {
    font-size: 1.05rem !important;
    line-height: 1.24 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* Popular: always show thumbnail, title and views */
.popular-list {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
}

.popular-item,
.popular-item.has-image,
.popular-item.no-image {
    display: grid !important;
    grid-template-columns: 42px 112px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 100px !important;
    padding: 13px 14px !important;
    overflow: hidden !important;
}

.popular-item__body {
    display: block !important;
    min-width: 0 !important;
    overflow: visible !important;
}

.popular-item__title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    margin: 0 0 5px !important;
    padding: 0 !important;
    font-family: var(--azet-font-sans) !important;
    font-size: .96rem !important;
    line-height: 1.22 !important;
    font-weight: 900 !important;
    color: var(--azet-text) !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.popular-item__title a {
    color: var(--azet-text) !important;
    display: inline !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.popular-item__thumb {
    width: 112px !important;
    height: 66px !important;
    border-radius: 8px !important;
}

.popular-item__views {
    display: block !important;
    color: var(--azet-muted) !important;
    font-size: .75rem !important;
    font-weight: 800 !important;
}

/* Article: content left, widgets/sidebar right */
.article-layout,
.article-layout--right-sidebar,
.article-layout--left-sidebar {
    width: min(calc(100% - 40px), 1160px) !important;
    margin: 22px auto 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 780px) 320px !important;
    gap: 30px !important;
    align-items: start !important;
}

.article-main-column {
    grid-column: 1 !important;
    order: 1 !important;
    min-width: 0 !important;
}

.article-sidebar,
.article-sidebar--right,
.article-sidebar--left {
    grid-column: 2 !important;
    order: 2 !important;
    position: sticky !important;
    top: 74px !important;
    align-self: start !important;
}

/* Dark mode support for new/overridden pieces */
body.azet-dark .hero-slider,
body.azet-dark .popular-item__title a,
body.azet-dark .popular-item__title,
html.azet-dark body .hero-slider,
html.azet-dark body .popular-item__title a,
html.azet-dark body .popular-item__title {
    color: var(--azet-text) !important;
    border-color: var(--azet-border) !important;
}

@media (max-width: 1180px) {
    .hero-grid,
    .hero-grid--slider {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    }

    .latest-panel {
        grid-column: 1 / -1 !important;
        max-height: none !important;
    }

    .popular-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    .hero-grid,
    .hero-grid--slider,
    .article-layout,
    .article-layout--right-sidebar,
    .article-layout--left-sidebar {
        grid-template-columns: 1fr !important;
    }

    .hero-slider {
        height: auto !important;
    }

    .hero-slide.is-active {
        display: block !important;
    }

    .hero-main__media {
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
    }

    .article-main-column,
    .article-sidebar,
    .article-sidebar--right,
    .article-sidebar--left {
        grid-column: auto !important;
        order: initial !important;
    }

    .article-sidebar,
    .article-sidebar--right,
    .article-sidebar--left {
        position: static !important;
    }
}

@media (max-width: 640px) {
    .popular-list {
        grid-template-columns: 1fr !important;
    }

    .popular-item,
    .popular-item.has-image,
    .popular-item.no-image {
        grid-template-columns: 36px 92px minmax(0, 1fr) !important;
    }

    .popular-item__thumb {
        width: 92px !important;
        height: 56px !important;
    }
}


/* v1.17.0 — compact homepage without empty spaces + visible latest titles */
:root {
    --azet-container: 1200px;
}

.site-main {
    background: #f4f6f8;
}
body.azet-dark .site-main,
html.azet-dark body .site-main {
    background: #0f1115;
}

.container,
.site-header__inner,
.site-footer__inner {
    width: min(calc(100% - 28px), var(--azet-container)) !important;
}

.home-hero {
    padding-top: 10px !important;
    margin-bottom: 12px !important;
}

.section {
    margin-top: 16px !important;
}

.section-head {
    margin-bottom: 9px !important;
    padding-bottom: 7px !important;
}

.hero-grid,
.hero-grid--slider {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .9fr) minmax(285px, 315px) !important;
    gap: 10px !important;
    align-items: start !important;
}

.hero-slider {
    height: 432px !important;
    max-height: 432px !important;
    min-height: 0 !important;
    background: var(--azet-surface) !important;
    box-shadow: none !important;
}

.hero-slider__track,
.hero-slide,
.hero-slide.is-active {
    height: 100% !important;
}

.hero-main__media {
    height: 45% !important;
    min-height: 0 !important;
}

.hero-main__content {
    padding: 12px 14px 12px !important;
    min-height: 0 !important;
}

.hero-title {
    font-size: clamp(1.7rem, 2.55vw, 2.25rem) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.035em !important;
    -webkit-line-clamp: 3 !important;
    margin: 7px 0 6px !important;
}

.hero-excerpt {
    font-size: .86rem !important;
    line-height: 1.42 !important;
    -webkit-line-clamp: 2 !important;
    margin-bottom: 7px !important;
}

.hero-slider__nav {
    right: 10px !important;
    bottom: 10px !important;
}

.hero-side {
    gap: 7px !important;
    align-content: start !important;
    align-self: start !important;
}

.hero-side .post-card--compact {
    grid-template-columns: 124px minmax(0, 1fr) !important;
    min-height: 66px !important;
    max-height: 67px !important;
    border-radius: 8px !important;
}

.hero-side .post-card--compact .post-card__media {
    min-height: 66px !important;
    height: 66px !important;
}

.hero-side .post-card--compact .post-card__body {
    padding: 6px 8px !important;
    gap: 2px !important;
}

.hero-side .post-card--compact .post-category {
    min-height: 14px !important;
    padding: 2px 5px !important;
    font-size: .48rem !important;
}

.hero-side .post-card--compact .post-card__title {
    font-size: .78rem !important;
    line-height: 1.15 !important;
    -webkit-line-clamp: 2 !important;
}

.hero-side .post-card--compact .meta-row {
    font-size: .56rem !important;
}

.latest-panel {
    align-self: start !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    overflow: hidden !important;
    border-radius: 9px !important;
    background: var(--azet-surface) !important;
}

.latest-panel__head {
    padding: 10px 12px 8px !important;
    border-bottom: 2px solid var(--azet-text) !important;
}

.latest-panel__head h2 {
    font-size: 1.28rem !important;
    line-height: 1 !important;
}

.latest-list {
    display: grid !important;
    gap: 0 !important;
}

.latest-list__item {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 9px !important;
    min-height: 0 !important;
    padding: 8px 12px !important;
    align-items: start !important;
}

.latest-list__time {
    font-size: .72rem !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
}

.latest-list__title {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: .86rem !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    letter-spacing: -0.01em !important;
    color: var(--azet-text) !important;
    overflow: visible !important;
}

.latest-list__title a {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    color: var(--azet-text) !important;
}

.latest-list .post-category {
    display: inline-flex !important;
    min-height: 14px !important;
    padding: 2px 5px !important;
    margin-bottom: 3px !important;
    font-size: .48rem !important;
}

/* Make popular/news grids denser without hiding text */
.popular-section {
    margin-top: 14px !important;
}

.popular-shell {
    padding: 10px 12px !important;
}

.popular-item,
.popular-item.has-image,
.popular-item.no-image {
    min-height: 74px !important;
    padding: 9px 10px !important;
    grid-template-columns: 34px 82px minmax(0, 1fr) !important;
    gap: 8px !important;
}

.popular-item__thumb {
    width: 82px !important;
    height: 48px !important;
}

.popular-item__title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    font-size: .78rem !important;
    line-height: 1.16 !important;
    margin: 0 0 3px !important;
}

.popular-item__views {
    font-size: .65rem !important;
}

.category-block {
    gap: 10px !important;
}

.category-block__grid {
    gap: 8px !important;
}

.category-block__grid .post-card--compact {
    min-height: 72px !important;
}

.category-block__grid .post-card--compact .post-card__media {
    height: 72px !important;
    min-height: 72px !important;
}

@media (max-width: 1180px) {
    .hero-grid,
    .hero-grid--slider {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    }
    .latest-panel {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 900px) {
    .hero-grid,
    .hero-grid--slider {
        grid-template-columns: 1fr !important;
    }
    .hero-slider {
        height: auto !important;
        max-height: none !important;
    }
    .hero-main__media {
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
    }
    .latest-list__title a {
        -webkit-line-clamp: 3 !important;
    }
}

@media (max-width: 640px) {
    .container,
    .site-header__inner,
    .site-footer__inner {
        width: min(calc(100% - 18px), var(--azet-container)) !important;
    }
    .hero-side .post-card--compact,
    .popular-item,
    .popular-item.has-image,
    .popular-item.no-image {
        grid-template-columns: 96px minmax(0, 1fr) !important;
    }
    .popular-item__rank {
        position: absolute !important;
        left: 8px !important;
        top: 8px !important;
        z-index: 2 !important;
    }
    .popular-item__thumb {
        width: 96px !important;
        height: 56px !important;
    }
}


/* v1.8.0 — stable category grid, tighter Latest, fixed Popular */

/* Remove vertical stretching / white holes in top news block */
.hero-grid,
.hero-grid--slider {
    align-items: start !important;
}

.hero-slider,
.hero-main {
    min-height: 0 !important;
}

.hero-slider__track,
.hero-main.hero-slide {
    min-height: 0 !important;
}

.hero-main__media {
    aspect-ratio: 16 / 8.8 !important;
    min-height: 0 !important;
}

.hero-main__content {
    padding: 11px 12px 10px !important;
}

.hero-title {
    font-size: clamp(1.38rem, 2.45vw, 2.15rem) !important;
    line-height: 1.04 !important;
    margin: 6px 0 5px !important;
    letter-spacing: -0.035em !important;
}

.hero-excerpt {
    font-size: .74rem !important;
    line-height: 1.4 !important;
    margin-bottom: 7px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.hero-side {
    gap: 6px !important;
    align-content: start !important;
}

.hero-side .post-card--compact {
    min-height: 74px !important;
    height: auto !important;
    grid-template-columns: 104px minmax(0, 1fr) !important;
}

.hero-side .post-card--compact .post-card__body {
    padding: 6px 8px !important;
}

.hero-side .post-card--compact .post-card__title {
    font-size: .72rem !important;
    line-height: 1.18 !important;
    -webkit-line-clamp: 2 !important;
}

.hero-side .post-card--compact .meta-row {
    font-size: .52rem !important;
}

/* Najnovější: 10% smaller, titles visible, no stretched empty rows */
.latest-panel {
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
}

.latest-panel__head {
    padding: 8px 10px 7px !important;
}

.latest-panel__head h2 {
    font-size: .95rem !important;
}

.latest-list {
    display: block !important;
    flex: none !important;
}

.latest-list__item {
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr) !important;
    gap: 7px !important;
    padding: 8px 10px !important;
    min-height: 0 !important;
    flex: none !important;
    align-items: start !important;
}

.latest-list__time {
    font-size: .60rem !important;
    line-height: 1.2 !important;
}

.latest-list__title {
    font-size: .77rem !important; /* 10% down from the enlarged state */
    line-height: 1.22 !important;
    margin: 2px 0 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.latest-list .post-category {
    display: inline-flex !important;
    font-size: .45rem !important;
    padding: 2px 5px !important;
    margin-bottom: 2px !important;
}

/* Popular: make the block functional-looking and always show image + title + views */
.popular-section {
    margin-top: 14px !important;
}

.popular-shell {
    padding: 0 !important;
    overflow: hidden !important;
    background: var(--azet-surface) !important;
    border: 1px solid var(--azet-border) !important;
    border-radius: 7px !important;
}

.popular-output.is-loading {
    opacity: .55;
    pointer-events: none;
}

.popular-list {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0,1fr)) !important;
    gap: 0 !important;
    border-top: 0 !important;
}

.popular-item,
.popular-item.has-image,
.popular-item.no-image,
.popular-item.has-thumb,
.popular-item.no-thumb {
    display: grid !important;
    grid-template-columns: 28px 74px minmax(0,1fr) !important;
    gap: 8px !important;
    align-items: center !important;
    min-height: 78px !important;
    padding: 9px !important;
    border-right: 1px solid var(--azet-border) !important;
    border-bottom: 1px solid var(--azet-border) !important;
    background: var(--azet-surface) !important;
    border-radius: 0 !important;
}

.popular-item:nth-child(3n) { border-right: 0 !important; }
.popular-item:nth-last-child(-n+3) { border-bottom: 0 !important; }

.popular-item__rank {
    position: static !important;
    width: 26px !important;
    height: 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--azet-accent) !important;
    color: #fff !important;
    border-radius: 4px !important;
    font-size: .70rem !important;
    font-weight: 950 !important;
}

.popular-item__thumb {
    display: block !important;
    width: 74px !important;
    height: 46px !important;
    border-radius: 5px !important;
    overflow: hidden !important;
    background: #edf1f5 !important;
}

.popular-item__thumb img,
.popular-item__thumb .popular-item__fallback,
.popular-item__thumb .post-card__image--placeholder {
    display: grid !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
    place-items: center !important;
}

.popular-item__fallback {
    font-size: .72rem !important;
    font-weight: 950 !important;
    color: var(--azet-accent) !important;
}

.popular-item__body {
    min-width: 0 !important;
    align-self: center !important;
}

.popular-item__meta {
    display: none !important;
}

.popular-item__title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    margin: 0 0 3px !important;
    color: var(--azet-text) !important;
    font-size: .75rem !important;
    line-height: 1.18 !important;
    font-weight: 900 !important;
}

.popular-item__views {
    display: block !important;
    margin: 0 !important;
    color: var(--azet-muted) !important;
    font-size: .58rem !important;
    line-height: 1.15 !important;
    font-weight: 750 !important;
}

/* Rubriky/category archives: hard reset to a readable 3-column card grid */
.archive-header--compact {
    margin-top: 8px !important;
    padding: 10px 12px !important;
    border-radius: 5px !important;
}

.archive-title {
    font-size: clamp(1.25rem, 2vw, 1.75rem) !important;
    line-height: 1.1 !important;
}

.archive-section {
    margin-top: 10px !important;
}

.rubric-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
    align-items: start !important;
}

.rubric-card {
    min-width: 0 !important;
    overflow: hidden !important;
    border: 1px solid var(--azet-border) !important;
    border-radius: 7px !important;
    background: var(--azet-surface) !important;
}

.rubric-card__media {
    display: block !important;
    aspect-ratio: 16 / 9 !important;
    overflow: hidden !important;
    background: #edf1f5 !important;
}

.rubric-card__media img,
.rubric-card__media .post-card__image--placeholder {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
}

.rubric-card__body {
    display: block !important;
    padding: 10px 11px 11px !important;
}

.rubric-card__title {
    margin: 5px 0 5px !important;
    color: var(--azet-text) !important;
    font-size: .98rem !important;
    line-height: 1.18 !important;
    font-family: var(--azet-font-sans) !important;
    font-weight: 900 !important;
    letter-spacing: -.01em !important;
}

.rubric-card__excerpt {
    margin: 0 0 7px !important;
    color: var(--azet-muted) !important;
    font-size: .75rem !important;
    line-height: 1.38 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.rubric-card .meta-row {
    font-size: .62rem !important;
}

.rubric-card .post-category {
    font-size: .48rem !important;
    padding: 2px 5px !important;
}

body.azet-dark .rubric-card,
body.azet-dark .popular-shell,
body.azet-dark .popular-item {
    background: var(--azet-surface) !important;
    border-color: var(--azet-border) !important;
}

@media (max-width: 1180px) {
    .rubric-grid,
    .popular-list {
        grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    }
    .popular-item:nth-child(3n) { border-right: 1px solid var(--azet-border) !important; }
    .popular-item:nth-child(2n) { border-right: 0 !important; }
    .popular-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--azet-border) !important; }
    .popular-item:nth-last-child(-n+2) { border-bottom: 0 !important; }
}

@media (max-width: 760px) {
    .rubric-grid,
    .popular-list {
        grid-template-columns: 1fr !important;
    }
    .popular-item,
    .popular-item.has-image,
    .popular-item.no-image,
    .popular-item.has-thumb,
    .popular-item.no-thumb {
        grid-template-columns: 28px 84px minmax(0,1fr) !important;
        border-right: 0 !important;
        border-bottom: 1px solid var(--azet-border) !important;
    }
    .popular-item:last-child { border-bottom: 0 !important; }
    .popular-item__thumb { width: 84px !important; height: 52px !important; }
}


/* v1.9.0 — stronger editorial pink, working-looking popular, aligned top, full-width rubrics */
:root {
    --azet-pink-panel: #fff0f5;
    --azet-pink-panel-2: #ffe4ee;
    --azet-pink-border: #f6b3c7;
}

body {
    background: #f4f6f8 !important;
}

.site-header {
    background: #ffffff !important;
}

.home-hero {
    padding-top: 10px !important;
}

.hero-grid,
.hero-grid--slider {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr) minmax(300px, .78fr) !important;
    gap: 12px !important;
    align-items: start !important;
}

.hero-slider,
.hero-main,
.hero-slider__track {
    height: auto !important;
    min-height: 0 !important;
}

.hero-main.hero-slide {
    background: linear-gradient(180deg, #ffffff 0%, var(--azet-pink-panel) 100%) !important;
    border: 1px solid var(--azet-pink-border) !important;
    box-shadow: 0 8px 22px rgba(205, 23, 84, .08) !important;
}

.hero-main__media {
    aspect-ratio: 16 / 8.5 !important;
    min-height: 0 !important;
}

.hero-main__content {
    min-height: 0 !important;
    padding: 12px 14px 12px !important;
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,240,245,.96)) !important;
}

.hero-title {
    font-size: clamp(1.42rem, 2.25vw, 2.18rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -.03em !important;
    margin: 6px 0 6px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.hero-excerpt {
    font-size: .78rem !important;
    line-height: 1.42 !important;
    margin: 0 0 7px !important;
    -webkit-line-clamp: 2 !important;
}

.hero-side {
    gap: 7px !important;
}

.hero-side .post-card--compact {
    min-height: 70px !important;
    grid-template-columns: 108px minmax(0,1fr) !important;
    border-color: #d6dde7 !important;
    background: linear-gradient(90deg, #ffffff 0%, #fff6fa 100%) !important;
}

.hero-side .post-card--compact .post-card__body {
    padding: 6px 8px !important;
}

.hero-side .post-card--compact .post-card__title {
    font-size: .74rem !important;
    line-height: 1.17 !important;
    -webkit-line-clamp: 2 !important;
}

.hero-side .post-card--compact .meta-row {
    font-size: .54rem !important;
}

.latest-panel {
    background: #fff !important;
    border-color: #cbd5e1 !important;
}

.latest-list__title {
    font-size: .75rem !important;
    line-height: 1.21 !important;
    -webkit-line-clamp: 2 !important;
}

/* Najčítanejší: pink editorial panel + visible title + reliable clickable cards */
.popular-section {
    margin-top: 12px !important;
}

.popular-shell {
    background: linear-gradient(180deg, #fff4f8 0%, #ffe8f1 100%) !important;
    border: 1px solid #efadc1 !important;
    box-shadow: 0 8px 24px rgba(205,23,84,.10) !important;
    border-radius: 8px !important;
}

.popular-shell .section-head {
    background: linear-gradient(90deg, #fff6fa, #ffe5ef) !important;
    border-bottom: 2px solid #cc174f !important;
    padding: 10px 12px !important;
}

.popular-tabs {
    background: #fff !important;
    border: 1px solid #efadc1 !important;
}

.popular-tab.is-active,
.popular-tab:hover {
    background: #cc174f !important;
    color: #fff !important;
}

.popular-output {
    background: rgba(255,255,255,.45) !important;
}

.popular-list {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding: 10px !important;
    border: 0 !important;
}

.popular-item,
.popular-item.has-image,
.popular-item.no-image,
.popular-item.has-thumb,
.popular-item.no-thumb {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 34px 96px minmax(0,1fr) !important;
    gap: 9px !important;
    align-items: center !important;
    min-height: 78px !important;
    padding: 9px !important;
    background: #fff !important;
    border: 1px solid #efc0cf !important;
    border-radius: 8px !important;
    box-shadow: 0 5px 14px rgba(205,23,84,.06) !important;
}

.popular-item:hover {
    border-color: #cc174f !important;
    transform: translateY(-1px) !important;
}

.popular-item__rank {
    width: 30px !important;
    height: 30px !important;
    border-radius: 7px !important;
    background: #d8175a !important;
    color: #fff !important;
    font-size: .76rem !important;
}

.popular-item__thumb {
    width: 96px !important;
    height: 58px !important;
    border-radius: 7px !important;
    background: #f4e8ee !important;
}

.popular-item__title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    margin: 0 0 4px !important;
    font-size: .80rem !important;
    line-height: 1.18 !important;
    font-weight: 950 !important;
    color: #111827 !important;
}

.popular-item__title a {
    color: #111827 !important;
}

.popular-item__views {
    display: block !important;
    color: #5d6673 !important;
    font-size: .62rem !important;
    font-weight: 800 !important;
}

/* Rubriky: full width, 3 columns longer before collapsing */
.archive-section {
    margin-top: 10px !important;
}

.rubric-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.rubric-card {
    background: #fff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
}

.rubric-card__media {
    aspect-ratio: 16 / 9 !important;
}

.rubric-card__body {
    padding: 10px 12px 12px !important;
}

.rubric-card__title {
    font-size: 1rem !important;
    line-height: 1.18 !important;
    margin: 6px 0 5px !important;
}

.rubric-card__excerpt {
    font-size: .78rem !important;
    line-height: 1.4 !important;
}

@media (max-width: 1040px) {
    .hero-grid,
    .hero-grid--slider {
        grid-template-columns: minmax(0, 1fr) minmax(310px, .9fr) !important;
    }
    .latest-panel {
        grid-column: 1 / -1 !important;
    }
    .rubric-grid,
    .popular-list {
        grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    }
}

@media (max-width: 760px) {
    .hero-grid,
    .hero-grid--slider,
    .rubric-grid,
    .popular-list {
        grid-template-columns: 1fr !important;
    }
    .popular-item,
    .popular-item.has-image,
    .popular-item.no-image,
    .popular-item.has-thumb,
    .popular-item.no-thumb {
        grid-template-columns: 32px 96px minmax(0,1fr) !important;
    }
}

body.azet-dark {
    --azet-pink-panel: #21131a;
    --azet-pink-panel-2: #2a1520;
    --azet-pink-border: #673145;
}

body.azet-dark .hero-main.hero-slide,
body.azet-dark .popular-shell,
body.azet-dark .popular-shell .section-head {
    background: linear-gradient(180deg, #1a1b20, #24151c) !important;
    border-color: #673145 !important;
}

body.azet-dark .popular-item,
body.azet-dark .rubric-card,
body.azet-dark .latest-panel,
body.azet-dark .hero-side .post-card--compact {
    background: #17191f !important;
    border-color: #333844 !important;
}

body.azet-dark .popular-item__title,
body.azet-dark .popular-item__title a {
    color: #f8fafc !important;
}


/* v2.0.0: equal top columns + typography presets compatibility */
.site-title,
.site-title a,
.hero-title,
.section-title,
.archive-title,
.search-title,
.not-found-title,
.article-title,
.latest-panel__head h2 {
    font-family: var(--azet-font-serif) !important;
}

body,
button,
input,
select,
textarea,
.primary-menu a,
.post-card__title,
.latest-list__title,
.popular-item__title,
.rubric-card__title,
.meta-row {
    font-family: var(--azet-font-sans) !important;
}

.home-hero {
    padding-top: 14px !important;
}

.hero-grid,
.hero-grid--slider {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
    align-items: start !important;
}

.hero-main,
.hero-main.hero-slide,
.hero-side,
.latest-panel {
    width: 100% !important;
    min-width: 0 !important;
}

.hero-main,
.hero-main.hero-slide {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
    background: linear-gradient(180deg, #fff 0%, #fff2f7 100%) !important;
    border-color: #efb4c6 !important;
}

.hero-main__media {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
}

.hero-main__media img,
.hero-main__media .post-card__image--placeholder {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
}

.hero-main__content {
    min-height: 0 !important;
    padding: 15px 16px 14px !important;
}

.hero-title {
    font-size: clamp(1.55rem, 2.45vw, 2.35rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -.035em !important;
    margin: 8px 0 7px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.hero-excerpt {
    font-size: .82rem !important;
    line-height: 1.45 !important;
    margin: 0 0 8px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.hero-side {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
}

.hero-side .post-card--compact {
    display: grid !important;
    grid-template-columns: 112px minmax(0, 1fr) !important;
    min-height: 76px !important;
    max-height: 82px !important;
    background: linear-gradient(90deg, #ffffff 0%, #fff5f8 100%) !important;
    border-color: #d8e0ea !important;
    overflow: hidden !important;
}

.hero-side .post-card--compact .post-card__media {
    height: 100% !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
}

.hero-side .post-card--compact .post-card__body {
    min-width: 0 !important;
    padding: 7px 9px !important;
}

.hero-side .post-card--compact .post-card__title {
    font-size: .80rem !important;
    line-height: 1.18 !important;
    -webkit-line-clamp: 2 !important;
}

.latest-panel {
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
}

.latest-list__item {
    min-height: 0 !important;
    padding: 9px 13px !important;
}

.latest-list__title {
    font-size: .78rem !important;
    line-height: 1.22 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.popular-shell {
    background: linear-gradient(180deg, #fff3f7 0%, #ffe6ef 100%) !important;
    border-color: #ef9fba !important;
}

.popular-list {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.popular-item,
.popular-item.has-image,
.popular-item.no-image,
.popular-item.has-thumb,
.popular-item.no-thumb {
    grid-template-columns: 34px 92px minmax(0,1fr) !important;
    min-width: 0 !important;
}

.popular-item__body {
    min-width: 0 !important;
}

.popular-item__title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    font-size: .78rem !important;
    line-height: 1.2 !important;
}

@media (max-width: 1140px) {
    .hero-grid,
    .hero-grid--slider {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    }

    .latest-panel {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 760px) {
    .hero-grid,
    .hero-grid--slider,
    .popular-list {
        grid-template-columns: 1fr !important;
    }

    .hero-side .post-card--compact {
        grid-template-columns: 104px minmax(0, 1fr) !important;
    }
}

body.azet-dark .hero-main,
body.azet-dark .hero-main.hero-slide,
body.azet-dark .hero-side .post-card--compact,
body.azet-dark .popular-shell {
    background: #16181f !important;
    border-color: #343947 !important;
}


/* v2.1.0 - top layout proportions: 40 / 30 / 30 width, equal column height */
@media (min-width: 1141px) {
    .home-hero {
        padding-top: 14px !important;
    }

    .hero-grid,
    .hero-grid--slider {
        grid-template-columns: minmax(0, 40fr) minmax(0, 30fr) minmax(0, 30fr) !important;
        gap: 14px !important;
        align-items: stretch !important;
        height: clamp(530px, 37vw, 620px) !important;
    }

    .hero-slider,
    .hero-slider__track,
    .hero-main,
    .hero-main.hero-slide,
    .hero-side,
    .latest-panel {
        height: 100% !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .hero-main,
    .hero-main.hero-slide {
        display: flex !important;
        flex-direction: column !important;
    }

    .hero-main__media {
        flex: 0 0 48% !important;
        height: 48% !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
    }

    .hero-main__content {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        padding: 14px 15px 12px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .hero-title {
        font-size: clamp(1.55rem, 2.35vw, 2.35rem) !important;
        line-height: 1.03 !important;
        -webkit-line-clamp: 3 !important;
        margin: 8px 0 6px !important;
    }

    .hero-excerpt {
        font-size: .84rem !important;
        line-height: 1.42 !important;
        -webkit-line-clamp: 2 !important;
        margin-bottom: 8px !important;
    }

    .hero-main .meta-row {
        margin-top: auto !important;
    }

    .hero-side {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
        gap: 8px !important;
        overflow: hidden !important;
    }

    .hero-side .post-card--compact {
        height: 100% !important;
        min-height: 0 !important;
        max-height: none !important;
        grid-template-columns: 112px minmax(0, 1fr) !important;
    }

    .hero-side .post-card--compact .post-card__media {
        height: 100% !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
    }

    .hero-side .post-card--compact .post-card__body {
        padding: 7px 9px !important;
        justify-content: center !important;
        overflow: hidden !important;
    }

    .hero-side .post-card--compact .post-card__title {
        font-size: .79rem !important;
        line-height: 1.17 !important;
        -webkit-line-clamp: 2 !important;
    }

    .hero-side .post-card--compact .meta-row {
        font-size: .56rem !important;
    }

    .latest-panel {
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }

    .latest-panel__head {
        flex: 0 0 auto !important;
        padding: 10px 12px 8px !important;
    }

    .latest-list {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        display: grid !important;
        grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
        overflow: hidden !important;
    }

    .latest-list__item {
        min-height: 0 !important;
        padding: 8px 12px !important;
        align-items: center !important;
        overflow: hidden !important;
    }

    .latest-list__title {
        font-size: .77rem !important;
        line-height: 1.2 !important;
        -webkit-line-clamp: 2 !important;
    }
}

@media (max-width: 1140px) {
    .hero-grid,
    .hero-grid--slider {
        height: auto !important;
    }
}


/* v2.2.0 - custom header/top colors, dark-mode readability on light/red panels, popular titles fix */
:root {
    --azet-menu-bg: #ffffff;
    --azet-top-bg: #fff2f7;
}

.site-header,
body.azet-dark .site-header,
html.azet-dark body .site-header {
    background: var(--azet-menu-bg) !important;
}

body.azet-dark .site-header,
html.azet-dark body .site-header {
    border-bottom-color: rgba(17,17,24,.35) !important;
}

body.azet-dark .site-header .site-title,
body.azet-dark .site-header .site-title a,
body.azet-dark .site-header .primary-menu a,
body.azet-dark .site-header .icon-button,
body.azet-dark .site-header .mobile-menu-toggle,
html.azet-dark body .site-header .site-title,
html.azet-dark body .site-header .site-title a,
html.azet-dark body .site-header .primary-menu a,
html.azet-dark body .site-header .icon-button,
html.azet-dark body .site-header .mobile-menu-toggle {
    color: #111827 !important;
}

body.azet-dark .site-header .icon-button,
body.azet-dark .site-header .mobile-menu-toggle,
html.azet-dark body .site-header .icon-button,
html.azet-dark body .site-header .mobile-menu-toggle {
    background: rgba(255,255,255,.82) !important;
    border-color: rgba(17,17,24,.18) !important;
}

.hero-main,
.hero-main.hero-slide,
.hero-side .post-card--compact,
body.azet-dark .hero-main,
body.azet-dark .hero-main.hero-slide,
body.azet-dark .hero-side .post-card--compact,
html.azet-dark body .hero-main,
html.azet-dark body .hero-main.hero-slide,
html.azet-dark body .hero-side .post-card--compact {
    background: var(--azet-top-bg) !important;
    color: #111827 !important;
}

body.azet-dark .hero-main *,
body.azet-dark .hero-main.hero-slide *,
body.azet-dark .hero-side .post-card--compact *,
html.azet-dark body .hero-main *,
html.azet-dark body .hero-main.hero-slide *,
html.azet-dark body .hero-side .post-card--compact * {
    color: #111827 !important;
}

body.azet-dark .hero-excerpt,
html.azet-dark body .hero-excerpt,
body.azet-dark .hero-side .post-card--compact .meta-row,
html.azet-dark body .hero-side .post-card--compact .meta-row {
    color: #4b5563 !important;
}

.popular-shell,
body.azet-dark .popular-shell,
html.azet-dark body .popular-shell {
    background: linear-gradient(180deg, #fff3f8 0%, #ffe1ec 100%) !important;
    color: #111827 !important;
    border-color: #ee8faf !important;
}

body.azet-dark .popular-shell *,
html.azet-dark body .popular-shell * {
    color: #111827 !important;
}

body.azet-dark .popular-tab.is-active,
html.azet-dark body .popular-tab.is-active,
body.azet-dark .post-category,
html.azet-dark body .post-category {
    color: #ffffff !important;
}

.popular-item,
.popular-item.has-image,
.popular-item.no-image,
.popular-item.has-thumb,
.popular-item.no-thumb,
body.azet-dark .popular-item,
body.azet-dark .popular-item.has-image,
body.azet-dark .popular-item.no-image,
body.azet-dark .popular-item.has-thumb,
body.azet-dark .popular-item.no-thumb,
html.azet-dark body .popular-item,
html.azet-dark body .popular-item.has-image,
html.azet-dark body .popular-item.no-image,
html.azet-dark body .popular-item.has-thumb,
html.azet-dark body .popular-item.no-thumb {
    background: rgba(255,255,255,.82) !important;
    color: #111827 !important;
}

.popular-item__title,
.popular-item__title a,
body.azet-dark .popular-item__title,
body.azet-dark .popular-item__title a,
html.azet-dark body .popular-item__title,
html.azet-dark body .popular-item__title a {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    color: #111827 !important;
    font-size: .86rem !important;
    line-height: 1.18 !important;
    font-weight: 900 !important;
    min-height: 2.04em !important;
    margin: 0 0 2px !important;
}

.popular-item__views,
body.azet-dark .popular-item__views,
html.azet-dark body .popular-item__views {
    color: #4b5563 !important;
}

@media (min-width: 1141px) {
    .hero-grid,
    .hero-grid--slider {
        grid-template-columns: minmax(0, 40fr) minmax(0, 30fr) minmax(0, 30fr) !important;
    }
}


/* v2.4.0: robust hero article switching */
@media (min-width: 1141px) {
    .home-hero .hero-grid,
    .home-hero .hero-grid--slider {
        display: grid !important;
        grid-template-columns: minmax(0, 40fr) minmax(0, 30fr) minmax(0, 30fr) !important;
        gap: 14px !important;
        align-items: stretch !important;
    }

    .home-hero .hero-slider,
    .home-hero .hero-side,
    .home-hero .latest-panel {
        height: 520px !important;
        max-height: 520px !important;
        min-height: 520px !important;
        align-self: stretch !important;
    }

    .home-hero .hero-side {
        display: grid !important;
        grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
        gap: 8px !important;
        overflow: hidden !important;
    }

    .home-hero .hero-side .post-card--compact {
        min-height: 0 !important;
        max-height: none !important;
        height: 100% !important;
        grid-template-columns: 112px minmax(0, 1fr) !important;
    }

    .home-hero .hero-side .post-card__media {
        height: 100% !important;
        min-height: 0 !important;
    }

    .home-hero .latest-panel {
        overflow: hidden !important;
    }

    .home-hero .latest-list {
        display: grid !important;
        grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
        height: calc(100% - 44px) !important;
        overflow: hidden !important;
    }

    .home-hero .latest-list__item {
        min-height: 0 !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
}

.home-hero .hero-slider {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 12px !important;
}

.home-hero .hero-slider__track {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    min-height: inherit !important;
}

.home-hero .hero-main.hero-slide {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    display: flex !important;
    flex-direction: column !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: none !important;
    transition: opacity .35s ease, visibility .35s ease !important;
    z-index: 0 !important;
}

.home-hero .hero-main.hero-slide.is-active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 2 !important;
}

.home-hero .hero-main__media {
    flex: 0 0 52% !important;
    height: 52% !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
}

.home-hero .hero-main__media img,
.home-hero .hero-main__media .post-card__image--placeholder {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
}

.home-hero .hero-main__content {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    padding: 14px 16px 12px !important;
}

.home-hero .hero-title {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
    overflow: hidden !important;
    font-size: clamp(1.55rem, 2.45vw, 2.45rem) !important;
    line-height: 1.04 !important;
    margin: 7px 0 6px !important;
}

.home-hero .hero-excerpt {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    overflow: hidden !important;
    margin-bottom: 7px !important;
}

.home-hero .hero-slider__nav {
    position: absolute !important;
    right: 12px !important;
    bottom: 12px !important;
    z-index: 10 !important;
}

@media (max-width: 1140px) {
    .home-hero .hero-main.hero-slide {
        position: relative !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .home-hero .hero-main.hero-slide.is-active {
        display: flex !important;
    }

    .home-hero .hero-slider,
    .home-hero .hero-slider__track {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .home-hero .hero-main__media {
        height: auto !important;
        flex-basis: auto !important;
        aspect-ratio: 16 / 9 !important;
    }
}


/* v2.5.0: modern article page-break navigation for WordPress Page Break / <!--nextpage--> */
.article-page-nav {
    margin: clamp(26px, 4vw, 42px) 0;
    padding: clamp(16px, 2.5vw, 22px);
    border: 1px solid rgba(216, 27, 85, .22);
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(216, 27, 85, .12), transparent 38%),
        linear-gradient(180deg, #fff7fa, #ffffff);
    box-shadow: 0 12px 35px rgba(17, 17, 24, .06);
}

.article-page-nav__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.article-page-nav__eyebrow {
    display: block;
    margin-bottom: 2px;
    color: var(--azet-accent);
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.article-page-nav__top strong {
    color: #111827;
    font-size: 1.05rem;
    line-height: 1.15;
}

.article-page-nav__progress {
    width: min(220px, 38%);
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(17, 17, 24, .09);
}

.article-page-nav__progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--azet-accent), #111827);
}

.article-page-nav__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid rgba(216, 27, 85, .18);
}

.article-page-nav__numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1 1 auto;
    flex-wrap: wrap;
}

.article-page-nav__link,
.article-page-nav__current,
.article-page-nav__disabled,
.article-page-nav__ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid rgba(17, 17, 24, .13);
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    font-size: .86rem;
    font-weight: 900;
    line-height: 1;
    transition: transform .16s ease, border-color .16s ease, background .16s ease, color .16s ease;
}

.article-page-nav__link:hover,
.article-page-nav__link:focus-visible {
    transform: translateY(-1px);
    border-color: var(--azet-accent);
    background: var(--azet-accent);
    color: #ffffff;
}

.article-page-nav__current {
    border-color: var(--azet-accent);
    background: var(--azet-accent);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(216, 27, 85, .24);
}

.article-page-nav__prev,
.article-page-nav__next {
    min-width: 128px;
}

.article-page-nav__next {
    background: #111827;
    border-color: #111827;
    color: #ffffff;
}

.article-page-nav__disabled,
.article-page-nav__ellipsis {
    opacity: .5;
    cursor: default;
}

.article-page-nav__cta {
    margin-top: 14px;
}

.article-page-nav__cta a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    background: #111827;
    color: #ffffff;
    font-weight: 950;
    line-height: 1.2;
}

.article-page-nav__cta small {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.68);
    font-size: .76rem;
}

body.azet-dark .article-page-nav,
html.azet-dark body .article-page-nav {
    background:
        radial-gradient(circle at top right, rgba(216, 27, 85, .18), transparent 38%),
        #fff7fa;
    color: #111827;
}

body.azet-dark .article-page-nav *,
html.azet-dark body .article-page-nav * {
    color: inherit;
}

body.azet-dark .article-page-nav__eyebrow,
html.azet-dark body .article-page-nav__eyebrow {
    color: var(--azet-accent);
}

body.azet-dark .article-page-nav__current,
body.azet-dark .article-page-nav__current *,
body.azet-dark .article-page-nav__link:hover,
body.azet-dark .article-page-nav__link:hover *,
body.azet-dark .article-page-nav__next,
body.azet-dark .article-page-nav__next *,
body.azet-dark .article-page-nav__cta a,
body.azet-dark .article-page-nav__cta a *,
html.azet-dark body .article-page-nav__current,
html.azet-dark body .article-page-nav__current *,
html.azet-dark body .article-page-nav__link:hover,
html.azet-dark body .article-page-nav__link:hover *,
html.azet-dark body .article-page-nav__next,
html.azet-dark body .article-page-nav__next *,
html.azet-dark body .article-page-nav__cta a,
html.azet-dark body .article-page-nav__cta a * {
    color: #ffffff !important;
}

@media (max-width: 640px) {
    .article-page-nav__top {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-page-nav__progress {
        width: 100%;
    }

    .article-page-nav__controls {
        display: grid;
        grid-template-columns: 1fr;
    }

    .article-page-nav__prev,
    .article-page-nav__next {
        width: 100%;
    }

    .article-page-nav__numbers {
        order: -1;
        justify-content: flex-start;
    }
}


/* v2.6.0: brand display option */
.brand-wrap.brand-wrap--logo-only {
    gap: 0;
}

.brand-wrap.brand-wrap--logo-only .custom-logo-link {
    max-width: 260px;
}

.brand-wrap.brand-wrap--logo-only .custom-logo {
    max-height: 54px;
}

@media (max-width: 640px) {
    .brand-wrap.brand-wrap--logo-only .custom-logo {
        max-height: 42px;
    }
}


/* v2.7.0 article gate and modern comments */
.article-gate {
    position: relative;
    margin: 28px 0 18px;
    border: 1px solid rgba(215, 25, 74, .18);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 244, 248, .96), rgba(255, 255, 255, .98));
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(17, 17, 24, .08);
}

.article-gate__blur {
    max-height: 230px;
    overflow: hidden;
    padding: 22px 24px 92px;
    filter: blur(4px);
    opacity: .48;
    pointer-events: none;
    user-select: none;
}

.article-gate::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 78%;
    background: linear-gradient(180deg, rgba(255,255,255,0), #fff 58%, #fff 100%);
}

.article-gate__panel {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 2;
    width: min(calc(100% - 32px), 520px);
    transform: translateX(-50%);
    padding: 18px;
    border: 1px solid rgba(215, 25, 74, .18);
    border-radius: 16px;
    background: rgba(255, 255, 255, .96);
    text-align: center;
    box-shadow: 0 12px 36px rgba(17, 17, 24, .12);
}

.article-gate__label {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(215, 25, 74, .1);
    color: #941532;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.article-gate__panel h2 {
    margin: 0 0 6px;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.1;
}

.article-gate__panel p {
    margin: 0 0 14px;
    color: #444;
    font-size: .92rem;
    line-height: 1.5;
}

.article-gate__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--azet-accent);
    color: #fff !important;
    font-weight: 850;
    text-decoration: none !important;
}

.article-full-opened {
    scroll-margin-top: 90px;
}

.article-comments-wrap {
    width: min(calc(100% - 40px), 1120px);
    margin: 34px auto 0;
}

.comments-area {
    margin-top: 24px;
}

.comments-card {
    padding: clamp(18px, 3vw, 28px);
    border: 1px solid var(--azet-border);
    border-radius: 18px;
    background: var(--azet-surface);
    box-shadow: 0 12px 34px rgba(17,17,24,.055);
}

.comments-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--azet-border);
}

.comments-kicker {
    margin: 0 0 4px;
    color: var(--azet-accent);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.comments-title {
    margin: 0;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.1;
}

.comments-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.comments-filter {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 6px 11px;
    border: 1px solid var(--azet-border);
    border-radius: 999px;
    background: var(--azet-soft);
    color: var(--azet-text);
    font-size: .78rem;
    font-weight: 800;
}

.comments-filter.is-active,
.comments-filter:hover {
    border-color: var(--azet-accent);
    background: var(--azet-accent);
    color: #fff;
}

.azet-comment-list,
.azet-comment-children {
    list-style: none;
    margin: 0;
    padding: 0;
}

.azet-comment-list {
    display: grid;
    gap: 14px;
}

.azet-comment-children {
    margin: 12px 0 0 28px;
    padding-left: 14px;
    border-left: 2px solid var(--azet-border);
    display: grid;
    gap: 12px;
}

.azet-comment__body {
    padding: 14px;
    border: 1px solid var(--azet-border);
    border-radius: 14px;
    background: var(--azet-bg);
}

.azet-comment__head {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 10px;
}

.azet-comment__avatar img {
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 999px;
}

.azet-comment__author {
    margin: 0;
    font-size: .98rem;
    line-height: 1.15;
}

.azet-comment__date {
    color: var(--azet-muted);
    font-size: .76rem;
    font-weight: 700;
}

.azet-comment__content {
    color: var(--azet-text);
    font-size: .95rem;
    line-height: 1.62;
}

.azet-comment__content p {
    margin: 0 0 10px;
}

.azet-comment__content p:last-child {
    margin-bottom: 0;
}

.azet-comment__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.comment-vote-button,
.azet-comment__reply a {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--azet-border);
    border-radius: 999px;
    padding: 5px 10px;
    background: var(--azet-surface);
    color: var(--azet-text);
    font-size: .76rem;
    font-weight: 850;
}

.comment-vote-button:hover,
.azet-comment__reply a:hover,
.comment-vote-button.is-voted {
    border-color: var(--azet-accent);
    background: rgba(215, 25, 74, .1);
    color: var(--azet-accent);
}

.comment-form-wrap {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--azet-border);
}

.comment-reply-title {
    margin: 0 0 12px;
    font-size: 1.35rem;
}

.comment-form label {
    display: block;
    margin-bottom: 6px;
    font-size: .82rem;
    font-weight: 850;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    border: 1px solid var(--azet-border);
    border-radius: 12px;
    padding: 11px 12px;
    background: var(--azet-bg);
    color: var(--azet-text);
}

.comment-form textarea {
    min-height: 130px;
    resize: vertical;
}

.comment-form .submit {
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    background: var(--azet-accent);
    color: #fff;
    font-weight: 900;
}

.comments-closed {
    color: var(--azet-muted);
    font-weight: 700;
}

body.azet-dark .article-gate {
    background: linear-gradient(180deg, rgba(45, 24, 32, .96), rgba(23, 23, 26, .98));
}
body.azet-dark .article-gate::after {
    background: linear-gradient(180deg, rgba(15,15,15,0), var(--azet-surface) 58%, var(--azet-surface) 100%);
}
body.azet-dark .article-gate__panel {
    background: #fff;
    color: #111;
}
body.azet-dark .article-gate__panel h2,
body.azet-dark .article-gate__panel p {
    color: #111;
}

@media (max-width: 760px) {
    .article-comments-wrap {
        width: min(calc(100% - 24px), 1120px);
        margin-top: 24px;
    }
    .comments-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .azet-comment-children {
        margin-left: 10px;
        padding-left: 10px;
    }
    .article-gate__panel {
        bottom: 12px;
        padding: 14px;
    }
}

/* v2.8.0 guest comments, emoji picker and antispam form polish */
.comments-card {
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fff7fa 100%);
    border: 1px solid rgba(215, 25, 74, .16);
}
body.azet-dark .comments-card {
    background: linear-gradient(180deg, #18181c 0%, #221920 100%);
}
.comment-form-wrap {
    margin-top: 22px;
    padding: 18px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(17,17,24,.10);
    box-shadow: 0 12px 30px rgba(17,17,24,.045);
}
body.azet-dark .comment-form-wrap {
    background: #151519;
    border-color: rgba(255,255,255,.12);
}
.comment-form-note {
    margin: 0 0 14px;
    padding: 11px 13px;
    border-radius: 12px;
    background: rgba(215,25,74,.08);
    color: var(--azet-text);
    font-size: .92rem;
    font-weight: 750;
}
.comment-form-author,
.comment-form-comment {
    margin-bottom: 14px;
}
.comment-form input[type="text"],
.comment-form textarea {
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(17,17,24,.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
body.azet-dark .comment-form input[type="text"],
body.azet-dark .comment-form textarea {
    background: #101014;
    border-color: rgba(255,255,255,.14);
}
.comment-form input[type="text"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--azet-accent);
    box-shadow: 0 0 0 4px rgba(215,25,74,.10);
}
.azet-emoji-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0 9px;
}
.azet-emoji-button {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(17,17,24,.12);
    border-radius: 10px;
    background: #fff;
    font-size: 1.05rem;
    line-height: 1;
    transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.azet-emoji-button:hover,
.azet-emoji-button:focus-visible {
    transform: translateY(-1px);
    border-color: var(--azet-accent);
    background: rgba(215,25,74,.08);
}
body.azet-dark .azet-emoji-button {
    background: #101014;
    border-color: rgba(255,255,255,.14);
}
.azet-comment-antispam {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
.azet-comment-submit,
.comment-form .submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--azet-accent);
    color: #fff;
    font-weight: 900;
    border: 0;
    box-shadow: 0 10px 24px rgba(215,25,74,.18);
}
.azet-comment-submit:hover,
.comment-form .submit:hover {
    filter: brightness(.96);
}
.article-full-opened {
    animation: azetFullArticleIn .26s ease both;
}
@keyframes azetFullArticleIn {
    from { opacity: .2; transform: translateY(6px); }
    to { opacity: 1; transform: none; }
}


/* v2.9.0: shorter article gate and Czech antispam question */
.article-gate {
    aspect-ratio: 16 / 9;
    max-height: 420px;
    min-height: 260px;
}

.article-gate__blur {
    height: 100%;
    max-height: none;
    padding: 18px 22px 88px;
}

.article-gate__blur > *:nth-child(n+7) {
    display: none;
}

.article-gate::after {
    height: 82%;
}

.article-gate__panel {
    width: min(calc(100% - 28px), 430px);
    padding: 15px;
}

.article-gate__panel h2 {
    font-size: clamp(1.08rem, 1.6vw, 1.38rem);
}

.article-gate__panel p {
    font-size: .84rem;
    line-height: 1.38;
    margin-bottom: 10px;
}

.article-gate__button {
    min-height: 38px;
    padding: 8px 15px;
}

.azet-visible-antispam {
    margin: 12px 0 16px;
    padding: 14px;
    border: 1px solid rgba(215, 25, 74, .18);
    border-radius: 14px;
    background: #fff7fa;
}

.azet-visible-antispam label {
    display: block;
    margin-bottom: 8px;
    font-weight: 900;
    color: #111;
}

.azet-visible-antispam__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 10px;
    align-items: center;
}

.azet-visible-antispam__question {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(215, 25, 74, .16);
    color: #111;
    font-weight: 850;
}

.azet-visible-antispam input {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(17, 17, 24, .16);
    border-radius: 12px;
    padding: 9px 12px;
    background: #fff;
    color: #111;
    font-weight: 800;
}

.azet-visible-antispam small {
    display: block;
    margin-top: 8px;
    color: #666;
    font-weight: 700;
}

body.azet-dark .azet-visible-antispam,
body.azet-dark .azet-visible-antispam__question,
body.azet-dark .azet-visible-antispam input {
    background: #fff;
    color: #111;
}

body.azet-dark .azet-visible-antispam label,
body.azet-dark .azet-visible-antispam small {
    color: #111;
}

@media (max-width: 640px) {
    .article-gate {
        min-height: 250px;
        max-height: 360px;
    }

    .azet-visible-antispam__row {
        grid-template-columns: 1fr;
    }
}


/* v3.0.0: custom comment form without wp-comments-post.php and duplicate captcha */
.azet-custom-comment-respond {
    scroll-margin-top: 90px;
}

.azet-comment-message {
    margin: 0 0 14px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: .92rem;
    font-weight: 800;
}

.azet-comment-message--success {
    border: 1px solid rgba(23, 128, 61, .22);
    background: #ecfdf3;
    color: #14532d;
}

.azet-comment-message--error {
    border: 1px solid rgba(215, 25, 74, .22);
    background: #fff1f4;
    color: #8a102f;
}

.azet-custom-comment-form {
    display: grid;
    gap: 14px;
}

.azet-custom-comment-form .comment-form-author,
.azet-custom-comment-form .comment-form-comment,
.azet-custom-comment-form .form-submit {
    margin: 0;
}

.azet-custom-comment-form input[type="text"],
.azet-custom-comment-form input[type="number"],
.azet-custom-comment-form textarea {
    width: 100%;
}

.azet-comment-antispam {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

body.azet-dark .azet-comment-message--success {
    background: rgba(22, 101, 52, .18);
    color: #bbf7d0;
}

body.azet-dark .azet-comment-message--error {
    background: rgba(215, 25, 74, .14);
    color: #fecdd3;
}

body.azet-dark .azet-visible-antispam {
    background: rgba(255,255,255,.06);
}


/* v3.4.0: strong blue modern image-led homepage */
:root {
    --azet-blue-page-bg: #061b36;
    --azet-blue-menu-bg: #062b5f;
    --azet-blue-hero-bg: #072a55;
    --azet-blue-panel-bg: #08366d;
    --azet-blue-card-bg: #0a3a73;
    --azet-blue-text: #ffffff;
    --azet-blue-muted: #c8d7ee;
    --azet-blue-accent: #1e90ff;
    --azet-blue-accent-2: #23d3ff;
    --azet-blue-border: rgba(126, 190, 255, .24);
}

body {
    background:
        radial-gradient(circle at 18% -10%, color-mix(in srgb, var(--azet-blue-accent) 26%, transparent), transparent 360px),
        linear-gradient(180deg, color-mix(in srgb, var(--azet-blue-page-bg) 90%, #000 10%) 0, var(--azet-blue-page-bg) 520px, color-mix(in srgb, var(--azet-blue-page-bg) 84%, #000 16%) 100%) !important;
    color: var(--azet-blue-text) !important;
}

body:not(.azet-dark) {
    background:
        radial-gradient(circle at 18% -10%, color-mix(in srgb, var(--azet-blue-accent) 22%, transparent), transparent 360px),
        linear-gradient(180deg, color-mix(in srgb, var(--azet-blue-page-bg) 88%, #ffffff 12%) 0, var(--azet-blue-page-bg) 520px, color-mix(in srgb, var(--azet-blue-page-bg) 78%, #000 22%) 100%) !important;
}

.site-header,
body.azet-dark .site-header,
html.azet-dark body .site-header {
    background: var(--azet-blue-menu-bg) !important;
    border-color: var(--azet-blue-border) !important;
    color: var(--azet-blue-text) !important;
    box-shadow: 0 10px 35px rgba(0,0,0,.18) !important;
}

.site-title,
.site-title a,
.primary-menu a,
.header-actions .icon-button,
.mobile-menu-toggle,
body.azet-dark .site-title,
body.azet-dark .site-title a,
body.azet-dark .primary-menu a {
    color: var(--azet-blue-text) !important;
}

.site-title::before {
    background: linear-gradient(180deg, var(--azet-blue-accent), var(--azet-blue-accent-2)) !important;
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--azet-blue-accent) 20%, transparent) !important;
}

.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a,
.primary-menu a:hover,
.primary-menu a:focus-visible {
    background: color-mix(in srgb, var(--azet-blue-accent) 22%, transparent) !important;
    color: var(--azet-blue-text) !important;
}

.primary-menu a::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current-menu-ancestor > a::after {
    background: linear-gradient(90deg, var(--azet-blue-accent), var(--azet-blue-accent-2)) !important;
}

.icon-button,
.mobile-menu-toggle,
.search-submit,
.search-close,
body.azet-dark .icon-button,
body.azet-dark .mobile-menu-toggle,
body.azet-dark .search-submit,
body.azet-dark .search-close {
    background: rgba(255,255,255,.06) !important;
    border-color: var(--azet-blue-border) !important;
    color: var(--azet-blue-text) !important;
}

.home-hero {
    padding-top: 18px !important;
}

@media (min-width: 1141px) {
    .home-hero .hero-grid,
    .home-hero .hero-grid--slider {
        display: grid !important;
        grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr) minmax(295px, .72fr) !important;
        gap: 16px !important;
        align-items: stretch !important;
        padding: 12px !important;
        border: 1px solid var(--azet-blue-border) !important;
        border-radius: 20px !important;
        background:
            linear-gradient(135deg, color-mix(in srgb, var(--azet-blue-hero-bg) 92%, #fff 8%), color-mix(in srgb, var(--azet-blue-page-bg) 80%, #000 20%)) !important;
        box-shadow: 0 26px 70px rgba(0,0,0,.2) !important;
    }

    .home-hero .hero-slider,
    .home-hero .hero-side,
    .home-hero .latest-panel {
        height: 565px !important;
        max-height: 565px !important;
        min-height: 565px !important;
    }

    .home-hero .hero-side {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
        gap: 10px !important;
        overflow: hidden !important;
    }

    .home-hero .hero-side .post-card--compact {
        display: block !important;
        position: relative !important;
        min-height: 0 !important;
        height: 100% !important;
        border-radius: 14px !important;
        overflow: hidden !important;
        border: 1px solid var(--azet-blue-border) !important;
        background: var(--azet-blue-card-bg) !important;
        box-shadow: none !important;
    }

    .home-hero .hero-side .post-card__media {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
        opacity: .82 !important;
    }

    .home-hero .hero-side .post-card__media::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,20,45,.05) 0, rgba(0,15,35,.62) 62%, rgba(0,10,30,.88) 100%);
        z-index: 1;
    }

    .home-hero .hero-side .post-card__image,
    .home-hero .hero-side .post-card__media img,
    .home-hero .hero-side .post-card__image--placeholder {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        min-height: 0 !important;
    }

    .home-hero .hero-side .post-card__body {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 2 !important;
        padding: 12px !important;
        color: #fff !important;
        display: block !important;
    }

    .home-hero .hero-side .post-card__title {
        color: #fff !important;
        font-size: .98rem !important;
        line-height: 1.13 !important;
        margin: 6px 0 5px !important;
        -webkit-line-clamp: 3 !important;
    }

    .home-hero .hero-side .post-card__title a,
    .home-hero .hero-side .meta-row,
    .home-hero .hero-side .meta-row * {
        color: #fff !important;
    }
}

.home-hero .hero-slider,
.home-hero .hero-main.hero-slide {
    background: var(--azet-blue-hero-bg) !important;
    border: 1px solid var(--azet-blue-border) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
}

.home-hero .hero-main.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(1, 16, 42, .12) 35%, rgba(1, 16, 42, .88) 100%);
    pointer-events: none;
}

@media (min-width: 1141px) {
    .home-hero .hero-main__media {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        flex: none !important;
    }

    .home-hero .hero-main__content {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 3 !important;
        padding: 28px 28px 30px !important;
        color: #fff !important;
        background: transparent !important;
    }

    .home-hero .hero-title {
        max-width: 92% !important;
        color: #fff !important;
        font-size: clamp(2.15rem, 3.5vw, 4.05rem) !important;
        line-height: .98 !important;
        -webkit-line-clamp: 3 !important;
        text-shadow: 0 3px 24px rgba(0,0,0,.34) !important;
    }

    .home-hero .hero-title a,
    .home-hero .hero-excerpt,
    .home-hero .hero-main .meta-row,
    .home-hero .hero-main .meta-row * {
        color: #fff !important;
    }

    .home-hero .hero-excerpt {
        max-width: 88% !important;
        font-size: 1.05rem !important;
        line-height: 1.45 !important;
        opacity: .9 !important;
        -webkit-line-clamp: 2 !important;
    }
}

.post-category,
.latest-list .post-category,
.popular-item__meta .post-category,
body.azet-dark .post-category {
    background: var(--azet-blue-accent) !important;
    color: #fff !important;
    border-color: color-mix(in srgb, var(--azet-blue-accent) 70%, #fff 30%) !important;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--azet-blue-accent) 28%, transparent) !important;
}

.home-hero .latest-panel,
body.azet-dark .home-hero .latest-panel,
html.azet-dark body .home-hero .latest-panel {
    background: color-mix(in srgb, var(--azet-blue-panel-bg) 92%, #000 8%) !important;
    border: 1px solid var(--azet-blue-border) !important;
    border-radius: 16px !important;
    color: var(--azet-blue-text) !important;
    box-shadow: none !important;
}

.home-hero .latest-panel__head {
    background: color-mix(in srgb, var(--azet-blue-panel-bg) 88%, #fff 12%) !important;
    border-bottom-color: var(--azet-blue-border) !important;
}

.home-hero .latest-panel__head h2,
.home-hero .latest-list__title a,
.home-hero .latest-list__title,
.home-hero .latest-list__item,
.home-hero .latest-list__time {
    color: var(--azet-blue-text) !important;
}

.home-hero .latest-list__item {
    border-color: var(--azet-blue-border) !important;
}

.home-hero .latest-list__time {
    color: var(--azet-blue-accent-2) !important;
}

.popular-shell,
body.azet-dark .popular-shell,
html.azet-dark body .popular-shell {
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--azet-blue-panel-bg) 90%, #fff 10%), color-mix(in srgb, var(--azet-blue-card-bg) 85%, #000 15%)) !important;
    border: 1px solid var(--azet-blue-border) !important;
    border-radius: 18px !important;
    color: var(--azet-blue-text) !important;
    box-shadow: 0 20px 54px rgba(0,0,0,.18) !important;
}

.popular-shell .section-title,
.popular-shell .section-title::before,
.popular-item__title a,
.popular-item__views,
.popular-item__meta,
.popular-item__meta * {
    color: var(--azet-blue-text) !important;
}

.popular-tab,
body.azet-dark .popular-tab {
    color: var(--azet-blue-text) !important;
    background: rgba(255,255,255,.05) !important;
    border: 1px solid var(--azet-blue-border) !important;
}

.popular-tab.is-active,
.popular-tab:hover {
    background: var(--azet-blue-accent) !important;
    border-color: var(--azet-blue-accent) !important;
    color: #fff !important;
}

.popular-item,
body.azet-dark .popular-item,
html.azet-dark body .popular-item {
    background: color-mix(in srgb, var(--azet-blue-card-bg) 82%, #fff 18%) !important;
    border: 1px solid var(--azet-blue-border) !important;
    border-radius: 14px !important;
    color: var(--azet-blue-text) !important;
}

.popular-item__rank {
    background: var(--azet-blue-accent) !important;
    color: #fff !important;
}

.section:not(.popular-section) .section-head {
    border-color: var(--azet-blue-border) !important;
}

.section-title,
.section-link,
body.azet-dark .section-title,
body.azet-dark .section-link {
    color: var(--azet-blue-text) !important;
}

.category-block,
.posts-grid,
.archive-shell {
    color: var(--azet-blue-text) !important;
}

.post-card,
.archive-header,
.search-header,
.not-found-header,
.article-hero,
.side-box,
body.azet-dark .post-card,
body.azet-dark .archive-header,
body.azet-dark .search-header,
body.azet-dark .not-found-header,
body.azet-dark .article-hero,
body.azet-dark .side-box {
    background: color-mix(in srgb, var(--azet-blue-card-bg) 72%, #ffffff 28%) !important;
    border-color: var(--azet-blue-border) !important;
    color: var(--azet-blue-text) !important;
}

.post-card__title a,
.post-card__excerpt,
.meta-row,
.meta-row a,
.archive-title,
.search-title,
.not-found-title,
.article-title,
.article-content,
.article-content p,
body.azet-dark .post-card__title a,
body.azet-dark .post-card__excerpt,
body.azet-dark .meta-row,
body.azet-dark .meta-row a {
    color: var(--azet-blue-text) !important;
}

.post-card__excerpt,
.meta-row,
.article-excerpt,
.archive-description {
    color: var(--azet-blue-muted) !important;
}

@media (max-width: 1140px) {
    .home-hero .hero-grid,
    .home-hero .hero-grid--slider {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        padding: 10px !important;
        background: color-mix(in srgb, var(--azet-blue-hero-bg) 88%, #000 12%) !important;
        border-radius: 16px !important;
        border: 1px solid var(--azet-blue-border) !important;
    }

    .home-hero .hero-side {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .home-hero .hero-side .post-card--compact {
        grid-template-columns: 130px minmax(0, 1fr) !important;
        background: color-mix(in srgb, var(--azet-blue-card-bg) 76%, #fff 24%) !important;
        border-color: var(--azet-blue-border) !important;
    }
}

@media (max-width: 720px) {
    .home-hero .hero-side {
        grid-template-columns: 1fr !important;
    }
}


/* v3.5.0 azetfinance.cz: premium finance/news blue redesign, readability fixes */
:root {
    --azet-blue-page-bg: #06162d;
    --azet-blue-menu-bg: #061a37;
    --azet-blue-hero-bg: #082e63;
    --azet-blue-panel-bg: #07254f;
    --azet-blue-card-bg: #0a356d;
    --azet-blue-text: #f7fbff;
    --azet-blue-muted: #b9cbe2;
    --azet-blue-accent: #2da8ff;
    --azet-blue-accent-2: #54e0ff;
    --azet-blue-border: rgba(133, 194, 255, .22);
    --azet-container: 1320px;
}

body {
    background:
        radial-gradient(circle at 8% -10%, color-mix(in srgb, var(--azet-blue-accent) 22%, transparent), transparent 420px),
        radial-gradient(circle at 88% 18%, color-mix(in srgb, var(--azet-blue-accent-2) 16%, transparent), transparent 420px),
        linear-gradient(180deg, color-mix(in srgb, var(--azet-blue-page-bg) 84%, #000 16%) 0, var(--azet-blue-page-bg) 560px, color-mix(in srgb, var(--azet-blue-page-bg) 74%, #000 26%) 100%) !important;
    color: var(--azet-blue-text) !important;
    font-size: 15px !important;
    line-height: 1.56 !important;
}

.site-header {
    background: color-mix(in srgb, var(--azet-blue-menu-bg) 94%, #000 6%) !important;
    border-bottom: 1px solid var(--azet-blue-border) !important;
    box-shadow: 0 8px 28px rgba(0,0,0,.22) !important;
}

.site-header__inner {
    min-height: 64px !important;
    gap: 24px !important;
}

.site-title {
    font-size: clamp(1.4rem, 2.2vw, 2.15rem) !important;
    letter-spacing: -.04em !important;
    color: var(--azet-blue-text) !important;
}

.site-title a { color: var(--azet-blue-text) !important; }
.site-title::before { background: linear-gradient(180deg, var(--azet-blue-accent), var(--azet-blue-accent-2)) !important; }

.primary-navigation { flex: 1 1 auto !important; justify-content: center !important; }
.primary-menu { gap: 6px !important; flex-wrap: nowrap !important; }
.primary-menu a {
    min-height: 38px !important;
    padding: 8px 13px !important;
    border-radius: 10px !important;
    color: color-mix(in srgb, var(--azet-blue-text) 92%, transparent) !important;
    font-size: .92rem !important;
    font-weight: 850 !important;
}
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a,
.primary-menu a:hover,
.primary-menu a:focus-visible {
    background: color-mix(in srgb, var(--azet-blue-accent) 17%, transparent) !important;
    color: var(--azet-blue-text) !important;
}
.primary-menu a::after { background: linear-gradient(90deg, var(--azet-blue-accent), var(--azet-blue-accent-2)) !important; height: 3px !important; }

.icon-button,
.mobile-menu-toggle,
.search-submit,
.search-close {
    background: rgba(255,255,255,.045) !important;
    border-color: var(--azet-blue-border) !important;
    color: var(--azet-blue-text) !important;
}

.container,
.site-header__inner,
.site-footer__inner { width: min(calc(100% - 44px), var(--azet-container)) !important; }
.home-hero { padding-top: 18px !important; }

@media (min-width: 1141px) {
    .home-hero .hero-grid,
    .home-hero .hero-grid--slider {
        display: grid !important;
        grid-template-columns: minmax(0, 1.32fr) minmax(0, 1.15fr) minmax(300px, .82fr) !important;
        gap: 18px !important;
        align-items: stretch !important;
        padding: 16px !important;
        border-radius: 22px !important;
        background:
            radial-gradient(circle at 0 0, color-mix(in srgb, var(--azet-blue-accent) 18%, transparent), transparent 36%),
            linear-gradient(135deg, color-mix(in srgb, var(--azet-blue-hero-bg) 93%, #fff 7%), color-mix(in srgb, var(--azet-blue-page-bg) 80%, #000 20%)) !important;
        border: 1px solid var(--azet-blue-border) !important;
        box-shadow: 0 24px 70px rgba(0,0,0,.26) !important;
    }

    .home-hero .hero-slider,
    .home-hero .hero-side,
    .home-hero .latest-panel {
        height: 560px !important;
        min-height: 560px !important;
        max-height: 560px !important;
    }

    .home-hero .hero-side {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
        gap: 12px !important;
        overflow: hidden !important;
    }

    .home-hero .hero-side .post-card--compact {
        display: block !important;
        position: relative !important;
        min-height: 0 !important;
        height: 100% !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        background: var(--azet-blue-card-bg) !important;
        border: 1px solid var(--azet-blue-border) !important;
        box-shadow: none !important;
    }

    .home-hero .hero-side .post-card__media {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
        opacity: .95 !important;
        background: var(--azet-blue-card-bg) !important;
    }

    .home-hero .hero-side .post-card__media::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(180deg, rgba(4,16,38,.02) 0%, rgba(4,16,38,.36) 44%, rgba(2,12,30,.88) 100%);
    }

    .home-hero .hero-side .post-card__media img,
    .home-hero .hero-side .post-card__image,
    .home-hero .hero-side .post-card__image--placeholder {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        object-fit: cover !important;
    }

    .home-hero .hero-side .post-card__body {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 2 !important;
        padding: 13px 14px !important;
        display: block !important;
        background: transparent !important;
    }

    .home-hero .hero-side .post-card__title {
        margin: 7px 0 5px !important;
        font-size: .94rem !important;
        line-height: 1.16 !important;
        -webkit-line-clamp: 3 !important;
        color: #fff !important;
        text-shadow: 0 2px 14px rgba(0,0,0,.4) !important;
    }
    .home-hero .hero-side .post-card__title a,
    .home-hero .hero-side .meta-row,
    .home-hero .hero-side .meta-row * { color: #fff !important; }
}

.home-hero .hero-slider,
.home-hero .hero-main.hero-slide {
    background: color-mix(in srgb, var(--azet-blue-hero-bg) 94%, #000 6%) !important;
    border: 1px solid var(--azet-blue-border) !important;
    border-radius: 18px !important;
    box-shadow: none !important;
}

.home-hero .hero-main.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(1,12,30,0) 0%, rgba(1,12,30,.08) 38%, rgba(1,12,30,.88) 100%) !important;
    pointer-events: none;
}

@media (min-width: 1141px) {
    .home-hero .hero-main__media {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        flex: none !important;
    }
    .home-hero .hero-main__media img,
    .home-hero .hero-main__media .post-card__image--placeholder { width: 100% !important; height: 100% !important; object-fit: cover !important; }
    .home-hero .hero-main__content {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 3 !important;
        padding: 30px 30px 32px !important;
        background: transparent !important;
        color: #fff !important;
    }
    .home-hero .hero-title {
        max-width: 95% !important;
        font-size: clamp(2rem, 3.2vw, 3.55rem) !important;
        line-height: 1 !important;
        letter-spacing: -.055em !important;
        margin: 11px 0 10px !important;
        color: #fff !important;
        -webkit-line-clamp: 3 !important;
        text-shadow: 0 3px 24px rgba(0,0,0,.38) !important;
    }
    .home-hero .hero-title a,
    .home-hero .hero-excerpt,
    .home-hero .hero-main .meta-row,
    .home-hero .hero-main .meta-row * { color: #fff !important; }
    .home-hero .hero-excerpt {
        max-width: 92% !important;
        font-size: .98rem !important;
        line-height: 1.44 !important;
        color: color-mix(in srgb, #fff 86%, transparent) !important;
        -webkit-line-clamp: 2 !important;
    }
}

.post-category,
.latest-list .post-category,
.popular-item__meta .post-category,
body.azet-dark .post-category {
    background: linear-gradient(135deg, var(--azet-blue-accent), color-mix(in srgb, var(--azet-blue-accent-2) 70%, var(--azet-blue-accent) 30%)) !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--azet-blue-accent) 26%, transparent) !important;
}

.home-hero .latest-panel {
    background: color-mix(in srgb, var(--azet-blue-panel-bg) 90%, #000 10%) !important;
    border: 1px solid var(--azet-blue-border) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
}
.home-hero .latest-panel__head {
    padding: 15px 18px !important;
    background: color-mix(in srgb, var(--azet-blue-panel-bg) 76%, #fff 24%) !important;
    border-bottom: 1px solid var(--azet-blue-border) !important;
}
.home-hero .latest-panel__head h2 { font-size: 1.32rem !important; color: var(--azet-blue-text) !important; }
.home-hero .latest-list { display: grid !important; grid-template-columns: 1fr !important; }
.home-hero .latest-list__item {
    grid-template-columns: 52px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 13px 18px !important;
    border-bottom: 1px solid var(--azet-blue-border) !important;
}
.home-hero .latest-list__time { color: var(--azet-blue-accent-2) !important; font-size: .82rem !important; font-weight: 900 !important; }
.home-hero .latest-list__title { font-size: .92rem !important; line-height: 1.24 !important; }
.home-hero .latest-list__title a { color: var(--azet-blue-text) !important; }

.popular-shell {
    background: linear-gradient(135deg, color-mix(in srgb, var(--azet-blue-panel-bg) 94%, #fff 6%), color-mix(in srgb, var(--azet-blue-card-bg) 84%, #000 16%)) !important;
    border: 1px solid var(--azet-blue-border) !important;
    box-shadow: 0 18px 55px rgba(0,0,0,.22) !important;
    color: var(--azet-blue-text) !important;
}
.popular-shell .section-title { color: var(--azet-blue-text) !important; }
.popular-list { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; gap: 0 !important; }
.popular-item {
    grid-template-columns: 34px 96px minmax(0, 1fr) !important;
    gap: 10px !important;
    min-height: 88px !important;
    padding: 10px 12px !important;
    background: color-mix(in srgb, var(--azet-blue-card-bg) 78%, #fff 12%) !important;
    border-color: var(--azet-blue-border) !important;
    color: var(--azet-blue-text) !important;
}
.popular-item.no-thumb { grid-template-columns: 34px 70px minmax(0, 1fr) !important; }
.popular-item__thumb { width: 96px !important; height: 56px !important; border-radius: 10px !important; }
.popular-item__title { display: block !important; font-size: .78rem !important; line-height: 1.18 !important; -webkit-line-clamp: 2 !important; }
.popular-item__title a,
.popular-item__views { color: var(--azet-blue-text) !important; }
.popular-item__rank { background: var(--azet-blue-accent) !important; color: #fff !important; }

.section:not(.popular-section) .section-head {
    margin-bottom: 14px !important;
    border-bottom: 1px solid var(--azet-blue-border) !important;
}
.section-title,
.section-link { color: var(--azet-blue-text) !important; }
.section-title { font-size: clamp(1.35rem, 2vw, 1.75rem) !important; }

.post-card,
.archive-header,
.search-header,
.not-found-header,
.article-hero,
.side-box {
    background: color-mix(in srgb, var(--azet-blue-card-bg) 78%, #fff 10%) !important;
    border: 1px solid var(--azet-blue-border) !important;
    color: var(--azet-blue-text) !important;
    box-shadow: 0 10px 26px rgba(0,0,0,.12) !important;
}
.post-card__title,
.post-card__title a,
.archive-title,
.search-title,
.not-found-title,
.article-title,
.article-content,
.article-content p { color: var(--azet-blue-text) !important; }
.post-card__excerpt,
.meta-row,
.meta-row a,
.article-excerpt,
.archive-description { color: var(--azet-blue-muted) !important; }

.category-block {
    display: grid !important;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr) !important;
    gap: 16px !important;
}
.category-block__main .post-card__media { aspect-ratio: 16 / 8.8 !important; }
.category-block__grid { display: grid !important; grid-template-columns: 1fr !important; gap: 12px !important; }
.category-block__grid .post-card--compact { grid-template-columns: 155px minmax(0, 1fr) !important; min-height: 112px !important; }
.category-block__grid .post-card__title { font-size: .94rem !important; line-height: 1.2 !important; }

@media (max-width: 1240px) {
    .primary-menu a { font-size: .84rem !important; padding-inline: 9px !important; }
    .popular-list { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 1140px) {
    .home-hero .hero-grid,
    .home-hero .hero-grid--slider { grid-template-columns: 1fr !important; }
    .home-hero .hero-side { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .category-block { grid-template-columns: 1fr !important; }
}
@media (max-width: 720px) {
    .container,
    .site-header__inner,
    .site-footer__inner { width: min(calc(100% - 24px), var(--azet-container)) !important; }
    .home-hero .hero-side { grid-template-columns: 1fr !important; }
    .popular-list { grid-template-columns: 1fr !important; }
    .category-block__grid .post-card--compact { grid-template-columns: 118px minmax(0, 1fr) !important; }
}


/* v3.6.0 azetfinance.cz: contrast/readability fix without color-mix dependency */
:root {
    --azet-blue-page-bg: #07172f;
    --azet-blue-menu-bg: #06172d;
    --azet-blue-hero-bg: #082b57;
    --azet-blue-panel-bg: #08264c;
    --azet-blue-card-bg: #0b315f;
    --azet-blue-text: #f7fbff;
    --azet-blue-muted: #c5d7ee;
    --azet-blue-accent: #27a8ff;
    --azet-blue-accent-2: #69dcff;
    --azet-blue-border: rgba(151, 204, 255, .28);
}

html,
body,
body:not(.azet-dark),
body.azet-dark {
    background: #07172f !important;
    color: var(--azet-blue-text) !important;
}

.site-main {
    background:
        radial-gradient(circle at 16% 0, rgba(39, 168, 255, .16), transparent 300px),
        linear-gradient(180deg, #07172f 0, #07172f 100%) !important;
}

.site-header,
body.azet-dark .site-header {
    background: var(--azet-blue-menu-bg) !important;
    border-bottom: 1px solid var(--azet-blue-border) !important;
}

.site-title,
.site-title a,
.primary-menu a,
.header-actions .icon-button,
.mobile-menu-toggle,
.search-submit,
.search-close {
    color: #f7fbff !important;
}

.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a,
.primary-menu a:hover,
.primary-menu a:focus-visible {
    background: rgba(39, 168, 255, .15) !important;
    color: #ffffff !important;
}

.home-hero .hero-grid,
.home-hero .hero-grid--slider {
    background: linear-gradient(135deg, #082b57 0%, #061b37 100%) !important;
    border: 1px solid rgba(151, 204, 255, .32) !important;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .24) !important;
}

.home-hero .hero-slider,
.home-hero .hero-main.hero-slide,
.home-hero .hero-side .post-card--compact,
.home-hero .latest-panel,
.popular-shell,
.post-card,
.archive-header,
.search-header,
.not-found-header,
.article-hero,
.side-box {
    background: var(--azet-blue-card-bg) !important;
    border: 1px solid var(--azet-blue-border) !important;
    color: var(--azet-blue-text) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.18) !important;
}

.home-hero .latest-panel,
.popular-shell {
    background: var(--azet-blue-panel-bg) !important;
}

.home-hero .latest-panel__head {
    background: #0b3567 !important;
    border-bottom: 1px solid var(--azet-blue-border) !important;
}

.home-hero .latest-panel__head h2,
.latest-panel__head h2,
.section-title,
.popular-shell .section-title,
.post-card__title,
.post-card__title a,
.latest-list__title,
.latest-list__title a,
.popular-item__title,
.popular-item__title a,
.archive-title,
.search-title,
.not-found-title,
.article-title,
.article-content,
.article-content p,
.category-block .post-card__title,
.category-block .post-card__title a {
    color: #ffffff !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

.post-card__excerpt,
.meta-row,
.meta-row a,
.latest-list__time,
.popular-item__views,
.article-excerpt,
.archive-description,
.section-link {
    color: var(--azet-blue-muted) !important;
    opacity: 1 !important;
}

.section:not(.popular-section) .section-head {
    border-bottom: 1px solid rgba(151, 204, 255, .26) !important;
}

.section-title {
    font-size: clamp(1.35rem, 2vw, 1.8rem) !important;
    line-height: 1.1 !important;
}

.section-link {
    font-weight: 900 !important;
}

.post-card {
    overflow: hidden !important;
}

.post-card__body {
    background: transparent !important;
}

.category-block__main .post-card__body {
    padding: 15px 16px !important;
}

.category-block__main .post-card__title {
    font-size: clamp(1.14rem, 1.45vw, 1.45rem) !important;
    line-height: 1.13 !important;
}

.category-block__grid .post-card__title {
    font-size: .95rem !important;
    line-height: 1.2 !important;
}

.home-hero .hero-side .post-card__title,
.home-hero .hero-side .post-card__title a {
    color: #ffffff !important;
}

.home-hero .hero-side .post-card__body {
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,14,32,.86)) !important;
}

.home-hero .hero-main__content {
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,14,32,.9)) !important;
}

.home-hero .hero-title,
.home-hero .hero-title a,
.home-hero .hero-excerpt,
.home-hero .hero-main .meta-row,
.home-hero .hero-main .meta-row * {
    color: #ffffff !important;
    opacity: 1 !important;
}

.post-category,
.latest-list .post-category,
.popular-item__meta .post-category {
    background: #1f9dff !important;
    color: #ffffff !important;
    border: 0 !important;
}

.popular-shell {
    border-color: rgba(39, 168, 255, .42) !important;
}

.popular-list {
    background: transparent !important;
}

.popular-item {
    background: #0a2f5c !important;
    border-color: rgba(151,204,255,.24) !important;
    color: #ffffff !important;
}

.popular-item__rank {
    background: #1f9dff !important;
    color: #ffffff !important;
}

.popular-item__title,
.popular-item__title a {
    display: block !important;
    color: #ffffff !important;
    font-weight: 900 !important;
}

.popular-item__views {
    color: #cfe2fa !important;
}

@media (min-width: 1141px) {
    .home-hero .hero-grid,
    .home-hero .hero-grid--slider {
        grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr) minmax(290px, .72fr) !important;
    }

    .home-hero .hero-slider,
    .home-hero .hero-side,
    .home-hero .latest-panel {
        height: 540px !important;
        max-height: 540px !important;
        min-height: 540px !important;
    }

    .home-hero .latest-list__item {
        padding: 11px 15px !important;
    }

    .home-hero .latest-list__title {
        font-size: .88rem !important;
        line-height: 1.22 !important;
    }
}

@media (max-width: 720px) {
    .section-title {
        font-size: 1.25rem !important;
    }

    .category-block__main .post-card__title {
        font-size: 1.1rem !important;
    }
}


/* v3.7.0 azetfinance.cz: clean blue-white redesign, no pink, stronger headline contrast */
:root {
    --finance-page: #eef5fc;
    --finance-white: #ffffff;
    --finance-ink: #061a33;
    --finance-muted: #5f7188;
    --finance-blue: #0b5ed7;
    --finance-blue-2: #1185ff;
    --finance-navy: #052044;
    --finance-panel: #f6fbff;
    --finance-border: #c9d9ec;
    --finance-shadow: 0 16px 36px rgba(6, 26, 51, .10);
    --azet-accent: #0b72e7 !important;
    --azet-accent-soft: rgba(11, 114, 231, .11) !important;
}

html, body, body:not(.azet-dark), body.azet-dark {
    background: var(--finance-page) !important;
    color: var(--finance-ink) !important;
}

.site-main {
    background:
        radial-gradient(circle at 18% 0, rgba(17, 133, 255, .13), transparent 310px),
        linear-gradient(180deg, #f8fbff 0, var(--finance-page) 290px, #eef5fc 100%) !important;
}

.site-header,
body.azet-dark .site-header {
    background: #062550 !important;
    color: #fff !important;
    border-bottom: 2px solid #0b72e7 !important;
    box-shadow: 0 8px 22px rgba(4, 25, 56, .18) !important;
}
.site-title, .site-title a, .primary-menu a, .icon-button, .mobile-menu-toggle {
    color: #ffffff !important;
}
.site-title::before { background: #1d8dff !important; box-shadow: none !important; }
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a,
.primary-menu a:hover,
.primary-menu a:focus-visible {
    background: #ffffff !important;
    color: #062550 !important;
}
.primary-menu a::after { background: #1d8dff !important; }
.icon-button, .mobile-menu-toggle, .search-submit, .search-close {
    border-color: rgba(255,255,255,.25) !important;
    background: rgba(255,255,255,.08) !important;
}

.home-hero { padding-top: 18px !important; }
.home-hero .hero-grid,
.home-hero .hero-grid--slider {
    background: linear-gradient(135deg, #06346c 0%, #052047 100%) !important;
    border: 1px solid #144f93 !important;
    box-shadow: 0 18px 44px rgba(5, 32, 71, .22) !important;
}
.home-hero .hero-main.hero-slide,
.home-hero .hero-slider,
.home-hero .hero-side .post-card--compact,
.home-hero .latest-panel {
    background: #082b58 !important;
    border: 1px solid rgba(152, 200, 255, .30) !important;
    color: #fff !important;
}
.home-hero .hero-main__content,
.home-hero .hero-side .post-card__body {
    background: linear-gradient(180deg, rgba(5,18,39,.18), rgba(5,18,39,.94)) !important;
}
.home-hero .hero-title,
.home-hero .hero-title a,
.home-hero .hero-excerpt,
.home-hero .hero-main .meta-row,
.home-hero .hero-main .meta-row *,
.home-hero .hero-side .post-card__title,
.home-hero .hero-side .post-card__title a,
.home-hero .hero-side .meta-row,
.home-hero .hero-side .meta-row * {
    color: #ffffff !important;
    opacity: 1 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,.35) !important;
}
.home-hero .hero-title { font-size: clamp(2rem, 3.5vw, 3.45rem) !important; line-height: 1.02 !important; }
.home-hero .post-card__title { font-size: .96rem !important; line-height: 1.18 !important; }
.home-hero .latest-panel__head {
    background: #ffffff !important;
    border-bottom: 2px solid #0b72e7 !important;
}
.home-hero .latest-panel__head h2 { color: var(--finance-ink) !important; }
.home-hero .latest-list__item { border-bottom: 1px solid rgba(255,255,255,.18) !important; }
.home-hero .latest-list__time { color: #78c8ff !important; }
.home-hero .latest-list__title,
.home-hero .latest-list__title a { color: #ffffff !important; text-shadow: none !important; }

.post-category,
.latest-list .post-category,
.popular-item__meta .post-category {
    background: #e7f2ff !important;
    color: #0b5ed7 !important;
    border: 1px solid #aed5ff !important;
    box-shadow: none !important;
}
.home-hero .post-category,
.home-hero .latest-list .post-category {
    background: #1d8dff !important;
    color: #ffffff !important;
    border: 0 !important;
}

/* More white below the hero */
.section:not(.popular-section) {
    color: var(--finance-ink) !important;
}
.section:not(.popular-section) .section-head {
    border-bottom: 2px solid #b8d3ef !important;
    margin-bottom: 14px !important;
}
.section-title,
.section-title a,
.section-link {
    color: var(--finance-ink) !important;
    text-shadow: none !important;
}
.section-title::before { background: #0b72e7 !important; }
.section-link { color: #0b5ed7 !important; font-weight: 900 !important; }

.post-card,
.archive-header,
.search-header,
.not-found-header,
.article-hero,
.side-box,
.comments-area,
.azet-comments,
.azet-comment-form-panel {
    background: #ffffff !important;
    color: var(--finance-ink) !important;
    border: 1px solid var(--finance-border) !important;
    box-shadow: 0 10px 26px rgba(6, 26, 51, .06) !important;
}
.post-card__body { background: #ffffff !important; }
.post-card__title,
.post-card__title a,
.category-block .post-card__title,
.category-block .post-card__title a,
.archive-title,
.search-title,
.not-found-title,
.article-title,
.article-content,
.article-content p,
.comments-title,
.comment-reply-title {
    color: var(--finance-ink) !important;
    opacity: 1 !important;
    text-shadow: none !important;
}
.post-card__title a:hover { color: #0b5ed7 !important; }
.post-card__excerpt,
.meta-row,
.meta-row a,
.article-excerpt,
.archive-description,
.comment-metadata,
.azet-comment-meta {
    color: var(--finance-muted) !important;
    opacity: 1 !important;
}
.category-block__main .post-card__title { font-size: clamp(1.22rem, 1.7vw, 1.58rem) !important; }
.category-block__grid .post-card__title { font-size: 1rem !important; line-height: 1.22 !important; }
.category-block__grid .post-card--compact { background: #ffffff !important; }
.category-block__grid .post-card--compact .post-card__body { background: #ffffff !important; }

/* Popular section: white/blue instead of pink */
.popular-shell {
    background: linear-gradient(180deg, #f7fbff 0%, #eaf5ff 100%) !important;
    border: 1px solid #a9cbed !important;
    color: var(--finance-ink) !important;
    box-shadow: 0 14px 34px rgba(6, 26, 51, .10) !important;
}
.popular-shell .section-head { border-bottom: 2px solid #0b72e7 !important; }
.popular-shell .section-title { color: var(--finance-ink) !important; }
.popular-tabs { background: #ffffff !important; border: 1px solid #bdd6f2 !important; }
.popular-tab { color: var(--finance-ink) !important; background: transparent !important; }
.popular-tab.is-active,
.popular-tab:hover { background: #0b5ed7 !important; color: #ffffff !important; }
.popular-item {
    background: #ffffff !important;
    border: 1px solid #bdd6f2 !important;
    color: var(--finance-ink) !important;
}
.popular-item__rank { background: #0b5ed7 !important; color: #fff !important; }
.popular-item__title,
.popular-item__title a { color: var(--finance-ink) !important; display: block !important; font-weight: 900 !important; }
.popular-item__views { color: var(--finance-muted) !important; }

/* Override any leftover pink/red outlines */
[style*="pink"], [class*="pink"] { border-color: #bdd6f2 !important; }
input, textarea, select { border-color: #bdd6f2 !important; }
button, .button, .submit, .azet-open-full-button { background: #0b5ed7 !important; color: #ffffff !important; border-color: #0b5ed7 !important; }

@media (min-width: 1141px) {
    .home-hero .hero-grid,
    .home-hero .hero-grid--slider { grid-template-columns: 40% 30% 30% !important; }
    .home-hero .hero-slider,
    .home-hero .hero-side,
    .home-hero .latest-panel { height: 520px !important; min-height: 520px !important; max-height: 520px !important; }
    .home-hero .hero-side .post-card--compact { min-height: 0 !important; }
}

@media (max-width: 720px) {
    .home-hero .hero-title { font-size: 1.75rem !important; }
    .category-block__main .post-card__title { font-size: 1.15rem !important; }
}


/* v3.8.0 azetfinance.cz: readable blue-white palette, no pink, adjusted title sizes, fixed dark mode */
:root {
    --azet-accent: #0b5ed7;
    --azet-accent-2: #1185ff;
    --azet-accent-soft: rgba(11, 94, 215, .12);
    --azet-blue-page-bg: #eef5fc;
    --azet-blue-menu-bg: #061a37;
    --azet-blue-hero-bg: #082e63;
    --azet-blue-panel-bg: #f7fbff;
    --azet-blue-card-bg: #ffffff;
    --azet-blue-text: #061a33;
    --azet-blue-muted: #536b86;
    --azet-blue-accent: #0b5ed7;
    --azet-blue-accent-2: #1185ff;
}

body:not(.azet-dark) {
    background: #eef5fc !important;
    color: #061a33 !important;
}

body:not(.azet-dark) .post-card,
body:not(.azet-dark) .post-card__body,
body:not(.azet-dark) .latest-panel,
body:not(.azet-dark) .section,
body:not(.azet-dark) .archive-header,
body:not(.azet-dark) .search-header,
body:not(.azet-dark) .not-found-header,
body:not(.azet-dark) .article-hero,
body:not(.azet-dark) .article-content-wrap,
body:not(.azet-dark) .article-sidebar,
body:not(.azet-dark) .side-box,
body:not(.azet-dark) .comments-card,
body:not(.azet-dark) .comment-form-wrap,
body:not(.azet-dark) .azet-custom-comment-respond,
body:not(.azet-dark) .azet-custom-comment-form,
body:not(.azet-dark) .azet-comment,
body:not(.azet-dark) .comment-body {
    background: #ffffff !important;
    color: #061a33 !important;
    border-color: #b8d4f1 !important;
}

body:not(.azet-dark) .section-title,
body:not(.azet-dark) .post-card__title,
body:not(.azet-dark) .post-card__title a,
body:not(.azet-dark) .category-block__grid .post-card__title,
body:not(.azet-dark) .latest-list__title,
body:not(.azet-dark) .latest-list__title a,
body:not(.azet-dark) .popular-item__title,
body:not(.azet-dark) .popular-item__title a,
body:not(.azet-dark) .archive-title,
body:not(.azet-dark) .search-title,
body:not(.azet-dark) .article-title,
body:not(.azet-dark) .comments-title,
body:not(.azet-dark) .comment-reply-title,
body:not(.azet-dark) .comment-content,
body:not(.azet-dark) .comment-author,
body:not(.azet-dark) .comment-author a {
    color: #061a33 !important;
    text-shadow: none !important;
}

body:not(.azet-dark) .post-card__excerpt,
body:not(.azet-dark) .meta-row,
body:not(.azet-dark) .post-card__meta,
body:not(.azet-dark) .popular-item__views,
body:not(.azet-dark) .comment-metadata,
body:not(.azet-dark) .azet-comment-meta,
body:not(.azet-dark) .article-excerpt {
    color: #536b86 !important;
}

/* homepage title sizes - about 10% smaller */
.home-hero .hero-title {
    font-size: clamp(2.05rem, 3.45vw, 3.75rem) !important;
    line-height: 1.02 !important;
}
.home-hero .post-card__title,
.home-hero .latest-list__title,
.category-block .post-card__title,
.posts-grid .post-card__title,
.popular-item__title {
    font-size: .9em !important;
}
.category-block__main .post-card__title {
    font-size: clamp(1.24rem, 1.75vw, 1.85rem) !important;
}

/* article title size - about 20% smaller */
.single .article-title,
.article-title {
    font-size: clamp(1.95rem, 4.2vw, 4.45rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.055em !important;
}

/* Most read: blue-only palette */
.popular-shell,
body:not(.azet-dark) .popular-shell {
    background: linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%) !important;
    border-color: #7bb9ff !important;
    box-shadow: 0 16px 44px rgba(11, 94, 215, .12) !important;
}
.popular-shell .section-title,
.popular-shell .section-head h2,
.popular-shell h2 {
    color: #061a33 !important;
}
.popular-shell .section-title::before,
.section-title::before,
.section-head h2::before {
    background: #0b5ed7 !important;
    color: #0b5ed7 !important;
}
.popular-tabs {
    background: #ffffff !important;
    border-color: #91c5ff !important;
}
.popular-tab {
    color: #073d86 !important;
}
.popular-tab.is-active,
.popular-tab:hover {
    background: #0b5ed7 !important;
    color: #ffffff !important;
}
.popular-item {
    background: #ffffff !important;
    border-color: #b8d4f1 !important;
}
.popular-item:hover {
    border-color: #0b5ed7 !important;
    background: #f4f9ff !important;
}
.popular-item__rank {
    background: #0b5ed7 !important;
    color: #ffffff !important;
    border-color: #0b5ed7 !important;
}
.popular-item__title,
.popular-item__title a {
    color: #061a33 !important;
}
.popular-item__views {
    color: #536b86 !important;
}

/* Comments: replace remaining pink with soft blue */
.comments-card,
.comment-form-wrap,
.azet-custom-comment-respond,
.azet-custom-comment-form,
.azet-comment-antispam,
.comment-form input[type="text"],
.comment-form input[type="number"],
.comment-form textarea,
.azet-custom-comment-form input[type="text"],
.azet-custom-comment-form input[type="number"],
.azet-custom-comment-form textarea {
    border-color: #b8d4f1 !important;
}
.comments-card,
.azet-comment-antispam {
    background: linear-gradient(180deg, #ffffff 0%, #eef7ff 100%) !important;
}
.azet-comment-message--error {
    background: #eef7ff !important;
    border-color: #7bb9ff !important;
    color: #073d86 !important;
}
.azet-comment-submit,
.comment-form .submit,
.comment-reply-link,
.azet-comment-vote,
.azet-open-full-button,
button,
.button,
.submit {
    background: #0b5ed7 !important;
    border-color: #0b5ed7 !important;
    color: #ffffff !important;
}
.azet-comment-submit:hover,
.comment-form .submit:hover,
.comment-reply-link:hover,
.azet-comment-vote:hover,
.azet-open-full-button:hover {
    background: #0848a7 !important;
    border-color: #0848a7 !important;
    color: #ffffff !important;
}
.post-category,
.cat-links a,
.tags-links a {
    background: #e9f4ff !important;
    border-color: #91c5ff !important;
    color: #0b5ed7 !important;
}

/* remove remaining pink/red visuals */
[style*="255, 45, 122"],
[style*="255,45,122"],
[style*="#ff2d7a"],
[style*="#FF2D7A"] {
    border-color: #91c5ff !important;
    background-color: #e9f4ff !important;
    color: #0b5ed7 !important;
}

/* Dark mode: real dark screen with white readable text */
body.azet-dark {
    --azet-bg: #07111f !important;
    --azet-surface: #0b1a2e !important;
    --azet-soft: #10243d !important;
    --azet-soft-2: #132b49 !important;
    --azet-text: #ffffff !important;
    --azet-muted: #c7d7ec !important;
    --azet-border: rgba(191, 219, 254, .22) !important;
    --azet-accent: #2da8ff !important;
    --azet-accent-soft: rgba(45, 168, 255, .18) !important;
    background: #07111f !important;
    color: #ffffff !important;
}
body.azet-dark .site,
body.azet-dark .site-main,
body.azet-dark .site-header,
body.azet-dark .site-footer,
body.azet-dark .home-hero,
body.azet-dark .popular-shell,
body.azet-dark .post-card,
body.azet-dark .post-card__body,
body.azet-dark .latest-panel,
body.azet-dark .side-box,
body.azet-dark .article-hero,
body.azet-dark .article-content-wrap,
body.azet-dark .article-sidebar,
body.azet-dark .archive-header,
body.azet-dark .search-header,
body.azet-dark .not-found-header,
body.azet-dark .comments-card,
body.azet-dark .comment-form-wrap,
body.azet-dark .azet-custom-comment-respond,
body.azet-dark .azet-custom-comment-form,
body.azet-dark .azet-comment,
body.azet-dark .comment-body {
    background: #0b1a2e !important;
    color: #ffffff !important;
    border-color: rgba(191, 219, 254, .22) !important;
}
body.azet-dark .hero-main,
body.azet-dark .home-hero .post-card,
body.azet-dark .home-hero .latest-panel {
    background: #0a2340 !important;
}
body.azet-dark .section-title,
body.azet-dark .site-title,
body.azet-dark .primary-menu a,
body.azet-dark .hero-title,
body.azet-dark .post-card__title,
body.azet-dark .post-card__title a,
body.azet-dark .latest-panel__head h2,
body.azet-dark .latest-list__title,
body.azet-dark .latest-list__title a,
body.azet-dark .popular-item__title,
body.azet-dark .popular-item__title a,
body.azet-dark .article-title,
body.azet-dark .article-content,
body.azet-dark .article-content p,
body.azet-dark .article-content h1,
body.azet-dark .article-content h2,
body.azet-dark .article-content h3,
body.azet-dark .comments-title,
body.azet-dark .comment-reply-title,
body.azet-dark .comment-content,
body.azet-dark .comment-author,
body.azet-dark .comment-author a {
    color: #ffffff !important;
    text-shadow: none !important;
}
body.azet-dark .meta-row,
body.azet-dark .post-card__excerpt,
body.azet-dark .article-excerpt,
body.azet-dark .popular-item__views,
body.azet-dark .comment-metadata,
body.azet-dark .azet-comment-meta,
body.azet-dark .wp-caption-text,
body.azet-dark .article-caption {
    color: #c7d7ec !important;
}
body.azet-dark .popular-shell {
    background: #0a2340 !important;
    border-color: rgba(45, 168, 255, .45) !important;
}
body.azet-dark .popular-item {
    background: #0b1a2e !important;
    border-color: rgba(191, 219, 254, .22) !important;
}
body.azet-dark .popular-tabs {
    background: #07111f !important;
    border-color: rgba(191, 219, 254, .28) !important;
}
body.azet-dark .popular-tab {
    color: #c7d7ec !important;
}
body.azet-dark .popular-tab.is-active,
body.azet-dark .popular-tab:hover,
body.azet-dark .popular-item__rank,
body.azet-dark .post-category,
body.azet-dark .cat-links a,
body.azet-dark .tags-links a {
    background: #2da8ff !important;
    border-color: #2da8ff !important;
    color: #061a33 !important;
}
body.azet-dark input,
body.azet-dark textarea,
body.azet-dark select {
    background: #07111f !important;
    color: #ffffff !important;
    border-color: rgba(191, 219, 254, .28) !important;
}

@media (max-width: 900px) {
    .home-hero .hero-title { font-size: clamp(1.75rem, 7vw, 2.65rem) !important; }
    .single .article-title, .article-title { font-size: clamp(1.75rem, 7vw, 3rem) !important; }
}

/* v4.1.0 – pure blue popular section + true black dark mode */
:root {
    --azet-blue-50: #eef6ff;
    --azet-blue-100: #dbeafe;
    --azet-blue-200: #bfdbfe;
    --azet-blue-300: #93c5fd;
    --azet-blue-500: #2563eb;
    --azet-blue-600: #1d4ed8;
    --azet-blue-700: #1e40af;
    --azet-blue-800: #1e3a8a;
    --azet-blue-900: #0f172a;
}

/* remove pink from Popular / Najčítanejšie */
.popular-shell {
    background: linear-gradient(180deg, #f7fbff 0%, var(--azet-blue-50) 100%) !important;
    border: 1px solid var(--azet-blue-200) !important;
    box-shadow: 0 10px 28px rgba(37, 99, 235, .10) !important;
}

.popular-shell .section-head {
    background: linear-gradient(90deg, #ffffff 0%, #f0f7ff 100%) !important;
    border-bottom: 2px solid var(--azet-blue-500) !important;
}

.popular-shell .section-title,
.popular-shell .section-title a {
    color: var(--azet-blue-900) !important;
}

.popular-tabs {
    background: #ffffff !important;
    border: 1px solid var(--azet-blue-200) !important;
}

.popular-tab {
    color: var(--azet-blue-800) !important;
}

.popular-tab.is-active,
.popular-tab:hover {
    background: var(--azet-blue-500) !important;
    color: #ffffff !important;
}

.popular-output {
    background: transparent !important;
}

.popular-item,
.popular-item.has-image,
.popular-item.no-image,
.popular-item.has-thumb,
.popular-item.no-thumb {
    background: #ffffff !important;
    border: 1px solid var(--azet-blue-100) !important;
    box-shadow: 0 6px 18px rgba(37, 99, 235, .07) !important;
}

.popular-item:hover {
    border-color: var(--azet-blue-400, #60a5fa) !important;
    box-shadow: 0 8px 22px rgba(37, 99, 235, .14) !important;
}

.popular-item__rank {
    background: var(--azet-blue-500) !important;
    color: #ffffff !important;
}

.popular-item__thumb {
    background: #eaf2ff !important;
}

.popular-item__title,
.popular-item__title a {
    color: #0f172a !important;
}

.popular-item__views {
    color: #475569 !important;
}

/* blue comments instead of pink */
.comments-card {
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%) !important;
    border: 1px solid rgba(37, 99, 235, .14) !important;
}

.comment-form-note {
    background: rgba(37, 99, 235, .08) !important;
}

.comment-form input[type="text"]:focus,
.comment-form textarea:focus {
    border-color: var(--azet-blue-500) !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .12) !important;
}

.azet-emoji-button:hover,
.azet-emoji-button:focus-visible {
    border-color: var(--azet-blue-500) !important;
    background: rgba(37, 99, 235, .08) !important;
}

.azet-comment-submit,
.comment-form .submit {
    background: var(--azet-blue-500) !important;
    box-shadow: 0 10px 24px rgba(37, 99, 235, .18) !important;
}

.azet-visible-antispam {
    border: 1px solid rgba(37, 99, 235, .18) !important;
    background: #f5f9ff !important;
}

.azet-visible-antispam__question {
    border: 1px solid rgba(37, 99, 235, .14) !important;
}

/* true dark mode */
html.azet-dark,
body.azet-dark,
html.azet-dark body {
    background: #050b13 !important;
    color: #f8fbff !important;
}

body.azet-dark .site-header,
html.azet-dark body .site-header {
    background: rgba(4, 9, 17, .96) !important;
    border-bottom-color: rgba(255,255,255,.08) !important;
}

body.azet-dark .site-main,
html.azet-dark body .site-main,
body.azet-dark .site-footer,
html.azet-dark body .site-footer,
body.azet-dark .home-hero,
html.azet-dark body .home-hero,
body.azet-dark .content-area,
html.azet-dark body .content-area {
    background: transparent !important;
}

body.azet-dark .hero-main,
body.azet-dark .hero-main.hero-slide,
body.azet-dark .hero-side .post-card--compact,
body.azet-dark .latest-panel,
body.azet-dark .post-card,
body.azet-dark .rubric-card,
body.azet-dark .category-block__main,
body.azet-dark .category-block__main .post-card,
body.azet-dark .category-block__grid .post-card,
body.azet-dark .archive-lead,
body.azet-dark .archive-stack .post-card,
html.azet-dark body .hero-main,
html.azet-dark body .hero-main.hero-slide,
html.azet-dark body .hero-side .post-card--compact,
html.azet-dark body .latest-panel,
html.azet-dark body .post-card,
html.azet-dark body .rubric-card,
html.azet-dark body .category-block__main,
html.azet-dark body .category-block__main .post-card,
html.azet-dark body .category-block__grid .post-card,
html.azet-dark body .archive-lead,
html.azet-dark body .archive-stack .post-card {
    background: #081423 !important;
    border-color: #18314d !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.26) !important;
}

body.azet-dark .popular-shell,
html.azet-dark body .popular-shell {
    background: linear-gradient(180deg, #081423 0%, #0b1930 100%) !important;
    border: 1px solid #1f4d8a !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.30) !important;
}

body.azet-dark .popular-shell .section-head,
html.azet-dark body .popular-shell .section-head {
    background: linear-gradient(90deg, #0a1830 0%, #0f2548 100%) !important;
    border-bottom: 2px solid #3b82f6 !important;
}

body.azet-dark .popular-tabs,
html.azet-dark body .popular-tabs {
    background: rgba(255,255,255,.04) !important;
    border-color: rgba(96, 165, 250, .25) !important;
}

body.azet-dark .popular-item,
body.azet-dark .popular-item.has-image,
body.azet-dark .popular-item.no-image,
body.azet-dark .popular-item.has-thumb,
body.azet-dark .popular-item.no-thumb,
html.azet-dark body .popular-item,
html.azet-dark body .popular-item.has-image,
html.azet-dark body .popular-item.no-image,
html.azet-dark body .popular-item.has-thumb,
html.azet-dark body .popular-item.no-thumb {
    background: #0b1b2d !important;
    border-color: #1b406e !important;
}

body.azet-dark .popular-item__title,
body.azet-dark .popular-item__title a,
body.azet-dark .hero-title,
body.azet-dark .hero-title a,
body.azet-dark .post-card__title,
body.azet-dark .post-card__title a,
body.azet-dark .latest-list__title,
body.azet-dark .latest-list__title a,
body.azet-dark .section-title,
body.azet-dark .section-title a,
html.azet-dark body .popular-item__title,
html.azet-dark body .popular-item__title a,
html.azet-dark body .hero-title,
html.azet-dark body .hero-title a,
html.azet-dark body .post-card__title,
html.azet-dark body .post-card__title a,
html.azet-dark body .latest-list__title,
html.azet-dark body .latest-list__title a,
html.azet-dark body .section-title,
html.azet-dark body .section-title a {
    color: #ffffff !important;
}

body.azet-dark .popular-shell .section-title,
body.azet-dark .popular-shell .section-title a,
html.azet-dark body .popular-shell .section-title,
html.azet-dark body .popular-shell .section-title a {
    color: #ffffff !important;
}

body.azet-dark .meta-row,
body.azet-dark .post-card__excerpt,
body.azet-dark .hero-excerpt,
body.azet-dark .popular-item__views,
body.azet-dark .archive-description,
html.azet-dark body .meta-row,
html.azet-dark body .post-card__excerpt,
html.azet-dark body .hero-excerpt,
html.azet-dark body .popular-item__views,
html.azet-dark body .archive-description {
    color: #c7d6ea !important;
}

body.azet-dark .comments-card,
html.azet-dark body .comments-card {
    background: linear-gradient(180deg, #0b1522 0%, #0e1c2e 100%) !important;
    border-color: rgba(96,165,250,.24) !important;
}

body.azet-dark .comment-form-wrap,
html.azet-dark body .comment-form-wrap {
    background: #0a1420 !important;
    border-color: rgba(96,165,250,.22) !important;
}

body.azet-dark .comment-form-note,
html.azet-dark body .comment-form-note {
    background: rgba(37,99,235,.14) !important;
    color: #e8f1ff !important;
}

body.azet-dark .azet-emoji-button,
html.azet-dark body .azet-emoji-button,
body.azet-dark .comment-form input[type="text"],
body.azet-dark .comment-form textarea,
html.azet-dark body .comment-form input[type="text"],
html.azet-dark body .comment-form textarea {
    background: #09111b !important;
    color: #ffffff !important;
    border-color: rgba(96,165,250,.20) !important;
}
