/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500;600;700;800&display=swap");

/* CSS Variables */
:root {
    --brand-red: #E63946;
    --brand-blue: #134DA4;
    --brand-dark: #20222E;
    --brand-dark-secondary: #444a5a;
    --brand-light: #F1F3FF;
    --brand-border: #E1E6FA;
    --brand-border-dark: #8a91ad;
    --brand-gray: #6d7283;
    --brand-light-gray: #D3D7F0;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bricolage Grotesque', -apple-system, Roboto, Helvetica, sans-serif;
    background-color: var(--brand-light);
    color: var(--brand-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.hidden {
    display: none !important;
}

/* Utility Classes */
.w-full {
    width: 100%;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-2\.5 {
    gap: 0.625rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-5 {
    gap: 1.25rem;
}

.gap-10 {
    gap: 2.5rem;
}

.gap-\[30px\] {
    gap: 30px;
}

.gap-2\.5 {
    gap: 0.625rem;
}

.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.container {
    width: 100%;
    padding-right: .625rem;
    padding-left: .625rem;
    margin-right: auto;
    margin-left: auto;
}

/* Header Styles */
.header {
    width: 100%;
}
.top-bar {
    width: 100%;
    height: 30px;
    background: url(../images/top-bar-bg.png) no-repeat center center;
    background-size: cover;
}

.main-header {
    border-bottom: 1px solid var(--brand-border-dark);
    background-color: var(--brand-light);
    padding: 0;
}

.header-content {
    display: flex;
    align-items: center;
    padding: .5rem 0;
    justify-content: space-between;
}

.header-content .btn {
    padding: 1rem 1.25rem;
}

.header-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.logo-link {
    flex-shrink: 0;
}

.logo-img {
    height: 43px;
    width: auto;
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--brand-dark);
}
.close-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--brand-dark);
}

.header.sb-active .menu-icon,
.header:not(.sb-active) .close-icon {
    display: none;
}

.nav-search-btn {
    margin-left: 1.25rem;
    border-left: 1px solid var(--brand-border);
}

.navbar {
    display: flex;
    align-items: center;
    margin-left: -1px;
}
.navbar-overlay {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    border-right: 1px solid var(--brand-border);
}
.nav-list li {
    border-left: 1px solid var(--brand-border);
}

.sub-nav-list {
    display: none;
}

.nav-search-btn,
.nav-link {
    display: flex;
    align-items: center;
    padding: 1.25rem 1rem;
    font-weight: 500;
    font-size: 1rem;
    line-height: calc(1.5rem - 1px);
    color: var(--brand-dark);
    transition: all 0.2s ease;
}

.nav-search-btn:hover,
.nav-link:hover,
.nav-link.active {
    background-color: #E5E9FC;
    color: var(--brand-red);
}

.search-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--brand-dark);
}
.nav-link .nav-link-text {
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}
.nav-link:hover .nav-link-text,
.nav-link.active .nav-link-text {
    border-bottom-color: var(--brand-red);
}

.header-actions {
    display: none;
    align-items: center;
    gap: 0.625rem;
}

.sub-nav {
    display: none;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--brand-border-dark);
    background-color: var(--brand-dark);
    padding: 0;
}

.sub-nav-content {
    display: flex;
    align-items: center;
    width: 1190px;
    max-width: 100%;
    margin: 0 auto;
    gap: 2.5rem;
    padding: 1.25rem 0 1.25rem 1.25rem;
    border-left: 1px solid #46495C;
    flex: 1;
}

.sub-nav-link {
    color: white;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.125rem;
    white-space: nowrap;
    transition: color 0.2s;
}

.sub-nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: calc(0.5rem + 1px) 1.25rem;
    border-radius: 2px;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5rem;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    gap: 0.25rem;
}

.btn.disabled {
    opacity: .5;
    pointer-events: none;
}

/* .btn-favorite,
.btn-save {
    display: none;
} */
.btn-favorite .btn-icon {
    color: #9A9FB2;
}

.btn-favorite.active .btn-icon {
    color: #E63946;
}

.btn-red {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
    color: white;
}

.btn-red:hover {
    background-color: #e41b2f;
    border-color: #e41b2f;
}

.btn-blue {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    color: white;
}

.btn-blue:hover {
    background-color: #104289;
    border-color: #104289;
}

.btn-outline {
    border-color: var(--brand-dark);
    color: var(--brand-dark);
    background: transparent;
}

.btn-outline:hover {
    background-color: rgba(228, 15%, 15%, 0.05);
    border-color: rgba(228, 15%, 15%, 0.05);
}

.btn-outline-white {
    border-color: white;
    color: white;
    background: transparent;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-full {
    width: 100%;
}

.btn-small {
    padding: 0.375rem 1.25rem;
    align-self: flex-start;
}

.btn-icon {
    min-width: 1.5rem;
    height: 1.5rem;
}

/* Main Content */
.main-content {
    padding: 1.25rem 0;
}

.section-container {
    width: 100%;
    max-width: 1520px;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .section-container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .section-container {
        padding: 0;
    }
}
.section {
    padding: 1.25rem 0;
}

.section-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mt-30 {
    margin-top: 30px;
}

.section-header {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    width: 100%;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid var(--brand-dark);
}
.section-header.justify-between {
    justify-content: space-between;
}
.section-header.align-center {
    align-items: center;
}
.section-header > div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.section-header.with-back {
    align-items: center;
    gap: .625rem;
}
.back-button {
    display: inline-flex;
    text-decoration: none;
}
.back-icon {
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-title {
    flex: 1 0 0;
    color: var(--brand-dark);
    font-weight: 500;
    font-size: 1.875rem;
    line-height: 2.75rem;
    text-transform: uppercase;
}
.section-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    max-width: 100%;
}
.section-actions .item-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.section-divider {
    height: 0;
    width: 100%;
    border-top: 1px solid var(--brand-dark);
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.view-all-link span {
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.1375rem;
}

.view-all-icon {
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
}

.view-all-link.active .view-all-icon.open,
.view-all-link:not(.active) .view-all-icon.close {
    display: none;
}

.view-all-icon svg {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 0.625rem;
    height: 0.75rem;
    color: var(--brand-blue);
}

/* Hero Section */
.hero-layout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.hero-main {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hero-card {
    height: 574px;
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    border-radius: 5px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(32, 33, 36, 0.00) 0%, #202124 100%);
    border-radius: 5px;
}

.hero-mobile-bg {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.hero-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.hero-card-top .btn-share {
    margin-left: auto;
}

.live-badge {
    display: flex;
    padding: 0.75rem 0.9375rem;
    align-items: center;
    gap: 0.375rem;
    border-radius: 2px;
    background-color: white;
}

.live-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--brand-red);
}

.live-badge span {
    color: var(--brand-red);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.25rem;
}

.hero-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    position: relative;
    margin-top: auto;
}

.hero-card-content.bottom {
    margin-top: .625rem;
}

.hero-title-section {
    display: flex;
    flex-direction: column;
}

.hero-title-box {
    padding: 0.625rem 0.625rem;
    display: inline-block;
    align-self: flex-start;
}

.hero-title-box.blue {
    background-color: var(--brand-blue);
}

.hero-title-box.red {
    background-color: var(--brand-red);
    padding-top: 0.625rem;
    padding-bottom: 0.3125rem;
}

.hero-title-box span {
    color: white;
    font-weight: 700;
    font-size: 2rem;
    line-height: normal;
}

.hero-title-box.red span {
    font-weight: 400;
}

.hero-description-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-description {
    color: white;
    font-size: 1rem;
    line-height: normal;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.hero-sidebar {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.guest-row {
    display: flex;
    flex-wrap: wrap;
    margin: -1.25rem -.625rem 0;
}
.guest-row > .guest-card {
    padding: 0 .625rem;
    margin-top: 1.25rem;
}

.guest-card {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.guest-image {
    width: 200px;
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
}

.guest-info {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    width: 100%;
}

.guest-name {
    color: var(--brand-blue);
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.6875rem;
    text-decoration: underline;
}

a.guest-name:hover {
    text-decoration: none;
}

.guest-title {
    color: var(--brand-dark);
    font-size: 1rem;
    line-height: normal;
}

/* Shows Grid */
.shows-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.shows-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}
.shows-card .item-images {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}
.shows-card .item-images a,
.action-list-item-images a,
.shows-calendar-card-images a {
    display: block;
    text-decoration: none;
    transition: opacity 0.2s;
}
.shows-card .item-images .item-image {
    width: 150px;
    height: 150px;
    max-width: calc(50% - 10px);
    border-radius: 5px;
    object-fit: cover;
    flex-shrink: 0;
}

.shows-card .item-images .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.shows-card .item-images a:hover,
.action-list-item-images a:hover,
.shows-calendar-card-images a:hover {
    opacity: 0.9;
}
.shows-card .item-image-placeholder {
    width: 150px;
    height: 150px;
    max-width: calc(50% - 10px);
    border-radius: 5px;
    background-color: #e5e7eb;
    flex-shrink: 0;
}

.shows-card .item-content {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.shows-card .item-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem 0.6875rem;
}

.shows-card .item-date {
    color: var(--brand-dark);
    font-size: 0.875rem;
    line-height: 0.9rem;
}

.meta-divider {
    width: 14px;
    height: 1px;
    background-color: rgba(32, 34, 46, 0.5);
}

.shows-card .item-host {
    color: var(--brand-blue);
    font-size: 0.875rem;
    line-height: 0.9rem;
    text-decoration: underline;
}

.shows-card .item-host:hover {
    text-decoration: none;
}

.shows-card .item-title {
    color: var(--brand-dark);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.6875rem;
    min-height: 3.375rem;
}

.shows-card .item-title a {
    text-decoration: underline;
}

.shows-card .item-title a:hover {
    text-decoration: none;
}

.shows-card .item-description {
    color: var(--brand-gray);
    font-size: 1rem;
    line-height: normal;
}

.shows-card .item-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: auto;
}
.shows-card .item-btns,
.show-hero-actions .item-btns,
.hero-actions .item-btns {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.625rem;
}
.hero-actions .item-btns {
    justify-content: flex-end;
    width: 100%;
}
.shows-card .item-btns {
    display: contents;
}

/* List View */
.shows-list {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}
.shows-list .shows-card .item-images {
    margin-bottom: 0;
    flex: 0 0 auto;
}
.shows-list .shows-card .item-title {
    min-height: 1.6875rem;
}
.shows-list .shows-card .item-actions {
    margin-top: .875rem;
}

/* Banner 250 */
.banner-250 {
    position: relative;
    height: 393px;
    border-radius: 10px;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6875rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-title {
    color: white;
    font-weight: 700;
    font-size: 5.125rem;
    line-height: normal;
}

.banner-subtitle {
    color: white;
    font-weight: 500;
    font-size: 2.5rem;
    line-height: normal;
}

/* Featured Section */
.carousel-btn {
    color: white;
    transition: opacity 0.2s;
    background: transparent;
    border: none;
    cursor: pointer;
}

.carousel-btn:hover {
    opacity: 0.8;
}

.carousel-btn svg {
    width: 2.3125rem;
    height: 2.3125rem;
}

.slider-type-1 {
    margin-bottom: 3.25rem;
}

.slider-type-1 .item-slide {
    position: relative;
}

.slider-type-1 .slick-dots {
    position: absolute;
    left: 0;
    bottom: -3.25rem;
    width: 100%;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .625rem;
    height: 2rem;
    z-index: 2;
}
.slider-type-1 .slick-dots li button {
    width: .75rem;
    height: .75rem;
    background-color: #D9D9D9;
    border-radius: 50%;
    text-indent: -9999px;
}
.slider-type-1 .slick-dots li.slick-active button {
    background-color: #060606;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 3.5rem;
    background-size: 31px 56px;
    background-position: center;
    background-repeat: no-repeat;
    text-indent: -99999px;
    z-index: 2;
}
.slick-prev {
    left: 60px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31 56'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-width='4' d='M29.3285 1.41398L2.82843 27.9141L29.3285 54.4141'/%3e%3c/svg%3e");
}
.slick-next {
    right: 60px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31 56'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-width='4' d='M1.41423 54.4141L27.9143 27.9141L1.41423 1.41398'/%3e%3c/svg%3e");
}

.slide-image {
    position: relative;
    width: 100%;
    height: 574px;
}
.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.slide-image:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(32, 33, 36, 0) 0%, #202124 100%);
    border-radius: 5px;
}
.slide-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.6875rem;
    padding: 0 7rem;
    text-align: center;
    z-index: 2;
}

.slide-content .item-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide-content .item-title {
    color: white;
    font-weight: 700;
    font-size: 5.125rem;
    line-height: normal;
}

.slide-content .item-subtitle {
    color: white;
    font-weight: 500;
    font-size: 2.5rem;
    line-height: normal;
}

.slide-content .item-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
}
.slide-content .item-actions .item-btns {
    display: contents;
}

.slide-content .item-actions .btn {
    width: 140px;
}

/* Viewpoints Section */
.viewpoints-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

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

.card-1 .item-image {
    height: 240px;
    width: 100%;
    object-fit: cover;
    border-radius: 0.25rem;
}
.card-1 .item-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0.25rem;
}

.card-1 .item-content {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    gap: 0.625rem;
}

.card-1 .item-actions {
    margin-top: auto;
}

.card-1 .item-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem 0.6875rem;
}

.card-1 .item-date {
    color: var(--brand-dark);
    font-size: 0.875rem;
    line-height: 0.9rem;
}

.card-1 .item-author {
    color: var(--brand-blue);
    font-size: 0.875rem;
    line-height: 0.9rem;
    text-decoration: underline;
}

.card-1 .item-author:hover {
    text-decoration: none;
}

.card-1 .item-title {
    color: var(--brand-dark);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.6875rem;
}

.card-1 .item-title a {
    text-decoration: underline;
}

.card-1 .item-title a:hover {
    text-decoration: none;
}

.card-1 .item-description {
    color: var(--brand-gray);
    font-size: 1rem;
    line-height: normal;
}
.card-1 .item-actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: auto;
}
.calendar-view {
    margin-bottom: 1.25rem;
}
.list-view {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}
.list-view .card-1 {
    flex-direction: row;
    gap: 1.25rem;
}
.list-view .card-1 .item-image {
    flex: 0 0 auto;
    width: 300px;
    height: 220px;
}
.list-view .card-1 .item-content {
    flex: 1 0 0;
    align-self: center;
}
.list-view .card-1 .item-actions {
    margin-top: .5rem;
}

/* Calendar Section */
.take-actions-calendar-section {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.calendar-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: .625rem;
}

.calendar-section-left {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.calendar-section-title {
    color: var(--brand-dark);
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 43.2px;
    margin: 0;
}

.calendar-section-divider {
    color: var(--brand-dark);
    font-size: 1rem;
    line-height: 18.2px;
}

.calendar-section-filters {
    display: flex;
    align-items: flex-end;
    gap: 0.625rem;
}

.calendar-filter {
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
}

.calendar-filter-label {
    color: var(--brand-dark);
    font-size: 1rem;
    line-height: 18.2px;
}

.calendar-filter-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.calendar-filter-select {
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 400;
    color: var(--brand-dark);
    padding-right: 1.5rem;
    appearance: none;
    cursor: pointer;
    width: 100%;
}

.calendar-filter-select:focus {
    outline: none;
}

.calendar-filter-select-icon {
    position: absolute;
    right: 0;
    width: 18px;
    height: 18px;
    color: var(--brand-dark);
    pointer-events: none;
}

.calendar-section-right {
    display: flex;
    align-items: flex-end;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.calendar-nav-link {
    display: flex;
    align-items: flex-end;
    gap: 0.625rem;
    text-decoration: none;
    color: #134DA4;
    font-weight: 700;
    font-size: 1rem;
    line-height: 18.2px;
    transition: opacity 0.2s;
}

.calendar-nav-link:hover {
    opacity: 0.8;
}

.calendar-nav-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

/* Calendar Grid */
.calendar-grid-wrapper {
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.calendar-weekdays-header {
    display: flex;
    background-color: #134DA4;
}

.calendar-weekday-header {
    flex: 1;
    padding: 0.75rem;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.calendar-weekday-header:first-child {
    border-top-left-radius: 0.5rem;
}

.calendar-weekday-header:last-child {
    border-top-right-radius: 0.5rem;
}

.calendar-body {
    display: flex;
    flex-direction: column;
}

.calendar-week {
    display: flex;
}
.calendar-week:not(:last-child) {
    margin-bottom: -1px;
}

.calendar-day-cell {
    flex: 1;
    min-height: 193px;
    padding: 0.75rem;
    border: 1px solid #9295A5;
    background-color: #DFE3F8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.calendar-day-cell:not(:last-child) {
    margin-right: -1px;
}

.calendar-day-cell.other-month {
    background-color: #CBD0ED;
}

.calendar-day-number {
    color: var(--brand-dark);
    font-size: 1.25rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.calendar-day-number.other-month-text {
    opacity: 0.4;
}

.calendar-day-events {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    gap: 0.25rem;
    flex: 1;
}

.calendar-day-event {
    color: var(--brand-dark);
    font-size: 1rem;
    line-height: 1.125rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: color 0.2s;
}

.calendar-day-event:hover {
    color: #134DA4;
}

.calendar-day-dots {
    color: var(--brand-dark);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* Calendar View */
.calendar-page {
    min-height: 100vh;
    background-color: hsl(229, 100%, 97%);
}

.calendar-section {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

/* Shows Calendar Day Cells */
.shows-calendar-events {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.625rem;
    flex: 1;
}

.shows-calendar-event {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.shows-calendar-event-title {
    color: var(--brand-dark);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    line-height: normal;
    transition: color 0.2s;
}

.shows-calendar-event-title:hover {
    color: #134DA4;
}

.shows-calendar-event-guests {
    color: var(--brand-dark);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    opacity: 0.4;
    line-height: normal;
}

.shows-calendar-event-users {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.shows-calendar-event-user-image {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.shows-calendar-empty {
    height: 82px;
}

/* Details Hero Section */
.details-page {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
.details-page .section {
    padding: 0;
}
.show-hero-card {
    height: 574px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
    border-radius: 5px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 1.5rem;
}
.show-hero-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(32, 33, 36, 0.00) 0%, #202124 100%);
    border-radius: 5px;
}
.show-hero-top {
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.show-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    position: relative;
}

.show-hero-date-chip {
    padding: 0.625rem 0.625rem;
    display: inline-block;
    align-self: flex-start;
    background-color: #E63946;
    color: white;
    font-size: 2rem;
    font-weight: 400;
    line-height: normal;
}

.show-hero-actions {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.show-description-text {
    color: #676A79;
    font-size: 16px;
    line-height: normal;
    margin-bottom: 1rem;
}
.show-editor-text p {
    color: #676A79;
    font-size: 16px;
    line-height: normal;
    margin-bottom: 1rem;
}
.show-editor-text p:last-child {
    margin-bottom: 0;
}

/* View Article */
.view-article {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}
.view-article .item-image {
    width: 100%;
    max-height: 447px;
    overflow: hidden;
    margin-top: .625rem;
}
.view-article .item-image img {
    width: 100%;
    height: auto;
    max-height: 447px;
    object-fit: cover;
}
.view-article .item-content {
    width: 1195px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.view-article .item-header {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--brand-dark);
}
.view-article .item-title {
    color: var(--brand-dark);
    font-weight: 400;
    font-size: 45px;
    line-height: 1;
    margin: 0;
}
.view-article .item-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.view-article .item-author {
    color: var(--brand-dark);
    font-size: 1.125rem;
}
.view-article .item-author .author-name {
    text-decoration: underline;
}
.view-article .item-date {
    color: #676A79;
    font-size: 1.125rem;
}
.view-article .item-body {
    color: #676A79;
    font-size: 1rem;
    line-height: 1.6;
}
.view-article .item-body p:not(:last-child) {
    margin-bottom: 1rem;
}
.view-article .item-body h3 {
    font-weight: 700;
    font-size: 30px;
    color: var(--brand-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
.view-article .item-btns {
    display: flex;
    flex-wrap: wrap;
    gap: .625rem;
}

/* Take Action Grid */
.take-action-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.take-action-two-column {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}
.take-action-contact-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .625rem;
}
.take-action-message-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .625rem;
}

/* Contact Form */
.take-action-contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.items-form {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}
.items-form .form-actions {
    margin-top: 1.875rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-field-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -.625rem;
    margin-right: -.625rem;
    margin-top: -1.25rem;
}
.form-field-row .form-field {
    padding-left: .625rem;
    padding-right: .625rem;
    margin-top: 1.25rem;
    width: 100%;
}
.form-field-row .col-2 {
    width: 100%;
}

.form-label {
    color: #20222E;
    font-size: 1.125rem;
    letter-spacing: -0.36px;
}

.form-input-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border: 1px solid hsl(214.3, 31.8%, 91.4%);
}

.form-input-text {
    color: #20222E;
    font-size: 1rem;
    letter-spacing: -0.32px;
}

.form-dropdown-icon {
    width: 20px;
    height: 20px;
    color: #3F3F46;
}

.form-input,
.form-select,
.form-textarea {
    padding: 1.125rem 1.25rem;
    background-color: transparent;
    border: 1px solid #8A8A8A;
    color: #20222E;
    font-size: 1rem;
    line-height: 1.375rem;
    letter-spacing: -0.32px;
    font-family: inherit;
    box-shadow: none;
    outline: none;
}
.form-select {
    width: 100%;
    padding-right: 2.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%233F3F46' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M5 7.5L10 12.5L15 7.5'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 20px 20px;
}
.form-textarea {
    resize: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--brand-blue);
}

.form-actions {
    display: flex;
    gap: 0.625rem;
    margin-top: 1.25rem;
}
.form-actions.columns {
    flex-direction: column;
}

/* Checkbox */
.form-check {
    display: inline-flex;
    gap: .625rem;
    min-height: 2rem;
    cursor: pointer;
}
.form-check-label {
    align-self: center;
    cursor: pointer;
}
.form-check-input {
    --bs-form-check-bg: transparent;
    flex-shrink: 0;
    min-width: 2rem;
    height: 2rem;
    vertical-align: top;
    appearance: none;
    background-color: var(--bs-form-check-bg);
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #8A8A8A;
    color-adjust: exact;
    print-color-adjust: exact;
    cursor: pointer;
}

.form-check-input[type=checkbox] {
    border-radius: 5px;
}

.form-check-input[type=radio] {
    border-radius: 50%;
}

.form-check-input:focus {
    outline: 0;
    box-shadow: none;
}

.form-check-input:checked {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type=radio] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input:disabled {
    pointer-events: none;
    filter: none;
    opacity: 0.5;
}

.form-check-input[disabled]~.form-check-label,
.form-check-input:disabled~.form-check-label {
    cursor: default;
    opacity: 0.5;
}

/* Message Section */
.take-action-message-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 1.25rem;
    background-color: var(--brand-light-gray);
}
.message-recipients {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.message-recipient {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1.5rem 1rem;
    border: 1px solid #BBB;
    background-color: white;
}
.recipient-icon {
    width: 45px;
    height: 54px;
    object-fit: contain;
}
.recipient-text {
    color: #20222E;
    font-size: 1.125rem;
    letter-spacing: -0.36px;
}
.message-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 2.5rem;
    border: 1px solid #BBB;
    background-color: white;
}
.message-body {
    padding: 2.5rem;
    border: 1px solid #BBB;
    background-color: white;
}
.message-text {
    color: #20222E;
    font-size: 1.125rem;
    letter-spacing: -0.36px;
    line-height: 1.6;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.grid-col-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.card-2 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.625rem;
}
.card-2 .item-image {
    width: 200px;
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
    flex: 0 0 auto;
}
.card-2 .item-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}
.card-2 .item-image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 5px;
    background-color: #E0E0E0;
    flex-shrink: 0;
}
.card-2 .item-info {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    flex: 1 0 0;
}
.card-2 .item-title {
    color: var(--brand-dark);
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.6875rem;
    text-decoration: none;
}
.card-2 .item-role {
    color: var(--brand-dark);
    font-size: 1rem;
    line-height: normal;
}
.card-2 .item-text {
    color: #676A79;
    font-size: 1rem;
    line-height: normal;
}
.card-2 .item-actions {
    margin-top: .625rem;
    display: flex;
    gap: .625rem;
}
.social-icons {
    display: flex;
    align-items: center;
    gap: .625rem;
}
.social-icons .item-icon {
    width: 1.125rem;
    height: 1.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.2s;
}
.social-icons .item-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}
.social-icons .item-icon:hover {
    opacity: 0.9;
}

.view-details .card-2 .item-info {
    width: 100%;
    max-width: 800px;
}
.view-details .card-2 .item-title {
    font-size: 2rem;
    line-height: 1;
}
.view-details .card-2 .item-text {
    color: var(--brand-dark);
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
}

.social-btn {
    height: 70px;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    border-radius: .625rem;
    color: white;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.125rem;
    transition: opacity 0.2s;
    border: none;
    cursor: pointer;
}

.social-btn:hover {
    opacity: 0.9;
}

.social-btn.facebook {
    background-color: #0865FE;
}

.social-btn.twitter {
    background-color: #151515;
}

.social-btn.instagram {
    background: linear-gradient(146deg, #0041E2 5.97%, #DE15C1 38.26%, #FF4C54 66.37%, #FF9000 100.46%, #FFCF53 130.37%);
}

.social-btn.youtube {
    background-color: #F40000;
}

.social-btn.spotify {
    background-color: #1ED760;
}

.social-icon {
    width: 40px;
    height: 40px;
}

.social-btn.twitter .social-icon,
.social-btn.instagram .social-icon {
    width: 35px;
    height: 36px;
}

.social-btn.spotify .social-icon {
    width: 29px;
    height: 29px;
}

.social-btn.youtube .social-icon {
    width: 35px;
    height: 26px;
}

/* Pagination */
.section-pagination {
    display: flex;
    gap: 1.25rem;
    width: 100%;
    margin-top: 1.25rem;
    position: relative;
    padding-top: 0.625rem;
    border-top: 1px solid var(--brand-dark);
}

.pagination-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .875rem 0;
    width: 100%;
}
.pagination-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.pagination-arrow {
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.pagination-arrow.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.pagination-arrow-circle {
    width: 20px;
    height: 20px;
    display: block;
}

.pagination-arrow-inner {
    position: absolute;
    left: 5px;
    top: 6px;
    width: 10px;
    height: 8px;
    display: block;
}

.pagination-number {
    color: rgba(0, 0, 0, 0.4);
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}

.pagination-number:hover {
    color: hsl(222.2, 25%, 13%);
}

.pagination-number.active {
    color: hsl(222.2, 25%, 13%);
    font-weight: 700;
    cursor: default;
}

.pagination-dots {
    color: rgba(0, 0, 0, 0.4);
    font-size: 1rem;
    font-weight: 400;
}

.sort-form {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.sort-label {
    color: hsl(222.2, 25%, 13%);
    font-size: 1rem;
    font-weight: 400;
}

.sort-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.sort-select {
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 400;
    color: var(--brand-dark);
    padding-right: 1.5rem;
    appearance: none;
    cursor: pointer;
}

.sort-select:focus {
    outline: none;
}

.sort-select-icon {
    position: absolute;
    right: 0;
    width: 18px;
    height: 18px;
    color: var(--brand-dark);
    pointer-events: none;
}

.view-link {
    color: hsl(222.2, 25%, 13%);
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}

.view-link:hover {
    color: hsl(212, 76%, 36%);
}

.view-link.active {
    color: hsl(212, 76%, 36%);
    font-weight: 700;
    text-decoration: underline;
}

/* Donate Section */
.donate-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
}

.donate-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    width: 100%;
}

.donate-content .items-truthteam {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .625rem;
    padding: 1.25rem;
    background-color: #d3d7ef;
}
.items-truthteam .item-body p {
    margin-bottom: 1.25rem;
}
.items-truthteam .item-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.donate-content .items-tt-form {
    width: 100%;
}
.tta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.875rem;
}
.tta-row .item-image {
    flex: 0 0 auto;
}
.tta-row .item-image img {
    max-width: 260px;
    mix-blend-mode: multiply;
}
.tta-row .item-text {
    flex: 1 0 0;
}
.donate-content .donate-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .625rem;
}
.donate-content .donate-block .item-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 2.375rem;
}
.donate-content .donate-block ul,
.donate-content .donate-block ol {
    margin-left: 1.5rem;
}
.donate-content .donate-block ul,
.donate-content .donate-block ol,
.donate-content .donate-block p {
    margin-bottom: 1rem;
}

/* Contact */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: .625rem;
}
.contact-info .item-card {
    padding: 1.25rem;
    background-color: var(--brand-light-gray);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-weight: 700;
}
.contact-info .item-card.bg-red {
    background-color: var(--brand-red);
    color: #fff;
}
.contact-info .item-card .item-list {
    margin-left: 1.5rem;
}
.contact-info .item-card a {
    text-decoration: underline;
}

.faqs-content .item-card {
    padding: 1.25rem;
    background-color: var(--brand-light-gray);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.volunteers-info .item-card {
    padding: 1.25rem;
    background-color: var(--brand-light-gray);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.volunteers-info .item-card .item-title {
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-weight: 700;
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
}
.accordion .accordion-item {
    background-color: #E8E8E8;
    border: 1px solid #BBBBBB;
}
.accordion .accordion-item .accordion-button {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: 1.25rem;
    width: 100%;
    background-color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    text-align: left;
    transition: all .2s ease;
}
.accordion .accordion-item.active .accordion-button {
    background-color: var(--brand-blue);
    color: #fff;
}
.accordion .accordion-item .accordion-button:before {
    content: "";
    min-width: 1.5rem;
    height: 1.5rem;
    background-image: url(../images/plus.svg);
    background-size: 1.5rem;
    background-position: center;
    background-repeat: no-repeat;
}
.accordion .accordion-item.active .accordion-button:before {
    background-image: url(../images/minus.svg);
}
.accordion .accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: all .2s ease;
}
.accordion .accordion-body {
    padding: 1.25rem;
    border-top: 1px solid #BBBBBB;
    font-size: 1.125rem;
}
.accordion .accordion-body p:not(:last-child) {
    margin-bottom: 1.25rem;
}

.bot-content {
    padding: 1.25rem;
    background-color: var(--brand-light-gray);
    gap: 1.25rem;
}
.bot-table {
    margin: 0;
    background-color: #fff;
}
.bot-table th,
.bot-table td {
    padding: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.375rem;
    border: 1px solid #BBBBBB;
    text-align: left;
}

.stations-list {
    padding: 1.25rem;
    background-color: var(--brand-light-gray);
    display: flex;
    flex-direction: column;
    gap: .625rem;
}
.stations-list .item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.stations-list .item-header h3 {
    margin: 0;
    color: #20222E;
    font-size: 1.875rem;
    text-transform: uppercase;
}
.stations-list .item-header .item-count {
    color: #666;
    font-size: 0.875rem;
}
.stations-list .pagination-content {
    padding-bottom: 0;
    padding-top: .5rem;
}
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
}
.empty-state h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}
.stations-table-wrap {
    background: white;
}
.stations-table {
    width: 100%;
    border-collapse: collapse;
}
.stations-table th,
.stations-table td {
    padding: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.375rem;
    border: 1px solid #BBBBBB;
    text-align: left;
}
.station-details-row {
    background: #E8E8E8;
}

.station-details-row .item-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.station-details-row .item {
    display: flex;
    gap: .5rem;
}
.station-details-row .item strong {
    min-width: 124px;
    color: #20222E;
}
.station-row .item-btn-wrap {
    display: flex;
    gap: .625rem;
}
.expand-btn {
    min-width: 1.5rem;
    height: 1.5rem;
    background-image: url(../images/plus.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 1.5rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.expand-btn.active {
    background-image: url(../images/minus.svg);
}
.station-row.row-active td {
    background-color: var(--brand-blue);
    color: #fff;
}

.map-container {
    width: 100%;
}
.state-path {
    fill: var(--brand-light-gray);
    stroke: var(--brand-border-dark);
    stroke-width: 1;
    cursor: pointer;
    transition: fill 0.3s ease;
}
/* .state-path.has-stations {
    fill: var(--brand-light-gray);
} */
.state-label {
    fill: var(--brand-gray);
    transition: fill 0.3s ease;
}
.state-label.has-stations {
    fill: var(--brand-dark);
}
.state-path.has-stations:hover {
    fill: var(--brand-blue);
}
.state-path.selected,
.state-path.selected + .state-label.outer,
.state-path.has-stations:hover + .state-label.outer {
    fill: var(--brand-blue);
}
.state-path.selected + .state-label,
.state-path.has-stations:hover + .state-label {
    fill: #fff;
}
.state-path.no-stations {
    cursor: not-allowed;
}

.questions-content .item-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.financial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.last-updated {
    font-size: 1rem;
    margin-bottom: 1.25rem;
}
.no-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #6c757d;
}
.no-preview svg {
    opacity: 0.5;
}
.no-preview span {
    font-size: 1rem;
    font-weight: 500;
}
.no-reports {
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 2rem;
}
.empty-state {
    max-width: 400px;
    margin: 0 auto;
}
.empty-icon {
    color: #ccc;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.empty-state h3 {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}
.empty-state p {
    color: #888;
    line-height: 1.5;
}

.static-page .meta-date {
    font-size: 1rem;
}
.static-page .item-description,
.static-page .item-editor p {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.static-page .item-editor h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.static-page .item-editor h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.static-page .item-editor h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.static-page .item-editor h5 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.static-page .item-editor ul,
.static-page .item-editor ol {
    margin-left: 1.25rem;
    margin-bottom: 1rem;
}

/* Login */
.card-login {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    padding: 2.5rem;
    border: 1px solid var(--brand-border);
}
.card-login .card-header {
    text-align: center;
    margin-bottom: 1.75rem;
}
.card-login .item-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.card-login .item-links {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}
.card-login .item-links p:not(:last-child) {
    margin-bottom: .75rem;
}
.card-login .item-links a:not(.btn) {
    color: var(--brand-blue);
}
.form-text {
    color: #6b7280;
    font-size: 0.875rem;
    display: block;
}

/* Footer */
.footer {
    width: 100%;
    background-color: var(--brand-dark);
    border-top: 1px solid var(--brand-border-dark);
}

.footer-content {
    padding: 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.625rem 0;
}

.footer-logo {
    width: 149px;
    height: 38px;
}

.footer-text {
    color: white;
    font-size: 0.875rem;
    line-height: 1.125rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.footer-social-icon {
    width: 23px;
    height: 23px;
}

.footer-spotify-icon {
    width: 19px;
    height: 19px;
}

.footer-ecfa-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 0.625rem;
}

.footer-column-title {
    color: white;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.125rem;
    margin-bottom: 0.25rem;
}

.footer-link {
    color: white;
    font-size: 0.875rem;
    line-height: 1.125rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1199.98px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 3;
    }
    .main-content {
        padding: 74px 0 1.25rem;
    }
    .main-header {
        border-top: 1px solid #E1E6FA;
        border-bottom: 1px solid #E1E6FA;
    }
    .header-content {
        padding: 0;
    }
    .top-bar {
        height: .625rem;
        background: var(--brand-light);
    }
    .mobile-menu-btn,
    .nav-search-btn {
        width: 4rem;
        height: 3.875rem;
        padding: .5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-left: 1px solid #E1E6FA;
        border-right: 1px solid #E1E6FA;
    }
    .header.sb-active .nav-search-btn {
        opacity: 0;
    }
    .logo-link {
        margin: 0 auto;
    }
    .logo-img {
        height: 28px;
    }
    .navbar {
        position: fixed;
        left: -325px;
        top: 74px;
        width: 325px;
        height: calc(100vh - 74px);
        padding: 0;
        background-color: var(--brand-light);
        z-index: 9;
        display: block;
        margin-left: 0;
        overflow-y: auto;
        transition: all .4s ease;
    }
    .header.sb-active .navbar {
        left: 0;
    }
    .navbar-overlay {
        display: block;
        opacity: 0;
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 8;
        transition: all .4s ease;
    }
    .header.sb-active .navbar-overlay {
        left: 325px;
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        border-right: none;
        padding-top: 10px;
    }
    .nav-list li {
        width: 100%;
        border-left: none;
    }

    .sub-nav-list {
        display: flex;
        flex-direction: column;
        background-color: var(--brand-dark);
    }

    .sub-nav-list a {
        padding: 1.125rem 1.25rem;
    }

    .nav-link {
        padding: 1rem 1.25rem;
        color: var(--brand-dark);
        font-weight: 500;
        transition: background-color 0.2s;
    }

    .nav-link.active {
        color: var(--brand-red);
    }

    .navbar .header-actions {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: .625rem 1.25rem;
    }

    .navbar .header-actions .btn {
        width: 143px;
        padding: .625rem 1.25rem;
    }

    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        border-top: 1px solid var(--brand-border);
        margin-top: 0.5rem;
    }

    .calendar-day-number,
    .calendar-day-event {
        font-size: .875rem;
    }
}

@media (max-width: 991px) {
    .section-actions .item-links {
        display: none;
    }
    .calendar-hscroll {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }
    .calendar-hscroll .calendar-grid-wrapper {
        width: 960px;
    }
    .calendar-section-right {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 3;
    }
    .main-content {
        padding: 74px 0 0;
    }
    /* .btn-favorite,
    .btn-save {
        display: inline-flex;
    } */
    .hero-layout {
        gap: 1.25rem;
    }
    .hero-card,
    .show-hero-card {
        background: none !important;
        padding: 0;
        height: auto;
    }
    .hero-card:before,
    .show-hero-card:before {
        display: none;
    }
    .hero-mobile-bg {
        min-height: 263px;
        padding: 1.25rem;
        border-radius: 5px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .hero-mobile-bg:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(32, 33, 36, 0.00) 0%, #202124 100%);
        border-radius: 5px;
    }
    .hero-card-top .btn-share,
    .show-hero-top .btn-share {
        display: none;
    }
    .hero-description-section {
        gap: 0;
    }
    .hero-description {
        color: #676A79;
    }
    .hero-actions {
        justify-content: center;
        padding: 0.625rem 0;
    }
    .hero-actions .btn-size-2,
    .card-1 .item-actions .btn-size-2 {
        width: calc(50% - 5px);
    }
    .hero-actions .btn-size-3,
    .card-1 .item-actions .btn-size-3 {
        width: calc(33.33333% - 7px);
        gap: 0;
        padding: .375rem 0.75rem;
    }
    .show-hero-actions .item-btns .btn,
    .shows-card .item-btns .btn,
    .card-1 .item-actions .btn-small.btn-size-3 {
        padding: .375rem 0.75rem;
    }
    .hero-actions .btn-size-full,
    .card-1 .item-actions .btn-size-full {
        width: 100%;
        flex: 0 0 auto;
    }
    .hero-actions .btn-outline-white,
    .show-hero-actions .btn-outline-white,
    .materials-slider .slide-content .item-actions .item-btns .btn-outline-white {
        border-color: var(--brand-dark);
        color: var(--brand-dark);
        background: transparent;
    }
    .hero-actions .btn-outline-white:hover,
    .show-hero-actions .btn-outline-white:hover,
    .materials-slider .slide-content .item-actions .item-btns .btn-outline-white:hover {
        background-color: rgba(228, 15%, 15%, 0.05);
        border-color: rgba(228, 15%, 15%, 0.05);
    }
    .guest-row > .guest-card {
        width: 50%;
    }
    .section {
        padding: calc(1rem - 1px) 0;
    }
    .section-wrapper {
        gap: 0;
    }
    .section-title {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .hero-title-box span {
        font-size: 1.25rem;
    }
    .show-card .item-title {
        font-size: 1.25rem;
        line-height: 1.5rem;
        min-height: 1rem;
    }
    .show-hero-card {
        margin-bottom: 0;
    }
    .show-hero-date-chip {
        font-size: 1.25rem;
        margin-top: auto;
        position: relative;
    }
    .show-hero-content {
        flex-direction: column;
        align-items: inherit;
        gap: .625rem;
    }
    .show-description-text,
    .show-editor-text {
        display: none;
    }
    .show-hero-content .show-description-text,
    .show-hero-content .show-editor-text {
        display: block;
    }
    .banner-title {
        font-size: 3rem;
    }
    .banner-subtitle {
        font-size: 2rem;
    }
    .slick-arrow {
        background-size: 20px 56px;
    }
    .slick-prev {
        left: 0;
    }
    .slick-next {
        right: 0;
    }
    .slide-content {
        padding: 0 2rem;
    }
    .slide-content .item-title {
        font-size: 2.5rem;
    }
    .slide-content .item-subtitle {
        font-size: 1.75rem;
    }
    .slide-content .item-actions .btn {
        padding: calc(0.5rem + 1px) 1rem;
    }
    .materials-slider {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.875rem;
    }
    .materials-slider .item-slide {
        margin-bottom: 3rem;
    }
    .materials-slider .slide-content {
        padding: .625rem .625rem 3.625rem;
    }
    .materials-slider .slide-image {
        height: 240px;
    }
    .materials-slider .slide-content .item-title {
        font-size: 2rem;
    }
    .materials-slider .slide-content .item-actions {
        position: absolute;
        left: 0;
        bottom: -3rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: .625rem .625rem 0;
    }
    .materials-slider .slide-content .item-actions .item-btns {
        display: flex;
        justify-content: center;
        gap: .625rem;
        margin: 0 -.625rem;
    }
    .materials-slider .slide-content .item-actions .btn-size-3 {
        width: calc(33.33333% - 7px);
        gap: 0;
        padding: .375rem 0.75rem;
    }
    .materials-slider .slide-content .item-actions .btn-size-full {
        width: 100%;
    }
    .card-1 .item-title {
        font-size: 1.25rem;
        line-height: 1.5rem;
    }
    .social-btn {
        height: 56px;
    }
    .shows-card .item-images {
        margin-bottom: 0;
    }
    .shows-card .item-images .item-image,
    .shows-card .item-image-placeholder {
        width: 170px;
    }
    .shows-card .item-title {
        min-height: auto;
    }
    .calendar-hscroll .calendar-grid-wrapper {
        width: 730px;
    }
    .calendar-weekday-header {
         padding: .375rem;
         font-size: .875rem;
     }
    .calendar-day-cell {
        padding: .375rem;
        min-height: 110px;
    }
    .calendar-day-number,
    .calendar-day-event {
        font-size: .75rem;
        line-height: 1rem;
    }
    .view-article {
        gap: 1.25rem;
    }
    .view-article .item-image {
        margin-top: 0;
    }
    .view-article .item-header {
        gap: .625rem;
        padding-bottom: 0.625rem;
    }
    .view-article .item-title {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .view-article .item-date {
        font-size: 1rem;
    }
    .take-action-contact-column {
        gap: 0;
    }
    .form-label {
        font-size: 1rem;
    }
    .form-input,
    .form-select {
        padding: .625rem 1rem;
    }
    .form-actions {
        margin-top: .625rem;
    }
    .take-action-message-wrapper {
        padding: .625rem;
    }
    .take-action-message-column {
        gap: 0;
    }
    .message-recipients {
        gap: .625rem;
    }
    .recipient-icon {
        width: 32px;
        height: 38px;
    }
    .recipient-text {
        font-size: 1rem;
    }
    .message-content {
        padding: 1rem;
        gap: .625rem;
    }
    .message-text {
        font-size: 1rem;
        gap: .625rem;
    }
    .message-body {
        padding: 1.25rem;
    }
    .pagination-content {
        padding-bottom: 0;
    }
    .items-form .form-actions {
        margin-top: 1.25rem;
    }
    .contact-info .item-card {
        font-size: 1rem;
        line-height: 1.375rem;
    }
    .tta-row {
        gap: 1rem;
    }
    .accordion .accordion-item .accordion-button {
        gap: .5rem;
        padding: .75rem;
        font-size: 1rem;
    }
    .accordion .accordion-body {
        padding: 1rem;
        font-size: 1rem;
    }
    .accordion .accordion-body p:not(:last-child) {
        margin-bottom: 1rem;
    }
    .bot-content,
    .faqs-content .item-card,
    .volunteers-info .item-card,
    .stations-list {
        padding: .625rem;
        gap: .75rem;
        overflow: hidden;
    }
    .bot-table th,
    .bot-table td,
    .stations-table th,
    .stations-table td {
        padding: .75rem;
        font-size: 1rem;
    }
    .form-check {
        min-height: 1.5rem;
    }
    .form-check-input {
        min-width: 1.5rem;
        height: 1.5rem;
    }
    .stations-list .item-header h3 {
        font-size: 1.5rem;
    }
    .donate-content .donate-block .item-title {
        font-size: 1.625rem;
        line-height: 2rem;
    }
    .footer-content {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
    .footer-right {
        gap: 1.25rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    .footer-column {
        padding: 0;
    }
}

@media (max-width: 575px) {
    .show-hero-actions .btn-size-2,
    .shows-card .btn-size-2 {
        width: calc(50% - 5px);
    }
    .show-hero-actions .btn-size-3,
    .shows-card .btn-size-3 {
        width: calc(33.33333% - 7px);
        gap: 0;
        padding: calc(0.5rem + 1px) 0.75rem;
    }
    .show-hero-actions .btn-size-full,
    .shows-card .btn-size-full {
        width: 100%;
        flex: 0 0 auto;
    }
    .shows-card .item-btns,
    /* .hero-actions .item-btns, */
    .show-hero-actions .item-btns {
        width: 100%;
        display: flex;
    }
    .card-1 .item-actions {
        padding-top: .75rem;
    }
    .banner-250 {
        height: auto;
        min-height: 270px;
    }
    .slide-image {
        height: 500px;
    }
    .materials-slider {
        grid-template-columns: 1fr;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
    }
    /* .materials-slider .slide-image img {
        min-height: 400px;
    } */
    .section-header {
        gap: .625rem;
    }
    .section-actions.wrap-sm,
    .calendar-section-filters {
        width: 100%;
        justify-content: space-between;
    }
    .stations-table-wrap {
        overflow-x: auto;
    }
    .card-login {
        padding: 1.5rem;
    }
}

@media (min-width: 576px) {
    .viewpoints-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .take-action-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .financial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-2 {
        flex-direction: row;
    }
    .form-field-row .col-2 {
        width: 50%;
    }
    .accordion .accordion-body {
        padding: 1.25rem 3.375rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 1180px;
        padding-right: 2rem;
        padding-left: 2rem;
    }
    .hero-mobile-bg {
        background: none !important;
    }
    .hero-actions .btn-share,
    .show-hero-actions .btn-share {
        display: none;
    }
    .show-hero-content .show-description-text,
    .show-hero-content .show-editor-text {
        display: none;
    }
    .shows-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .slick-prev {
        left: 40px;
    }
    .slick-next {
        right: 40px;
    }
    .slide-content {
        padding: 0 5rem;
    }
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .shows-list .shows-card {
        flex-direction: row;
    }
    .materials-slider .slide-content .item-title {
        font-size: 4rem;
    }
    .message-recipients {
        flex-direction: row;
    }
    .message-recipient {
        padding: 2.5rem;
    }

    .donate-content {
        flex-direction: row;
        gap: 30px;
    }
    .donate-content .items-truthteam,
    .donate-content .items-tt-form,
    .donate-content .donate-block {
        width: 50%;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 992px) {
    .hero-layout {
        flex-direction: row;
    }
    .hero-main {
        width: calc(75% - 30px);
    }
    .hero-sidebar {
        width: 25%;
    }
    .shows-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .viewpoints-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .take-action-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .financial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-col-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.875rem;
    }
    .social-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .take-action-two-column {
        flex-direction: row;
    }
    .take-action-contact-column {
        width: 411px;
        flex-shrink: 0;
    }

    .footer-content {
        flex-direction: row;
        align-items: flex-start;
    }
    .footer-left {
        gap: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1180px;
        padding-right: 1rem;
        padding-left: 1rem;
    }
    .mobile-menu-btn {
        display: none;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        flex: 1;
    }

    .header-actions {
        display: flex;
    }

    .sub-nav {
        display: flex;
    }
    .hero-main {
        width: calc(78% - 30px);
    }
    .hero-description-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .hero-description {
        flex: 1 0 0;
    }
    .hero-actions {
        flex: 0 0 auto;
        width: 460px;
    }
    .hero-sidebar {
        width: 22%;
    }
    .slick-prev {
        left: 60px;
    }

    .slick-next {
        right: 60px;
    }
    .slide-content {
        padding: 0 7rem;
    }
    .shows-card .item-images {
        gap: 1.875rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1380px;
    }
    .nav-search-btn,
    .nav-link {
        padding: 1.25rem;
    }
    .shows-card .item-images .item-image,
    .shows-card .item-image-placeholder {
        width: 170px;
        height: 170px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1552px;
    }

    .shows-card .item-images .item-image,
    .shows-card .item-image-placeholder {
        width: 200px;
        height: 200px;
    }

    .footer-content {
        gap: 140px;
    }
}
