:root {
    --senat-header-height: 92px;
    --senat-yellow: #efb12c;
    --senat-yellow-dark: #d99a14;
    --senat-ink: #141414;
}

.senat-page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    background: #f3bd42;
    opacity: 1;
    visibility: visible;
    transition: opacity .35s ease, visibility .35s ease;
}

.senat-page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.senat-page-loader-mark {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: transparent;
    perspective: 700px;
}

.senat-page-loader-mark img {
    width: 76px;
    height: 76px;
    object-fit: contain;
    filter: drop-shadow(0 16px 24px rgba(20, 20, 20, .16));
    transform-style: preserve-3d;
    animation: senat-loader-flip 1.15s cubic-bezier(.55, .05, .35, .95) infinite;
}

@keyframes senat-loader-flip {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .senat-page-loader,
    .senat-page-loader-mark img {
        transition: none;
        animation: none;
    }
}

html.senat-home-page {
    overflow-x: clip !important;
    overflow-y: auto !important;
    scroll-behavior: smooth;
    scrollbar-gutter: auto;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

html.senat-home-page::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

html.senat-home-page::-webkit-scrollbar-track {
    background: transparent;
}

html.senat-home-page::-webkit-scrollbar-thumb {
    background: rgba(20, 20, 20, 0.22);
    border: 3px solid transparent;
    border-radius: 999px;
    background-clip: padding-box;
}

body.senat-home-template {
    min-height: 100%;
    overflow-x: clip !important;
    overflow-y: visible !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

body.senat-home-template::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

body.senat-home-template #wrapper,
body.senat-home-template #content {
    overflow-x: clip !important;
    overflow-y: visible !important;
}

body.senat-home-template a.btn-main,
body.senat-home-template .btn-main {
    background-color: #f3bd42;
    color: #141414;
}

body.senat-home-template a.btn-main:hover,
body.senat-home-template .btn-main:hover {
    background-color: #123d31;
    color: #fff;
    box-shadow: 0 12px 24px rgba(243, 189, 66, 0.28) !important;
}

body.senat-home-template a.btn-line:hover {
    background-color: #f3bd42;
    border-color: #f3bd42;
    color: #141414;
    box-shadow: 0 10px 22px rgba(243, 189, 66, 0.24);
}

body.senat-home-template header.header-full.transparent:not(.smaller):not(.header-mobile) {
    background: transparent !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none;
    border-bottom: 1px solid transparent;
}

body.senat-home-template header.header-full.transparent.smaller:not(.header-mobile) {
    background: linear-gradient(180deg, var(--senat-yellow) 0%, var(--senat-yellow-dark) 100%) !important;
    background-color: var(--senat-yellow-dark) !important;
    box-shadow: 0 10px 26px rgba(15, 19, 34, 0.16);
}

body.senat-home-template header.header-full.transparent.header-mobile:not(.smaller) {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none;
}

body.senat-home-template header.header-full.transparent.header-mobile.smaller {
    background: linear-gradient(180deg, #f3bd42 0%, var(--senat-yellow) 100%) !important;
}

.senat-header-main {
    min-height: var(--senat-header-height);
    padding-left: clamp(18px, 2.1vw, 42px);
    padding-right: clamp(18px, 2.1vw, 42px);
}

body.senat-home-template header.header-full.transparent.smaller .senat-header-main {
    min-height: var(--senat-header-height);
}

.senat-header-main .de-flex {
    min-height: var(--senat-header-height);
    gap: 26px;
    align-items: center;
    flex-wrap: nowrap;
}

body.senat-home-template header.header-full.transparent.smaller .senat-header-main .de-flex {
    min-height: var(--senat-header-height);
    align-items: center;
}

body.senat-home-template header.header-full.transparent.smaller div#logo {
    height: auto;
    line-height: 1;
}

.senat-header-main #logo {
    max-width: 600px;
    min-width: 0;
    flex: 0 1 auto;
}

.senat-brand-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 7px 0;
    flex-wrap: nowrap;
    overflow: hidden;
}

.senat-brand-logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 48px;
}

.senat-brand-logo-item img {
    display: block;
    width: auto;
    max-width: 88px;
    height: auto;
    max-height: 42px;
    object-fit: contain;
}

.senat-nav {
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
}

@media (min-width: 992px) {
    body.senat-home-template #mainmenu,
    body.senat-inner-template #mainmenu {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: nowrap;
        width: auto;
        min-width: 0;
        white-space: nowrap;
    }

    body.senat-home-template #mainmenu > li,
    body.senat-inner-template #mainmenu > li {
        flex: 0 0 auto;
        margin-left: 0 !important;
    }

    body.senat-home-template #mainmenu > li > a,
    body.senat-inner-template #mainmenu > li > a {
        padding-left: clamp(8px, 0.72vw, 15px);
        padding-right: clamp(8px, 0.72vw, 15px);
        font-size: clamp(14px, 0.82vw, 16px);
    }
}

@media (min-width: 992px) and (max-width: 1279.98px) {
    :root {
        --senat-header-height: 86px;
    }

    .senat-header-main {
        padding-left: 14px;
        padding-right: 14px;
    }

    .senat-header-main .de-flex {
        gap: 10px;
        min-height: var(--senat-header-height);
    }

    .senat-header-main #logo {
        max-width: 330px;
    }

    .senat-brand-logos {
        gap: 4px;
        min-height: 42px;
        padding: 0;
    }

    .senat-brand-logo-item {
        min-width: 34px;
        height: 38px;
    }

    .senat-brand-logo-item img {
        max-width: 48px;
        max-height: 30px;
    }

    body.senat-home-template #mainmenu > li > a,
    body.senat-inner-template #mainmenu > li > a {
        padding-left: 6px;
        padding-right: 6px;
        font-size: 12px;
        line-height: var(--senat-header-height);
    }

    body.senat-home-template #menu-btn,
    body.senat-inner-template #menu-btn,
    .senat-header-actions {
        display: none !important;
    }
}

body.senat-home-template #mainmenu > li::before {
    content: none !important;
    display: none !important;
}

body.senat-home-template #mainmenu > li > a {
    font-weight: 700;
    letter-spacing: 0;
    line-height: var(--senat-header-height);
    padding-top: 0;
    padding-bottom: 0;
}

body.senat-home-template header.header-full.transparent.smaller #mainmenu > li > a {
    padding-top: 0;
    padding-bottom: 0;
    line-height: var(--senat-header-height);
}

body.senat-home-template header.header-full.transparent:not(.smaller) #mainmenu > li > a {
    color: #fff !important;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.34);
}

body.senat-home-template header.header-full.transparent.smaller #mainmenu > li > a {
    color: var(--senat-ink) !important;
    text-shadow: none;
}

body.senat-home-template #mainmenu > li > a:hover,
body.senat-home-template #mainmenu > li:hover > a {
    color: #f3bd42 !important;
}

body.senat-home-template header.header-full.transparent.smaller #mainmenu > li > a:hover,
body.senat-home-template header.header-full.transparent.smaller #mainmenu > li:hover > a {
    color: #fff !important;
}

body.senat-home-template #mainmenu ul {
    background: #fff !important;
    border: 1px solid rgba(20, 20, 20, 0.08);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

body.senat-home-template #mainmenu ul li {
    border-color: rgba(20, 20, 20, 0.08);
}

body.senat-home-template #mainmenu ul li a.menu-item {
    color: #6b6b6b !important;
    background: transparent !important;
    text-shadow: none;
}

body.senat-home-template #mainmenu ul li a.menu-item:hover,
body.senat-home-template #mainmenu ul li:hover > a.menu-item {
    color: var(--senat-yellow-dark) !important;
    background: rgba(239, 177, 44, 0.08) !important;
}

.senat-header-actions .menu_side_area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.senat-header-actions .btn-line {
    color: var(--senat-ink);
    border-color: rgba(20, 20, 20, 0.5);
    font-weight: 700;
}

.senat-header-actions .btn-line:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

body.senat-home-template #menu-btn::before,
body.senat-home-template #menu-btn::after,
body.senat-home-template #menu-btn span {
    background: transparent;
    color: #fff;
}

body.senat-home-template header.header-full.transparent.smaller #menu-btn::before,
body.senat-home-template header.header-full.transparent.smaller #menu-btn::after,
body.senat-home-template header.header-full.transparent.smaller #menu-btn span {
    background: transparent;
    color: var(--senat-ink);
}

.senat-video-hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    background: #0f1322;
}

.senat-video-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(8, 12, 22, 0.78) 0%, rgba(8, 12, 22, 0.46) 48%, rgba(8, 12, 22, 0.22) 100%),
        linear-gradient(180deg, rgba(8, 12, 22, 0.24) 0%, rgba(8, 12, 22, 0.65) 100%);
}

.senat-video-frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.senat-video-frame iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-width: 177.78svh;
    min-height: 100vh;
    min-height: 100svh;
    border: 0;
    transform: translate(-50%, -50%) scale(1.04);
}

.senat-video-shell {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    padding: calc(var(--senat-header-height) + 74px) 0 64px;
    display: flex;
    align-items: center;
}

.senat-video-hero .slider-title {
    max-width: 820px;
    margin: 0;
    color: #fff;
    letter-spacing: 0;
}

.senat-hero-copy {
    max-width: 780px;
}

.senat-video-title {
    max-width: 780px !important;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.46);
    font-weight: 850;
    font-size: clamp(2.85rem, 4.45vw, 5.15rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
}

body.senat-home-template .senat-video-hero h1.senat-video-title {
    font-size: clamp(2.85rem, 4.45vw, 5.15rem) !important;
    line-height: 1.02;
}

.senat-hero-stats {
    color: #fff;
    padding-top: 26px;
}

.senat-hero-stat-title {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.25rem, 1.8vw, 1.75rem);
    font-weight: 800;
    line-height: 1.25;
}

.senat-hero-stat-number {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #fff;
    font-size: clamp(4.3rem, 7vw, 7.5rem);
    font-weight: 900;
    line-height: 0.85;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}

.senat-hero-stat-number span {
    margin-top: 14px;
    font-size: 0.42em;
    line-height: 1;
}

.senat-hero-stat-line {
    width: 100%;
    max-width: 420px;
    height: 1px;
    margin: 26px 0 18px;
    background: rgba(255, 255, 255, 0.38);
}

.senat-hero-stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    font-weight: 700;
    line-height: 1.25;
}

.senat-profile-intro {
    padding: 96px 0 42px !important;
}

.senat-profile-panel {
    position: relative;
    overflow: hidden;
    min-height: 610px;
    border-radius: 22px;
    background: #121821;
    box-shadow: 0 24px 70px rgba(15, 19, 34, 0.16);
}

.senat-profile-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
    transform: scale(1.02);
}

.senat-profile-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 15, 24, 0.9) 0%, rgba(12, 15, 24, 0.72) 46%, rgba(12, 15, 24, 0.36) 100%),
        linear-gradient(180deg, rgba(12, 15, 24, 0.36) 0%, rgba(12, 15, 24, 0.84) 100%);
}

.senat-profile-content {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    padding: 74px 112px 58px 92px;
}

.senat-profile-heading {
    max-width: 940px;
    margin-bottom: 28px;
}

.senat-profile-kicker {
    margin-bottom: 12px;
    color: #f3bd42;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
}

.senat-profile-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(3rem, 5vw, 5.25rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: 0;
}

.senat-profile-copy {
    max-width: 1160px;
}

.senat-profile-copy p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.78;
}

.senat-profile-copy p {
    margin-bottom: 18px;
}

a.btn-main.senat-profile-button {
    margin-top: 24px;
    background: #f3bd42 !important;
    color: #141414 !important;
    border: 1px solid #f3bd42 !important;
    font-weight: 800;
    box-shadow: none !important;
}

a.btn-main.senat-profile-button:hover {
    color: #fff !important;
    background: var(--senat-yellow-dark) !important;
    border-color: var(--senat-yellow-dark) !important;
}

.senat-duties-section {
    padding-top: 34px;
}

.senat-access-section {
    padding-top: 42px;
    padding-bottom: 22px;
}

.senat-announcement-section {
    padding-top: 20px;
    padding-bottom: 48px;
}

.senat-announcement-section .row.sequence {
    row-gap: 28px;
}

.senat-announcement-section .de-item {
    min-height: 440px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(15, 19, 34, 0.12);
}

.senat-announcement-section .de-item img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
}

.senat-no-image-card,
.senat-news-no-image {
    width: 100%;
    height: 100%;
    min-height: inherit;
    background:
        linear-gradient(135deg, rgba(246, 196, 64, .92), rgba(24, 24, 27, .9)),
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, .18), transparent 32%);
}

.senat-announcement-section .de-item .d-overlay {
    background:
        linear-gradient(0deg, rgba(243, 189, 66, 0.24) 0%, rgba(243, 189, 66, 0.08) 38%, rgba(20, 20, 20, 0.06) 100%),
        linear-gradient(0deg, rgba(28, 35, 50, 0.58) 0%, rgba(28, 35, 50, 0.12) 62%, rgba(28, 35, 50, 0.28) 100%);
}

.senat-announcement-section .de-item .d-overlay .d-text {
    padding: 38px;
}

.senat-announcement-section .de-item .d-overlay .d-label {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-weight: 800;
}

.senat-announcement-section .de-item:hover .d-overlay .d-label {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.senat-announcement-section .de-item .d-overlay .d-text h4 {
    color: #fff;
    text-shadow: 0 2px 10px rgba(20, 20, 20, 0.28);
    margin-bottom: 18px;
}

.senat-announcement-section .de-item .d-overlay .d-text .btn-main.btn-white,
.senat-announcement-section .de-item .d-overlay .d-text .btn-main.btn-white:focus,
.senat-announcement-section .de-item .d-overlay .d-text .btn-main.btn-white:active {
    background: #fff !important;
    border-color: #fff !important;
    color: #d99a14 !important;
    box-shadow: none !important;
}

.senat-announcement-section .de-item .d-overlay .d-text .btn-main.btn-white:hover {
    background: rgba(255, 255, 255, 0.92) !important;
    border-color: rgba(255, 255, 255, 0.92) !important;
    color: #c98b0a !important;
}

.senat-home-empty-card {
    width: 100%;
    max-width: 760px;
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid rgba(20, 20, 20, .08);
    border-radius: 18px;
    background: #f7f7f5;
    color: #202124;
    box-shadow: 0 18px 45px rgba(18, 28, 22, .06);
}

.senat-home-empty-card span {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 8px;
    background: rgba(243, 189, 66, .22);
    color: #7d5c09;
    font-size: 13px;
    font-weight: 800;
}

.senat-home-empty-card strong {
    display: block;
    color: #14181d;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
}

.senat-home-empty-card p {
    max-width: 540px;
    margin: 12px 0 0;
    color: #666f6a;
    font-size: 17px;
    line-height: 1.7;
}

.senat-program-section {
    padding: clamp(72px, 8vw, 118px) 0;
    background: #fff;
}

.senat-program-empty {
    max-width: none;
    margin-top: 34px;
}

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

.senat-home-program-commission {
    overflow: hidden;
    border: 1px solid rgba(20, 24, 29, .1);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 20px 64px rgba(20, 24, 29, .08);
}

.senat-home-program-commission-head {
    position: relative;
    overflow: hidden;
    min-height: 168px;
    padding: 28px;
    background: #f6cf5c;
}

.senat-home-program-commission-head::before {
    content: "";
    position: absolute;
    right: -12px;
    bottom: -78px;
    width: 240px;
    height: 240px;
    background: url("/senat/logo/unmul-20260408145731-e033c2.png") center / contain no-repeat;
    opacity: .2;
    transform: rotate(-13deg);
    pointer-events: none;
}

.senat-home-program-commission-head h3,
.senat-home-program-commission-head p {
    position: relative;
    z-index: 1;
}

.senat-home-program-commission-head h3 {
    margin: 0 0 24px;
    color: #14181d;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1;
}

.senat-home-program-commission-head p {
    max-width: 280px;
    margin: 0;
    color: rgba(20, 24, 29, .72);
    font-size: 15px;
    line-height: 1.55;
}

.senat-home-program-commission-body {
    min-height: 118px;
    padding: 28px;
    background: #fff;
}

.senat-home-program-commission-body > p {
    margin: 0;
    color: #747b81;
    font-size: 16px;
    line-height: 1.7;
}

.senat-home-program-item + .senat-home-program-item {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(20, 24, 29, .08);
}

.senat-home-program-item strong {
    display: block;
    color: #14181d;
    font-size: 18px;
    line-height: 1.35;
}

.senat-home-program-item span {
    display: block;
    margin-top: 6px;
    color: #747b81;
    font-size: 14px;
}

.senat-program-card {
    height: 100%;
    padding: 30px;
    border-radius: 18px;
    background: #f2f3f4;
}

.senat-program-card span {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 8px;
    background: rgba(243, 189, 66, .22);
    color: #7d5c09;
    font-size: 13px;
    font-weight: 800;
}

.senat-program-card h4 {
    color: #14181d;
}

.senat-program-card p {
    color: #626a66;
}

@media (max-width: 767.98px) {
    .senat-announcement-section .de-item,
    .senat-announcement-section .de-item img,
    .senat-announcement-section .senat-no-image-card {
        min-height: 360px;
    }

    .senat-announcement-section .de-item .d-overlay .d-text {
        padding: 26px;
    }
}

@media (max-width: 991.98px) {
    .senat-home-program-commissions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .senat-home-program-commissions {
        grid-template-columns: 1fr;
    }

    .senat-home-program-commission-head {
        min-height: 150px;
        padding: 24px;
    }

    .senat-home-program-commission-body {
        padding: 24px;
    }
}

.senat-chairman-section {
    padding-top: 96px;
    padding-bottom: 96px;
}

.senat-chairman-section .subtitle {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.senat-chairman-section h2 {
    max-width: 720px;
}

.senat-chairman-section p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.senat-chairman-section .images-deco-1 .senat-chairman-bg {
    filter: brightness(0.48) saturate(0.85);
    object-fit: cover;
    aspect-ratio: 16 / 10;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.senat-chairman-photo {
    width: 42% !important;
    top: -9% !important;
    left: -2% !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #fff;
    border: 8px solid #fff;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
}

.senat-chairman-accent {
    background: #f3bd42;
    opacity: 0.95;
}

.senat-chairman-signature {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 6px;
}

.senat-chairman-signature strong {
    color: #fff;
    font-size: 1.08rem;
}

.senat-chairman-signature span {
    color: #f3bd42;
    font-weight: 700;
}

.senat-chairman-section a.btn-line:hover {
    color: #141414;
}

.senat-leadership-section {
    padding-top: 90px;
    padding-bottom: 84px;
}

.senat-org-chart {
    position: relative;
    --senat-org-line: rgba(243, 189, 66, 0.8);
    --senat-org-card-w: 240px;
    --senat-org-exec-gap: clamp(72px, 9vw, 142px);
    --senat-org-commission-group-w: 500px;
    --senat-org-commission-gap: clamp(26px, 3.2vw, 56px);
    --senat-org-junction-gap: 12px;
    --senat-org-media-ratio: 1 / 1;
    max-width: 1480px;
    margin: 36px auto 0;
}

.senat-org-level {
    display: flex;
    justify-content: center;
}

.senat-org-commissions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, var(--senat-org-commission-group-w)));
    justify-content: center;
    align-items: flex-start;
    gap: var(--senat-org-commission-gap);
}

.senat-org-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100%, var(--senat-org-card-w));
    color: #fff;
    text-align: center;
    text-decoration: none;
}

.senat-org-card:hover {
    color: #fff;
    text-decoration: none;
}

.senat-org-card .bg-color-2 {
    overflow: hidden;
    width: 100%;
    aspect-ratio: var(--senat-org-media-ratio);
    background: #f3bd42 !important;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.senat-org-card img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center top;
    background: #f3bd42;
    transition: transform 220ms ease;
}

.senat-org-card .senat-member-photo-empty {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    background:
        radial-gradient(circle at 25% 18%, rgba(255, 255, 255, .28), transparent 28%),
        linear-gradient(145deg, #f6cf54 0%, #eab62f 100%);
}

.senat-org-card:hover img {
    transform: scale(1.04);
}

.senat-org-card h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 4.9em;
    margin-top: 0;
    margin-bottom: 7px !important;
    color: #fff;
    font-size: 1.18rem;
    line-height: 1.18;
    text-wrap: balance;
}

.senat-org-position {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    min-height: 1.5em;
    color: rgba(255, 255, 255, 0.72);
    font-size: .95rem;
    line-height: 1.3;
}

.senat-org-card span {
    display: inline-flex;
    margin-top: 10px;
    padding: 5px 12px;
    border-radius: 8px;
    background: rgba(243, 189, 66, 0.14);
    color: #f3bd42;
    font-weight: 800;
}

.senat-org-executives {
    position: relative;
    gap: var(--senat-org-exec-gap);
    padding-bottom: 74px;
}

.senat-org-executives::before {
    display: none;
}

.senat-org-executives::after {
    display: none;
}

.senat-org-executives .senat-org-card {
    position: relative;
}

.senat-org-executives .senat-org-card::after {
    display: none;
}

.senat-org-executive-lines {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: calc(var(--senat-org-card-w) + var(--senat-org-exec-gap));
    height: 74px;
    transform: translateX(-50%);
    pointer-events: none;
}

.senat-org-executive-lines span {
    position: absolute;
    display: block;
    background: var(--senat-org-line);
}

.senat-org-executive-lines span:nth-child(1),
.senat-org-executive-lines span:nth-child(2) {
    top: 0;
    width: 2px;
    height: 24px;
}

.senat-org-executive-lines span:nth-child(1) {
    left: 0;
}

.senat-org-executive-lines span:nth-child(2) {
    right: 0;
}

.senat-org-executive-lines span:nth-child(3) {
    left: 0;
    right: 0;
    top: 24px;
    height: 2px;
}

.senat-org-executive-lines::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 24px;
    width: 2px;
    height: 50px;
    transform: translateX(-50%);
    background: var(--senat-org-line);
}

.senat-org-branches {
    position: relative;
    width: min(100%, calc(((100% - (var(--senat-org-commission-gap) * 2)) / 3 * 2) + (var(--senat-org-commission-gap) * 2)));
    height: 66px;
    margin: 0 auto;
}

.senat-org-topline {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 34px;
    transform: translateX(-50%);
    background: var(--senat-org-line);
}

.senat-org-horizontal {
    position: absolute;
    left: 0;
    right: 0;
    top: 34px;
    height: 2px;
}

.senat-org-horizontal::before,
.senat-org-horizontal::after {
    content: "";
    position: absolute;
    top: 0;
    height: 2px;
    background: var(--senat-org-line);
}

.senat-org-horizontal::before {
    left: 0;
    right: calc(50% + var(--senat-org-junction-gap));
}

.senat-org-horizontal::after {
    left: calc(50% + var(--senat-org-junction-gap));
    right: 0;
}

.senat-org-commission-group {
    position: relative;
    width: min(100%, var(--senat-org-commission-group-w));
}

.senat-org-commission-group::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -32px;
    width: 2px;
    height: 8px;
    transform: translateX(-50%);
    background: var(--senat-org-line);
}

.senat-org-commission-pair {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.senat-org-commission-pair::before,
.senat-org-commission-pair::after {
    content: "";
    position: absolute;
    pointer-events: none;
    background: var(--senat-org-line);
}

.senat-org-commission-pair::before {
    left: calc((100% - 22px) / 4);
    right: calc((100% - 22px) / 4);
    top: -24px;
    height: 2px;
}

.senat-org-commission-pair::after {
    display: none;
}

.senat-org-commission-pair .senat-org-card::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -24px;
    width: 2px;
    height: 24px;
    transform: translateX(-50%);
    background: var(--senat-org-line);
    pointer-events: none;
}

.senat-org-commission-pair .senat-org-card {
    position: relative;
    width: 100%;
}

.senat-org-commission-pair .senat-org-card h4 {
    min-height: 4.9em;
    margin-top: 2px;
    margin-bottom: 6px !important;
}

.senat-org-commission-pair .senat-org-card .senat-org-position {
    min-height: 2.7em;
    line-height: 1.35;
}

.senat-org-card-commission .bg-color-2 {
    margin-inline: auto;
}

.senat-org-card-commission img {
    object-fit: cover;
    object-position: center top;
}

.senat-org-card-commission h4:has(+ div:not(:empty)) {
    text-wrap: balance;
}

.senat-org-card-commission h4:first-letter {
    letter-spacing: 0;
}

@media (min-width: 992px) {
    .senat-org-branches {
        height: 64px;
    }

    .senat-org-topline {
        height: 32px;
    }

    .senat-org-horizontal {
        top: 32px;
    }

    .senat-org-commission-group::before {
        top: -32px;
        height: 12px;
    }

    .senat-org-commission-pair::before {
        top: -20px;
    }

    .senat-org-commission-pair::after {
        display: none;
    }

    .senat-org-commission-pair .senat-org-card::before {
        top: -20px;
        height: 20px;
    }
}

.senat-agenda-section,
.senat-program-section,
.senat-gallery-section {
    padding-top: 76px;
    padding-bottom: 76px;
}

.senat-calendar-panel {
    margin-top: 34px;
    padding: 28px;
    background: #f4f5f7;
}

.senat-calendar-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.senat-calendar-view-toggle {
    display: inline-flex;
    padding: 5px;
    border-radius: 10px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(20, 20, 20, 0.08);
}

.senat-calendar-view-toggle button,
.senat-calendar-picker-group button {
    min-height: 40px;
    border: 0;
    border-radius: 8px;
    padding: 8px 14px;
    background: transparent;
    color: #141414;
    font-weight: 800;
}

.senat-calendar-view-toggle button.active,
.senat-calendar-picker-group button {
    background: #f3bd42;
}

.senat-calendar-picker-group {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 12px;
}

.senat-calendar-picker-group label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
}

.senat-calendar-picker-group span {
    color: #555;
    font-size: 0.86rem;
    font-weight: 700;
}

.senat-calendar-picker-group input {
    min-height: 40px;
    border: 1px solid rgba(20, 20, 20, 0.1);
    border-radius: 8px;
    padding: 8px 10px;
    background: #fff;
    color: #141414;
    font-weight: 700;
}

#senatAgendaCalendar {
    min-height: 640px;
    border-radius: 16px;
    overflow: clip;
    background: #fff;
    box-shadow: 0 16px 36px rgba(15, 19, 34, 0.08);
    scrollbar-width: none;
    contain: layout;
}

#senatAgendaCalendar.is-ready {
    min-height: 0;
}

#senatAgendaCalendar .fc {
    color: #141414;
}

#senatAgendaCalendar,
#senatAgendaCalendar .fc,
#senatAgendaCalendar .fc-view-harness,
#senatAgendaCalendar .fc-scrollgrid {
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
}

#senatAgendaCalendar .fc-scroller,
#senatAgendaCalendar .fc-scroller-liquid,
#senatAgendaCalendar .fc-scroller-liquid-absolute {
    overflow: visible !important;
    max-width: 100% !important;
    scrollbar-width: none;
}

#senatAgendaCalendar .fc-scroller::-webkit-scrollbar,
#senatAgendaCalendar .fc-scroller-liquid::-webkit-scrollbar,
#senatAgendaCalendar .fc-scroller-liquid-absolute::-webkit-scrollbar {
    width: 0;
    height: 0;
}

#senatAgendaCalendar .fc-view-harness,
#senatAgendaCalendar .fc-view-harness-active {
    height: auto !important;
    min-height: 0;
}

#senatAgendaCalendar .fc-scrollgrid,
#senatAgendaCalendar .fc-scrollgrid table {
    width: 100% !important;
    table-layout: fixed;
}

#senatAgendaCalendar .fc-daygrid-event-harness,
#senatAgendaCalendar .fc-daygrid-event {
    max-width: 100%;
    min-width: 0;
}

#senatAgendaCalendar * {
    scrollbar-width: none;
}

#senatAgendaCalendar *::-webkit-scrollbar {
    width: 0;
    height: 0;
}

#senatAgendaCalendar .fc-toolbar-title {
    color: #141414;
    font-size: 1.35rem;
    font-weight: 900;
}

#senatAgendaCalendar .fc-button {
    border: 0;
    border-radius: 8px;
    background: #141414;
    box-shadow: none;
    color: #fff;
    font-weight: 800;
}

#senatAgendaCalendar .fc-button-primary:not(:disabled).fc-button-active,
#senatAgendaCalendar .fc-button-primary:not(:disabled):active,
#senatAgendaCalendar .fc-button:hover {
    background: #f3bd42;
    color: #141414;
}

#senatAgendaCalendar .fc-col-header-cell,
#senatAgendaCalendar .fc-scrollgrid-section-sticky > * {
    background: #fafafa;
}

#senatAgendaCalendar .fc-col-header-cell-cushion {
    padding: 12px 8px;
    color: #141414;
    font-weight: 900;
}

#senatAgendaCalendar .fc-daygrid-day {
    background: #fff;
}

#senatAgendaCalendar .fc-daygrid-day-frame {
    min-height: 150px;
    padding: 8px;
}

#senatAgendaCalendar .fc-daygrid-day-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    margin: 2px;
    border-radius: 8px;
    color: #141414;
    font-weight: 900;
}

#senatAgendaCalendar .fc-day-today .fc-daygrid-day-number {
    background: #f3bd42;
}

#senatAgendaCalendar .fc-daygrid-day-events {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}

#senatAgendaCalendar .fc-event {
    border: 0;
    border-radius: 8px;
    background: #f3bd42;
    color: #141414;
    box-shadow: 0 8px 18px rgba(243, 189, 66, 0.25);
}

#senatAgendaCalendar .fc-daygrid-event {
    margin: 0;
    padding: 0;
    white-space: normal;
}

#senatAgendaCalendar .fc-event-main {
    color: inherit;
}

#senatAgendaCalendar .fc-event[data-status*="selesai"] {
    background: #e5e7eb;
    color: #141414;
}

#senatAgendaCalendar .fc-event[data-status*="berlangsung"] {
    background: #141414;
    color: #fff;
}

.senat-calendar-event {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    padding: 10px;
    overflow: hidden;
}

.senat-calendar-event strong,
.senat-calendar-event span,
.senat-calendar-event em {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.senat-calendar-event strong {
    font-size: 0.9rem;
    line-height: 1.25;
}

.senat-calendar-event span {
    opacity: 0.78;
    font-size: 0.75rem;
    font-weight: 700;
}

.senat-calendar-event em {
    align-self: flex-start;
    max-width: 100%;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(20, 20, 20, 0.12);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 900;
}

#senatAgendaCalendar .fc-event[data-status*="berlangsung"] .senat-calendar-event em {
    background: rgba(255, 255, 255, 0.18);
}

.senat-calendar-empty {
    display: none;
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 10px;
    background: #fff;
    color: #555;
    font-weight: 700;
}

.senat-calendar-empty.is-visible {
    display: block;
}

.senat-calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
    color: #555;
    font-weight: 700;
}

.senat-calendar-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.senat-calendar-legend i {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 4px;
    background: #f3bd42;
}

.senat-calendar-legend span:nth-child(2) i {
    background: #141414;
}

.senat-calendar-legend span:nth-child(3) i {
    background: #e5e7eb;
}

.senat-agenda-card {
    height: 100%;
    padding: 30px;
    color: #141414;
}

.senat-agenda-card h4 {
    margin-top: 16px;
    margin-bottom: 14px;
}

.senat-agenda-card h4 a {
    color: #141414;
}

.senat-agenda-card p {
    margin-bottom: 18px;
    color: #555;
}

.senat-agenda-card span,
.senat-agenda-date {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(20, 20, 20, 0.06);
    color: #141414;
    font-size: 0.92rem;
    font-weight: 700;
}

.senat-agenda-card span {
    background: #f3bd42;
}

.senat-document-section {
    padding-top: 82px;
    padding-bottom: 86px;
}

.senat-document-publications {
    background: #fff;
}

.senat-publication-heading {
    text-transform: uppercase;
    letter-spacing: 0;
}

.senat-publication-all {
    background: #123d31;
    border-color: #123d31;
    border-radius: 999px;
    color: #fff;
    padding: 16px 30px;
}

.senat-publication-all:hover {
    background: #f3bd42;
    border-color: #f3bd42;
    color: #141414;
}

.senat-publication-list {
    margin-top: 40px;
}

.senat-publication-item {
    display: grid;
    grid-template-columns: minmax(180px, 250px) 1fr;
    gap: 34px;
    align-items: start;
    color: #12231b;
}

.senat-publication-cover {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 285px;
    min-height: 285px;
    aspect-ratio: 5 / 6;
    overflow: hidden;
    border-radius: 8px;
    background:
        radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.26) 0, rgba(255, 255, 255, 0) 34%),
        linear-gradient(145deg, #ffd763 0%, #f3bd42 48%, #e6a617 100%);
    box-shadow: 0 20px 38px rgba(15, 19, 34, 0.12);
    padding: 28px;
    isolation: isolate;
}

.senat-publication-cover::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 58%;
    background: linear-gradient(180deg, rgba(18, 35, 27, 0) 0%, rgba(18, 35, 27, 0.74) 100%);
    z-index: 1;
}

.senat-publication-cover::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    z-index: 2;
    pointer-events: none;
}

.senat-publication-watermark {
    position: absolute;
    right: -32%;
    bottom: -18%;
    width: 122%;
    max-width: none;
    opacity: 0.18;
    transform: rotate(-9deg);
    z-index: 0;
    transition: transform .45s ease, opacity .45s ease;
}

.senat-publication-watermark img {
    width: 100%;
    height: auto;
    filter: grayscale(1) sepia(1) saturate(.85) hue-rotate(350deg) brightness(.72);
}

.senat-publication-cover-top {
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    z-index: 3;
}

.senat-publication-cover-top img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    padding: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
}

.senat-publication-cover strong {
    position: relative;
    display: block;
    color: #fff;
    font-size: clamp(1.35rem, 1.55vw, 1.9rem);
    line-height: 1.18;
    min-height: 4.72em;
    max-height: 4.72em;
    overflow: hidden;
    overflow-wrap: anywhere;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.28);
    z-index: 3;
}

.senat-publication-cover-meta {
    position: relative;
    display: inline-flex;
    align-self: flex-start;
    margin-top: 14px;
    padding: 6px 11px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: .88rem;
    font-weight: 800;
    z-index: 3;
}

.senat-publication-item:hover .senat-publication-watermark {
    opacity: 0.24;
    transform: rotate(-7deg) scale(1.03);
}

.senat-publication-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.senat-publication-count {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(243, 189, 66, .18);
    color: #123d31;
    font-weight: 800;
    font-size: .9rem;
    margin-bottom: 16px;
}

.senat-publication-copy h3 {
    margin-bottom: 22px;
    font-size: clamp(1.65rem, 2.2vw, 2.35rem);
    line-height: 1.2;
}

.senat-publication-copy h3 a {
    color: #123d31;
}

.senat-publication-copy p {
    color: #5b6360;
    line-height: 1.55;
    margin-bottom: 16px;
}

.senat-publication-latest {
    color: #6f7472;
    font-size: .95rem;
    margin-bottom: 18px;
}

.senat-publication-link {
    align-self: flex-start;
    margin-top: auto;
    color: #123d31;
}

.senat-document-card {
    color: #141414;
    box-shadow: 0 16px 34px rgba(15, 19, 34, 0.08);
}

.senat-document-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.senat-document-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border-radius: 8px;
    background: rgba(20, 20, 20, 0.06);
    color: #444;
    font-size: 0.88rem;
    font-weight: 700;
}

.senat-document-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.senat-document-actions .btn-main,
.senat-document-actions .btn-line {
    margin: 0;
}

.senat-document-actions .senat-disabled-action {
    opacity: 0.55;
    cursor: not-allowed;
}

.senat-program-panel {
    padding: 36px;
}

.senat-program-panel .de_count {
    padding: 0;
}

.senat-program-panel .de_count h3 {
    font-size: 3rem;
}

.senat-program-panel .de-progress {
    margin-top: 28px;
    background: rgba(20, 20, 20, 0.12);
}

.senat-program-panel .progress-bar {
    background: #f3bd42;
}

.senat-progress-caption {
    color: #444;
    font-weight: 700;
}

.senat-news-section {
    padding-top: 86px;
    padding-bottom: 86px;
}

.senat-news-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.senat-news-controls {
    display: inline-flex;
    gap: 10px;
    vertical-align: middle;
}

.senat-news-controls button {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.senat-news-controls button:hover {
    background: #f3bd42;
    border-color: #f3bd42;
    color: #141414;
}

.senat-news-slider {
    position: relative !important;
    width: 100%;
    height: auto !important;
    margin-top: 30px;
    padding-bottom: 48px;
    overflow: hidden;
}

.senat-news-slider:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.senat-news-slider:not(.swiper-initialized) .swiper-slide {
    width: auto !important;
}

.senat-news-slider .swiper-wrapper {
    height: auto !important;
    align-items: stretch;
}

.senat-news-slider .swiper-slide {
    height: auto !important;
    background: transparent;
}

.senat-news-section .bloglist.item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.senat-news-card .post-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.senat-news-card .post-image {
    margin-bottom: 0;
}

.senat-news-card .post-image img,
.senat-news-card .post-image .senat-news-no-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 240px;
    object-fit: cover;
}

.senat-news-section .post-text {
    padding: 26px;
    background: #fff;
    color: #1d222b;
}

.senat-news-card .post-text {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 250px;
}

.senat-news-section .post-text .d-date {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 14px;
    padding: 5px 11px;
    border-radius: 8px;
    background: rgba(243, 189, 66, 0.16);
    color: #1d222b !important;
    font-size: .86rem;
    font-weight: 800;
    opacity: 1 !important;
}

.senat-news-section .post-text h4 {
    margin-bottom: 12px;
    font-size: clamp(1.18rem, 1.8vw, 1.5rem);
    line-height: 1.35;
}

.senat-news-section .post-text h4 a {
    color: #1d222b !important;
}

.senat-news-section .post-text h4 a:hover {
    color: #d99a14 !important;
}

.senat-news-section .post-text p {
    color: #5e6662 !important;
    line-height: 1.65;
    opacity: 1 !important;
}

.senat-news-read {
    margin-top: auto;
    color: #1d222b !important;
}

.senat-news-read:hover {
    color: #d99a14 !important;
}

.senat-news-featured .post-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.senat-news-compact .post-content {
    display: grid;
    grid-template-columns: 170px 1fr;
    min-height: 180px;
}

.senat-news-compact .post-image {
    height: 100%;
    min-height: 180px;
    margin-bottom: 0;
    border-radius: 20px 0 0 20px;
}

.senat-news-compact .post-image img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block;
}

.senat-news-section .post-image .senat-news-no-image {
    aspect-ratio: 16 / 10;
    min-height: 180px;
}

.senat-program-no-image {
    width: 100%;
    min-height: 360px;
    background:
        linear-gradient(135deg, rgba(246, 196, 64, .9), rgba(24, 24, 27, .86)),
        radial-gradient(circle at 78% 20%, rgba(255, 255, 255, .18), transparent 28%);
}

.senat-news-compact .post-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
}

.senat-news-compact .post-text p {
    display: none;
}

.senat-news-compact .post-text h4 {
    margin-bottom: 0;
    font-size: 1.15rem;
}

.senat-news-section .post-image .d-tagline span {
    background: rgba(20, 20, 20, 0.68);
    color: #fff;
}

.senat-news-pagination {
    position: absolute;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-size: 0;
}

.senat-news-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: rgba(255, 255, 255, 0.36);
    opacity: 1;
}

.senat-news-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: #f3bd42;
}

.senat-gallery-controls {
    display: inline-flex;
    gap: 10px;
    margin-left: 16px;
    vertical-align: middle;
}

.senat-gallery-controls button {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(20, 20, 20, 0.18);
    border-radius: 50%;
    background: #fff;
    color: #141414;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.senat-gallery-controls button:hover {
    background: #f3bd42;
    border-color: #f3bd42;
    color: #141414;
}

.senat-gallery-slider {
    position: relative !important;
    width: 100%;
    height: auto !important;
    margin-top: 28px;
    padding-bottom: 48px;
    overflow: hidden;
}

.senat-gallery-slider .swiper-wrapper {
    height: auto !important;
    align-items: stretch;
}

.senat-gallery-slider:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.senat-gallery-slider:not(.swiper-initialized) .swiper-slide {
    width: auto !important;
}

.senat-gallery-slider .swiper-slide {
    height: auto !important;
    background: transparent;
}

.senat-gallery-card {
    height: 390px;
    border-radius: 8px;
    overflow: hidden;
    background: #141414;
}

.senat-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.senat-gallery-card .d-overlay {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.08) 0%, rgba(35, 30, 18, 0.18) 36%, rgba(243, 189, 66, 0.62) 100%);
}

.senat-gallery-card .d-overlay .d-text {
    bottom: 0;
    padding: 30px;
    transform: translateY(0);
    transition: transform 0.28s ease;
}

.senat-gallery-card:hover .d-overlay .d-text {
    bottom: 0;
    transform: translateY(-6px);
}

.senat-gallery-card .d-label {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.senat-gallery-card .d-text h4 {
    display: -webkit-box;
    overflow: hidden;
    color: #fff;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.senat-gallery-card .d-text p {
    display: -webkit-box;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.86);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.senat-gallery-pagination {
    position: absolute;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-size: 0;
}

.senat-gallery-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: rgba(20, 20, 20, 0.28);
    opacity: 1;
}

.senat-gallery-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: #f3bd42;
}

@media (max-width: 1199.98px) {
    .senat-news-slider:not(.swiper-initialized) .swiper-wrapper,
    .senat-gallery-slider:not(.swiper-initialized) .swiper-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .senat-news-actions {
        justify-content: flex-start;
    }

    .senat-news-slider:not(.swiper-initialized) .swiper-wrapper,
    .senat-gallery-slider:not(.swiper-initialized) .swiper-wrapper {
        grid-template-columns: minmax(0, 1fr);
    }

    .senat-news-card .post-image img,
    .senat-news-card .post-image .senat-news-no-image {
        min-height: 210px;
    }

    .senat-news-card .post-text {
        min-height: 220px;
    }
}

.senat-access-card {
    display: block;
    color: #141414;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.senat-access-card:hover {
    color: #141414;
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(15, 19, 34, 0.1);
}

.senat-access-card h4,
.senat-access-card p {
    color: inherit;
}

.senat-access-icon {
    display: block;
    width: 80px;
    height: 80px;
    color: #f3bd42;
    font-size: 72px;
    line-height: 80px;
}

.senat-access-icon-img {
    filter: brightness(0) saturate(100%) invert(78%) sepia(65%) saturate(807%) hue-rotate(344deg) brightness(99%) contrast(92%);
}

.senat-duties-section .subtitle {
    color: #141414;
    background: rgba(20, 20, 20, 0.06);
    border-color: rgba(20, 20, 20, 0.08);
    letter-spacing: 0;
}

.senat-duties-section h2 {
    color: #141414;
    font-size: clamp(2.8rem, 4vw, 4.4rem);
    line-height: 1;
}

.senat-duties-lead {
    margin: 0;
    color: #555;
    max-width: 760px;
    font-size: 1.18rem;
    line-height: 1.7;
}

.senat-duties-section .row.mt-4 {
    row-gap: 32px;
}

.senat-duties-section .de-step-s1 {
    height: 100%;
}

.senat-site-footer {
    background: #18181b;
    border-top: 6px solid var(--senat-yellow-dark);
}

.senat-site-footer > .container {
    padding-top: 8px;
}

.senat-site-footer .container > .row {
    align-items: stretch;
}

.senat-site-footer h4,
.senat-site-footer h5 {
    color: #fff;
    letter-spacing: 0;
}

.senat-site-footer h4 {
    margin-bottom: 14px;
    font-size: 1.5rem;
}

.senat-site-footer p,
.senat-site-footer li,
.senat-site-footer .d-text {
    color: rgba(255, 255, 255, 0.76);
}

.senat-site-footer .widget ul li {
    margin-bottom: 9px;
}

.senat-site-footer .widget ul li a {
    color: rgba(255, 255, 255, 0.78);
    transition: color 160ms ease, padding-left 160ms ease;
}

.senat-site-footer .widget ul li a:hover {
    color: var(--senat-yellow);
    padding-left: 4px;
}

.senat-footer-brand {
    display: inline-flex;
    width: 100%;
    max-width: 440px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
}

.senat-footer-brand .senat-brand-logos {
    flex-wrap: wrap;
    gap: 8px;
    min-height: auto;
    padding: 0;
}

.senat-footer-brand .senat-brand-logo-item {
    min-width: 38px;
    height: 40px;
}

.senat-footer-brand .senat-brand-logo-item img {
    max-width: 58px;
    max-height: 34px;
}

.senat-footer-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

.senat-site-footer .de-icon-text {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0;
    min-height: 0;
}

.senat-site-footer .de-icon-text img {
    position: static;
    flex: 0 0 34px;
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(78%) sepia(65%) saturate(807%) hue-rotate(344deg) brightness(99%) contrast(92%);
}

.senat-site-footer .de-icon-text .d-text {
    min-width: 0;
    padding-left: 0;
    line-height: 1.55;
}

.senat-site-footer .de-icon-text h4 {
    margin-bottom: 2px;
    font-size: 0.96rem;
    color: #fff;
}

.senat-footer-map {
    overflow: hidden;
    width: 100%;
    height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.senat-footer-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(18%) contrast(1.04) brightness(0.92);
}

.senat-site-footer .subfooter {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.senat-site-footer .menu-simple a,
.senat-site-footer .subfooter {
    color: rgba(255, 255, 255, 0.74);
}

.senat-site-footer .menu-simple a:hover {
    color: var(--senat-yellow);
}

@media (max-width: 1399.98px) {
    .senat-header-main {
        padding-left: 24px;
        padding-right: 24px;
    }

    .senat-header-main #logo {
        max-width: 500px;
    }

    .senat-brand-logo-item img {
        max-width: 74px;
        max-height: 38px;
    }

    .senat-header-main .de-flex {
        gap: 18px;
    }
}

@media (min-width: 1280px) and (max-width: 1535.98px) {
    .senat-header-main .de-flex {
        gap: 12px;
    }

    .senat-header-main #logo {
        max-width: 452px;
    }

    .senat-brand-logos {
        gap: 5px;
    }

    .senat-brand-logo-item {
        min-width: 40px;
        height: 40px;
    }

    .senat-brand-logo-item img {
        max-width: 56px;
        max-height: 31px;
    }

    body.senat-home-template #mainmenu > li > a,
    body.senat-inner-template #mainmenu > li > a {
        padding-left: 7px;
        padding-right: 7px;
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --senat-header-height: 82px;
    }

    body.senat-home-template header.header-full.transparent,
    body.senat-home-template header.header-full.transparent.header-mobile,
    body.senat-inner-template header.header-full.transparent,
    body.senat-inner-template header.header-full.transparent.header-mobile {
        position: fixed;
        overflow: hidden;
    }

    body.senat-home-template header.header-full.transparent.smaller,
    body.senat-home-template header.header-full.transparent.header-mobile.smaller,
    body.senat-inner-template header.header-full.transparent.smaller,
    body.senat-inner-template header.header-full.transparent.header-mobile.smaller {
        background: linear-gradient(180deg, var(--senat-yellow) 0%, var(--senat-yellow-dark) 100%) !important;
        background-color: var(--senat-yellow-dark) !important;
    }

    .senat-header-main {
        min-height: var(--senat-header-height);
        padding-left: 18px;
        padding-right: 18px;
    }

    .senat-header-main .row,
    .senat-header-main .col-md-12,
    .senat-header-main .de-flex {
        width: 100%;
    }

    .senat-header-main .de-flex {
        min-height: var(--senat-header-height);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-top: 0;
    }

    .senat-header-main #logo {
        max-width: calc(100vw - 96px);
    }

    .senat-brand-logos {
        gap: 6px;
        min-height: 44px;
        padding: 0;
    }

    .senat-brand-logo-item {
        min-width: 40px;
        height: 40px;
    }

    .senat-brand-logo-item img {
        max-width: 52px;
        max-height: 30px;
    }

    .senat-header-actions {
        flex: 0 0 auto;
    }

    .senat-header-actions .menu_side_area {
        min-height: var(--senat-header-height);
        display: flex;
        align-items: center;
    }

    body.senat-home-template #menu-btn,
    body.senat-inner-template #menu-btn {
        display: block;
        position: relative;
        top: auto;
        right: auto;
        float: none;
        margin: 0;
    }

    body.senat-home-template .header-col-mid,
    body.senat-inner-template .header-col-mid {
        position: static;
        flex-basis: 100%;
        order: 3;
        display: none;
    }

    body.senat-home-template header.menu-open .header-col-mid,
    body.senat-inner-template header.menu-open .header-col-mid {
        display: block;
    }

    body.senat-home-template #mainmenu,
    body.senat-inner-template #mainmenu {
        display: none;
        position: static;
        width: 100%;
        margin: 8px 0 0;
        padding: 10px 0 18px;
        background: rgba(16, 17, 21, 0.96);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    body.senat-home-template header.menu-open #mainmenu,
    body.senat-inner-template header.menu-open #mainmenu {
        display: block;
    }

    body.senat-home-template header.menu-open .de-flex,
    body.senat-inner-template header.menu-open .de-flex {
        flex-wrap: wrap;
        align-content: flex-start;
    }

    body.senat-home-template #mainmenu > li,
    body.senat-inner-template #mainmenu > li {
        width: 100%;
        display: block;
        margin: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    body.senat-home-template #mainmenu > li > a,
    body.senat-inner-template #mainmenu > li > a {
        color: #fff !important;
        line-height: 1.4 !important;
        padding: 13px 18px !important;
        text-align: left;
        text-shadow: none !important;
    }

    body.senat-home-template #mainmenu ul,
    body.senat-inner-template #mainmenu ul {
        position: static;
        display: block;
        width: 100%;
        margin: 0;
        padding: 0 0 8px 12px;
        background: transparent !important;
        border: 0;
        box-shadow: none;
    }

    body.senat-home-template #mainmenu ul li a.menu-item,
    body.senat-inner-template #mainmenu ul li a.menu-item {
        color: rgba(255, 255, 255, 0.78) !important;
        padding: 9px 18px !important;
    }
}

@media (max-width: 1199.98px) {
    .senat-header-main #logo {
        max-width: 420px;
    }

    .senat-brand-logos {
        gap: 7px;
    }

    .senat-brand-logo-item img {
        max-width: 62px;
        max-height: 34px;
    }

    .senat-video-shell {
        padding: calc(var(--senat-header-height) + 58px) 0 52px;
    }

    .senat-video-title {
        font-size: clamp(2.75rem, 4.9vw, 4.6rem);
    }

    body.senat-home-template .senat-video-hero h1.senat-video-title {
        font-size: clamp(2.75rem, 4.9vw, 4.6rem) !important;
    }

    .senat-profile-content {
        padding: 64px 72px 52px 76px;
    }

}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .senat-header-main #logo {
        max-width: 300px;
    }

    .senat-brand-logos {
        gap: 3px;
    }

    .senat-brand-logo-item {
        min-width: 32px;
        height: 36px;
    }

    .senat-brand-logo-item img {
        max-width: 44px;
        max-height: 28px;
    }

    body.senat-home-template #mainmenu > li > a,
    body.senat-inner-template #mainmenu > li > a {
        padding-left: 5px;
        padding-right: 5px;
        font-size: 11.5px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --senat-header-height: 76px;
    }

    body.senat-home-template header.header-full.transparent,
    body.senat-home-template header.header-full.transparent:not(.smaller):not(.header-mobile),
    body.senat-home-template header.header-full.transparent.header-mobile,
    body.senat-home-template header.header-full.transparent.header-mobile:not(.smaller) {
        background: rgba(8, 12, 18, 0.94) !important;
        background-color: rgba(8, 12, 18, 0.94) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }

    body.senat-home-template header.header-full.transparent.smaller,
    body.senat-home-template header.header-full.transparent.header-mobile.smaller {
        background: linear-gradient(180deg, var(--senat-yellow) 0%, var(--senat-yellow-dark) 100%) !important;
        background-color: var(--senat-yellow-dark) !important;
    }

    .senat-header-main #logo {
        max-width: calc(100vw - 86px);
    }

    .senat-brand-logos {
        overflow: hidden;
    }

    .senat-brand-logo-item {
        min-width: 42px;
        height: 40px;
    }

    .senat-brand-logo-item img {
        max-width: 52px;
        max-height: 30px;
    }

    body.senat-home-template #mainmenu {
        background: #141414;
    }

    body.senat-home-template #mainmenu > li > a {
        color: #fff !important;
        line-height: 1.4;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    body.senat-home-template #mainmenu ul {
        background: #fff !important;
        box-shadow: none;
    }

    .senat-hero-stats {
        padding-top: 42px;
    }

    .senat-profile-panel {
        min-height: auto;
    }

    .senat-profile-content {
        padding: 52px 42px;
    }

    .senat-profile-heading h2 {
        font-size: clamp(2.6rem, 8vw, 4.2rem);
    }

    .senat-chairman-photo {
        width: 38% !important;
        top: -5% !important;
        left: 0 !important;
    }

    .senat-leadership-section,
    .senat-agenda-section,
    .senat-document-section,
    .senat-program-section,
    .senat-news-section,
    .senat-gallery-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .senat-news-compact .post-content {
        grid-template-columns: 1fr;
    }

    .senat-news-compact .post-image {
        border-radius: 20px 20px 0 0;
    }

    .senat-news-compact .post-image img {
        min-height: 220px;
    }

    .senat-news-compact .post-text {
        min-height: 150px;
    }

    .senat-calendar-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .senat-calendar-picker-group {
        justify-content: flex-start;
    }

    .senat-publication-item {
        grid-template-columns: 210px 1fr;
        gap: 24px;
    }

    .senat-publication-cover {
        height: 250px;
        min-height: 250px;
    }

    .senat-org-branches {
        width: calc(100% - 320px);
    }

    .senat-org-commission-group {
        width: min(100%, 320px);
    }

    .senat-org-commission-pair {
        gap: 18px;
    }

    .senat-duties-section {
        padding-top: 32px;
    }
}

@media (max-width: 767.98px) {
    .senat-video-shell {
        padding: calc(var(--senat-header-height) + 48px) 0 56px;
    }

    .senat-video-frame iframe {
        transform: translate(-50%, -50%) scale(1.12);
    }

    .senat-video-title {
        font-size: clamp(2.25rem, 9vw, 3.35rem);
        line-height: 1.06;
    }

    body.senat-home-template .senat-video-hero h1.senat-video-title {
        font-size: clamp(2.25rem, 9vw, 3.35rem) !important;
        line-height: 1.06;
    }

    .senat-hero-stat-title {
        margin-bottom: 20px;
    }

    .senat-hero-stat-line {
        max-width: 100%;
    }

    .senat-profile-intro {
        padding: 64px 0 32px !important;
    }

    .senat-profile-panel {
        border-radius: 16px;
    }

    .senat-profile-content {
        padding: 42px 28px;
    }

    .senat-profile-copy p {
        font-size: 0.98rem;
        line-height: 1.68;
    }

    .senat-document-card,
    .senat-agenda-card,
    .senat-program-panel {
        padding: 24px;
    }

    .senat-publication-heading {
        font-size: clamp(2.1rem, 10vw, 3.2rem);
    }

    .senat-publication-item {
        grid-template-columns: 1fr;
    }

    .senat-publication-cover {
        height: 360px;
        min-height: 220px;
        aspect-ratio: auto;
        padding: 24px;
    }

    .senat-publication-cover-top {
        top: 24px;
        left: 24px;
        right: 24px;
    }

    .senat-publication-cover-top span {
        font-size: .76rem;
    }

    .senat-calendar-panel {
        padding: 18px;
    }

    .senat-calendar-view-toggle,
    .senat-calendar-picker-group,
    .senat-calendar-picker-group label,
    .senat-calendar-picker-group input,
    .senat-calendar-picker-group button {
        width: 100%;
    }

    .senat-calendar-view-toggle button {
        flex: 1;
    }

    #senatAgendaCalendar .fc-header-toolbar {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    #senatAgendaCalendar .fc-toolbar-chunk {
        display: flex;
        justify-content: center;
    }

    .senat-program-panel .de_count h3 {
        font-size: 2.35rem;
    }

    .senat-org-chart {
        --senat-org-card-w: 220px;
        --senat-org-exec-gap: 34px;
        margin-top: 28px;
    }

    .senat-org-executives {
        flex-wrap: wrap;
        gap: var(--senat-org-exec-gap);
        padding-bottom: 64px;
    }

    .senat-org-executive-lines {
        width: calc(var(--senat-org-card-w) + var(--senat-org-exec-gap));
        height: 64px;
    }

    .senat-org-executive-lines span:nth-child(1),
    .senat-org-executive-lines span:nth-child(2) {
        height: 32px;
    }

    .senat-org-executive-lines span:nth-child(3) {
        top: 32px;
    }

    .senat-org-executive-lines::after {
        top: 32px;
        height: 32px;
    }

    .senat-org-commissions {
        flex-direction: column;
        align-items: center;
        gap: 42px;
    }

    .senat-org-branches {
        width: 2px;
        height: 38px;
        margin-top: 0;
        background: rgba(243, 189, 66, 0.75);
    }

    .senat-org-topline,
    .senat-org-horizontal {
        display: none;
    }

    .senat-org-commission-group::before {
        top: -38px;
        height: 38px;
    }

    .senat-org-commission-group {
        width: min(100%, 420px);
    }

    .senat-gallery-controls {
        display: flex;
        justify-content: flex-start;
        margin-top: 14px;
        margin-left: 0;
    }

    .senat-gallery-card {
        height: 340px;
    }

    .senat-footer-contact {
        grid-template-columns: 1fr;
    }

    .senat-footer-map {
        height: 260px;
    }
}

@media (max-width: 575.98px) {
    .senat-brand-logo-item:nth-child(n+5) {
        display: none;
    }

    .senat-org-executives {
        flex-direction: column;
        align-items: center;
        padding-bottom: 42px;
    }

    .senat-org-executive-lines {
        display: none;
    }

    .senat-org-commission-pair {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .senat-org-commission-pair::before,
    .senat-org-commission-pair::after,
    .senat-org-commission-pair .senat-org-card::before {
        display: none;
    }

    .senat-org-commission-pair .senat-org-card {
        width: min(100%, 240px);
        margin: 0 auto;
    }

    .senat-footer-brand {
        padding: 12px;
    }

    .senat-footer-brand .senat-brand-logos {
        gap: 8px;
    }

    .senat-footer-brand .senat-brand-logo-item:nth-child(n+5) {
        display: inline-flex;
    }

    .senat-footer-brand .senat-brand-logo-item img {
        max-width: 58px;
        max-height: 34px;
    }
}

/* Responsive polish for homepage audit */
@media (max-width: 1199.98px) {
    body.senat-home-template section {
        overflow: hidden;
    }

    .senat-org-chart {
        --senat-org-card-w: 220px;
        --senat-org-exec-gap: clamp(54px, 8vw, 96px);
        --senat-org-commission-group-w: 500px;
    }

    .senat-access-section .row,
    .senat-announcement-section .row.sequence {
        row-gap: 24px;
    }

    .senat-org-commissions {
        gap: 26px;
    }

    .senat-org-branches {
        width: min(100%, calc(((100% - (var(--senat-org-commission-gap) * 2)) / 3 * 2) + (var(--senat-org-commission-gap) * 2)));
    }

    .senat-news-featured .post-image img {
        min-height: 360px;
    }

    .senat-site-footer .row .row {
        --bs-gutter-x: 2rem;
    }
}

@media (max-width: 991.98px) {
    body.senat-home-template section:not(.senat-video-hero) {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    body.senat-home-template h2 {
        font-size: clamp(2.25rem, 6.5vw, 3.45rem);
        line-height: 1.08;
    }

    body.senat-home-template .subtitle {
        margin-bottom: 14px;
    }

    .senat-header-main .de-flex {
        min-height: var(--senat-header-height);
        gap: 10px;
    }

    .senat-header-main #logo {
        max-width: calc(100vw - 96px);
    }

    .senat-video-shell .row {
        margin-right: 0;
        margin-left: 0;
        align-content: center;
        min-height: calc(100svh - var(--senat-header-height));
    }

    .senat-video-shell {
        padding-right: 24px;
        padding-left: 24px;
    }

    .senat-hero-copy,
    .senat-video-title,
    .senat-hero-stats {
        max-width: 660px;
    }

    .senat-hero-stats {
        padding-top: 32px;
    }

    .senat-hero-stat-number {
        font-size: clamp(3.7rem, 13vw, 6rem);
    }

    .senat-profile-intro {
        margin-top: 0;
    }

    .senat-profile-panel {
        min-height: auto;
        border-radius: 18px;
    }

    .senat-profile-content {
        padding: 48px 38px;
    }

    .senat-access-card {
        min-height: 100%;
    }

    .senat-chairman-section .row {
        row-gap: 42px;
    }

    .senat-chairman-section .images-deco-1 {
        max-width: 720px;
        margin: 0 auto;
    }

    .senat-chairman-photo {
        width: 32% !important;
        top: -7% !important;
        left: 3% !important;
    }

    .senat-org-chart {
        --senat-org-card-w: 220px;
        --senat-org-exec-gap: 44px;
        max-width: 720px;
    }

    .senat-org-executives {
        gap: var(--senat-org-exec-gap);
        padding-bottom: 58px;
    }

    .senat-org-card {
        width: min(100%, var(--senat-org-card-w));
    }

    .senat-org-branches,
    .senat-org-topline,
    .senat-org-horizontal,
    .senat-org-commission-group::before {
        display: none;
    }

    .senat-org-commissions {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 46px;
    }

    .senat-org-commission-group {
        width: min(100%, 480px);
    }

    .senat-calendar-panel {
        overflow: hidden;
    }

    #senatAgendaCalendar {
        overflow: clip;
    }

    #senatAgendaCalendar .fc-view-harness,
    #senatAgendaCalendar .fc-scrollgrid {
        min-width: 0;
    }

    .senat-publication-list {
        margin-top: 30px;
    }

    .senat-publication-item {
        align-items: stretch;
    }

    .senat-news-featured .post-image img {
        min-height: 330px;
    }

    .senat-gallery-section .row.align-items-end {
        align-items: flex-start !important;
    }

    .senat-site-footer .row .row {
        row-gap: 24px;
    }
}

@media (max-width: 767.98px) {
    body.senat-home-template .wow {
        visibility: visible !important;
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        animation-name: none !important;
        opacity: 1 !important;
    }

    body.senat-home-template section:not(.senat-video-hero) {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    body.senat-home-template h2 {
        font-size: clamp(2rem, 9vw, 2.9rem);
    }

    .senat-video-shell {
        min-height: 100svh;
        padding: calc(var(--senat-header-height) + 34px) 24px 42px;
    }

    .senat-video-shell .row {
        width: 100%;
        margin: 0;
    }

    .senat-video-title {
        font-size: clamp(2rem, 10vw, 3rem);
        max-width: min(12ch, calc(100vw - 48px)) !important;
    }

    body.senat-home-template .senat-video-hero h1.senat-video-title {
        max-width: min(12ch, calc(100vw - 48px)) !important;
        font-size: clamp(2rem, 10vw, 3rem) !important;
    }

    .senat-hero-stats {
        width: 100%;
        max-width: calc(100vw - 48px);
        padding: 24px 0 0;
    }

    .senat-hero-stat-title {
        max-width: 15rem;
        margin-bottom: 14px;
        font-size: 1.08rem;
    }

    .senat-hero-stat-number {
        font-size: clamp(3.25rem, 20vw, 4.75rem);
    }

    .senat-hero-stat-line {
        margin: 18px 0 12px;
    }

    .senat-profile-intro {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .senat-profile-content {
        padding: 38px 26px;
    }

    .senat-profile-heading h2 {
        font-size: clamp(2.35rem, 12vw, 3.25rem);
    }

    .senat-profile-copy {
        max-width: 100%;
    }

    .senat-access-section .row,
    .senat-duties-section .row.mt-4,
    .senat-publication-list,
    .senat-news-section .row,
    .senat-gallery-section .row {
        row-gap: 22px;
    }

    .senat-access-card {
        padding: 24px !important;
        border-radius: 14px !important;
    }

    .senat-access-icon,
    .senat-access-icon-img {
        width: 58px !important;
        height: 58px !important;
        font-size: 54px;
        line-height: 58px;
    }

    .senat-announcement-section .de-item,
    .senat-announcement-section .de-item img {
        min-height: 330px;
    }

    .senat-announcement-section .de-item .d-overlay .d-text {
        bottom: 0;
        padding: 24px;
    }

    .senat-announcement-section .de-item .d-overlay .d-text .btn-main {
        opacity: 1;
    }

    .senat-chairman-section .images-deco-1 {
        padding-top: 26px;
    }

    .senat-chairman-section .images-deco-1 .senat-chairman-bg {
        aspect-ratio: 4 / 3;
    }

    .senat-chairman-photo {
        width: 38% !important;
        border-width: 5px;
    }

    .senat-org-chart {
        --senat-org-card-w: 172px;
        --senat-org-exec-gap: 28px;
    }

    .senat-org-executives {
        gap: var(--senat-org-exec-gap);
    }

    .senat-org-card {
        width: min(100%, var(--senat-org-card-w));
    }

    .senat-org-card h4 {
        font-size: 1rem;
    }

    .senat-org-position {
        font-size: .9rem;
    }

    .senat-org-commission-group {
        width: min(100%, 390px);
    }

    .senat-org-commission-pair {
        gap: 18px;
    }

    .senat-calendar-panel {
        margin-top: 24px;
        padding: 14px;
        border-radius: 14px !important;
    }

    #senatAgendaCalendar .fc-view-harness,
    #senatAgendaCalendar .fc-scrollgrid {
        min-width: 0;
    }

    #senatAgendaCalendar .fc-daygrid-day-frame {
        min-height: 108px;
    }

    .senat-calendar-event {
        gap: 4px;
        padding: 7px;
    }

    .senat-calendar-event strong {
        font-size: .78rem;
        line-height: 1.2;
        white-space: normal;
    }

    .senat-calendar-event span,
    .senat-calendar-event em {
        display: none;
    }

    .senat-publication-cover {
        height: auto;
        min-height: 310px;
    }

    .senat-publication-copy h3 {
        font-size: clamp(1.55rem, 8vw, 2.1rem);
    }

    .senat-news-featured .post-image img,
    .senat-news-compact .post-image img {
        min-height: 260px;
    }

    .senat-news-section .post-text {
        padding: 22px;
    }

    .senat-gallery-controls {
        gap: 10px;
    }

    .senat-gallery-slider {
        padding-bottom: 34px;
    }

    .senat-site-footer .de-flex {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 575.98px) {
    :root {
        --senat-header-height: 68px;
    }

    .senat-header-main {
        min-height: var(--senat-header-height);
    }

    .senat-header-main .de-flex {
        min-height: var(--senat-header-height);
    }

    body.senat-home-template header.header-full.transparent.smaller .senat-header-main,
    body.senat-home-template header.header-full.transparent.smaller .senat-header-main .de-flex {
        min-height: var(--senat-header-height);
    }

    .senat-brand-logos {
        gap: 5px;
        min-height: 46px;
    }

    .senat-brand-logo-item {
        min-width: 34px;
        height: 36px;
    }

    .senat-brand-logo-item img {
        max-width: 43px;
        max-height: 28px;
    }

    .senat-header-actions {
        flex: 0 0 auto;
    }

    .senat-video-title {
        max-width: min(11ch, calc(100vw - 40px)) !important;
    }

    body.senat-home-template .senat-video-hero h1.senat-video-title {
        max-width: min(11ch, calc(100vw - 40px)) !important;
    }

    .senat-profile-content {
        padding: 32px 20px;
    }

    .senat-profile-copy p {
        font-size: .94rem;
    }

    .senat-profile-button,
    .senat-publication-all,
    .senat-announcement-section .btn-main,
    .senat-site-footer .btn-main {
        width: 100%;
        text-align: center;
    }

    .senat-announcement-section .de-item,
    .senat-announcement-section .de-item img {
        min-height: 300px;
    }

    .senat-announcement-section .de-item .d-overlay .d-label {
        top: 16px;
        right: 16px;
        font-size: 11px;
    }

    .senat-chairman-section h2 {
        font-size: clamp(2rem, 11vw, 2.7rem);
    }

    .senat-chairman-section .images-deco-1 .senat-chairman-bg {
        aspect-ratio: 1 / .86;
    }

    .senat-chairman-photo {
        width: 44% !important;
        top: -4% !important;
        left: 4% !important;
    }

    .senat-duties-section .de-step-s1 {
        min-height: 240px;
        padding: 34px 28px;
        border-radius: 16px;
    }

    .senat-duties-section .de-step-s1 .d-number {
        font-size: 4.2rem;
    }

    .senat-org-chart {
        --senat-org-card-w: 150px;
    }

    .senat-org-card {
        width: min(100%, var(--senat-org-card-w));
    }

    .senat-org-card .bg-color-2 {
        border-radius: 16px !important;
    }

    .senat-org-commission-pair {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .senat-org-commission-pair .senat-org-card h4 {
        min-height: auto;
    }

    #senatAgendaCalendar .fc-view-harness,
    #senatAgendaCalendar .fc-scrollgrid {
        min-width: 0;
    }

    #senatAgendaCalendar .fc-col-header-cell-cushion {
        padding: 8px 2px;
        font-size: .72rem;
    }

    #senatAgendaCalendar .fc-daygrid-day-frame {
        min-height: 84px;
        padding: 4px;
    }

    #senatAgendaCalendar .fc-daygrid-day-number {
        min-width: 24px;
        height: 24px;
        margin: 0;
        border-radius: 6px;
        font-size: .75rem;
    }

    #senatAgendaCalendar .fc-daygrid-day-events {
        gap: 4px;
        margin-top: 4px;
    }

    .senat-calendar-event {
        padding: 5px;
    }

    .senat-calendar-event strong {
        font-size: .68rem;
    }

    .senat-publication-cover {
        min-height: 280px;
        padding: 22px;
    }

    .senat-publication-cover strong {
        min-height: 0;
        max-height: none;
        font-size: clamp(1.25rem, 8vw, 1.7rem);
    }

    .senat-news-section .post-image .d-tagline {
        top: 14px;
        right: 14px;
    }

    .senat-news-featured .post-image img,
    .senat-news-compact .post-image img {
        min-height: 230px;
    }

    .senat-gallery-card {
        height: 300px;
    }

    .senat-gallery-card .d-text {
        bottom: 0;
        padding: 22px;
    }

    .senat-footer-map {
        height: 220px;
    }
}

@media (max-width: 390px) {
    body.senat-home-template h2 {
        font-size: clamp(1.82rem, 10vw, 2.35rem);
    }

    .senat-video-title {
        max-width: calc(100vw - 36px) !important;
        white-space: normal !important;
        word-break: normal;
        overflow-wrap: anywhere;
        font-size: clamp(1.48rem, 8.4vw, 1.82rem);
    }

    body.senat-home-template .senat-video-hero h1.senat-video-title {
        max-width: calc(100vw - 36px) !important;
        white-space: normal !important;
        overflow-wrap: anywhere;
        font-size: clamp(1.48rem, 8.4vw, 1.82rem) !important;
        line-height: 1.08;
    }

    .senat-hero-stats {
        max-width: calc(100vw - 36px);
    }

    .senat-hero-stat-title {
        font-size: .96rem;
    }

    .senat-hero-stat-number {
        font-size: clamp(2.85rem, 18vw, 3.7rem);
    }

    .senat-brand-logo-item:nth-child(n+5) {
        display: none;
    }

    .senat-profile-content {
        padding: 28px 18px;
    }

    .senat-org-chart {
        --senat-org-card-w: 138px;
    }

    .senat-org-card {
        width: min(100%, var(--senat-org-card-w));
    }

    .senat-duties-section .de-step-s1 {
        min-height: 238px;
        padding: 32px 28px;
    }

    .senat-duties-section .de-step-s1 .d-number {
        top: 20px;
        right: 22px;
        font-size: 3.2rem;
        opacity: .86;
    }

    .senat-duties-section .de-step-s1 h4,
    .senat-duties-section .de-step-s1 p {
        padding-right: 34px;
    }

    .senat-org-card h4 {
        font-size: .94rem;
    }

    .senat-org-position,
    .senat-org-card span {
        font-size: .78rem;
    }

    .senat-org-commission-pair {
        gap: 12px;
    }

    .senat-publication-cover {
        min-height: 252px;
    }

    .senat-gallery-card {
        height: 278px;
    }
}
