/* ===========================
   TCC BIRTHDAY BANNER STYLES
   =========================== */
.tcc-banner {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  margin: 25px 0 35px 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.2);
}

.gold-edition {
  background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.banner-glitter {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,215,0,0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(255,215,0,0.1) 0%, transparent 50%);
  animation: glitter 8s linear infinite;
}

@keyframes glitter {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 35px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(5px);
}

.banner-date-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(255, 215, 0, 0.1);
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.tcc-month {
  font-size: 1.8rem;
  font-weight: 600;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.tcc-day {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-divider {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, #FFD700, transparent);
  margin: 0 20px;
}

.banner-text-block {
  flex: 1;
  text-align: right;
}

.tcc-label {
  display: block;
  font-size: 1rem;
  color: #FFD700;
  letter-spacing: 3px;
  margin-bottom: 5px;
  opacity: 0.9;
}

.tcc-context {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* ===========================
   MOBILE OPTIMIZATION - KEEPS DESKTOP LAYOUT
   Only font sizes and spacing adjust for smaller screens
   The layout remains ROW-based (date | divider | text)
   =========================== */

/* Tablets and small desktops */
@media (max-width: 992px) {
  .banner-content {
    padding: 18px 25px;
  }
  .tcc-month {
    font-size: 1.6rem;
  }
  .tcc-day {
    font-size: 3rem;
  }
  .tcc-context {
    font-size: 1.8rem;
  }
  .banner-date-block {
    padding: 8px 20px;
  }
}

/* Large phones and small tablets */
@media (max-width: 768px) {
  .banner-content {
    padding: 15px 20px;
    /* IMPORTANT: flex-direction REMAINS row - does NOT stack */
  }
  .tcc-month {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }
  .tcc-day {
    font-size: 2.5rem;
  }
  .tcc-context {
    font-size: 1.5rem;
  }
  .tcc-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
  .banner-date-block {
    padding: 6px 18px;
    gap: 5px;
  }
  .banner-divider {
    height: 40px;
    margin: 0 15px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .banner-content {
    padding: 12px 15px;
  }
  .tcc-month {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
  .tcc-day {
    font-size: 2.2rem;
  }
  .tcc-context {
    font-size: 1.2rem;
  }
  .tcc-label {
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 3px;
  }
  .banner-date-block {
    padding: 5px 15px;
    gap: 4px;
  }
  .banner-divider {
    height: 35px;
    margin: 0 12px;
  }
}

/* Extra small phones (below 360px) */
@media (max-width: 360px) {
  .banner-content {
    padding: 10px 12px;
  }
  .tcc-month {
    font-size: 1rem;
  }
  .tcc-day {
    font-size: 1.8rem;
  }
  .tcc-context {
    font-size: 1rem;
  }
  .tcc-label {
    font-size: 0.7rem;
  }
  .banner-date-block {
    padding: 4px 12px;
  }
  .banner-divider {
    height: 30px;
    margin: 0 8px;
  }
}