*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--rs-surface-alt);
    color: var(--rs-text);
    line-height: 1.65;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--rs-transition), background-color var(--rs-transition), border-color var(--rs-transition), transform var(--rs-transition), opacity var(--rs-transition);
}

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

.icon {
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
}

.container {
    width: min(1280px, calc(100% - 2rem));
    margin-inline: auto;
}

.narrow-container {
    width: min(760px, calc(100% - 2rem));
    margin: 4rem auto 5rem;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    clip: auto !important;
    clip-path: none;
    height: auto;
    width: auto;
    background: var(--rs-dark);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 0.35rem;
    left: 1rem;
    top: 1rem;
    z-index: 9999;
}

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

.site-content {
    flex: 1 0 auto;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: 1rem;
}

.utility-bar {
    background: var(--rs-dark);
    color: rgba(255, 255, 255, 0.86);
    border-bottom: 2px solid var(--rs-accent);
    font-size: 0.9rem;
}

.utility-bar__inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.35rem;
}

.utility-bar__date {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 600;
}

.utility-bar__date .icon {
    color: var(--rs-accent);
}

.utility-bar__socials {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.social-pill {
    min-width: 2.15rem;
    height: 2.15rem;
    padding-inline: 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.social-pill:hover {
    background: var(--rs-accent);
    border-color: var(--rs-accent);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.06);
}

.site-header__inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.site-branding__link {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    min-width: 0;
}

.site-branding__mark {
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--rs-accent), var(--rs-accent-hover));
    color: #fff;
    font-size: 1.55rem;
    font-weight: 900;
    box-shadow: 6px 6px 0 var(--rs-dark);
    transform: rotate(-4deg);
}

.site-branding__text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: 0;
}

.site-branding__title {
    font-size: clamp(1.25rem, 1rem + 1vw, 1.9rem);
    font-weight: 900;
    color: var(--rs-dark);
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.site-branding__tagline {
    font-size: 0.75rem;
    color: var(--rs-muted);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.desktop-nav {
    margin-left: auto;
}

.desktop-nav .menu,
.mobile-nav .menu,
.footer-menu,
.widget ul,
.widget ol,
.entry-content ul,
.entry-content ol,
.comment-list,
.post-navigation .nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.desktop-nav .menu {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    flex-wrap: wrap;
}

.desktop-nav .menu > li {
    position: relative;
}

.desktop-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 1rem;
    border-radius: 0.9rem;
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--rs-dark);
    letter-spacing: 0.02em;
}

.desktop-nav .menu > li > a:hover,
.desktop-nav .menu > li:hover > a,
.desktop-nav .current-menu-item > a,
.desktop-nav .current-menu-ancestor > a {
    background: var(--rs-accent);
    color: #fff;
}

.desktop-nav .menu-item-has-children > a::after {
    content: '▾';
    font-size: 0.72rem;
    line-height: 1;
    opacity: 0.8;
}

.desktop-nav .sub-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 0.55rem);
    min-width: 240px;
    padding: 0.6rem;
    background: #fff;
    border: 1px solid var(--rs-border);
    border-radius: 1rem;
    box-shadow: var(--rs-shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--rs-transition), transform var(--rs-transition), visibility var(--rs-transition);
    z-index: 20;
}

.desktop-nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-nav .sub-menu li + li {
    margin-top: 0.25rem;
}

.desktop-nav .sub-menu a {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: none;
    border-radius: 0.8rem;
}

.desktop-nav .sub-menu a:hover,
.desktop-nav .sub-menu .current-menu-item > a {
    background: var(--rs-accent);
    color: #fff;
    transform: translateX(4px);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-shrink: 0;
}

.button,
.wp-block-button__link,
button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 0;
    border-radius: 0.85rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform var(--rs-transition), box-shadow var(--rs-transition), background-color var(--rs-transition), color var(--rs-transition), border-color var(--rs-transition);
}

.button:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
    transform: translateY(-2px);
}

.button-primary,
.wp-block-button__link,
input[type="submit"],
.search-submit {
    background: var(--rs-accent);
    color: #fff;
    padding: 0.95rem 1.2rem;
    box-shadow: 0 12px 24px var(--rs-accent-shadow);
}

.button-primary:hover,
.wp-block-button__link:hover,
input[type="submit"]:hover,
.search-submit:hover {
    background: var(--rs-accent-hover);
}

.button-block {
    width: 100%;
}

.button-report {
    background: var(--rs-dark);
    color: #fff;
    padding: 0.9rem 1.1rem;
    box-shadow: 5px 5px 0 var(--rs-accent);
}

.button-report--icon {
    width: 3.45rem;
    height: 3.45rem;
    padding: 0;
    border-radius: 1rem;
}

.button-report:hover {
    background: var(--rs-accent);
    box-shadow: 7px 7px 0 var(--rs-dark);
}

.menu-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
    background: var(--rs-dark);
    color: #fff;
}

.mobile-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--rs-transition), visibility var(--rs-transition);
    z-index: 99;
}

.mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(92vw, 360px);
    height: 100dvh;
    background: #fff;
    z-index: 100;
    transform: translateX(102%);
    transition: transform var(--rs-transition);
    display: flex;
    flex-direction: column;
    box-shadow: -18px 0 42px rgba(15, 23, 42, 0.16);
}

body.mobile-menu-open .mobile-panel-overlay {
    opacity: 1;
    visibility: visible;
}

body.mobile-menu-open .mobile-panel {
    transform: translateX(0);
}

.mobile-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--rs-border);
    font-size: 1.1rem;
    font-weight: 800;
}

.mobile-panel__close {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    background: var(--rs-surface-alt);
}

.mobile-nav {
    padding: 1rem;
    overflow: auto;
}

.mobile-nav li {
    border-bottom: 1px solid var(--rs-border);
    position: relative;
}

.mobile-nav a {
    display: block;
    padding: 0.95rem 0;
    font-weight: 800;
    color: var(--rs-dark);
    text-transform: uppercase;
}

.mobile-nav .sub-menu {
    display: none;
    padding-bottom: 0.7rem;
}

.mobile-nav .sub-menu a {
    text-transform: none;
    font-weight: 600;
    color: var(--rs-muted);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 0.75rem;
}

.mobile-nav .menu-item-has-children.is-open > .sub-menu {
    display: block;
}

.mobile-nav__toggle {
    position: absolute;
    top: 0.75rem;
    right: 0;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.7rem;
    background: var(--rs-surface-alt);
    color: var(--rs-dark);
    font-weight: 900;
}

.breaking-bar {
    background: var(--rs-dark);
    color: #fff;
    overflow: hidden;
}

.breaking-bar__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 48px;
}

.breaking-bar__label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--rs-accent);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    flex-shrink: 0;
}

.breaking-bar__track {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.breaking-bar__items {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    min-width: max-content;
    animation: rsMarquee 26s linear infinite;
}

.breaking-bar__track:hover .breaking-bar__items {
    animation-play-state: paused;
}

.breaking-bar__item {
    opacity: 0.9;
    font-weight: 600;
}

.breaking-bar__item:hover {
    color: #fff;
    opacity: 1;
}

@keyframes rsMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.front-page-shell {
    padding-block: 2rem 4rem;
}

.hero-section,
.content-grid,
.page-shell {
    display: grid;
    grid-template-columns: minmax(0, 2.15fr) minmax(280px, 1fr);
    gap: 2rem;
    align-items: start;
}

.content-grid {
    margin-top: 2.25rem;
}

.hero-slider,
.radio-card,
.ad-slot,
.content-card,
.widget,
.feature-story,
.podcast-section {
    background: var(--rs-surface);
    border-radius: 1.25rem;
    box-shadow: var(--rs-shadow-sm);
}

.hero-slider {
    overflow: hidden;
    position: relative;
    min-height: 560px;
}

.hero-slider__tabs {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.8rem;
    background: var(--rs-dark);
    overflow: auto hidden;
    scrollbar-width: none;
}

.hero-slider__tabs::-webkit-scrollbar,
.podcast-section__tabs::-webkit-scrollbar {
    display: none;
}

.hero-slider__tab,
.podcast-section__tab {
    white-space: nowrap;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.85rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: none;
}

.hero-slider__tab.is-active,
.hero-slider__tab:hover,
.podcast-section__tab.is-active,
.podcast-section__tab:hover {
    background: var(--rs-accent);
    border-color: var(--rs-accent);
    color: #fff;
}

.hero-slider__panels {
    position: relative;
    min-height: 560px;
    background: #0f172a;
}

.hero-slider__panel {
    display: none;
    position: relative;
    min-height: 560px;
}

.hero-slider__panel.is-active {
    display: block;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: stretch;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.hero-slide__media,
.hero-slide__media img,
.hero-slide__media .post-media__placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-media__placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.14), rgba(17, 17, 17, 0.12));
    color: var(--rs-accent);
}

.post-media__placeholder .icon {
    width: 3rem;
    height: 3rem;
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.12), rgba(17, 17, 17, 0.44) 46%, rgba(17, 17, 17, 0.92));
    z-index: 1;
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    align-self: end;
    width: min(84%, 780px);
    padding: 2rem 2rem 2.15rem;
    color: #fff;
}

.hero-slide__badge,
.post-card__category,
.single-entry__category,
.feature-story__label {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: var(--rs-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-slide__title {
    margin: 0.85rem 0 0.75rem;
    font-size: clamp(1.75rem, 1.3rem + 1.7vw, 2.85rem);
    line-height: 1.08;
    font-weight: 900;
    text-wrap: balance;
    max-width: 22ch;
}

.hero-slide__title a:hover {
    color: #fff;
}

.hero-slide__excerpt {
    margin: 0 0 1rem;
    max-width: 64ch;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.hero-slide__meta,
.post-card__meta,
.post-list-item__meta,
.single-entry__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.hero-slide__meta span,
.post-card__meta span,
.post-list-item__meta span,
.single-entry__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-slider__nav {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 12;
    display: flex;
    gap: 0.55rem;
}

.hero-slider__arrow {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    backdrop-filter: blur(8px);
}

.hero-slider__arrow:hover {
    background: var(--rs-accent);
}

.hero-section__sidebar,
.content-grid__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.radio-card {
    padding: 1.6rem;
    border-top: 5px solid var(--rs-accent);
    position: relative;
    overflow: hidden;
}

.radio-card::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.1), rgba(211, 47, 47, 0));
}

.radio-card__top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.radio-card h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.radio-card p {
    margin: 0.35rem 0 0;
    color: var(--rs-muted);
    font-weight: 600;
}

.radio-card__live {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(211, 47, 47, 0.12);
    color: var(--rs-accent);
    border-radius: 999px;
    padding: 0.5rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.radio-card__controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.4rem;
    position: relative;
    z-index: 1;
}

.radio-card__button {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    background: var(--rs-accent);
    color: #fff;
    box-shadow: 0 14px 28px var(--rs-accent-shadow);
}

.radio-card__button:hover {
    background: var(--rs-accent-hover);
}

.radio-card__volume-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    color: var(--rs-muted);
}

.radio-card__volume {
    width: 100%;
    accent-color: var(--rs-accent);
}

.ad-slot {
    min-height: 280px;
    border: 2px dashed #cfd7e3;
    display: grid;
    place-items: center;
    color: var(--rs-muted);
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
    padding: 1rem;
}

.ad-slot > * {
    max-width: 100%;
}

.section-block,
.columns-news {
    margin-top: 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--rs-border);
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 4.25rem;
    height: 4px;
    border-radius: 999px;
    background: var(--rs-accent);
}

.section-heading--inverse {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.section-heading h2 {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: clamp(1.25rem, 1.05rem + 0.55vw, 1.6rem);
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
}

.section-heading--inverse h2 {
    color: #fff;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--rs-accent);
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.section-link:hover {
    color: var(--rs-accent-hover);
}

.section-link--light {
    color: #fff;
}

.section-link--light:hover {
    color: #fff;
    opacity: 0.88;
}

.post-grid {
    display: grid;
    gap: 1.35rem;
}

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

.post-grid--archive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.5rem;
}

.post-card,
.column-featured,
.single-entry,
.archive-header,
.not-found-block,
.comments-area {
    background: var(--rs-surface);
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 1.2rem;
    box-shadow: var(--rs-shadow-sm);
}

.post-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.post-card__media {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.post-card__media img,
.post-card__media .post-media__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.post-card:hover .post-card__media img,
.column-featured:hover .column-featured__image img,
.feature-story:hover .feature-story__media img,
.podcast-panel:hover .podcast-panel__image img {
    transform: scale(1.06);
}

.post-card__category {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 1;
}

.post-card__content {
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.post-card__meta,
.post-list-item__meta {
    color: var(--rs-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.post-card__title,
.post-list-item__title,
.column-featured__content h3,
.feature-story__title,
.podcast-panel__content h3,
.single-entry__title {
    margin: 0;
    font-weight: 900;
    line-height: 1.22;
    text-wrap: balance;
}

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

.post-card__title a:hover,
.post-list-item__title a:hover,
.column-featured__content h3 a:hover,
.feature-story__title a:hover,
.podcast-panel__content h3 a:hover,
.single-entry__title:hover {
    color: var(--rs-accent);
}

.post-card__excerpt,
.column-featured__content p,
.feature-story__content p,
.podcast-panel__content p,
.archive-description,
.single-entry__content,
.widget p,
.not-found-block p {
    margin: 0;
    color: var(--rs-muted);
}

.feature-story {
    margin-top: 1.85rem;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    overflow: hidden;
    border-left: 5px solid #2e7d32;
}

.feature-story__media,
.feature-story__media img,
.feature-story__media .post-media__placeholder {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.feature-story__content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.9rem;
}

.feature-story__label {
    align-self: flex-start;
    background: #2e7d32;
}

.feature-story__title {
    font-size: clamp(1.35rem, 1.15rem + 0.7vw, 1.75rem);
}

.feature-story__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--rs-dark);
}

.feature-story__link:hover {
    color: var(--rs-accent);
}

.podcast-section {
    margin-top: 1.85rem;
    padding: 1.5rem;
    background: linear-gradient(180deg, var(--rs-dark-alt), var(--rs-dark));
    color: #fff;
}

.podcast-section__tabs {
    display: flex;
    gap: 0.55rem;
    overflow: auto hidden;
    margin-bottom: 1rem;
}

.podcast-panel {
    display: none;
    gap: 1rem;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    align-items: stretch;
}

.podcast-panel.is-active {
    display: grid;
}

.podcast-panel__image,
.podcast-panel__image img,
.podcast-panel__image .post-media__placeholder {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 1rem;
    overflow: hidden;
}

.podcast-panel__content {
    padding: 1rem 0.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.podcast-panel__content h3 {
    font-size: clamp(1.35rem, 1.1rem + 0.8vw, 2rem);
}

.podcast-panel__content p {
    color: rgba(255, 255, 255, 0.75);
}

.columns-news {
    margin-top: 2rem;
}

.columns-news__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.section-heading--small {
    margin-bottom: 0.9rem;
}

.section-heading--small h2 {
    font-size: 1.2rem;
}

.columns-news__column {
    min-width: 0;
}

.column-featured {
    overflow: hidden;
}

.column-featured__image,
.column-featured__image img,
.column-featured__image .post-media__placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.column-featured__content {
    padding: 1rem;
}

.column-featured__content h3 {
    font-size: 1rem;
}

.column-featured__content p {
    margin-top: 0.65rem;
    font-size: 0.92rem;
}

.column-list {
    margin-top: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.post-list-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 0.8rem;
    align-items: center;
    background: var(--rs-surface);
    border-radius: 1rem;
    padding: 0.65rem;
    box-shadow: var(--rs-shadow-sm);
}

.post-list-item__media,
.post-list-item__media img,
.post-list-item__media .post-media__placeholder {
    width: 100%;
    height: 78px;
    object-fit: cover;
    border-radius: 0.8rem;
    overflow: hidden;
}

.post-list-item__content {
    min-width: 0;
}

.post-list-item__title {
    font-size: 0.96rem;
}

.widget,
.content-card,
.archive-header,
.not-found-block,
.comments-area {
    padding: 1.35rem;
}

.widget + .widget {
    margin-top: 1rem;
}

.widget-title {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    font-weight: 900;
    text-transform: uppercase;
    border-left: 4px solid var(--rs-accent);
    padding-left: 0.8rem;
    line-height: 1.1;
}

.widget ul li + li,
.widget ol li + li,
.footer-menu li + li {
    margin-top: 0.65rem;
}

.widget a:hover,
.footer-menu a:hover {
    color: var(--rs-accent);
}

.poll-card,
.poll-results {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.poll-question {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--rs-dark);
}

.poll-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.poll-option {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    padding: 0.9rem 1rem;
    border-radius: 0.9rem;
    background: var(--rs-surface-alt);
    border: 1px solid var(--rs-border);
    cursor: pointer;
    font-weight: 700;
}

.poll-option:hover {
    border-color: var(--rs-accent);
}

.poll-option input {
    accent-color: var(--rs-accent);
}

.poll-feedback {
    min-height: 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.poll-feedback.is-error {
    color: #b91c1c;
}

.poll-feedback.is-success {
    color: #166534;
}

.poll-result-item + .poll-result-item {
    margin-top: 0.75rem;
}

.poll-result-head {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.poll-result-bar {
    height: 0.75rem;
    border-radius: 999px;
    background: var(--rs-surface-alt);
    overflow: hidden;
    border: 1px solid var(--rs-border);
}

.poll-result-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--rs-accent), var(--rs-accent-hover));
    border-radius: inherit;
}

.poll-total {
    font-size: 0.85rem;
    color: var(--rs-muted);
    font-weight: 700;
    margin-top: 0.45rem;
}

.small-posts-widget__list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.page-shell {
    padding-block: 2rem 4rem;
}

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

.page-shell__main {
    min-width: 0;
}

.archive-title,
.single-entry__title,
.not-found-block h1 {
    margin: 0;
    font-size: clamp(1.8rem, 1.45rem + 1.1vw, 2.75rem);
    line-height: 1.08;
    font-weight: 900;
}

.archive-description {
    margin-top: 0.8rem;
}

.single-entry__header {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.single-entry__meta {
    color: var(--rs-muted);
    font-size: 0.9rem;
}

.single-entry__media {
    margin-top: 1.4rem;
    border-radius: 1rem;
    overflow: hidden;
}

.single-entry__media img,
.single-entry__media .post-media__placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.entry-content {
    margin-top: 1.5rem;
    font-size: 1.02rem;
    color: #344054;
}

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

.entry-content > *:last-child {
    margin-bottom: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--rs-dark);
    line-height: 1.2;
    margin-top: 1.7em;
    margin-bottom: 0.6em;
}

.entry-content a {
    color: var(--rs-accent);
    text-decoration: underline;
}

.entry-content a:hover {
    color: var(--rs-accent-hover);
}

.entry-content img,
.entry-content figure {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

.entry-content blockquote {
    margin: 1.5rem 0;
    padding: 1.25rem 1.35rem;
    border-left: 4px solid var(--rs-accent);
    background: var(--rs-surface-alt);
    border-radius: 0.9rem;
}

.single-entry__footer {
    margin-top: 1.25rem;
}

.single-entry__tags a {
    display: inline-flex;
    padding: 0.45rem 0.75rem;
    margin: 0 0.5rem 0.5rem 0;
    border-radius: 999px;
    background: var(--rs-surface-alt);
    color: var(--rs-dark);
    font-size: 0.85rem;
    font-weight: 700;
}

.single-entry__tags a:hover {
    background: var(--rs-accent);
    color: #fff;
}

.post-navigation {
    margin-top: 1.25rem;
}

.post-navigation .nav-links {
    display: grid;
    gap: 1rem;
}

.post-navigation a {
    display: block;
    background: var(--rs-surface);
    border-radius: 1rem;
    padding: 1rem 1.15rem;
    box-shadow: var(--rs-shadow-sm);
    font-weight: 700;
}

.post-navigation a:hover {
    color: var(--rs-accent);
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.search-form label {
    flex: 1 1 280px;
}

.search-field {
    width: 100%;
    min-height: 3rem;
    border-radius: 0.85rem;
    border: 1px solid var(--rs-border);
    background: #fff;
    padding: 0.8rem 0.95rem;
}

.search-submit {
    border-radius: 0.85rem;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comments-title {
    margin-top: 0;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-block: 1.25rem;
}

.comment-list article {
    background: var(--rs-surface-alt);
    border-radius: 1rem;
    padding: 1rem;
}

.comment-list .children {
    margin-top: 1rem;
    margin-left: 1rem;
}

.site-footer {
    margin-top: auto;
    background: var(--rs-dark);
    color: #fff;
    border-top: 4px solid var(--rs-accent);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 2rem;
    padding-block: 3rem 2.25rem;
}

.site-branding--footer .site-branding__title,
.site-branding--footer .site-branding__tagline,
.site-footer .widget,
.site-footer .widget a,
.site-footer .widget-title,
.site-footer__about-text,
.site-footer p {
    color: rgba(255, 255, 255, 0.86);
}

.site-footer__about-text {
    margin-top: 1rem;
    max-width: 36ch;
}

.site-footer__socials {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.site-footer .widget {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.site-footer .widget-title {
    border-left-color: var(--rs-accent);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-block: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.not-found-block {
    text-align: center;
    padding: 2rem;
}

.not-found-block h1 {
    color: var(--rs-accent);
    margin-bottom: 0.8rem;
}

.pagination,
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.page-numbers {
    min-width: 2.65rem;
    height: 2.65rem;
    padding-inline: 0.8rem;
    border-radius: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: var(--rs-shadow-sm);
    font-weight: 800;
}

.page-numbers.current,
.page-numbers:hover {
    background: var(--rs-accent);
    color: #fff;
}

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

@media (max-width: 1100px) {
    .hero-section,
    .content-grid,
    .page-shell {
        grid-template-columns: 1fr;
    }

    .feature-story {
        grid-template-columns: 1fr;
    }

    .feature-story__media {
        min-height: 260px;
    }

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

@media (max-width: 920px) {
    .desktop-nav,
    .button-report {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero-slider,
    .hero-slider__panels,
    .hero-slider__panel {
        min-height: 500px;
    }

    .post-grid--2up,
    .post-grid--archive,
    .podcast-panel {
        grid-template-columns: 1fr;
    }

    .podcast-panel__image,
    .podcast-panel__image img,
    .podcast-panel__image .post-media__placeholder {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .utility-bar {
        display: none;
    }

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

    .site-branding__mark {
        width: 2.55rem;
        height: 2.55rem;
        box-shadow: 4px 4px 0 var(--rs-dark);
        font-size: 1.3rem;
    }

    .hero-slide__content {
        width: 100%;
        padding: 1.3rem 1.25rem 1.5rem;
    }

    .hero-slide__excerpt {
        font-size: 0.95rem;
    }

    .hero-slider,
    .hero-slider__panels,
    .hero-slider__panel {
        min-height: 440px;
    }

    .hero-slider__tabs,
    .podcast-section__tabs {
        gap: 0.45rem;
    }

    .columns-news__grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 560px) {
    .container {
        width: min(100% - 1rem, 1280px);
    }

    .hero-slider__arrow {
        width: 2.45rem;
        height: 2.45rem;
    }

    .hero-slider__nav {
        right: 0.9rem;
        bottom: 0.9rem;
    }

    .post-list-item {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .widget,
    .content-card,
    .archive-header,
    .not-found-block,
    .comments-area,
    .podcast-section,
    .radio-card {
        padding: 1.1rem;
    }

    .front-page-shell,
    .page-shell {
        padding-block: 1.25rem 3rem;
    }
}


/* --- Update 1.0.1 dodatna poboljsanja --- */
.hero-section__main,
.home-primary-grid,
.home-primary-grid__main,
.home-primary-grid__sidebar,
.columns-news__column,
.site-footer__widgets,
.post-grid,
.post-card,
.post-card__content,
.post-list-item,
.post-list-item__content,
.column-featured,
.column-featured__content,
.feature-story,
.feature-story__content,
.podcast-panel,
.podcast-panel__content,
.hero-slide,
.hero-slide__content {
    min-width: 0;
}

.home-primary-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.15fr) minmax(280px, 1fr);
    gap: 2rem;
    align-items: start;
    margin-top: 2.25rem;
}

.home-primary-grid__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.post-card__title,
.post-list-item__title,
.feature-story__title,
.column-featured__content h3,
.hero-slide__title,
.single-entry__title,
.archive-title,
.section-heading h2,
.widget-title,
.comment-content,
.comment-author,
.comment-metadata,
.post-card__excerpt,
.post-list-item__excerpt,
.hero-slide__excerpt,
.single-entry__content,
.single-entry__meta,
.single-entry__tags,
.single-entry__categories {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hero-slide__overlay-link {
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: inherit;
}

.hero-slide__overlay-link:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.95);
    outline-offset: -6px;
}

.hero-slide__content {
    position: relative;
    z-index: 2;
}

.hero-slider__nav,
.hero-slider__tabs {
    position: relative;
    z-index: 12;
}

.radio-live-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 999px;
    background: var(--rs-accent);
    box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.55);
}

.radio-card.is-playing .radio-live-dot {
    animation: rsPulse 1.55s infinite;
}

@keyframes rsPulse {
    0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.55); }
    70% { box-shadow: 0 0 0 12px rgba(211, 47, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

.ad-slot--hero {
    min-height: 280px;
}

.ad-slot--sidebar {
    min-height: 280px;
}

.ad-slot__link,
.ad-slot__image {
    display: block;
    width: 100%;
    height: auto;
}

.ad-slot__link img,
.ad-slot__image {
    border-radius: 1rem;
}

.post-list-item__excerpt {
    margin: 0.45rem 0 0;
    color: var(--rs-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-list-item--with-excerpt {
    align-items: start;
}

.post-list-item--with-excerpt .post-list-item__media,
.post-list-item--with-excerpt .post-list-item__media img,
.post-list-item--with-excerpt .post-list-item__media .post-media__placeholder {
    height: 88px;
}

.breadcrumbs {
    width: 100%;
}

.breadcrumbs__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    color: var(--rs-muted);
    font-size: 0.85rem;
    font-weight: 700;
}

.breadcrumbs__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumbs__item + .breadcrumbs__item::before {
    content: '/';
    color: #98a2b3;
    margin-right: 0.1rem;
}

.breadcrumbs__link:hover {
    color: var(--rs-accent);
}

.breadcrumbs__current {
    color: var(--rs-dark);
}

.single-entry__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.single-entry__category {
    background: rgba(211, 47, 47, 0.1);
    color: var(--rs-accent);
}

.single-entry__category:hover {
    background: var(--rs-accent);
    color: #fff;
}

.single-entry__tools {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.reader-controls {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem 0.85rem;
    border-radius: 1rem;
    background: var(--rs-surface-alt);
    border: 1px solid var(--rs-border);
}

.reader-controls__label {
    font-size: 0.84rem;
    font-weight: 800;
    color: var(--rs-muted);
    margin-right: 0.15rem;
}

.reader-controls__button {
    min-width: 2.35rem;
    height: 2.35rem;
    padding: 0 0.75rem;
    border-radius: 0.75rem;
    background: #fff;
    color: var(--rs-dark);
    border: 1px solid var(--rs-border);
    box-shadow: none;
}

.reader-controls__button.is-active,
.reader-controls__button:hover {
    background: var(--rs-accent);
    color: #fff;
    border-color: var(--rs-accent);
}

.entry-content {
    font-size: var(--rs-reader-size, var(--rs-reading-size, 18px));
    line-height: 1.9;
}

.entry-content p,
.entry-content li {
    font-size: inherit;
    line-height: inherit;
}

.entry-content ul,
.entry-content ol {
    padding-left: 1.2rem;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
}

.entry-content th,
.entry-content td {
    border: 1px solid var(--rs-border);
    padding: 0.75rem;
}

.comment-list article {
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.04);
}

.comment-author {
    font-weight: 800;
    color: var(--rs-dark);
}

.comment-metadata {
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: var(--rs-muted);
}

.comment-content {
    margin-top: 0.85rem;
    color: #344054;
}

.comment-reply-link {
    display: inline-flex;
    align-items: center;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--rs-accent);
}

.comment-reply-link:hover {
    color: var(--rs-accent-hover);
}

.comments-area .comment-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.comments-area .comment-form > p {
    margin: 0;
}

.comments-area .comment-form-comment,
.comments-area .form-submit,
.comments-area .comment-notes,
.comments-area .logged-in-as,
.comments-area .comment-form-cookies-consent {
    grid-column: 1 / -1;
}

.comments-area label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--rs-dark);
}

.comments-area input[type="text"],
.comments-area input[type="email"],
.comments-area input[type="url"],
.comments-area textarea {
    width: 100%;
    border-radius: 0.95rem;
    border: 1px solid var(--rs-border);
    background: #fff;
    padding: 0.9rem 1rem;
    color: var(--rs-dark);
}

.comments-area textarea {
    min-height: 180px;
    resize: vertical;
}

.comments-area input:focus,
.comments-area textarea:focus {
    outline: 0;
    border-color: var(--rs-accent);
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

.comments-area .comment-form-cookies-consent {
    display: flex;
    align-items: start;
    gap: 0.65rem;
}

.comments-area .comment-form-cookies-consent input {
    margin-top: 0.25rem;
    accent-color: var(--rs-accent);
}

.comments-area .comment-form-cookies-consent label {
    margin: 0;
    font-weight: 600;
    color: var(--rs-muted);
}

.footer-player-button {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.9rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.footer-player-button:hover {
    background: var(--rs-accent);
    border-color: var(--rs-accent);
}

.site-footer__grid {
    grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(0, 1fr));
}

.sticky-player {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 120;
    width: min(100%, 520px);
    pointer-events: none;
}

.sticky-player__panel {
    pointer-events: auto;
    margin-left: auto;
    border-radius: 1.2rem;
    overflow: hidden;
    background: rgba(17, 17, 17, 0.96);
    color: #fff;
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.sticky-player__handle {
    width: 100%;
    justify-content: space-between;
    padding: 0.95rem 1rem;
    border-radius: 0;
    background: transparent;
    color: #fff;
    box-shadow: none;
}

.sticky-player__handle:hover {
    background: rgba(255, 255, 255, 0.06);
}

.sticky-player__handle-text,
.sticky-player__handle-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.sticky-player__handle-text {
    font-weight: 900;
    letter-spacing: 0.02em;
}

.sticky-player__body {
    padding: 0 1rem 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
}

.sticky-player__meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.sticky-player__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.sticky-player__title {
    font-size: 1.05rem;
    font-weight: 900;
}

.sticky-player__subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    overflow-wrap: anywhere;
}

.sticky-player__controls {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: min(220px, 100%);
}

.sticky-player__controls .radio-card__button {
    box-shadow: none;
    flex-shrink: 0;
}

.sticky-player__controls .radio-card__volume-wrap {
    color: rgba(255, 255, 255, 0.78);
}

.sticky-player.is-collapsed .sticky-player__body {
    display: none;
}

.sticky-player.is-open .sticky-player__handle-icon {
    transform: rotate(180deg);
}

.rs-ajax-loading .site-content {
    opacity: 0.72;
    transition: opacity 0.2s ease;
}

@media (max-width: 1320px) {
    .site-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .home-primary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .comments-area .comment-form {
        grid-template-columns: 1fr;
    }

    .sticky-player {
        left: 0.75rem;
        right: 0.75rem;
        width: auto;
        bottom: 0.75rem;
    }

    .sticky-player__body {
        grid-template-columns: 1fr;
    }

    .sticky-player__controls {
        width: 100%;
        min-width: 0;
    }

    .feature-story__content,
    .podcast-section,
    .radio-card,
    .single-entry,
    .comments-area {
        padding: 1.15rem;
    }
}

@media (max-width: 640px) {
    .home-primary-grid,
    .hero-section,
    .columns-news {
        gap: 1.25rem;
    }

    .post-list-item,
    .post-list-item--with-excerpt {
        grid-template-columns: 74px minmax(0, 1fr);
    }

    .post-list-item--with-excerpt .post-list-item__media,
    .post-list-item--with-excerpt .post-list-item__media img,
    .post-list-item--with-excerpt .post-list-item__media .post-media__placeholder {
        height: 74px;
    }

    .reader-controls {
        width: 100%;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }
}

/* === Radio Svrljig 1.0.2 pro update === */
.site-header {
    background: var(--rs-header-bg);
}

.desktop-nav a {
    color: var(--rs-menu-text);
    font-weight: var(--rs-header-weight);
}

.desktop-nav .menu > li > a:hover,
.desktop-nav .menu > li:hover > a,
.desktop-nav .current-menu-item > a,
.desktop-nav .current-menu-ancestor > a {
    color: #fff;
    background: var(--rs-menu-hover-bg);
    border-radius: 999px;
}

.button-report {
    background: var(--rs-report-bg);
    color: var(--rs-report-text);
}

.button-report:hover {
    background: var(--rs-accent);
    color: #fff;
}

.mobile-panel__footer {
    padding: 1rem 1.25rem 1.5rem;
}

.mobile-panel__footer .button-report {
    display: inline-flex;
    width: 100%;
    justify-content: center;
}

.listen-strip-wrap {
    padding: 0.85rem 0 0;
}

.listen-strip {
    width: 100%;
    border: 0;
    border-radius: 999px;
    background: var(--rs-listen-bg);
    color: var(--rs-listen-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 0.9rem 1.25rem;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--rs-shadow-sm);
    position: relative;
    overflow: hidden;
}

.listen-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at right center, rgba(255,255,255,0.22), transparent 38%);
    pointer-events: none;
}

.listen-strip__icon,
.listen-strip__text {
    position: relative;
    z-index: 1;
}

.listen-strip__icon .icon {
    width: 1.2rem;
    height: 1.2rem;
}

.hero-slide__topline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.hero-slide__eyebrow,
.post-card__eyebrow,
.post-list-item__eyebrow,
.feature-story__eyebrow,
.single-entry__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--rs-accent);
}

.post-card,
.post-list-item,
.columns-news__column,
.home-primary-grid__main,
.post-grid,
.post-grid > * {
    min-width: 0;
}

.post-card__title,
.post-card__excerpt,
.post-list-item__title,
.post-list-item__excerpt,
.single-entry__title,
.single-entry__content,
.column-featured__content p,
.column-featured__content h3 {
    overflow-wrap: anywhere;
}

.post-card__media,
.post-list-item__media,
.column-featured__image,
.single-entry__media {
    position: relative;
}

.media-badge {
    position: absolute;
    right: 0.85rem;
    top: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(17,17,17,0.76);
    color: #fff;
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    z-index: 2;
    backdrop-filter: blur(6px);
}

.media-badge .icon {
    width: 0.9rem;
    height: 0.9rem;
}

.single-entry__categories {
    gap: 0.55rem;
    align-items: center;
}

.single-entry__category,
.single-entry__format-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
}

.single-entry__format-badge {
    background: rgba(211,47,47,0.1);
    color: var(--rs-accent);
    font-size: 0.78rem;
    font-weight: 700;
}

.share-tools {
    position: sticky;
    top: 6rem;
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.25rem 0 0;
    padding: 1rem;
    border: 1px solid var(--rs-border);
    border-radius: var(--rs-radius);
    background: #fff;
}

.share-tools__label {
    width: 100%;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--rs-muted);
    font-weight: 700;
}

.share-tools__button {
    border: 1px solid var(--rs-border);
    border-radius: 999px;
    background: #fff;
    color: var(--rs-text);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.share-tools__button:hover,
.share-tools__button.is-copied {
    border-color: var(--rs-accent);
    color: var(--rs-accent);
}

.inline-related-box {
    margin: 1.5rem 0;
    padding: 1rem 1.1rem;
    border-radius: var(--rs-radius);
    background: linear-gradient(180deg, rgba(211,47,47,0.08), rgba(211,47,47,0.03));
    border: 1px solid rgba(211,47,47,0.14);
}

.inline-related-box__title {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--rs-accent);
}

.inline-related-box__list {
    display: grid;
    gap: 0.6rem;
}

.inline-related-box__item {
    font-weight: 700;
}

.inline-related-box__item:hover {
    color: var(--rs-accent);
}

.live-updates-box {
    margin: 1.5rem 0;
    border-radius: var(--rs-radius);
    border: 1px solid var(--rs-border);
    background: #fff;
    overflow: hidden;
}

.live-updates-box__header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.15rem;
    background: var(--rs-accent);
    color: #fff;
}

.live-updates-box__header h2 {
    margin: 0;
    font-size: 1rem;
}

.live-updates-box__timeline {
    display: grid;
    gap: 1rem;
    padding: 1rem 1.15rem 1.25rem;
}

.live-update-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1rem;
    align-items: start;
}

.live-update-item__time {
    font-weight: 800;
    color: var(--rs-accent);
}

.live-update-item__body {
    border-left: 2px solid rgba(211,47,47,0.2);
    padding-left: 1rem;
}

.live-update-item__body p {
    margin: 0 0 0.75rem;
}

.live-update-item__body img {
    max-width: 100%;
    border-radius: var(--rs-radius);
}

.column-featured__meta {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(17,17,17,0.72);
    color: #fff;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
}

.banner-rotator {
    position: relative;
    margin-top: 1.75rem;
    border-radius: var(--rs-radius);
    overflow: hidden;
    min-height: 130px;
    box-shadow: var(--rs-shadow-sm);
}

.banner-rotator__track {
    position: relative;
    min-height: inherit;
}

.banner-rotator__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.banner-rotator__slide.is-active {
    opacity: 1;
    position: relative;
}

.banner-rotator__slide img {
    width: 100%;
    min-height: 130px;
    object-fit: cover;
}

.widget-services__header,
.widget-comments__header,
.widget-phones__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.widget-services__edit {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--rs-accent);
    font-weight: 700;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.service-box {
    border: 1px solid var(--rs-border);
    border-radius: var(--rs-radius);
    padding: 0.9rem;
    background: #fff;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    text-align: left;
    cursor: pointer;
    width: 100%;
}

.service-box:hover {
    border-color: rgba(211,47,47,0.35);
    transform: translateY(-2px);
}

.service-box__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(211,47,47,0.08);
    color: var(--rs-accent);
    flex-shrink: 0;
}

.service-box__text {
    display: grid;
    gap: 0.25rem;
}

.service-box__text strong {
    font-size: 0.92rem;
}

.service-box__text small {
    color: var(--rs-muted);
    font-size: 0.76rem;
}

.photo-day {
    border: 1px solid var(--rs-border);
    border-radius: var(--rs-radius);
    overflow: hidden;
    padding: 0;
    background: #fff;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.photo-day__image img,
.photo-day__image .post-media__placeholder {
    width: 100%;
    display: block;
}

.photo-day__content {
    display: grid;
    gap: 0.3rem;
    padding: 0.9rem 1rem 1rem;
}

.photo-day__content span {
    color: var(--rs-muted);
    font-size: 0.84rem;
}

.switcher-arrows {
    display: inline-flex;
    gap: 0.35rem;
}

.switcher-arrow {
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--rs-border);
    border-radius: 999px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.switcher-arrow:hover {
    border-color: var(--rs-accent);
    color: var(--rs-accent);
}

.switcher-track > * {
    display: none;
}

.switcher-track > .is-active {
    display: flex;
}

.comment-mini,
.phone-item {
    align-items: center;
    gap: 0.85rem;
}

.comment-mini__body,
.phone-item__body {
    min-width: 0;
    display: grid;
    gap: 0.2rem;
}

.comment-mini__body a,
.phone-item__body a {
    font-size: 0.84rem;
    font-weight: 700;
}

.comment-mini__body small,
.phone-item__body small {
    color: var(--rs-muted);
    overflow-wrap: anywhere;
}

.phone-item__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(211,47,47,0.08);
    color: var(--rs-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.report-panel,
.modal-card {
    position: fixed;
    inset: 0;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.report-panel.is-open,
.modal-card.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.report-panel__overlay,
.modal-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(17,17,17,0.5);
    backdrop-filter: blur(4px);
}

.report-panel__sheet {
    position: absolute;
    right: 0;
    top: 0;
    width: min(100%, 520px);
    height: 100%;
    background: #fff;
    padding: 1.5rem 1.35rem 2rem;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.report-panel.is-open .report-panel__sheet {
    transform: translateX(0);
}

.report-panel__close,
.modal-card__close {
    border: 0;
    background: rgba(17,17,17,0.06);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: auto;
}

.report-form {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.report-form label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 700;
}

.report-form input[type="text"],
.report-form input[type="file"],
.report-form textarea,
.report-form select {
    width: 100%;
    border: 1px solid var(--rs-border);
    border-radius: var(--rs-radius);
    padding: 0.8rem 0.95rem;
    background: #fff;
}

.button-report-submit {
    background: var(--rs-accent);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 0.9rem 1.2rem;
    font-weight: 800;
    cursor: pointer;
}

.report-panel__message {
    margin-top: 1rem;
    padding: 0.8rem 0.95rem;
    border-radius: var(--rs-radius);
    background: rgba(211,47,47,0.08);
    color: var(--rs-accent);
    font-weight: 700;
}

.modal-card__dialog {
    position: relative;
    width: min(92vw, 680px);
    margin: min(9vh, 4rem) auto 0;
    background: #fff;
    border-radius: calc(var(--rs-radius) + 4px);
    padding: 1.25rem 1.25rem 1.5rem;
    max-height: 82vh;
    overflow: auto;
}

.modal-card__image-wrap {
    margin: 0.8rem 0 1rem;
}

.modal-card__image {
    width: 100%;
    border-radius: var(--rs-radius);
}

.theme-fab-edit {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 1050;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #111;
    color: #fff;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    box-shadow: var(--rs-shadow-md);
    font-weight: 700;
}

.theme-fab-edit:hover {
    background: var(--rs-accent);
    color: #fff;
}

.radio-problem-gallery-admin {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.radio-problem-gallery-admin__item img {
    border-radius: 0.7rem;
}

.radio-live-repeater__row {
    margin-bottom: 1rem;
    padding: 0.85rem;
    border: 1px dashed var(--rs-border);
    border-radius: 0.7rem;
    background: #fff;
}

.nav-links .nav-previous a,
.nav-links .nav-next a {
    display: block;
    background: var(--rs-accent);
    color: #fff;
    padding: 1rem 1.1rem;
    border-radius: var(--rs-radius);
}

.nav-links .nav-subtitle {
    display: block;
    color: rgba(255,255,255,0.9);
}

.nav-links .nav-title {
    color: #fff;
    font-weight: 800;
}

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

    .live-update-item {
        grid-template-columns: 1fr;
    }

    .share-tools {
        position: static;
    }
}

@media (max-width: 768px) {
    .listen-strip {
        border-radius: 1rem;
        padding: 0.85rem 1rem;
        font-size: 0.94rem;
    }

    .post-card__content {
        padding: 1rem;
    }

    .post-card__title,
    .single-entry__title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .report-panel__sheet {
        width: 100%;
    }

    .theme-fab-edit {
        left: 0.75rem;
        right: 0.75rem;
        justify-content: center;
    }
}

body,
button,
input,
select,
textarea {
    font-family: 'Inter', system-ui, sans-serif;
}

.site-title,
h1,
h2,
h3,
h4,
h5,
h6,
.desktop-nav a,
.single-entry__title,
.archive-title,
.widget-title,
.post-card__title,
.post-list-item__title,
.nav-title {
    font-family: 'Exo 2', sans-serif;
}

.button-search {
    background: var(--rs-dark);
    color: #fff;
    flex-shrink: 0;
}

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

.button-search .icon {
    width: 1.28rem;
    height: 1.28rem;
    stroke-width: 2.15;
}

.search-drawer {
    display: block;
    max-height: 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
    border-bottom: 0 solid rgba(226, 232, 240, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.24s ease, opacity 0.2s ease, border-color 0.24s ease, visibility 0.2s ease;
}

.search-drawer[hidden] {
    display: none !important;
}

.search-drawer.is-open {
    max-height: 32rem;
    border-bottom-width: 1px;
    opacity: 1;
    visibility: visible;
}

.search-drawer__inner {
    padding-block: 1rem 1.2rem;
}

.search-drawer__field-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-drawer__field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border-radius: 1.2rem;
    background: #fff;
    border: 1px solid #d7deea;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
}

.search-drawer__field input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 1.05rem;
    font-weight: 600;
    color: #13233d;
}

.search-drawer__close {
    width: 2.85rem;
    height: 2.85rem;
    padding: 0;
    border: 1px solid #d7deea;
    background: #fff;
    color: #13233d;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.search-drawer__results {
    margin-top: 0.9rem;
}

.live-search-results {
    display: grid;
    gap: 0.8rem;
}

.live-search-results__item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.8rem;
    border-radius: 1.1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
}

.live-search-results__item:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.live-search-results__thumb img,
.live-search-results__thumb .post-media__placeholder {
    width: 102px;
    height: 72px;
    border-radius: 0.9rem;
    object-fit: cover;
}

.live-search-results__content {
    display: grid;
    gap: 0.2rem;
}

.live-search-results__content strong {
    color: #13233d;
    line-height: 1.3;
}

.live-search-results__content span,
.live-search-results--empty,
.live-search-results--loading {
    color: #64748b;
    font-size: 0.9rem;
}

.live-search-results--empty,
.live-search-results--loading {
    padding: 0.85rem 0.2rem;
}

.single-entry {
    padding: clamp(1rem, 1.5vw, 1.35rem);
    border-radius: 1.5rem;
}

.single-entry__header {
    padding-bottom: 0.35rem;
}

.single-entry__title {
    margin: 0.55rem 0 0.75rem;
    font-size: clamp(2rem, 4.2vw, 3.65rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-wrap: balance;
    max-width: 14ch;
}

.single-entry__meta {
    padding: 0.9rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 1.15rem;
    background: #fff;
    color: #64748b;
}

.single-entry__tools {
    margin-top: 1rem;
}

.single-entry__media {
    margin-top: 1rem;
    border-radius: 1.35rem;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.entry-content {
    margin-top: 1.45rem;
    color: #334155;
}

.entry-content > * + * {
    margin-top: 1.15em;
}

.entry-content p,
.entry-content li {
    font-size: clamp(1.02rem, 0.18vw + 1rem, 1.1rem);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: #13233d;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.entry-content a {
    color: var(--rs-accent);
    text-decoration: underline;
    text-underline-offset: 0.15em;
    text-decoration-thickness: 0.08em;
}

.entry-content .wp-block-gallery,
.entry-content .blocks-gallery-grid,
.entry-content .gallery {
    margin: 1.5rem 0;
}

.entry-content .wp-block-gallery img,
.entry-content .blocks-gallery-item img,
.entry-content .gallery img {
    border-radius: 1rem;
}

.entry-content .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.85rem;
}

.entry-content .gallery .gallery-item {
    margin: 0;
    width: auto !important;
}

.single-entry__footer {
    margin-top: 1.5rem;
}

.share-tools {
    position: static;
    top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1.15rem 0 0;
    padding: 1rem 0 0;
    border: 0;
    border-top: 1px solid #e2e8f0;
    border-radius: 0;
    background: transparent;
}

.share-tools__label {
    width: 100%;
    color: #475569;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.share-tools__button {
    min-height: 2.85rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid #d7deea;
    box-shadow: none;
    font-weight: 800;
}

.share-tools__button--facebook {
    color: #1877f2;
    background: rgba(24, 119, 242, 0.08);
    border-color: rgba(24, 119, 242, 0.18);
}

.share-tools__button--whatsapp {
    color: #169c4b;
    background: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.2);
}

.share-tools__button--viber {
    color: #7360f2;
    background: rgba(115, 96, 242, 0.08);
    border-color: rgba(115, 96, 242, 0.18);
}

.share-tools__button--email {
    color: #c2410c;
    background: rgba(249, 115, 22, 0.08);
    border-color: rgba(249, 115, 22, 0.18);
}

.share-tools__button--copy {
    color: #334155;
    background: #f8fafc;
    border-color: #cbd5e1;
}

.share-tools__button:hover,
.share-tools__button.is-copied {
    transform: translateY(-1px);
    filter: saturate(1.05);
}

.post-navigation {
    margin-top: 1.2rem;
}

.post-navigation .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.nav-links .nav-previous a,
.nav-links .nav-next a {
    min-height: 124px;
    padding: 1rem 1.1rem;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #fff, #f8fafc);
    border: 1px solid #dbe4ef;
    color: #13233d;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.nav-links .nav-subtitle {
    display: block;
    margin-bottom: 0.45rem;
    color: #d32f2f;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links .nav-title {
    color: #13233d;
    font-weight: 800;
}

.sticky-player {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 1rem;
    width: min(92vw, 760px);
}

.sticky-player__panel {
    border-radius: 1.4rem;
    background: linear-gradient(135deg, rgba(15,23,42,0.96), rgba(30,41,59,0.96));
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.28);
}

.sticky-player__handle {
    padding: 0.95rem 1.1rem;
}

.sticky-player__body {
    padding: 0 1.1rem 1.1rem;
}

.sticky-player__controls .radio-card__button {
    width: 3.25rem;
    height: 3.25rem;
    box-shadow: 0 14px 28px rgba(211, 47, 47, 0.24);
}

.sticky-player__controls .radio-card__volume-wrap {
    min-width: 240px;
    padding: 0.85rem 0.95rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
}

.service-carousel__viewport {
    overflow: hidden;
}

.service-grid--carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 1fr);
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
}

.service-grid--carousel::-webkit-scrollbar {
    display: none;
}

.service-grid--carousel .service-box {
    scroll-snap-align: start;
    min-height: 100%;
}

.service-box {
    min-height: 132px;
}

.service-box__text strong {
    color: #13233d;
}

.service-box__text small {
    line-height: 1.45;
}

.modal-card__description {
    color: #475569;
    line-height: 1.7;
}

.modal-card__link {
    margin-top: 1rem;
}

@media (max-width: 991px) {
    .single-entry__title {
        max-width: 100%;
        font-size: clamp(1.9rem, 7vw, 3rem);
    }

    .post-navigation .nav-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-header__actions {
        gap: 0.65rem;
    }

    .search-drawer__field-wrap {
        align-items: stretch;
        flex-direction: column;
    }

    .search-drawer__close {
        width: 100%;
        height: 2.85rem;
    }

    .live-search-results__item {
        align-items: flex-start;
    }

    .live-search-results__thumb img,
    .live-search-results__thumb .post-media__placeholder {
        width: 84px;
        height: 64px;
    }

    .sticky-player {
        width: calc(100% - 1rem);
        left: 0.5rem;
        right: 0.5rem;
        transform: none;
    }

    .sticky-player__body {
        grid-template-columns: 1fr;
    }

    .sticky-player__controls {
        width: 100%;
        min-width: 0;
        flex-direction: column;
        align-items: stretch;
    }

    .sticky-player__controls .radio-card__volume-wrap {
        min-width: 0;
    }

    .service-grid--carousel {
        grid-auto-columns: minmax(88%, 1fr);
    }

    .share-tools__button {
        width: 100%;
        justify-content: center;
    }
}
.home-utility-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 1.5rem;
    margin-top: 1.75rem;
}

.home-utility-grid .widget {
    height: 100%;
}

@media (max-width: 960px) {
    .home-utility-grid {
        grid-template-columns: 1fr;
    }
}
