/* ============================================================
   Hero
   ============================================================ */

.events-hero__textbox {
    padding: 2.25rem 2.5rem;
    max-width: 45rem;
}
.events-hero__title {
    line-height: 1.4;
}

#events {
    scroll-margin-top: 4rem;
}

.events-fineprint {
    font-size: 0.75rem;
    line-height: 1.6;
}
@media (min-width: 1024px) {
    .events-fineprint {
        font-size: 0.75rem;
    }
}

/* ============================================================
   Section Titles
   ============================================================ */

.events-section-title {
    color: #00334c;
}
.events-info__title {
    color: #00324b;
    font-size: 33px;
    line-height: 1.2;
}

/* ============================================================
   Event Card
   ============================================================ */

.event-card {
    display: flex;
    background-color: #00324b;
    border-radius: 0.5rem;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.event-card__image {
    flex: 0 0 58.333%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.event-card__image img {
    display: block;
    width: 100%;
    height: auto;
}
.event-card__content {
    flex: 0 0 41.667%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.75rem 1.5rem;
    text-align: center;
}
.event-card__content > * {
    margin: 0;
}
.event-card__category {
    font-size: 1.5rem;
    font-weight: 600;
}
.event-card__schedule {
    display: flex;
    flex-direction: column;
    color: #ff7e17;
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.1;
    gap: .5rem;
}
.event-card__schedule > * {
    margin: 0;
}
.event-card__duration,
.event-card__description {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}
.event-card__button {
    display: inline-block;
    font-size: 1.125rem;
    background-color: #ff7e17;
    color: #ffffff;
    border-radius: 0.375rem;
    font-weight: 700;
    padding: 0.9375rem 3.75rem;
    text-decoration: none;
    line-height: 1.2;
    margin-top: 0.5rem;
}
.event-card__button:hover,
.event-card__button:focus {
    background-color: #e76d0c;
    color: #ffffff;
    text-decoration: none;
}
@media (max-width: 1199px) {
    .event-card {
        flex-direction: column;
    }
    .event-card__image,
    .event-card__content {
        flex: 1 1 100%;
    }
}
@media (max-width: 767px) {
    .event-card__content {
        padding: 1.5rem 1rem;
    }
    .event-card__category {
        font-size: 1.25rem;
    }
    .event-card__schedule {
        font-size: 1.5rem;
    }
    .event-card__button {
        padding: 0.875rem 2.5rem;
        font-size: 1.0625rem;
    }
}

/* ============================================================
   Events Info ("Das erwartet Sie bei unseren Events")
   ============================================================ */

.events-info__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
.events-info__col {
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.events-info__col img {
    width: 100%;
    height: auto;
    display: block;
}
.events-info__list {
    color: #00324b;
    font-size: 15px;
    font-weight: 500;
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.events-info__list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}
.events-info__list li:last-child {
    margin-bottom: 0;
}
.events-info__list li > span {
    flex: 1;
    min-width: 0;
    overflow-wrap: anywhere;
}
.events-info__list i {
    margin-right: 14px;
    font-size: 17px;
    color: #00324b;
    padding-top: 3px;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .events-info__row {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* ============================================================
   Events Project Carousel
   ============================================================ */

.events-projects {
    position: relative;
}
.events-projects-section {
    padding-left: 16px;
    padding-right: 16px;
}
@media (min-width: 640px) {
    .events-projects-section {
        padding-left: 24px;
        padding-right: 24px;
    }
}
@media (min-width: 1024px) {
    .events-projects-section {
        padding-left: 32px;
        padding-right: 32px;
    }
}
.events-projects__image {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.events-projects .swiper-pagination {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}
.events-projects .swiper-pagination-bullet {
    background-color: #ffffff;
    opacity: 0.6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.events-projects .swiper-pagination-bullet-active {
    opacity: 1;
}
