/* Hero-баннер с обратным отсчётом — на всю ширину экрана, адаптивный */
.paralympic-banner {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: transparent;
  overflow: hidden;
  font-family: var(--g26-font, 'Montserrat', sans-serif);
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0;
  min-height: 320px;
}
.paralympic-banner:hover {
  opacity: 0.98;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}
.paralympic-banner * { box-sizing: border-box; }

.banner-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
}
.bg-circle-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 160px;
  background: white;
  border-radius: 50%;
  transform: translate(-45%, -45%);
}
.bg-circle-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: white;
  border-radius: 50%;
  transform: translate(35%, 35%);
}

.banner-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 320px;
  padding: 2rem 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
}
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  padding: 0;
  margin: 0;
  box-shadow: none;
  border-radius: 0;
}
.logo-container img {
  height: 80px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(255,255,255,0.2));
}
.event-info { text-align: center; }
.event-title {
  color: #ffffff !important;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.event-location, .event-dates {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: clamp(0.85rem, 2vw, 1rem);
  line-height: 1.35;
  font-weight: 500;
}
.event-dates { margin-bottom: 1rem; }

.countdown-section { width: 100%; max-width: 560px; margin: 0 auto; }
.countdown-label {
  color: #ffffff !important;
  text-align: center;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.95;
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 2vw, 16px);
}
.countdown-item {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: clamp(10px, 2.5vw, 16px) clamp(8px, 1.5vw, 12px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 0.2s, transform 0.2s;
}
.paralympic-banner:hover .countdown-item {
  background: rgba(255, 255, 255, 0.28);
}
.countdown-number {
  color: #ffffff !important;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.countdown-unit {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(0.6rem, 1.5vw, 0.75rem);
  margin-top: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.flag-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.flag-stripe { height: 5px; border-radius: 3px; }
.flag-white { width: 48px; background: white; }
.flag-blue { width: 48px; background: #3b82f6; }
.flag-red { width: 48px; background: #dc2626; }

/* Адаптив баннера на всю ширину */
@media (min-width: 576px) {
  .paralympic-banner { min-height: 360px; }
  .banner-content { min-height: 360px; padding: 2.25rem 2rem; }
  .logo-container img { height: 90px; max-width: 350px; }
}
@media (min-width: 768px) {
  .paralympic-banner { min-height: 400px; }
  .banner-content { min-height: 400px; padding: 2.5rem 2rem; }
  .countdown-section { max-width: 640px; }
  .logo-container img { height: 100px; max-width: 400px; }
}
@media (min-width: 992px) {
  .paralympic-banner { min-height: 420px; }
  .banner-content { min-height: 420px; padding: 3rem 2rem; }
  .logo-container img { height: 110px; max-width: 450px; }
}
@media (max-width: 399px) {
  .countdown-grid { gap: 6px; }
  .countdown-item { padding: 8px 6px; }
  .countdown-number { font-size: 1.35rem; }
  .countdown-unit { font-size: 0.55rem; }
}
