embed, iframe, object {
    max-height: 400px;
}

/* Elementor Icon list fix */
.elementor-icon-list-icon {
	min-width: 30px;
}

/* WRAPPER */
.filter-wrapper {
    background: linear-gradient(135deg, #0061b1, #1993d2);
    padding: 40px 25px;
    border-radius: 18px;
    color: #fff;
}

/* FILTER BAR LAYOUT */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

/* PILL STYLE BUTTON */
.filter-pill {
    background: #fff;
    color: #333;
    padding: 10px 22px;
    border-radius: 40px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    min-width: 300px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* DROPDOWN BOX STYLE */
.dropdown-box {
    display: none;
    position: absolute;
    margin-top: 10px;
    background: #fff;
    color: #333;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    z-index: 999;
    min-width: 300px;
}

/* SELECT DROPDOWN */
.dropdown-select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* CHECKBOX LIST */
.checkboxes .checkbox-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    cursor: pointer;
}

/* ITEM POSITIONING */
.filter-item {
    position: relative;
}

/* OPEN DROPDOWN */
.filter-item.open .dropdown-box {
    display: block;
}

/* SEARCH BUTTON */
.search-btn {
    background: #fff;
    border-radius: 40px;
    padding: 10px 28px;
    border: none;
    color: #0061b1;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}



/* Wydget Styles */
/* Summit Activity Results
-----------------------------------*/
.summit-tag-results h2 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.summit-tag-results > p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

/* Activity Grid Layout */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual Card */
.activity-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Card Image */
.activity-image {
    position: relative;
    overflow: hidden;
}

.activity-image a {
	display: flex;
	justify-content: center;
	aspect-ratio: 16 / 10;
}

.activity-image img {
    width: 80%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

/* Card Content */
.activity-content {
    padding: 0 25px 20px;
}

.activity-content h3 {
    margin: 0 0 12px 0;
    font-size: 1.2rem;
    line-height: 1.4;
}

.activity-content h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.activity-content h3 a:hover {
    color: #3498db;
}

/* Tags */
.activity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tag-badge {
    background: #f0f4f8;
    color: #5a6a7a;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Description */
.activity-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Breakpoints
-----------------------------------*/
@media (max-width: 1024px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .activity-content {
        padding: 0 30px 30px;
    }
    
    .activity-content h3 {
        font-size: 1.1rem;
    }
}

