/* ============================================================
   GEK COURSE POPUP — Layout styles
   ============================================================ */

/* Title */
.gek-course-title {
    font-size: 32px !important;
    font-weight: 700;
    color: #323232;
    margin: 0 0 10px;
    padding-right: 40px;
    line-height: 48px
}

/* Location tags row */
.gek-course-tags {
    display: none; /*hiding temporarily*/
    flex-wrap: wrap;
    gap: 6px 16px;
    margin-bottom: 16px;
}

.gek-course-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #7AC143;
}

.gek-course-tag svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* Intro */
.gek-course-intro {
    font-size: 16px;
    color: #323232;
    line-height: 20px;
    margin-bottom: 15px !important;
}

/* Section headings */
.gek-section-heading {
    font-size: 28px !important;
    font-weight: 700;
    color: #323232;
    margin: 12 0 12px !important;
	
}

/* Green fees */
.gek-green-fees {
    margin-bottom: 24px;
}

/* Where to Stay */
.gek-where-to-stay {
    margin-top: 24px;
    margin-bottom: 20px;
}

.gek-hotel-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
	font-size: 16px !important;
    gap: 6px 0;
}

.gek-hotel-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px !important;
    color: #323232;
    width: 50%;
}

.gek-hotel-list li svg {
    width: 11px;
    height: 11px;
    color: #7AC143;
    flex-shrink: 0;
}

/* Gallery */
.gek-course-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 4px;
}

.gek-course-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.gek-gallery-placeholder {
    width: 100%;
    height: 220px;
    background: #f0f0f0;
    border-radius: 10px;
}

/* Mobile */
@media (max-width: 480px) {
    .gek-hotel-list li {
        width: 100%;
    }
    .gek-course-gallery img,
    .gek-gallery-placeholder {
        height: 100px;
    }
}
