body {
    font-family: 'Inter', sans-serif;
    color: #000;
}

a {
    color: inherit;
    /* Inherit color from parent element */
    text-decoration: none;
    /* Remove the underline */
}

a:hover,
a:focus,
a:active {
    text-decoration: underline;
    /* Optional: Keep underline on hover/focus/active state */
}

.title {
    font-size: 1.5rem;
    color: #000;
}


.banner-image {
    width: 100%;
    height: 21rem;
    flex-shrink: 0;
    border-radius: 0.5rem;
    background: url('/images/main-banner.jpg');
    background-size: cover;
    background-position: center;
    margin: 1.5rem auto 4rem auto;
}

.event-image {
    width: 100%;
    height: 10rem;
    object-fit: cover;
    border-radius: 0.375rem;
}

.event-title {
    font-feature-settings: 'liga' off;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03rem;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.event-date {
    color: #2175e4;
    font-size: 1.125rem;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    letter-spacing: -0.0225rem;
}

.event-location {
    font-size: 1.125rem;
    color: #6c757d;
    margin-top: 0.25rem;
    letter-spacing: -0.0225rem;
}

.starts-from {
    font-size: 0.75rem;
    color: #4b4b4b;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.price {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0;
}

hr.dotted {
    border-top: 1px dotted #BCC2C2;
    margin: 0.75rem 0;
}

footer .footer-link {
    color: #6c757d;
    font-size: 1rem;
    text-decoration: none;
}

footer .footer-link:hover {
    text-decoration: underline;
}

footer .footer-title {
    color: #000;
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

footer .contact-info {
    font-size: 1rem;
    color: #6c757d;
}

footer .contact-info strong {
    display: block;
    font-weight: 600;
    color: #000;
    font-size: 1rem;
    margin-bottom: 0.125rem;
}

.language-selector {
    font-size: 0.75rem;
    color: #6c757d;
    cursor: pointer;
    user-select: none;
}

.language-selector img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    margin-right: 0.25rem;
}

/* Container to center and size the carousel */
.carousel-container {
    width: 100%;
    height: 21rem;
    margin: 40px auto;
    /* centers it horizontally */
}

/* Fix carousel height */
#carouselBanner,
.carousel-inner,
.carousel-item {
    height: 100%;
}

/* Make sure images cover the space */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom gap between items in columns on desktop */
@media (min-width: 992px) {
    .row.g-4>* {
        padding-bottom: 24px !important;
    }

    .row.g-4 {
        margin-bottom: -24px !important;
    }
}

/* Add padding to left and right on mobile */
@media (max-width: 767px) {
    body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .banner-image {
        height: 8.35rem;
    }

    .event-image {
        height: 7rem;
    }

    .title {
        font-size: 1rem;
    }

    .event-title {
        font-size: 0.875rem;
    }

    .event-date {
        font-size: 0.625rem;
    }

    .event-location {
        font-size: 0.625rem;
    }

    .starts-from {
        font-size: 0.625rem;
    }

    .price {
        font-size: 0.75rem;
    }

}


/* Make entire article clickable */
.clickable-article {
    cursor: pointer;
    display: block;
    color: inherit;
    text-decoration: none;
    transition: background-color 0.15s ease;
    padding: 0.125rem;
    border-radius: 0.375rem;
}

.clickable-article:hover,
.clickable-article:focus {
    text-decoration: none;
    color: inherit;
    outline: none;
}