/* EventHub Event Information Widget Styles */
.eventhub-event-information-container {
    position: relative;
}

.eventhub-event-information-name {
    margin: 0 0 20px 0;
    font-size: 2em;
    font-weight: bold;
}

.eventhub-event-information-image {
    margin-bottom: 20px;
}

.eventhub-event-information-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.eventhub-event-information-image-library {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.eventhub-event-information-image-library img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.eventhub-event-information-description {
    margin-bottom: 30px;
}

.eventhub-event-information-accommodations,
.eventhub-event-information-addons,
.eventhub-event-information-whats-included {
    margin-bottom: 30px;
}

.eventhub-event-information-accommodations h3,
.eventhub-event-information-addons h3,
.eventhub-event-information-whats-included h3 {
    margin-bottom: 15px;
}

/* Accommodations and Addons Card Layout */
.eventhub-event-information-accommodations .accommodation-item,
.eventhub-event-information-addons .addon-item {
    margin-bottom: 20px;
}

.eventhub-event-information-accommodations .accommodation-item.eventhub-card,
.eventhub-event-information-addons .addon-item.eventhub-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.eventhub-event-information-accommodations .eventhub-card-image,
.eventhub-event-information-addons .eventhub-card-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
}

.eventhub-event-information-accommodations .eventhub-card-image img,
.eventhub-event-information-addons .eventhub-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}

.eventhub-event-information-accommodations .eventhub-card-content,
.eventhub-event-information-addons .eventhub-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.eventhub-event-information-accommodations .eventhub-card-title,
.eventhub-event-information-addons .eventhub-card-title {
    font-size: 20px;
    font-weight: bold;
    color: #2c2c2c;
    margin: 0;
}

.eventhub-event-information-accommodations .eventhub-card-description,
.eventhub-event-information-addons .eventhub-card-description {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.eventhub-event-information-accommodations .eventhub-card-price,
.eventhub-event-information-addons .eventhub-card-price {
    font-size: 20px;
    font-weight: bold;
    color: #2c2c2c;
    margin-top: 8px;
}

/* What's Included Bulleted List */
.eventhub-event-information-whats-included .whats-included-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.eventhub-event-information-whats-included .whats-included-item {
    margin-bottom: 8px;
    padding: 0;
    line-height: 1.6;
}

.eventhub-event-information-video {
    margin-bottom: 20px;
}

.eventhub-event-information-video iframe,
.eventhub-event-information-video video {
    max-width: 100%;
    height: auto;
    display: block;
    border: none;
}

@media (max-width: 768px) {
    .eventhub-event-information-image-library {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .eventhub-event-information-image-library {
        grid-template-columns: 1fr !important;
    }
}