.oshkosh-live-card {
  padding: 22px;
  display: grid;
  gap: 20px;
}

.oshkosh-live-copy {
  text-align: left;
  display: grid;
  gap: 10px;
}

.oshkosh-live-copy h2 {
  margin: 0;
}

.oshkosh-live-copy p {
  margin: 0;
  max-width: 58ch;
}

.oshkosh-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
  grid-auto-rows: 220px;
  gap: 16px;
  align-items: stretch;
}

.oshkosh-gallery-item {
  margin: 0;
  min-height: 0;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 36px rgba(0,0,0,0.20);
}

.oshkosh-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.oshkosh-gallery-item-tall {
  min-height: 0;
  grid-row: span 2;
}

@media (max-width: 640px) {
  .oshkosh-gallery {
    grid-template-columns: 1fr;
  }

  .oshkosh-gallery-item-tall {
    min-height: 0;
  }

  .oshkosh-live-copy {
    text-align: center;
  }
}
