```css
/*
  css/home_event_viewer.css
*/

.home_event_viewer {
  width: 96%;
  margin: 1vw auto 2vw auto;
  font-family: Arial, sans-serif;
}

.home_event_viewer_header {
  text-align: center;
  padding: 1vw;
  background: linear-gradient(135deg, #123d18, #2f7d32);
  color: white;
  border-radius: 14px 14px 0 0;
}

.home_event_viewer_kicker {
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f4d06f;
  font-weight: bold;
}

.home_event_viewer_title {
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  font-weight: bold;
  line-height: 1.1;
}

.home_event_viewer_subtitle {
  font-size: clamp(1rem, 1.3vw, 1.4rem);
  margin-top: 0.4rem;
}

.home_event_grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1vw;
  background: #f7f1df;
  padding: 1vw;
  border-radius: 0 0 14px 14px;
}

.home_event_card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
  border: 1px solid rgba(0,0,0,0.12);
}

.home_event_card_featured {
  grid-row: span 2;
}
.home_event_card_hidden
{
  display: none;
}
.home_event_media {
  width: 100%;
  background: #f7f1df;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;
}

.home_event_card_featured .home_event_media {
  height: 400px;
}

.home_event_card:not(.home_event_card_featured) .home_event_media {
  height: 250px;
}

.home_event_media img, 
.home_event_media video 
  {
    width: calc(100% - 20px); 
    height: calc(100% - 20px); 
    object-fit: contain; 
    display: block; 
    filter: drop-shadow( 0 6px 12px rgba(0,0,0,.30) ); 
  }
  
.home_event_content {
  padding: 1rem;
}

.home_event_category {
  display: inline-block;
  background: #f4d06f;
  color: #3a2600;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.home_event_name {
  font-size: clamp(1.4rem, 2vw, 2.4rem);
  color: #184d20;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.home_event_card:not(.home_event_card_featured) .home_event_name {
  font-size: clamp(1.2rem, 1.5vw, 1.7rem);
}

.home_event_details {
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  line-height: 1.45;
  margin-bottom: 0.7rem;
}

.home_event_description {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.home_event_button {
  display: inline-block;
  background: #184d20;
  color: white;
  text-decoration: none;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-weight: bold;
}

.home_event_button:hover {
  background: #8b5a18;
  color: white;
  text-shadow: none;
}

.home_event_empty {
  background: #f7f1df;
  padding: 2rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 0 0 14px 14px;
}

@media (max-width: 1062px) {

  .home_event_viewer {
    width: 96%;
    margin: 2vw auto;
  }

  .home_event_grid {
    grid-template-columns: 1fr;
    gap: 3vw;
    padding: 3vw;
  }

  .home_event_card_featured {
    grid-row: auto;
  }

  .home_event_card_featured .home_event_media,
  .home_event_card:not(.home_event_card_featured) .home_event_media {
    height: 250px;
  }

  .home_event_content {
    padding: 1rem;
  }
}