/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 24 2025 | 07:02:41 */
.featuredEvent-row {
    display: flex;
    flex-wrap: nowrap; 
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 0 20px;
    z-index: 1;
    position: relative;
    font-family: "Inter", sans-serif;
}

/* Event Card Styling */
.featuredEvent-card {
    background-color: #f4f7fa;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 350px;
}

/* Date Section */
.featuredEvent-date {
    background: #ffffff;
    font-weight: bold;
    text-align: center;
    border-radius: 15px;
    flex-shrink: 0;
    width: 80px;
    height: 100px;
}

.featuredEvent-date .featuredEvent-icon {
    background: #00A8DD;
    padding: 6px;
    border-radius: 15px 15px 0 0;
}

.featuredEvent-date .featuredEvent-icon img {
    display: block;
    width: 18px;
    height: 18px;
    margin: auto;
}

.featuredEvent-date .day {
    font-size: 20px;
    color: #212121;
    margin-top: 8px;
}

.featuredEvent-date .month {
    font-size: 14px;
    color: #212121;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Info Section */
.featuredEvent-info {
    flex-grow: 1;
}

.featuredEvent-info .label {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    color: #a2a2a2;
    margin-bottom: 4px;
}

.featuredEvent-info .title {
    font-size: 18px;
    line-height: 20px;
    font-weight: bold;
    margin-bottom: 6px;
    color: #000;
}

.featuredEvent-info a {
    font-size: 16px;
    font-weight: 700;
    color: #005976;
    text-decoration: underline;
}

/* View All Events Button */
.featuredEvent-view-all {
    background-color: #00b4e6;
    color: white;
    border-radius: 15px;
    padding: 20px;
    min-width: 120px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.featuredEvent-view-all img {
    margin-bottom: 8px;
    width: 24px;
    height: 24px;
}

a.featuredEvent-view-all:horver {
	color: #ffffff !important;
}

/* ---------- Mobile: Horizontal Scroll ---------- */
@media (max-width: 768px) {
    .featuredEvent-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        padding-left: 20px;             /* visual spacing for first card */
        padding-right: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-padding-left: 20px;      /* FIX: aligns first card snap point */
    }

    .featuredEvent-card,
    .featuredEvent-view-all {
        flex: 0 0 82%;                  /* 85% width → second card peeks */
        scroll-snap-align: center;
        border-radius: 20px;
        background-color: #f4f7fa;
        padding: 16px;
        display: flex;
        gap: 12px;
    }

    /* Adjust inner elements for mobile proportions */
    .featuredEvent-date {
        width: 65px;
        height: 85px;
        border-radius: 12px;
    }

    .featuredEvent-date .day {
        font-size: 16px;
        margin-top: 4px;
    }

    .featuredEvent-date .month {
        font-size: 10px;
    }

    .featuredEvent-info .label {
        font-size: 10px;
    }

    .featuredEvent-info .title {
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 4px;
    }

    .featuredEvent-info a {
        font-size: 12px;
    }

    /* "View All Events" card */
    .featuredEvent-view-all {
        background-color: #00b4e6;
        color: #fff;
        text-align: center;
        font-weight: bold;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    /* Hide scrollbar for clean look */
    .featuredEvent-row::-webkit-scrollbar {
        display: none;
    }
    .featuredEvent-row {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}


@media (max-width: 375px) {
	.featuredEvent-card {padding:10px}
	.featuredEvent-date .featuredEvent-icon img {
		width: 12px;
    	height: 12px;
	}
    .featuredEvent-info .title {
        font-size: 12px;
        line-height: 14px;
    }

    .featuredEvent-info .label {
        font-size: 8px;
        line-height: 10px;
    }

    .featuredEvent-info a {
        font-size: 12px;
    }

    .featuredEvent-date {
        width: 60px;
        height: 80px;
    }

    .featuredEvent-date .day {
        font-size: 16px;
        margin-top: 4px;
    }

    .featuredEvent-date .month {
        font-size: 10px;
    }
}


