/* ============================================
       CONFERENCE VENUE
       ============================================ */

.venue3 {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    max-width: 900px;
    width: 100%;
    background-color: #f9f9f9;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(2rem, 4vw, 2.5rem);
    box-shadow: var(--shadow-medium);
    border-top: 8px solid;
    border-image: linear-gradient(60deg, #6d53ff 0%, #ceff47 40%, #e3ff44 65%, #a353ff 100%);
    border-image-slice: 1;
    margin: clamp(1rem, 2vw, 1rem) auto 2rem;
    color: #333;
    box-sizing: border-box;
    overflow: hidden;
}

.venue-content {
    flex: 1 1 300px;
    min-width: 0;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.map-container {
    flex: 1 1 300px;
    min-width: 0;
    max-width: 100%;
    height: clamp(250px, 40vw, 400px);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
    display: block;
}

/* Headings */
.venue3 h2 {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: var(--light-bg-txt-subheader);
}

.venue3 h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: var(--light-bg-txt-subheader);
}

/* Paragraphs */
.venue-content p {
    font-size: clamp(0.95rem, 2.5vw, 1rem);
    line-height: 1.6;
    margin: 0.5rem 0;
}

/* Lists */
.venue3 ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
    font-size: clamp(0.95rem, 2.5vw, 1rem);
    list-style: none;
}

.venue3 li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.3;
}

.venue3 li::before {
    content: "★";
    /* Unicode star */
    color: var(--light-bg-txt-subheader);
    position: absolute;
    left: -1rem;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.venue3 .button {
    margin-top: 1rem;
    font-size: clamp(0.7rem, 2.2vw, 0.9rem);
    background: var(--primary-btn-clr);
    padding: 0.5rem 1rem;
    border-radius: 10px;
}
