	.venues-section {
    padding: 60px 20px;
}

.venues-section__container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.venues-section__title {
    margin: 0 0 32px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
}


/* Map wrapper */
.venues-map-wrapper {
    position: relative;
    width: 100%;
}


/* Google map */
.venues-map {
    width: 100%;
    height: 560px;
    border-radius: 12px;
    overflow: hidden;
}


/* ==============================
   Venue Card
============================== */

.venue-card {
    position: absolute;
    z-index: 10;

    top: 50%;
    right: 28px;

    width: 100%;
    max-width: 310px;

    padding: 14px;

    background: #fff;

    border-radius: 14px;

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.18);

    transform: translateY(-50%);
}

.venue-card[hidden] {
    display: none;
}


/* Close button */
.venue-card__close {
    position: absolute;

    top: 24px;
    right: 22px;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 26px;
    height: 26px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #fff;
    color: #111;

    font-size: 20px;
    line-height: 1;

    cursor: pointer;

    box-shadow:
        0 2px 8px
        rgba(0, 0, 0, 0.2);
}


/* Image */
.venue-card__image-wrapper {
    width: 100%;
    height: 130px;

    overflow: hidden;

    border-radius: 8px;
}

.venue-card__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* Content */
.venue-card__content {
    padding: 14px 2px 0;
}

.venue-card__title {
    margin: 0 0 14px;

    color: #111;

    font-size: 17px;
    line-height: 1.3;

    font-weight: 500;
}


/* Rows */
.venue-card__row {
    display: flex;
    align-items: flex-start;

    gap: 8px;

    margin-bottom: 10px;

    font-size: 12px;
    line-height: 1.45;

    color: #727272;
}

.venue-card__icon {
    display: flex;
    flex: 0 0 auto;

    margin-top: 1px;

    color: #1765a2;
}

.venue-card__address {
    white-space: pre-line;
}

.venue-card__phone {
    color: #727272;

    text-decoration: none;
}

.venue-card__phone:hover {
    text-decoration: underline;
}


/* Ticket Button */
.venue-card__ticket {
    display: inline-flex;

    margin-top: 6px;

    padding: 10px 14px;

    border: 1px solid #222;
    border-radius: 30px;

    color: #111;

    font-size: 11px;
    line-height: 1;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.venue-card__ticket:hover {
    background: #111;
    color: #fff;
}


/* ==============================
   Tablet
============================== */

@media (max-width: 1024px) {

    .venues-map {
        height: 500px;
    }

    .venue-card {
        right: 20px;

        max-width: 290px;
    }
}


/* ==============================
   Mobile
============================== */

@media (max-width: 767px) {

    .venues-section {
        padding: 40px 16px;
    }

    .venues-section__title {
        margin-bottom: 20px;

        font-size: 26px;
    }

    .venues-map {
        height: 560px;
    }

    .venue-card {
        top: auto;

        left: 15px;
        right: 15px;
        bottom: 15px;

        width: auto;
        max-width: none;

        transform: none;
    }

    .venue-card__image-wrapper {
        height: 150px;
    }
}