#carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 200px;
    box-sizing: border-box;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
    margin: auto;
}

.swiper-slide h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: rgb(42 42 42);
}

.swiper-slide p {
    color: #666;
    text-decoration: none;
}

.swiper-slide h3 a, .swiper-slide p a {
    text-decoration: none;
}

.swiper-button-next, .swiper-button-prev {
    background-color: #a5a5a53b;
    color: white;
    width: 40px!important;
    height: 40px!important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 16px!important;
    color: white;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: #FF6F00;
    color: #fff;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #000;
    transform: scale(1.2);
}
.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: 1200px;
}
/* Card shell: matches relative rounded-xl overflow-hidden bg-surface-container-lowest ambient-shadow + hover */

.swiper-slide .event-carousel-card {
    --color-primary: #000000;
    --color-on-surface: #1b1b1d;
    --color-on-surface-variant: #45464d;
    --color-primary-fixed-dim: #c3c0ff;
    --color-outline: #76777d;
    --color-surface-container-lowest: #ffffff;
    --shadow-ambient: 0px 12px 32px rgba(27, 27, 29, 0.06);
    --radius-xl: 0.75rem;
    --radius-lg: 0.5rem;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-surface-container-lowest);
    box-shadow: var(--shadow-ambient);
    transition:
            transform 0.5s ease,
            box-shadow 0.5s ease;
    text-align: left;
    margin-bottom: 30px;
    border: 1px solid #f2f2f2;
}

.swiper-slide .event-carousel-card:hover {
    transform: translateY(-0.5rem);
}

/* Image block: aspect-[4/5] relative overflow-hidden */
.swiper-slide .event-carousel-image-contaniner {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.swiper-slide .event-carousel-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.swiper-slide .event-carousel-card:hover .event-carousel-image {
    transform: scale(1.1);
}

/* Tag overlay: absolute top-4 left-4 */
.swiper-slide .event-carousel-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
}

/* Content: p-8 space-y-4 */
.swiper-slide .event-carousel-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Title: text-2xl font-headline font-extrabold tracking-tight leading-tight + hover */
.swiper-slide .event-carousel-title {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
    color: var(--color-on-surface);
    transition: color 0.3s ease;
}

.swiper-slide .event-carousel-card:hover .event-carousel-title {
    color: var(--color-primary);
}

/* Meta: space-y-2 */
.swiper-slide .event-carousel-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Row: flex items-center gap-3 text-on-surface-variant */
.swiper-slide .event-carousel-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-on-surface-variant);
}

.swiper-slide .event-carousel-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary-fixed-dim);
}

.swiper-slide .event-carousel-meta-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

.swiper-slide .event-carousel-meta-item > span + span {

}

/* Actions: pt-4 flex items-center justify-between */
.swiper-slide .event-carousel-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
}

/* Link/button: flex gap-2 text-primary font-bold text-sm tracking-tight + arrow */
.swiper-slide .event-carousel-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    /*color: var(--color-primary);*/
    font-weight: 600;
    /*font-size: 0.875rem;*/
    /*letter-spacing: -0.025em;*/
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.swiper-slide .event-carousel-button:hover {
    opacity: 0.85;
}

/* Approximates Material trending_flat at text-lg with hover slide */
.swiper-slide .event-carousel-button::after {
    content: "\2192";
    font-size: 1.125rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.swiper-slide .event-carousel-button:hover::after {
    transform: translateX(4px);
}
.swiper-button-next, .swiper-button-prev{
    width: 25px!important;
    height: 25px !important;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    background: #000;
}
.swiper-button-next svg, .swiper-button-prev svg{
    height: 55%;
}