:root {
    --color-bg: #fbfcfd;
    --color-surface: #ffffff;
    --color-bg-muted: #eef3f6;
    --color-text: #17202a;
    --color-text-muted: #596674;
    --color-primary: #0f5e73;
    --color-primary-dark: #0a4353;
    --color-accent: #2f8f5b;
    --color-border: #d8e1e7;
    --shadow-soft: 0 18px 50px rgba(15, 32, 42, 0.10);
    --font-body: "Sora", Arial, Helvetica, sans-serif;
    --font-display: "Sora", Arial, Helvetica, sans-serif;
    --container-width: 1160px;
}

* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    display: flex;
    flex-direction: column;
}

body > main {
    flex: 1 0 auto;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    letter-spacing: 0;
}

.container {
    width: min(100% - 32px, var(--container-width));
    margin: 0 auto;
}

.site-header {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(15, 94, 115, 0.14);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 28px rgba(15, 32, 42, 0.045);
    backdrop-filter: blur(14px);
}

.header-inner {
    position: relative;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.site-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.2vw, 1.95rem);
    font-weight: 700;
    color: var(--color-primary-dark);
    text-decoration: none;
    letter-spacing: 0;
}

.site-logo__name {
    white-space: nowrap;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.main-nav {
    position: absolute;
    left: 0;
}

.main-nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: background 160ms ease, color 160ms ease;
}

.main-nav a:hover {
    color: var(--color-primary-dark);
    background: rgba(47, 143, 91, 0.09);
}

.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
    color: var(--color-primary-dark);
    background: rgba(15, 94, 115, 0.08);
}

.language-switcher {
    position: absolute;
    right: 0;
}

.language-switcher ul {
    display: flex;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.language-switcher a,
.language-switcher__unavailable {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 36px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--color-text-muted);
    text-decoration: none;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.language-switcher a:hover,
.language-switcher .current-lang a {
    border-color: rgba(15, 94, 115, 0.18);
    background: rgba(15, 94, 115, 0.08);
}

.language-switcher a:hover {
    box-shadow: 0 6px 14px rgba(15, 32, 42, 0.09);
    transform: translateY(-1px);
}

.language-switcher a:focus-visible {
    outline: 3px solid rgba(15, 94, 115, 0.28);
    outline-offset: 2px;
}

.language-switcher .current-lang a {
    box-shadow: inset 0 0 0 1px rgba(15, 94, 115, 0.08);
}

.language-switcher__flag {
    display: block;
    width: 26px;
    height: 17px;
    border: 1px solid rgba(15, 32, 42, 0.12);
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(15, 32, 42, 0.12);
    object-fit: cover;
}

.language-switcher__unavailable {
    cursor: not-allowed;
    opacity: 0.35;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: max(64px, 4.4vw) 0 max(56px, 3.8vw);
    background:
        radial-gradient(ellipse at 12% 52%, rgba(15, 94, 115, 0.22), transparent 34%),
        radial-gradient(ellipse at 74% 18%, rgba(47, 143, 91, 0.16), transparent 30%),
        radial-gradient(ellipse at 90% 82%, rgba(218, 190, 88, 0.08), transparent 28%),
        radial-gradient(ellipse at 42% 92%, rgba(10, 67, 83, 0.08), transparent 42%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 251, 252, 0.74) 44%, rgba(249, 248, 242, 0.88) 100%),
        linear-gradient(120deg, #eff8fa 0%, #fbfcfd 52%, #f1f8f1 100%);
    border-bottom: 1px solid var(--color-border);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.38'/%3E%3C/svg%3E");
    background-size: 150px 150px;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.58) 46%, rgba(255, 255, 255, 0.14) 72%, transparent 100%),
        repeating-linear-gradient(112deg, rgba(15, 94, 115, 0.045) 0 1px, transparent 1px 18px);
    opacity: 0.34;
    pointer-events: none;
    z-index: 0;
}

.hero-map-decor {
    position: absolute;
    top: 50%;
    left: 1.5vw;
    width: 28vw;
    color: var(--color-primary-dark);
    opacity: 0.68;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.55));
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 1;
}

.hero-map-decor svg {
    display: block;
    width: 100%;
    height: auto;
}

.hero-inner {
    position: relative;
    width: 36vw;
    max-width: none;
    z-index: 2;
}

.hero-postcards {
    position: absolute;
    top: 50%;
    right: 7.5vw;
    width: 25vw;
    height: auto;
    aspect-ratio: 32 / 27;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 1;
}

.hero-postcard {
    position: absolute;
    display: flex;
    flex-direction: column;
    padding: 1.55% 1.55% 2.2%;
    border: 1px solid rgba(15, 94, 115, 0.14);
    border-radius: 0.32vw;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 44px rgba(15, 32, 42, 0.12);
    backdrop-filter: blur(10px);
}

.hero-postcard__visual {
    position: relative;
    flex: 1;
    overflow: hidden;
    min-height: 0;
    border-radius: 0.24vw;
    background: var(--color-bg-muted);
}

.hero-postcard__visual::before,
.hero-postcard__visual::after {
    content: "";
    position: absolute;
    inset: 0;
}

.hero-postcard__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-postcard__caption {
    display: block;
    margin-top: 0.32vw;
    color: var(--color-text-muted);
    font-size: clamp(0.64rem, 0.44vw, 0.72rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.hero-postcard--lab {
    right: 29.375%;
    bottom: 20%;
    z-index: 3;
    width: 39.375%;
    height: 54.075%;
    transform: rotate(-1deg);
}

.hero-postcard--lab .hero-postcard__visual {
    background: #e8f0ed;
}

.hero-postcard--lab .hero-postcard__visual::before {
    display: none;
}

.hero-postcard--lab .hero-postcard__visual::after {
    display: none;
}

.hero-postcard--nature {
    top: 0;
    right: 58.75%;
    z-index: 2;
    width: 35.625%;
    height: 45.55%;
    transform: rotate(-5deg);
}

.hero-postcard--nature .hero-postcard__visual {
    background: #e8efe5;
}

.hero-postcard--nature .hero-postcard__visual::before {
    display: none;
}

.hero-postcard--architecture {
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 35.625%;
    height: 44.815%;
    transform: rotate(6deg);
}

.hero-postcard--architecture .hero-postcard__visual {
    background: #edf1f1;
}

.hero-postcard--architecture .hero-postcard__visual::before {
    display: none;
}

.hero-postcard--architecture .hero-postcard__visual::after {
    display: none;
}

.hero-copy {
    width: 30vw;
    max-width: none;
}

.hero h1 {
    font-size: clamp(2.4rem, 3.25vw, 5.15rem);
    line-height: 1.02;
    margin: 0 0 24px;
}

.hero p {
    max-width: none;
    font-size: clamp(0.95rem, 0.72vw, 1.12rem);
    color: var(--color-text-muted);
    margin: 0 0 32px;
}

.eyebrow {
    margin: 0 0 14px !important;
    color: var(--color-primary);
    font-size: clamp(0.68rem, 0.48vw, 0.76rem) !important;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section {
    padding: 88px 0;
}

.section-muted {
    background: #f3f7f8;
    border-block: 1px solid var(--color-border);
}

.home-featured-section {
    position: relative;
    overflow: hidden;
}

.home-featured-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.42'/%3E%3C/svg%3E");
    background-size: 140px 140px;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.home-featured-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.home-featured-section > .container {
    position: relative;
    z-index: 2;
}

.home-featured-news {
    border-top: 1px solid var(--color-border);
    background:
        radial-gradient(ellipse at 88% 22%, rgba(218, 190, 88, 0.07), transparent 38%),
        linear-gradient(180deg, #fffefa 0%, #fbfaf5 100%);
}

.home-featured-news::after {
    background:
        repeating-linear-gradient(68deg, rgba(174, 142, 37, 0.022) 0 1px, transparent 1px 26px);
    opacity: 0.22;
}

.home-featured-projects {
    background:
        radial-gradient(ellipse at 10% 18%, rgba(15, 94, 115, 0.055), transparent 38%),
        linear-gradient(180deg, #fcfdfe 0%, #f8fafb 100%);
}

.home-featured-projects::after {
    background:
        repeating-linear-gradient(115deg, rgba(15, 94, 115, 0.025) 0 1px, transparent 1px 24px);
    opacity: 0.22;
}

.home-featured-exhibitions {
    border-bottom: 1px solid var(--color-border);
    background:
        radial-gradient(ellipse at 12% 78%, rgba(218, 190, 88, 0.055), transparent 40%),
        linear-gradient(180deg, #fffefb 0%, #fafaf8 100%);
}

.home-featured-exhibitions::after {
    background:
        repeating-linear-gradient(112deg, rgba(218, 190, 88, 0.02) 0 1px, transparent 1px 28px);
    opacity: 0.2;
}

.home-featured-section .content-card {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 36px rgba(15, 32, 42, 0.065);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 64px;
    align-items: start;
}

.split-section h2,
.section-header h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 2.85rem);
    line-height: 1.1;
}

.section-copy p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 1.02rem;
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 38px;
    padding: 10px 2px 16px;
    perspective: 1100px;
}

.stat-strip div {
    --note-offset: 0px;
    --note-rotation: -2.4deg;
    --tape-rotation: 2deg;
    --note-paper: #fff3bb;
    --note-fold: rgba(210, 177, 58, 0.25);
    position: relative;
    min-height: 136px;
    padding: 30px 22px 22px;
    border: 1px solid rgba(91, 79, 34, 0.12);
    border-radius: 10px 10px 12px 10px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.62), transparent 44%),
        repeating-linear-gradient(0deg, rgba(104, 86, 22, 0.022) 0 1px, transparent 1px 5px),
        var(--note-paper);
    box-shadow:
        0 18px 34px rgba(15, 32, 42, 0.10),
        0 3px 7px rgba(15, 32, 42, 0.06);
    transform: translateY(var(--note-offset)) rotate(var(--note-rotation));
    transform-origin: 50% 8%;
    transition:
        transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 280ms ease,
        border-color 280ms ease;
}

.stat-strip div::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: -9px;
    left: 50%;
    width: 62px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid rgba(117, 105, 58, 0.09);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(235, 230, 199, 0.58));
    box-shadow: 0 3px 9px rgba(15, 32, 42, 0.08);
    transform: translateX(-50%) rotate(var(--tape-rotation));
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-strip div::after {
    content: "";
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 27px;
    height: 27px;
    border-radius: 0 0 11px;
    background: linear-gradient(135deg, transparent 49%, var(--note-fold) 50%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

.stat-strip div:nth-child(2) {
    --note-offset: 7px;
    --note-rotation: 1.7deg;
    --tape-rotation: -3deg;
    --note-paper: #fff0c6;
    --note-fold: rgba(207, 154, 69, 0.22);
}

.stat-strip div:nth-child(3) {
    --note-offset: -3px;
    --note-rotation: -0.9deg;
    --tape-rotation: 1deg;
    --note-paper: #eaf4d2;
    --note-fold: rgba(104, 148, 76, 0.20);
}

@media (hover: hover) and (pointer: fine) {
    .stat-strip div:hover {
        z-index: 3;
        border-color: rgba(15, 94, 115, 0.19);
        box-shadow:
            0 25px 48px rgba(15, 32, 42, 0.14),
            0 5px 10px rgba(15, 32, 42, 0.07);
        transform: translateY(calc(var(--note-offset) - 10px)) rotate(0deg) scale(1.02);
    }

    .stat-strip div:hover::before {
        transform: translateX(-50%) translateY(-1px) rotate(0deg);
    }
}

.stat-strip strong,
.stat-strip span {
    display: block;
}

.stat-strip strong {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2vw, 1.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.stat-strip span {
    margin-top: 11px;
    color: #4d5c61;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.45;
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.text-link {
    color: var(--color-primary);
    font-weight: 800;
    text-decoration: none;
}

.text-link:hover {
    color: var(--color-primary-dark);
}

.archive-header {
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
}

.archive-header h1 {
    margin: 0 0 12px;
    font-size: clamp(1.7rem, 2.4vw, 2.2rem);
    line-height: 1.16;
}

.archive-header p {
    margin: 0;
    font-size: 1.04rem;
    color: #4b5563;
}

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

.featured-carousel {
    --carousel-visible-cards: 3;
    --carousel-card-count: 3;
    --carousel-card-width: calc(33.333333% - 16px);
    position: relative;
    padding-inline: 54px;
}

.home-featured-section .section-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: end;
    padding-inline: 54px;
}

.home-featured-section .section-header > div {
    grid-column: 2;
    text-align: center;
}

.home-featured-section .section-header > .text-link {
    grid-column: 3;
    justify-self: end;
}

.home-featured-section .section-header h2 {
    font-size: clamp(1.5rem, 2vw, 2.1rem);
    line-height: 1.18;
}

.featured-carousel__controls {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.featured-carousel__button {
    position: absolute;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 56px;
    border: 0;
    background: transparent;
    color: var(--color-primary-dark);
    box-shadow: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto;
    transform: translateY(-50%);
    transition: transform 180ms ease, color 180ms ease, opacity 180ms ease;
}

.featured-carousel__button--previous {
    left: 6px;
}

.featured-carousel__button--next {
    right: 6px;
}

.featured-carousel__button:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.12);
    color: var(--color-primary);
}

.featured-carousel__button:focus-visible,
.featured-carousel__track:focus-visible {
    outline: 3px solid rgba(47, 143, 91, 0.3);
    outline-offset: 3px;
}

.featured-carousel__button:disabled {
    opacity: 0.2;
    cursor: default;
    pointer-events: none;
}

.featured-carousel__track {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: var(--carousel-card-width);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 4px 2px 0;
    scroll-behavior: auto;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.featured-carousel__track.is-animating {
    scroll-snap-type: none;
}

.featured-carousel__track::-webkit-scrollbar {
    display: none;
}

.featured-carousel__track .content-card,
.featured-carousel__track .content-card:hover {
    scroll-snap-align: start;
    box-shadow: none;
}

.featured-carousel.is-static .featured-carousel__controls {
    display: none;
}

.featured-carousel.is-static .featured-carousel__track {
    grid-template-columns: repeat(var(--carousel-card-count), var(--carousel-card-width));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    justify-content: center;
    overflow: visible;
    padding: 0;
}

@media (min-width: 1600px) {
    .featured-carousel {
        --carousel-visible-cards: 4;
        --carousel-card-width: calc(25% - 18px);
        width: min(calc(100vw - 96px), 1640px);
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .home-featured-section .section-header {
        width: min(calc(100vw - 96px), 1640px);
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .featured-carousel__track {
        grid-auto-columns: var(--carousel-card-width);
    }
}

@media (min-width: 2300px) {
    .featured-carousel {
        --carousel-visible-cards: 5;
        --carousel-card-width: calc(20% - 19.2px);
        width: min(calc(100vw - 128px), 2000px);
    }

    .home-featured-section .section-header {
        width: min(calc(100vw - 128px), 2000px);
    }

    .featured-carousel__track {
        grid-auto-columns: var(--carousel-card-width);
    }
}

.archive-card-grid {
    margin-top: 0;
}

.content-card {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-surface);
    box-shadow: 0 12px 32px rgba(15, 32, 42, 0.06);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.content-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.content-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--color-bg-muted);
}

.content-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-card-body {
    padding: 22px;
}

.content-card h3 {
    margin: 0 0 12px;
    font-size: 1.18rem;
    line-height: 1.25;
}

.content-card h3 a {
    color: var(--color-text);
    text-decoration: none;
}

.content-card h3 a:hover {
    color: var(--color-primary);
}

.content-card p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.93rem;
}

.content-card .content-card-type {
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
}

.tag-list li {
    padding: 3px 8px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--color-primary);
    background: var(--color-bg-muted);
}

.tag-list--linked a {
    display: block;
    margin: -3px -8px;
    padding: 3px 8px;
    border-radius: inherit;
    color: inherit;
    text-decoration: none;
    transition:
        color 160ms ease,
        background-color 160ms ease;
}

.tag-list--linked a:hover,
.tag-list--linked a:focus-visible {
    color: #fff;
    background: var(--color-primary);
}

.tag-list--linked a:focus-visible {
    outline: 3px solid rgba(15, 94, 115, 0.25);
    outline-offset: 2px;
}

.single-header .tag-list {
    margin: 20px 0 0;
}

.archive-description p:last-child {
    margin-bottom: 0;
}

.content-card-meta {
    margin-bottom: 10px !important;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--color-primary);
}

.pagination {
    margin-top: 36px;
}

.pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    min-width: 38px;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text);
    text-decoration: none;
    background: #fff;
}

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

.single-content {
    max-width: 860px;
    margin: 0 auto;
}

.single-header {
    margin-bottom: 32px;
}

.single-header h1 {
    margin: 0 0 16px;
    font-size: clamp(1.75rem, 2.6vw, 2.45rem);
    line-height: 1.16;
}

.single-summary {
    max-width: 720px;
    margin: 0;
    font-size: 1.08rem;
    color: #4b5563;
}

.single-featured-image {
    margin: 0 0 40px;
}

.single-featured-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.related-projects {
    margin-top: 60px;
    padding-top: 36px;
    border-top: 1px solid var(--color-border);
}

.related-projects-grid {
    gap: 18px;
    margin-top: 22px;
}

.related-projects .section-header h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}

.related-projects .content-card-image {
    aspect-ratio: 16 / 9;
}

.related-projects .content-card-body {
    padding: 16px;
}

.related-projects .content-card h3 {
    margin-bottom: 10px;
    font-size: 1.02rem;
}

.related-projects .content-card p {
    font-size: 0.86rem;
}

.related-projects .tag-list {
    gap: 6px;
    margin-bottom: 10px;
}

.related-projects .tag-list li {
    font-size: 0.7rem;
}

.entry-content {
    font-size: 1rem;
    line-height: 1.75;
}

.entry-content h2 {
    margin: 1.8em 0 0.65em;
    font-size: 1.8rem;
    line-height: 1.22;
}

.entry-content h3 {
    margin: 1.6em 0 0.6em;
    font-size: 1.3rem;
    line-height: 1.3;
}

.entry-content img,
.gallery-content img {
    max-width: 100%;
    height: auto;
}

.entry-content .wp-block-image:not(.wp-block-gallery .wp-block-image),
.entry-content > img,
.single-featured-image {
    max-width: 680px;
    margin-inline: auto;
}

.entry-content .wp-block-image:not(.wp-block-gallery .wp-block-image) {
    margin-block: clamp(34px, 5vw, 52px) !important;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.entry-content .wp-block-image:not(.wp-block-gallery .wp-block-image) > a {
    display: block;
}

.entry-content .wp-block-image:not(.wp-block-gallery .wp-block-image) > a,
.entry-content .wp-block-image:not(.wp-block-gallery .wp-block-image) > img {
    overflow: hidden;
    border-radius: 11px;
    box-shadow: 0 10px 28px rgba(15, 32, 42, 0.09);
}

.entry-content .wp-block-image.rcr-image-no-shadow:not(.wp-block-gallery .wp-block-image) > a,
.entry-content .wp-block-image.rcr-image-no-shadow:not(.wp-block-gallery .wp-block-image) > img {
    box-shadow: none;
}

.entry-content .wp-block-image:not(.wp-block-gallery .wp-block-image) img {
    display: block;
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.entry-content .wp-block-image:not(.wp-block-gallery .wp-block-image):hover img {
    transform: scale(1.012);
}

.entry-content .wp-block-image.rcr-image-no-zoom:not(.wp-block-gallery .wp-block-image):hover img {
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .entry-content .wp-block-image:not(.wp-block-gallery .wp-block-image) img {
        transition: none;
    }

    .entry-content .wp-block-image:not(.wp-block-gallery .wp-block-image):hover img {
        transform: none;
    }
}

.entry-content > img {
    display: block;
}

.entry-content .wp-block-image:not(.wp-block-gallery .wp-block-image) figcaption,
.entry-content .wp-block-video figcaption,
.entry-content .wp-block-embed figcaption,
.rcr-gallery-caption {
    margin: 11px 3px 2px;
    padding-left: 10px;
    border-left: 2px solid rgba(15, 94, 115, 0.34);
    color: #5f6b73;
    font-size: 0.82rem;
    line-height: 1.5;
}

.entry-content .wp-block-embed.is-type-video,
.entry-content .wp-block-embed-youtube,
.entry-content .wp-block-embed-vimeo,
.entry-content .wp-block-video,
.entry-content .wp-video {
    width: min(100%, 680px) !important;
    max-width: 680px !important;
    margin: clamp(34px, 5vw, 52px) auto !important;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.entry-content .wp-block-embed.is-type-video .wp-block-embed__wrapper,
.entry-content .wp-block-embed-youtube .wp-block-embed__wrapper,
.entry-content .wp-block-embed-vimeo .wp-block-embed__wrapper,
.entry-content .wp-block-video video,
.entry-content .wp-video .mejs-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 11px;
    background: #000;
    box-shadow: 0 10px 28px rgba(15, 32, 42, 0.11);
}

.entry-content .wp-block-embed.is-type-video iframe,
.entry-content .wp-block-embed-youtube iframe,
.entry-content .wp-block-embed-vimeo iframe,
.entry-content iframe[src*="youtube.com"],
.entry-content iframe[src*="youtube-nocookie.com"],
.entry-content iframe[src*="youtu.be"],
.entry-content iframe[src*="vimeo.com"] {
    display: block;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    border: 0;
    aspect-ratio: 16 / 9;
}

.entry-content .wp-block-embed.is-type-video .wp-block-embed__wrapper > iframe,
.entry-content .wp-block-embed-youtube .wp-block-embed__wrapper > iframe,
.entry-content .wp-block-embed-vimeo .wp-block-embed__wrapper > iframe {
    position: absolute;
    inset: 0;
    height: 100% !important;
}

.entry-content .wp-block-video video,
.entry-content .wp-video video,
.entry-content .wp-video .mejs-container {
    display: block;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
}

.entry-content .wp-block-video video,
.entry-content .wp-video video {
    object-fit: contain;
    aspect-ratio: 16 / 9;
}

.activity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    color: #4b5563;
}

.activity-meta li {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-weight: 700;
}

.activity-meta li:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 14px;
    margin-left: 8px;
    background: var(--color-border);
}

.gallery-section {
    width: min(100%, 760px);
    margin: 40px auto 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.gallery-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
}

.gallery-content > * {
    margin: 0;
}

.rcr-gallery-viewer {
    grid-column: 1 / -1;
    min-width: 0;
}

.gallery-content > .gallery,
.gallery-content > .wp-block-gallery,
.gallery-content > .blocks-gallery-grid {
    grid-column: 1 / -1;
}

.gallery-content .gallery,
.entry-content .gallery,
.gallery-content .wp-block-gallery,
.entry-content .wp-block-gallery,
.single-content .entry-content figure.wp-block-gallery.has-nested-images,
.gallery-content .blocks-gallery-grid,
.entry-content .blocks-gallery-grid,
.gallery-content .rcr-normalized-gallery,
.entry-content .rcr-normalized-gallery {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 !important;
}

.entry-content .gallery,
.entry-content .wp-block-gallery,
.entry-content .blocks-gallery-grid,
.entry-content .rcr-normalized-gallery {
    width: min(100%, 760px);
    margin: clamp(34px, 5vw, 52px) auto !important;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.gallery-content .gallery-item,
.entry-content .gallery-item,
.gallery-content .wp-block-gallery.has-nested-images > figure.wp-block-image,
.entry-content .wp-block-gallery.has-nested-images > figure.wp-block-image,
.single-content .entry-content figure.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image),
.gallery-content .wp-block-gallery > figure.wp-block-image,
.entry-content .wp-block-gallery > figure.wp-block-image,
.gallery-content .blocks-gallery-item,
.entry-content .blocks-gallery-item,
.gallery-content .rcr-normalized-gallery > figure,
.entry-content .rcr-normalized-gallery > figure,
.gallery-content .rcr-normalized-gallery > .gallery-item,
.entry-content .rcr-normalized-gallery > .gallery-item,
.gallery-content .rcr-gallery-direct-item,
.gallery-content > img {
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    flex-grow: 0 !important;
    flex-basis: auto !important;
    margin: 0 !important;
}

.gallery-content .gallery br,
.entry-content .gallery br,
.gallery-content .wp-block-gallery br,
.entry-content .wp-block-gallery br,
.gallery-content .blocks-gallery-grid br {
    display: none;
}

.gallery-media-item {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 11px;
    background: var(--color-bg-muted);
    box-shadow: inset 0 0 0 1px rgba(15, 32, 42, 0.06);
    aspect-ratio: 4 / 3;
    cursor: zoom-in;
}

.rcr-gallery-stage__viewport {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #f0f2f1;
    box-shadow: inset 0 0 0 1px rgba(15, 32, 42, 0.08);
    aspect-ratio: 16 / 9;
    isolation: isolate;
}

.rcr-gallery-viewer.rcr-gallery-active-no-shadow .rcr-gallery-stage__viewport {
    box-shadow: none;
}

.rcr-gallery-media--no-zoom {
    cursor: default;
}

.rcr-gallery-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 360ms ease,
        visibility 0s linear 360ms;
}

.rcr-gallery-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.rcr-gallery-slide .gallery-media-item {
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: auto;
}

.rcr-gallery-slide .gallery-media-item img,
.rcr-gallery-slide .gallery-media-item video {
    object-fit: contain;
}

.rcr-gallery-slide .gallery-media-item:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.92);
    outline-offset: -6px;
}

.rcr-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    width: clamp(40px, 6vw, 48px);
    height: clamp(52px, 8vw, 62px);
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 10px;
    background: rgba(8, 26, 33, 0.58);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 300;
    line-height: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.rcr-gallery-nav:hover {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(8, 26, 33, 0.78);
}

.rcr-gallery-nav:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.rcr-gallery-nav:active {
    transform: translateY(-50%) scale(0.94);
}

.rcr-gallery-nav--previous {
    left: clamp(8px, 2vw, 16px);
}

.rcr-gallery-nav--next {
    right: clamp(8px, 2vw, 16px);
}

.rcr-gallery-counter {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    min-width: 54px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(8, 26, 33, 0.62);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    backdrop-filter: blur(8px);
}

.rcr-gallery-captions {
    min-height: 30px;
}

.gallery-content .rcr-gallery-caption {
    margin: 12px 4px 0;
}

.gallery-content .rcr-gallery-caption:empty {
    display: none;
}

.rcr-gallery-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    padding: 4px 3px 7px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-color: rgba(15, 94, 115, 0.35) transparent;
    scrollbar-width: thin;
    scroll-snap-type: inline proximity;
}

.rcr-gallery-thumbnail {
    position: relative;
    flex: 0 0 clamp(74px, 12vw, 96px);
    padding: 3px;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: none;
    cursor: pointer;
    opacity: 0.55;
    aspect-ratio: 4 / 3;
    scroll-snap-align: center;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        opacity 180ms ease,
        transform 180ms ease;
}

.rcr-gallery-thumbnail:hover {
    opacity: 0.82;
}

.rcr-gallery-thumbnail.is-active {
    border-color: var(--color-primary);
    box-shadow: 0 5px 14px rgba(15, 94, 115, 0.16);
    opacity: 1;
    transform: translateY(-2px);
}

.rcr-gallery-thumbnail:focus-visible {
    outline: 3px solid rgba(15, 94, 115, 0.34);
    outline-offset: 2px;
}

.rcr-gallery-thumbnail img,
.rcr-gallery-thumbnail video,
.rcr-gallery-thumbnail .gallery-embed-placeholder {
    display: block;
    width: 100% !important;
    height: 100% !important;
    border-radius: 6px;
    object-fit: cover;
}

.rcr-gallery-thumbnail .gallery-embed-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #102229;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
}

.rcr-gallery-thumbnail__play {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(8, 26, 33, 0.76);
}

.rcr-gallery-thumbnail__play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #fff;
    transform: translate(-50%, -50%);
}

@media (prefers-reduced-motion: reduce) {
    .rcr-gallery-slide,
    .rcr-gallery-nav,
    .rcr-gallery-thumbnail,
    .gallery-lightbox-close {
        transition: none;
    }

    .rcr-gallery-thumbnail.is-active,
    .gallery-lightbox-close:hover {
        transform: none;
    }
}

.gallery-content .gallery-icon,
.entry-content .gallery-icon {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--color-bg-muted);
    aspect-ratio: 4 / 3;
}

.entry-content .wp-block-gallery.has-nested-images > figure.wp-block-image:first-child,
.entry-content .wp-block-gallery.has-nested-images > figure.wp-block-image:last-child:nth-child(even) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
}

.gallery-content .wp-block-gallery.has-nested-images > figure.wp-block-image,
.entry-content .wp-block-gallery.has-nested-images > figure.wp-block-image,
.single-content .entry-content figure.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image),
.gallery-content .wp-block-gallery > figure.wp-block-image,
.entry-content .wp-block-gallery > figure.wp-block-image,
.gallery-content .blocks-gallery-item,
.entry-content .blocks-gallery-item,
.gallery-content .rcr-normalized-gallery > figure,
.entry-content .rcr-normalized-gallery > figure,
.gallery-content .rcr-normalized-gallery > .gallery-item,
.entry-content .rcr-normalized-gallery > .gallery-item,
.gallery-content .rcr-gallery-direct-item,
.gallery-content > img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--color-bg-muted);
    aspect-ratio: 16 / 10;
}

.gallery-content .gallery-icon,
.gallery-content .gallery-icon a,
.entry-content .gallery-icon,
.entry-content .gallery-icon a,
.gallery-content .wp-block-gallery figure.wp-block-image a,
.entry-content .wp-block-gallery figure.wp-block-image a,
.gallery-content .blocks-gallery-item a,
.entry-content .blocks-gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.gallery-media-item img,
.gallery-media-item iframe,
.gallery-media-item video,
.gallery-content .gallery-icon img,
.entry-content .gallery-icon img,
.gallery-content .wp-block-gallery figure.wp-block-image img,
.entry-content .wp-block-gallery figure.wp-block-image img,
.single-content .entry-content figure.wp-block-gallery.has-nested-images figure.wp-block-image img,
.gallery-content .blocks-gallery-item img,
.entry-content .blocks-gallery-item img,
.gallery-content .rcr-gallery-direct-item img,
.gallery-content > img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    margin: 0;
    border: 0;
    object-fit: cover;
}

.gallery-content .wp-block-gallery figure.wp-block-image img,
.entry-content .wp-block-gallery figure.wp-block-image img,
.gallery-content .blocks-gallery-item img,
.entry-content .blocks-gallery-item img,
.gallery-content .rcr-lightbox-image,
.gallery-content .rcr-gallery-direct-item img,
.gallery-content > img {
    cursor: zoom-in;
}

.gallery-content .gallery-caption,
.gallery-content .rcr-gallery-caption {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #4b5563;
}

.gallery-media-item iframe,
.gallery-media-item video {
    pointer-events: none;
}

.gallery-play-indicator {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 64px;
    height: 48px;
    padding: 0 14px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 14px;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 76, 129, 0.92);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
    color: #fff;
    font-size: 0;
    backdrop-filter: blur(4px);
}

.gallery-play-indicator::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #fff;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: rgba(64, 73, 78, 0.88);
    cursor: zoom-out;
    backdrop-filter: blur(8px);
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox-frame {
    width: min(100%, 1100px);
    max-height: 86vh;
}

.gallery-lightbox-frame img,
.gallery-lightbox-frame video,
.gallery-lightbox-frame iframe {
    display: block;
    max-height: 86vh;
    border: 0;
    border-radius: 8px;
    cursor: default;
}

.gallery-lightbox-frame img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    background: transparent;
    box-shadow: 0 20px 54px rgba(15, 32, 42, 0.16);
    object-fit: contain;
}

.gallery-lightbox-frame iframe,
.gallery-lightbox-frame video {
    width: 100%;
    background: #000;
    aspect-ratio: 16 / 9;
}

.gallery-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(15, 32, 42, 0.18);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.24);
    color: var(--color-primary-dark);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition:
        background-color 160ms ease,
        transform 160ms ease;
}

.gallery-lightbox-close:hover {
    background: #eef3f6;
    transform: scale(1.06);
}

.gallery-lightbox-close:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.gallery-lightbox-open {
    overflow: hidden;
}

.site-footer {
    padding: 48px 0;
    border-top: 1px solid var(--color-border);
    background: #fff;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
    gap: 48px;
    align-items: start;
}

.footer-brand strong {
    display: block;
    margin-bottom: 12px;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 1.8vw, 1.75rem);
    line-height: 1.1;
}

.footer-brand p,
.footer-contacts p {
    margin: 0;
    color: var(--color-text-muted);
}

.footer-contacts {
    font-style: normal;
}

.footer-contacts h2 {
    margin: 0 0 12px;
    font-size: 1.2rem;
}

.footer-contacts dl {
    display: grid;
    gap: 14px;
    margin: 24px 0 0;
}

.footer-contacts dl div {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
}

.footer-contacts dt {
    color: var(--color-text);
    font-weight: 700;
}

.footer-contacts dd {
    margin: 0;
    color: var(--color-text-muted);
}

.footer-contacts a {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
}

.footer-contacts a:hover {
    text-decoration: underline;
}

@media (max-width: 780px) {
    .header-inner,
    .main-nav ul {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .site-logo {
        position: static;
        transform: none;
        font-size: 1.5rem;
    }

    .main-nav {
        position: static;
    }

    .language-switcher {
        position: absolute;
        top: 18px;
        right: 0;
    }

    .main-nav a {
        padding: 0;
    }

    .hero {
        padding: 72px 0;
    }

    .hero-inner {
        width: min(100% - 32px, var(--container-width));
    }

    .hero-copy {
        width: 100%;
        max-width: 760px;
    }

    .hero-map-decor,
    .hero-postcards {
        display: none;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 11vw, 3.25rem);
    }

    .stat-strip {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-inline: 4px;
    }

    .stat-strip div,
    .stat-strip div:nth-child(2),
    .stat-strip div:nth-child(3),
    .stat-strip div:hover {
        min-height: 120px;
        transform: none;
    }

    .section {
        padding: 64px 0;
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .home-featured-section .section-header {
        display: flex;
        align-items: center;
        padding-inline: 0;
        text-align: center;
    }

    .home-featured-section .section-header > .text-link {
        align-self: center;
    }

    .footer-inner,
    .footer-contacts dl div {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .featured-carousel__controls {
        display: none;
    }

    .featured-carousel {
        --carousel-visible-cards: 1;
        --carousel-card-width: 100%;
        padding-inline: 0;
    }

    .featured-carousel__track,
    .featured-carousel.is-static .featured-carousel__track {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(0, 86%);
        overflow-x: auto;
        padding: 4px 2px 0;
    }

    .featured-carousel.is-static .featured-carousel__controls {
        display: none;
    }

    .featured-carousel.is-static .featured-carousel__track {
        grid-template-columns: none;
        grid-auto-columns: 100%;
        justify-content: start;
    }

    .gallery-content {
        grid-template-columns: 1fr;
    }

    .gallery-content .gallery {
        grid-template-columns: 1fr;
    }

    .gallery-content .wp-block-gallery,
    .entry-content .wp-block-gallery,
    .gallery-content .blocks-gallery-grid,
    .entry-content .blocks-gallery-grid,
    .gallery-content .rcr-normalized-gallery,
    .entry-content .rcr-normalized-gallery {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) and (hover: hover) and (pointer: fine) {
    .language-switcher a {
        transition: none;
    }

    .language-switcher a:hover {
        transform: none;
    }

    .stat-strip div,
    .stat-strip div::before {
        transition: none;
    }

    .stat-strip div:hover {
        transform: translateY(var(--note-offset)) rotate(var(--note-rotation));
    }
}
