@charset "UTF-8";
/* Frontend styles – OYC Bento Grid */
.oyc-bento-block {
  padding-block: 32px;
  font-family: "Bebas Neue", sans-serif;
}
.oyc-bento-container {
  width: 100%;
  margin-inline: auto;
}
.oyc-bento-heading {
  text-align: left;
  margin: 0 0 40px;
  font-size: clamp(32px, 32px + 18 * (100vw - 320px) / 1600, 50px);
  color: #2a2a2a;
  letter-spacing: 0.02em;
  line-height: 1;
  font-weight: 400;
}
.oyc-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: dense;
  gap: 14px;
}
@media (min-width: 640px) {
  .oyc-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .oyc-bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 158px;
  }
}
.oyc-bento-card {
  position: relative;
  overflow: hidden;
  background-color: var(--tint, #FEF4F6);
  border: 1px solid transparent;
  border-radius: 0;
  padding: 20px 22px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  animation: oyc-bento-fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease;
}
.oyc-bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent, #EA5F78);
  box-shadow: 0 12px 25px var(--shadow, rgba(249, 218, 225, 0.4));
}
.oyc-bento-card-label {
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2a2a2a;
  line-height: 1.02;
  text-wrap: balance;
}
.oyc-bento-card.color-pink {
  --accent: #EA5F78;
  --tint: #FEF4F6;
  --shadow: rgba(249, 218, 225, 0.4);
}
.oyc-bento-card.color-teal {
  --accent: #008B8D;
  --tint: #F2FAFA;
  --shadow: rgba(214, 239, 239, 0.4);
}
.oyc-bento-card.color-purple {
  --accent: #7F5BA2;
  --tint: #F9F5FB;
  --shadow: rgba(236, 220, 244, 0.4);
}
.oyc-bento-card.color-yellow {
  --accent: #F9AE04;
  --tint: #FFFAEB;
  --shadow: rgba(251, 236, 192, 0.4);
}
@media (min-width: 1024px) {
  .oyc-bento-card.size {
    grid-column: span 2;
  }
  .oyc-bento-card.size-featured {
    grid-column: span 2;
    grid-row: span 2;
  }
  .oyc-bento-card.size-featured .oyc-bento-card-label {
    font-size: 38px;
  }
}
.oyc-bento-card-0 {
  animation-delay: 0s;
}
.oyc-bento-card-1 {
  animation-delay: 0.05s;
}
.oyc-bento-card-2 {
  animation-delay: 0.1s;
}
.oyc-bento-card-3 {
  animation-delay: 0.15s;
}
.oyc-bento-card-4 {
  animation-delay: 0.2s;
}
.oyc-bento-card-5 {
  animation-delay: 0.25s;
}
.oyc-bento-card-6 {
  animation-delay: 0.3s;
}
.oyc-bento-card-7 {
  animation-delay: 0.35s;
}
.oyc-bento-card-8 {
  animation-delay: 0.4s;
}
.oyc-bento-card-9 {
  animation-delay: 0.45s;
}
.oyc-bento-card-10 {
  animation-delay: 0.5s;
}
.oyc-bento-card-11 {
  animation-delay: 0.55s;
}
@keyframes oyc-bento-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}