/* Sponsors: fixed width, auto height */
.eb-sponsor-logo img,
.event-sponsor img {
    border-radius: 0 !important;
    width: 250px !important;      /* set common width */
    height: auto !important;      /* keep proportions */
    object-fit: contain !important;
    max-width: 100%;
}

/* Speakers: 200x200 circle (if desired) */
.eb-speaker-image img,
.eb-speaker-avatar img {
    width: 200px !important;
    height: 200px !important;
    object-fit: cover;
    max-width: 100%;
    border-radius: 50% !important;
}

/* Venue image - 200px wide */
.eb-venue-image {
    width: 200px !important;
    height: auto !important;
    max-width: 100%;
}

/* 1. Fix Venue Information H2 font size to match H3s */
h2 {
    font-size: 1.4em !important;
    line-height: 1.3 !important;
    margin-bottom: 0.5em !important;
}

/* 2. Venue image 200px wide */
.eb-venue-image {
    width: 200px !important;
    height: auto !important;
    max-width: 100%;
    float: left !important;
    margin-right: 20px !important;
}

/* 3. Venue address text beside image */
.eb-location-description {
    overflow: hidden !important;  /* clear float */
    margin-left: 320px !important; /* image width + margin */
}

/* 4. Responsive: stack on mobile */
@media (max-width: 768px) {
    .eb-venue-image {
        float: none !important;
        margin-right: 0 !important;
        display: block !important;
        margin-bottom: 15px !important;
    }
    .eb-location-description {
        margin-left: 0 !important;
    }
}