.event_container_108 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start; /* prevent the last row from stretching */
  margin: 20px auto;
  max-width: 1200px;
  box-sizing: border-box;
}

.event_container_108 .event_grid_item {
  flex: 0 0 calc((100% - 40px) / 3); /* 3 per row with 20px gaps */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08),
              0 8px 20px rgba(0, 0, 0, 0.06);
padding: 0 0 20px 0;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin:0;
}

.event_container_108 .event_grid_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12),
              0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Responsive: 2 per row */
@media (max-width: 900px) {
  .event_container_108 .event_grid_item {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

/* Responsive: 1 per row */
@media (max-width: 600px) {
  .event_container_108 .event_grid_item {
    flex: 0 0 100%;
  }
}



.event_date_section{
   height: 200px; 
       margin-bottom: 15px;
}

.event_date_section span{
    font-size: 12px;
    display: inline-block;
    background: #4AAFCB;
    color: #fff;
    padding: 3px 7px;
    border-radius: 5px;
    margin-top: 15px;
}

.event_grid_item div{
padding:5px 20px;
font-size:14px;
color:#004F6E;
}

label{
font-size:12px;
color:#004F6E;
display:block;

}


.event_title h3{
 color:#004F6E;   
 font-size:18px;
 font-weight: 600;
}


.event_type_inner,.event_delievery{
width:35%;
display: inline-block;
padding: 0 !important;
}

.event_start_date{
   color:#004F6E; 
}

.event_type span{
    display: inline-block;
    font-size: 12px;
    background-color: #e6eef1;
    padding: 5px;
    border-radius: 5px;
    margin-top: 5px;
}

.event_border{
height: 1px;
    background: #e1e1e1;
    padding: 0 !important;
    width: calc(100% - 40px);
    margin:10px auto;
}

.event_date_section{
   background-size:cover !important;
   background-repeat: no-repeat;
   background-position: center center !important; 
}



.event_read_more a{
display: block;
    color: #fff;
    background-color: #004F6E;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
}
/* start events css  */
.event_read_more a { text-align: center;}
.event-product-selector button:hover {color: #fff!important; background-color: #004F6E !important;}
.post-3686 { margin-bottom: 50px; }



.event-product-selector {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.event-product-selector h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1f2937;
}

/* Card */
.event-card {
    display: block;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fff;
}

/* Hide default radio */
.event-card input[type="radio"] {
    display: none;
}

/* Inner layout */
.event-card-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Text */
.event-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.event-price {
    margin-top: 5px;
    font-size: 15px;
    color: #6b7280;
}

/* Custom radio */
.event-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
}

/* Hover */
.event-card:hover {
    border-color: #9ca3af;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Selected state */
.event-card input[type="radio"]:checked + .event-card-inner {
    border-color: #111827;
}

.event-card input[type="radio"]:checked + .event-card-inner .event-radio {
    border-color: #111827;
}

.event-card input[type="radio"]:checked + .event-card-inner .event-radio::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #111827;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Continue button */
.event-product-selector button {
    background: #111827;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s ease;
}

.event-product-selector button:hover {
    background: #374151;
}








.event_grid_item {
    margin: 30px auto;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding-bottom: 20px;
}

.event_grid_item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* IMAGE SECTION */
.event_date_section {
    height: 260px;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
}

/* DATE BADGE */
.event_date_section span {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
}

/* CONTENT SPACING */
.event_grid_item > div:not(.event_date_section) {
    padding: 0 24px;
}

/* TITLE */
.event_title {
    margin-top: 20px;
}

.event_title label {
    display: none; /* remove label clutter */
}

.event_title h3 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 10px;
}

/* META TEXT */
.event_start_date,
.event_loaction {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.event_start_date label,
.event_loaction label {
    font-weight: 600;
    color: #374151;
    display: inline-block;
    margin-right: 5px;
}

/* TYPE + DELIVERY */
.event_type {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.event_type_inner span,
.event_delievery span {
    background: #f3f4f6;
    color: #374151;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
}

.event_type label,
.event_delievery label {
    display: none; /* cleaner look */
}

/* DESCRIPTION */
.event_description {
    margin-top: 10px;
}

.event_description label {
    display: none;
}

.event_description p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

/* OPTIONAL BORDER CLEANUP */
.event_border {
    display: none;
}



.event-choice-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.event-choice-btn {
    flex: 1;
padding: 7px;
    border-radius: 6px;
    background: #0f5b6e;
    color: #fff !important;
    text-align: center;
    font-size: 16px;
    font-weight: 600 !important;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: 0.2s ease;
    display: inline-block !important;
    width:46% !important;
    margin-right:2% !important;
}

.event-choice-btn:hover {
    background: #0c4a5a;
}

.event-choice-btn.secondary {
    background: #1f2937;
}

#btn-individual:hover{
color:#000 !important;
}