/*
 * FLT HOMEPAGE EVENT STRIP
 * In-place V4 refinement
 */

.event-strip{
  position:relative;
  background:#030b11;
  border-top:1px solid rgba(215,181,109,.32);
  border-bottom:1px solid rgba(215,181,109,.32);
}

.event-strip .event-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:0;
}

.event-strip .event-card{
  position:relative;
  display:grid;
  grid-template-columns:150px minmax(0,1fr);
  align-items:center;
  gap:28px;
  min-height:220px;
  padding:32px 38px;
  overflow:hidden;
  border-right:1px solid rgba(255,255,255,.11);
  border-bottom:1px solid rgba(255,255,255,.11);
  background:
    radial-gradient(circle at 10% 50%,
      rgba(0,167,181,.055),
      transparent 44%),
    linear-gradient(145deg,
      rgba(6,18,26,.96),
      rgba(2,11,17,.98));
}

.event-strip .event-card:nth-child(2n){
  border-right:0;
}

.event-strip .event-card:nth-last-child(-n+2){
  border-bottom:0;
}

.event-strip .event-copy{
  position:relative;
  z-index:2;
  min-width:0;
}

.event-strip .event-copy small{
  display:block;
  margin:0 0 13px;
  color:#00a7b5;
  font-size:15px;
  font-weight:850;
  line-height:1.2;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.event-strip .event-copy strong{
  display:block;
  margin:0 0 12px;
  color:#fff;
  font-size:25px;
  font-weight:850;
  line-height:1.08;
  letter-spacing:-.02em;
  text-transform:uppercase;
}

.event-strip .event-copy p{
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:15px;
  font-weight:500;
  line-height:1.42;
  text-transform:uppercase;
}

.event-strip .event-media{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  width:150px;
  min-width:150px;
  min-height:108px;
}

.event-strip .event-visual{
  display:block;
  width:auto;
  height:auto;
  max-width:100%;
  object-fit:contain;
}

.event-strip .event-media-bermuda{
  width:168px;
  min-width:168px;
}

.event-strip .event-bermuda-map{
  width:164px;
  max-width:164px;
  filter:
    drop-shadow(0 0 12px rgba(215,181,109,.20))
    drop-shadow(0 8px 16px rgba(0,0,0,.25));
}

.event-strip .event-card-next{
  grid-template-columns:168px minmax(0,1fr);
}

.event-strip .event-card-location{
  grid-template-columns:minmax(0,1fr) 205px;
  gap:32px;
}

.event-strip .event-card-location .event-copy{
  order:1;
}

.event-strip .event-media-cambridge{
  order:2;
  width:205px;
  min-width:205px;
  justify-content:flex-end;
}

.event-strip .event-logo-well{
  display:flex;
  align-items:center;
  justify-content:center;
  width:205px;
  min-height:120px;
  padding:19px 18px;
  border:1px solid rgba(215,181,109,.54);
  border-radius:20px;
  background:
    radial-gradient(circle at 50% 18%,
      rgba(39,101,126,.92),
      rgba(16,53,70,.96) 46%,
      rgba(5,22,31,.99) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.035),
    0 14px 28px rgba(0,0,0,.23);
}

.event-strip .event-cambridge-logo{
  width:170px;
  max-width:170px;
  max-height:76px;
}

.event-strip .event-location-heading{
  color:#d7b56d !important;
  font-size:16px !important;
  letter-spacing:.08em !important;
}

.event-strip .event-location-meta{
  color:#fff !important;
  font-size:18px !important;
  font-weight:750 !important;
  line-height:1.3 !important;
}

.event-strip .event-official-crown{
  width:112px;
  max-width:112px;
  max-height:112px;
  filter:
    drop-shadow(0 0 13px rgba(215,181,109,.19))
    drop-shadow(0 10px 18px rgba(0,0,0,.28));
}

.event-strip .event-community-symbol{
  display:flex;
  align-items:center;
  justify-content:center;
  width:76px;
  height:76px;
  color:#d7b56d;
  font-size:52px;
  line-height:1;
  text-shadow:0 0 16px rgba(215,181,109,.18);
}

/*
 * At tablet width, keep the overall 2 × 2 event grid,
 * but stack the Cambridge logo so it cannot collide with text.
 */
@media (max-width:1280px){
  .event-strip .event-card{
    grid-template-columns:130px minmax(0,1fr);
    gap:22px;
    padding:30px 28px;
  }

  .event-strip .event-card-next{
    grid-template-columns:142px minmax(0,1fr);
  }

  .event-strip .event-media{
    width:130px;
    min-width:130px;
  }

  .event-strip .event-media-bermuda{
    width:142px;
    min-width:142px;
  }

  .event-strip .event-bermuda-map{
    width:138px;
    max-width:138px;
  }

  .event-strip .event-card-location{
    grid-template-columns:1fr;
    align-content:center;
    gap:18px;
  }

  .event-strip .event-card-location .event-copy{
    order:1;
  }

  .event-strip .event-media-cambridge{
    order:2;
    width:100%;
    min-width:0;
    min-height:0;
    justify-content:flex-start;
  }

  .event-strip .event-logo-well{
    width:240px;
    max-width:100%;
    min-height:100px;
    padding:15px 18px;
  }

  .event-strip .event-cambridge-logo{
    width:188px;
    max-width:100%;
    max-height:67px;
  }

  .event-strip .event-copy strong{
    font-size:22px;
  }
}

@media (max-width:900px){
  .event-strip .event-card{
    grid-template-columns:104px minmax(0,1fr);
    gap:18px;
    min-height:198px;
    padding:25px 22px;
  }

  .event-strip .event-card-next{
    grid-template-columns:112px minmax(0,1fr);
  }

  .event-strip .event-media{
    width:104px;
    min-width:104px;
  }

  .event-strip .event-media-bermuda{
    width:112px;
    min-width:112px;
  }

  .event-strip .event-bermuda-map{
    width:110px;
    max-width:110px;
  }

  .event-strip .event-card-location{
    grid-template-columns:1fr;
  }

  .event-strip .event-media-cambridge{
    width:100%;
    min-width:0;
  }

  .event-strip .event-logo-well{
    width:210px;
    min-height:90px;
    border-radius:16px;
  }

  .event-strip .event-official-crown{
    width:92px;
    max-width:92px;
    max-height:92px;
  }

  .event-strip .event-copy small{
    font-size:13px;
  }

  .event-strip .event-copy strong{
    font-size:19px;
  }

  .event-strip .event-copy p{
    font-size:13px;
  }

  .event-strip .event-location-meta{
    font-size:15px !important;
  }
}

@media (max-width:680px){
  .event-strip .event-grid{
    grid-template-columns:1fr;
  }

  .event-strip .event-card,
  .event-strip .event-card-next{
    grid-template-columns:100px minmax(0,1fr);
    gap:18px;
    min-height:172px;
    padding:24px 20px;
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.11);
  }

  .event-strip .event-card:last-child{
    border-bottom:0;
  }

  .event-strip .event-card-location{
    grid-template-columns:1fr;
    gap:16px;
  }

  .event-strip .event-media,
  .event-strip .event-media-bermuda{
    width:100px;
    min-width:100px;
    min-height:80px;
  }

  .event-strip .event-card-location .event-media{
    width:100%;
    min-width:0;
    min-height:0;
  }

  .event-strip .event-logo-well{
    width:245px;
    max-width:100%;
    min-height:96px;
  }

  .event-strip .event-cambridge-logo{
    width:190px;
    max-width:100%;
  }

  .event-strip .event-copy strong{
    font-size:19px;
  }
}
