/* ============================================================
   ACRT 2027
   TRAVEL & VENUE
============================================================ */

.travel-venue-section {

    position: relative;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(46,99,199,.10),
            transparent 48%
        ),
        var(--paper);

    color: var(--ink);

    overflow: hidden;
}


/* ============================================================
   HERO
============================================================ */

.travel-venue-hero {

    position: relative;

    min-height: 195px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--void) 0%,
            var(--void-soft) 55%,
            var(--void-alt) 100%
        );

    overflow: hidden;
}


/* subtle decorative lines */

.travel-venue-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        repeating-linear-gradient(
            155deg,
            transparent 0,
            transparent 45px,
            rgba(113,149,214,.10) 46px,
            transparent 47px
        );

    opacity: .7;

    pointer-events: none;
}


/* ============================================================
   HERO DECORATIONS
============================================================ */

.travel-venue-hero-decoration {

    position: absolute;

    width: 380px;
    height: 180px;

    opacity: .18;

    pointer-events: none;
}


.travel-venue-hero-left {

    left: -80px;
    bottom: -60px;

    border-top: 1px solid var(--bronze-light);

    transform: rotate(12deg);
}


.travel-venue-hero-right {

    right: -80px;
    top: -60px;

    border-bottom: 1px solid var(--bronze-light);

    transform: rotate(-12deg);
}


/* ============================================================
   TITLE
============================================================ */

.travel-venue-title-wrap {

    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 14px;

    text-align: center;
}


.travel-venue-title-wrap h1 {

    margin: 0;

    color: var(--paper);

    /* font-family: "Fraunces", serif; */

    font-size: clamp(
        3rem,
        6vw,
        4rem
    );

    font-weight: 500;

    /* font-style: italic; */

    line-height: 1;

    letter-spacing: -.04em;
}


.travel-venue-ornament {

    display: flex;

    align-items: center;

    gap: 15px;

    color: var(--bronze-light);

    font-size: .8rem;
}


.travel-venue-ornament::before,
.travel-venue-ornament::after {

    content: "";

    width: 100px;

    height: 1px;

    background: var(--bronze);
}


/* ============================================================
   MAIN CONTAINER
============================================================ */

.travel-venue-container {

    width: min(
        1420px,
        calc(100% - 70px)
    );

    margin: 0 auto;

    padding: 45px 0 60px;
}


/* ============================================================
   MAIN GRID
============================================================ */

.travel-venue-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, .85fr);

    gap: 18px;

    align-items: stretch;
}


/* ============================================================
   LOCATION CARD
============================================================ */

.venue-location-card {

    position: relative;

    min-height: 585px;

    padding: 42px 38px 28px;

    background: var(--paper);

    border: 1px solid var(--bronze-light);

    border-radius: 15px;

    overflow: hidden;

    box-shadow:
        var(--shadow);
}


/* bottom gold accent */

/* .venue-location-card::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 9px;

    background:
        linear-gradient(
            90deg,
            var(--bronze),
            var(--bronze-light),
            var(--bronze)
        );
} */


/* ============================================================
   PATTERN
============================================================ */

.venue-card-pattern {

    position: absolute;

    top: 18px;
    left: 18px;

    width: 150px;
    height: 100px;

    background:
        radial-gradient(
            circle,
            rgba(46,99,199,.28) 1.5px,
            transparent 1.7px
        );

    background-size: 10px 10px;

    opacity: .45;

    pointer-events: none;
}


/* right pattern */

.venue-location-card::before {

    content: "";

    position: absolute;

    right: 25px;
    top: 170px;

    width: 100px;
    height: 150px;

    background:
        radial-gradient(
            circle,
            rgba(46,99,199,.22) 1.5px,
            transparent 1.7px
        );

    background-size: 9px 9px;

    opacity: .35;

    pointer-events: none;
}


/* ============================================================
   ARCHITECTURE DECORATION
============================================================ */

.venue-architecture {

    position: absolute;

    left: 15px;
    bottom: 170px;

    width: 190px;
    height: 220px;

    opacity: .15;

    border: 2px solid var(--bronze);

    border-bottom: 0;

    border-radius: 50% 50% 0 0;

    pointer-events: none;
}


.venue-architecture::before {

    content: "";

    position: absolute;

    left: 48px;
    top: 35px;

    width: 90px;
    height: 155px;

    border: 2px solid var(--bronze);

    border-bottom: 0;

    border-radius: 50% 50% 0 0;
}


.venue-architecture::after {

    content: "";

    position: absolute;

    left: 78px;
    top: 0;

    width: 32px;
    height: 40px;

    border: 2px solid var(--bronze);

    border-bottom: 0;

    border-radius: 50% 50% 0 0;
}


/* ============================================================
   LOCATION CONTENT
============================================================ */

.venue-location-content {

    position: relative;

    z-index: 2;

    text-align: center;
}


.venue-section-label {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 17px;

    color: var(--terracotta);

    font-family: "IBM Plex Mono", monospace;

    font-size: .78rem;

    font-weight: 600;

    letter-spacing: .18em;

    text-transform: uppercase;
}


.venue-section-label span {

    width: 38px;

    height: 1px;

    background: var(--bronze);
}


/* ============================================================
   VENUE TITLE
============================================================ */

.venue-location-content h2 {

    margin: 0;

    color: var(--void);

    /* font-family: "Fraunces", serif; */

    font-size: clamp(
        2rem,
        3.2vw,
        3rem
    );

    font-weight: 500;

    line-height: 1.12;

    letter-spacing: -.025em;
}


/* ============================================================
   DIVIDER
============================================================ */

.venue-divider {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin: 20px auto;

    color: var(--bronze);

    font-size: .65rem;
}


.venue-divider::before,
.venue-divider::after {

    content: "";

    width: 80px;

    height: 1px;

    background: var(--line);
}


/* ============================================================
   DATE BOX
============================================================ */

.venue-date-box {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    max-width: 570px;

    margin: 0 auto 27px;

    padding: 18px 24px;

    border: 1px solid rgba(46,99,199,.20);

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            rgba(113,149,214,.10),
            rgba(247,249,255,.92)
        );

    text-align: left;
}


.venue-calendar-icon {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 47px;
    height: 47px;

    border: 2px solid var(--terracotta);

    border-radius: 10px;

    color: var(--terracotta);

    font-size: 1.5rem;

    flex-shrink: 0;
}


.venue-date-text {

    display: flex;

    flex-direction: column;

    gap: 3px;

    color: var(--ink);

    font-family: "Space Grotesk", sans-serif;

    font-size: .95rem;

    line-height: 1.4;
}


.venue-date-text strong {

    color: var(--terracotta);

    font-size: 1.05rem;
}


/* ============================================================
   MAP
============================================================ */

.venue-map-frame {

    position: relative;

    width: 100%;

    height: 220px;

    overflow: hidden;

    border: 1px solid var(--line);

    border-radius: 12px;

    background: var(--parchment);
}


.venue-map-frame iframe {

    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


/* ============================================================
   CONTACT CARD
============================================================ */

.venue-contact-card {

    position: relative;

    min-height: 585px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 45px;

    background:

        radial-gradient(
            circle at 50% 30%,
            rgba(46,99,199,.10),
            transparent 35%
        ),

        var(--paper);

    border: 1px solid var(--bronze-light);

    border-radius: 15px;

    overflow: hidden;

    box-shadow:
        var(--shadow);
}


/* ============================================================
   CONTACT DECORATION
============================================================ */

.contact-decoration {

    position: absolute;

    right: -25px;
    bottom: -30px;

    width: 260px;
    height: 300px;

    opacity: .18;

    border-right: 2px solid var(--bronze-light);

    border-bottom: 2px solid var(--bronze-light);

    border-radius: 50%;
}


.contact-decoration::before {

    content: "";

    position: absolute;

    right: 55px;
    bottom: 35px;

    width: 100px;
    height: 210px;

    border-left: 2px solid var(--bronze-light);

    transform: rotate(18deg);
}


.contact-decoration::after {

    content: "";

    position: absolute;

    right: 20px;
    bottom: 90px;

    width: 100px;
    height: 2px;

    background: var(--bronze-light);

    transform: rotate(-38deg);
}


/* ============================================================
   CONTACT INNER
============================================================ */

.contact-card-inner {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
}


.contact-icon-circle {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 80px;
    height: 80px;

    margin-bottom: 27px;

    border: 2px solid var(--bronze);

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--terracotta),
            var(--terracotta-deep)
        );

    color: var(--paper);

    font-size: 2rem;

    box-shadow:
        0 8px 20px rgba(46,99,199,.20);
}


.venue-contact-card h2 {

    margin: 0;

    color: var(--terracotta);

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(
        1.5rem,
        2.3vw,
        2.2rem
    );

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: .03em;
}


/* ============================================================
   CONTACT DIVIDER
============================================================ */

.contact-divider {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    margin: 25px 0 40px;

    color: var(--bronze);

    font-size: .7rem;
}


.contact-divider::before,
.contact-divider::after {

    content: "";

    width: 80px;

    height: 1px;

    background: var(--line);
}


/* ============================================================
   EMAIL ICON
============================================================ */

.contact-email-icon {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 88px;
    height: 88px;

    margin-bottom: 22px;

    border: 1px solid rgba(46,99,199,.25);

    border-radius: 50%;

    background:
        rgba(113,149,214,.08);

    color: var(--terracotta);

    font-size: 2rem;
}


.venue-contact-email {

    color: var(--void);

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(
        .9rem,
        1.5vw,
        1.15rem
    );

    text-decoration: none;

    transition: color .2s ease;
}


.venue-contact-email:hover {

    color: var(--terracotta);
}


.contact-divider-bottom {

    margin-top: 35px;
    margin-bottom: 0;
}


/* ============================================================
   INFORMATION STRIP
============================================================ */

.venue-info-strip {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 35px;

    padding: 25px 20px;

    background: rgba(247,249,255,.90);

    border: 1px solid rgba(29,61,120,.18);

    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(7,27,92,.06);
}


/* ============================================================
   INFO ITEM
============================================================ */

.venue-info-item {

    display: flex;

    align-items: center;

    gap: 20px;

    min-height: 90px;

    padding: 0 25px;

    border-right: 1px dotted var(--bronze-light);
}


.venue-info-item:last-child {

    border-right: 0;
}


.venue-info-icon {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    border: 1px solid rgba(46,99,199,.22);

    border-radius: 50%;

    color: var(--terracotta);

    background:
        var(--paper);

    font-size: 1.4rem;

    flex-shrink: 0;
}


.venue-info-content {

    min-width: 0;
}


.venue-info-content strong {

    display: block;

    margin-bottom: 6px;

    color: var(--void);

    font-family: "Space Grotesk", sans-serif;

    font-size: .85rem;

    font-weight: 700;

    letter-spacing: .04em;
}


.venue-info-content p {

    margin: 0;

    color: var(--ink-soft);

    font-family: "Space Grotesk", sans-serif;

    font-size: .85rem;

    line-height: 1.55;
}


/* ============================================================
   LARGE TABLET
============================================================ */

@media (max-width: 1100px) {

    .travel-venue-container {

        width: min(
            100% - 45px,
            1100px
        );
    }


    .travel-venue-grid {

        grid-template-columns: 1fr 1fr;
    }


    .venue-location-card,
    .venue-contact-card {

        min-height: 560px;
    }


    .venue-info-item {

        padding: 0 15px;

        gap: 13px;
    }


    .venue-info-icon {

        width: 50px;
        height: 50px;

        font-size: 1.1rem;
    }

}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .travel-venue-hero {

        min-height: 170px;
    }


    .travel-venue-container {

        width: min(
            100% - 35px,
            700px
        );

        padding-top: 35px;
    }


    .travel-venue-grid {

        grid-template-columns: 1fr;

        gap: 20px;
    }


    .venue-location-card,
    .venue-contact-card {

        min-height: auto;
    }


    .venue-location-card {

        padding: 38px 28px 27px;
    }


    .venue-contact-card {

        min-height: 440px;
    }


    .venue-info-strip {

        grid-template-columns: repeat(2, 1fr);

        gap: 0;
    }


    .venue-info-item {

        padding: 20px;

        border-bottom: 1px dotted var(--bronze-light);
    }


    .venue-info-item:nth-child(2) {

        border-right: 0;
    }


    .venue-info-item:nth-child(3),
    .venue-info-item:nth-child(4) {

        border-bottom: 0;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 600px) {

    .travel-venue-hero {

        min-height: 135px;
    }


    .travel-venue-title-wrap {

        gap: 9px;
    }


    .travel-venue-title-wrap h1 {

        font-size: 2.7rem;
    }


    .travel-venue-ornament::before,
    .travel-venue-ornament::after {

        width: 45px;
    }


    .travel-venue-container {

        width: calc(100% - 25px);

        padding: 25px 0 40px;
    }


    .venue-location-card {

        padding: 32px 18px 23px;
    }


    .venue-location-content h2 {

        font-size: 2rem;
    }


    .venue-section-label {

        font-size: .68rem;
    }


    .venue-date-box {

        gap: 12px;

        padding: 14px;

        text-align: left;
    }


    .venue-calendar-icon {

        width: 42px;
        height: 42px;

        font-size: 1.15rem;
    }


    .venue-date-text {

        font-size: .8rem;
    }


    .venue-date-text strong {

        font-size: .9rem;
    }


    .venue-map-frame {

        height: 190px;
    }


    .venue-contact-card {

        min-height: 390px;

        padding: 30px 20px;
    }


    .contact-icon-circle {

        width: 68px;
        height: 68px;

        font-size: 1.5rem;
    }


    .venue-contact-card h2 {

        font-size: 1.4rem;
    }


    .contact-divider::before,
    .contact-divider::after {

        width: 45px;
    }


    .contact-email-icon {

        width: 70px;
        height: 70px;

        font-size: 1.5rem;
    }


    .venue-contact-email {

        font-size: .82rem;

        word-break: break-word;
    }


    .venue-info-strip {

        grid-template-columns: 1fr;

        padding: 10px;
    }


    .venue-info-item {

        min-height: 78px;

        padding: 15px 10px;

        border-right: 0;

        border-bottom: 1px dotted var(--bronze-light) !important;
    }


    .venue-info-item:last-child {

        border-bottom: 0 !important;
    }


    .venue-info-icon {

        width: 48px;
        height: 48px;
    }


    .venue-info-content strong {

        font-size: .78rem;
    }


    .venue-info-content p {

        font-size: .78rem;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 380px) {

    .travel-venue-title-wrap h1 {

        font-size: 2.25rem;
    }


    .venue-location-content h2 {

        font-size: 1.75rem;
    }


    .venue-date-box {

        align-items: flex-start;
    }


    .venue-map-frame {

        height: 170px;
    }

}

/* ============================================================
   NEXCGT IMAGE-MATCHED BLUE THEME OVERRIDES
   Preserves the existing Travel & Venue layout and behavior.
   ============================================================ */
:root {
    --base-deep: #071B5C;
    --base-mid: #0A205F;
    --base-soft: #173674;

    --primary: #0B2F8A;
    --primary-dark: #06205F;
    --primary-light: #2E63C7;
    --primary-soft: #7195D6;

    --slate-warm: #FFFFFF;
    --slate-light: #FFFFFF;
    --graphite: #1D3D78;
    --graphite-soft: #31528F;

    --ivory: #F7F9FF;
    --ivory-muted: #FFFFFF;
    --silver: #FFFFFF;

    --panel-bg: rgba(7, 27, 92, .62);
    --panel-border: rgba(160, 190, 255, .14);

    --accent: #2E63C7;
    --accent-hover: #4C82EA;
    --accent-light: #FFFFFF;
    --blue-glow: rgba(66, 126, 230, .32);
    --silk-ease: cubic-bezier(.16, 1, .3, 1);

    --void: var(--base-deep);
    --void-soft: var(--base-mid);
    --void-alt: var(--base-soft);

    --paper: var(--ivory);
    --paper-raised: #FFFFFF;
    --parchment: var(--ivory);

    --ink: var(--base-mid);
    --ink-soft: #31528F;

    --terracotta: var(--primary-light);
    --terracotta-deep: var(--primary-dark);

    --bronze: var(--primary-soft);
    --bronze-light: #9DB8EA;

    --violet: var(--primary-soft);
    --violet-dim: var(--primary-light);

    --cyan: #65A7FF;
    --cyan-dim: #4D8FE8;

    --coral: var(--accent-hover);
    --coral-deep: var(--primary-light);

    --teal: #4D8FE8;
    --teal-deep: #2E63C7;

    --gold: var(--primary-light);
    --gold-dim: var(--primary-soft);
    --mint: #76B2FF;

    --line: rgba(29, 61, 120, .16);
    --line-light: rgba(29, 61, 120, .10);
    --line-dark: rgba(160, 190, 255, .18);
    --line-strong: rgba(29, 61, 120, .26);

    --shadow: 0 10px 34px rgba(7, 27, 92, .20);
    --shadow-soft: 0 6px 22px rgba(7, 27, 92, .12);
}

/* Direct component overrides for the former warm gold/terracotta accents */
.travel-venue-hero::before {
    background:
        repeating-linear-gradient(
            155deg,
            transparent 0,
            transparent 45px,
            rgba(113,149,214,.10) 46px,
            transparent 47px
        );
}

.venue-card-pattern,
.venue-location-card::before {
    background-image: radial-gradient(
        circle,
        rgba(46,99,199,.28) 1.5px,
        transparent 1.7px
    );
}

.contact-icon-circle {
    background: linear-gradient(
        135deg,
        var(--primary-light),
        var(--primary-dark)
    );
    box-shadow: 0 8px 20px rgba(46,99,199,.20);
}

.venue-date-box {
    background: linear-gradient(
        135deg,
        rgba(113,149,214,.10),
        rgba(247,249,255,.92)
    );
}

/* ============================================================
   NEXCGT 2027
   NEW TRAVEL & VENUE LAYOUT
   HOTEL GALLERY LEFT / VENUE DETAILS RIGHT
============================================================ */


/* ============================================================
   MAIN GRID
============================================================ */

.travel-venue-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 18px;
    align-items: stretch;
}


/* ============================================================
   LEFT - HOTEL GALLERY
============================================================ */

.venue-gallery-card {
    position: relative;
    min-height: 650px;

    padding: 26px;

    background: var(--paper);

    border: 1px solid var(--bronze-light);
    border-radius: 15px;

    overflow: hidden;

    box-shadow: var(--shadow);
}


.venue-gallery-pattern {
    position: absolute;

    top: 18px;
    left: 18px;

    width: 150px;
    height: 100px;

    background:
        radial-gradient(
            circle,
            rgba(46,99,199,.28) 1.5px,
            transparent 1.7px
        );

    background-size: 10px 10px;

    opacity: .35;

    pointer-events: none;
}


.venue-gallery-inner {
    position: relative;
    z-index: 2;
}


/* ============================================================
   MAIN HOTEL PHOTO
============================================================ */

.venue-main-photo {
    width: 100%;
    height: 568px;

    overflow: hidden;

    border-radius: 12px;

    background: var(--parchment);
}


.venue-main-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .5s var(--silk-ease);
}


.venue-main-photo:hover img {
    transform: scale(1.025);
}


/* ============================================================
   FOUR SMALL PHOTOS
============================================================ */

.venue-photo-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 10px;

    margin-top: 12px;
}


.venue-small-photo {
    height: 155px;

    overflow: hidden;

    border-radius: 10px;

    background: var(--parchment);
}


.venue-small-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .4s var(--silk-ease);
}


.venue-small-photo:hover img {
    transform: scale(1.05);
}



/* ============================================================
   RIGHT - VENUE DETAILS
============================================================ */

.venue-details-card {
    position: relative;

    min-height: 650px;

    padding: 35px 32px;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(46,99,199,.09),
            transparent 35%
        ),
        var(--paper);

    border: 1px solid var(--bronze-light);
    border-radius: 15px;

    overflow: hidden;

    box-shadow: var(--shadow);
}


.venue-details-pattern {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 105px;
    height: 125px;

    background:
        radial-gradient(
            circle,
            rgba(46,99,199,.20) 1.5px,
            transparent 1.7px
        );

    background-size: 9px 9px;

    opacity: .35;

    pointer-events: none;
}


.venue-details-inner {
    position: relative;
    z-index: 2;
}



/* ============================================================
   DETAIL SECTION
============================================================ */

.venue-detail-section {
    position: relative;
}


/* ============================================================
   DATE
============================================================ */

.venue-details-card .venue-date-box {
    max-width: 100%;

    margin: 0;

    padding: 15px 18px;

    justify-content: flex-start;

    border: 1px solid rgba(46,99,199,.20);

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            rgba(113,149,214,.10),
            rgba(247,249,255,.92)
        );
}


.venue-details-card .venue-calendar-icon {
    width: 46px;
    height: 46px;

    border: 2px solid var(--primary-light);

    color: var(--primary-light);

    border-radius: 10px;
}


.venue-details-card .venue-date-text {
    font-size: .9rem;
}


.venue-details-card .venue-date-text strong {
    color: var(--primary-light);

    font-size: 1rem;
}



/* ============================================================
   LOCATION
============================================================ */

.venue-address {
    display: flex;

    align-items: flex-start;

    gap: 18px;
}


.venue-address-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    flex-shrink: 0;

    border: 1px solid rgba(46,99,199,.25);

    border-radius: 50%;

    color: var(--primary-light);

    background: rgba(113,149,214,.08);

    font-size: 1.45rem;
}


.venue-address-content {
    min-width: 0;
}


.venue-address-content h2 {
    margin: 0 0 8px;

    color: var(--void);

    font-size: 1.45rem;

    font-weight: 600;

    line-height: 1.2;

    letter-spacing: -.02em;
}


.venue-address-content p {
    margin: 0;

    color: var(--ink);

    font-family: "Space Grotesk", sans-serif;

    font-size: .95rem;

    line-height: 1.5;
}



/* ============================================================
   CONTACT
============================================================ */

.venue-contact-section {
    display: flex;

    align-items: center;

    gap: 20px;
}


.venue-contact-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    flex-shrink: 0;

    border-radius: 50%;

    color: var(--paper);

    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--primary-dark)
        );

    font-size: 1.55rem;

    box-shadow:
        0 8px 20px rgba(46,99,199,.20);
}


.venue-contact-content {
    min-width: 0;
}


.venue-contact-content h3 {
    margin: 0 0 12px;

    color: var(--primary-light);

    font-family: "Space Grotesk", sans-serif;

    font-size: 1.25rem;

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: .02em;
}


.venue-contact-email-row {
    display: flex;

    align-items: center;

    gap: 12px;
}


.venue-email-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    flex-shrink: 0;

    border: 1px solid rgba(46,99,199,.25);

    border-radius: 50%;

    color: var(--primary-light);

    background: rgba(113,149,214,.08);

    font-size: 1rem;
}


.venue-contact-email {
    color: var(--void);

    font-family: "Space Grotesk", sans-serif;

    font-size: .92rem;

    text-decoration: none;

    word-break: break-word;

    transition: color .2s ease;
}


.venue-contact-email:hover {
    color: var(--primary-light);
}



/* ============================================================
   DIVIDERS
============================================================ */

.venue-details-card .venue-divider {
    margin: 17px auto;

    color: var(--bronze);
}


.venue-details-card .venue-divider::before,
.venue-details-card .venue-divider::after {
    width: 65px;
}



/* ============================================================
   MAP
============================================================ */

.venue-details-card .venue-map-frame {
    width: 100%;

    height: 220px;

    overflow: hidden;

    border: 1px solid var(--line);

    border-radius: 12px;

    background: var(--parchment);
}


.venue-details-card .venue-map-frame iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}



/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1100px) {

    .venue-gallery-card,
    .venue-details-card {
        min-height: 600px;
    }

    .venue-main-photo {
        height: 365px;
    }

    .venue-small-photo {
        height: 135px;
    }

}



/* ============================================================
   MOBILE / TABLET
============================================================ */

@media (max-width: 900px) {

    .travel-venue-grid {
        grid-template-columns: 1fr;
    }


    .venue-gallery-card,
    .venue-details-card {
        min-height: auto;
    }


    .venue-gallery-card {
        padding: 22px;
    }


    .venue-main-photo {
        height: 400px;
    }


    .venue-small-photo {
        height: 150px;
    }


    .venue-details-card {
        padding: 32px 26px;
    }

}



/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 600px) {

    .venue-gallery-card {
        padding: 16px;
    }


    .venue-main-photo {
        height: 260px;
    }


    .venue-photo-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 8px;
    }


    .venue-small-photo {
        height: 135px;
    }


    .venue-details-card {
        padding: 26px 18px;
    }


    .venue-address {
        gap: 13px;
    }


    .venue-address-icon {
        width: 52px;
        height: 52px;

        font-size: 1.2rem;
    }


    .venue-address-content h2 {
        font-size: 1.2rem;
    }


    .venue-address-content p {
        font-size: .85rem;
    }


    .venue-contact-section {
        gap: 13px;
    }


    .venue-contact-icon {
        width: 54px;
        height: 54px;

        font-size: 1.25rem;
    }


    .venue-contact-content h3 {
        font-size: 1.05rem;
    }


    .venue-contact-email-row {
        align-items: flex-start;
    }


    .venue-email-icon {
        width: 35px;
        height: 35px;
    }


    .venue-contact-email {
        font-size: .78rem;
    }


    .venue-details-card .venue-map-frame {
        height: 210px;
    }

}



/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 380px) {

    .venue-main-photo {
        height: 225px;
    }


    .venue-small-photo {
        height: 115px;
    }


    .venue-details-card {
        padding: 22px 15px;
    }

}
