/* ═══════════════════════════════════════════════════════════
   FOTOBOTS — SHARED STYLESHEET
   fotobots.css
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ─── PRELOADER ─── */
#preloader {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
#preloader.fade-out { opacity: 0; pointer-events: none; }
.preloader-logo {
  width: 140px;
  animation: preloader-pulse 1.4s ease-in-out infinite;
}
@keyframes preloader-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ─── BASE ─── */
html { scroll-behavior: smooth; }
body {
  background: #050505;
  color: #E5E2E1;
  font-family: 'Epilogue', sans-serif;
}

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 16px;
}
.logo { width: 120px; height: 37px; object-fit: fill; }
.nav-hamburger { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; cursor: pointer; }
.nav-hamburger svg rect { transition: transform 0.25s ease, opacity 0.2s ease; transform-box: fill-box; transform-origin: center; }
.nav-hamburger.open svg rect:nth-child(1) { transform: translateY(6.4px) rotate(45deg); }
.nav-hamburger.open svg rect:nth-child(2) { opacity: 0; }
.nav-hamburger.open svg rect:nth-child(3) { transform: translateY(-6.4px) rotate(-45deg); }

.nav-links { display: none; }
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 85px; left: 0; right: 0;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0 24px;
  z-index: 99;
  animation: nav-slide-down 0.2s ease;
}
.nav-links.open .nav-link {
  padding: 16px 20px;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-links.open .nav-link:last-child { border-bottom: none; }
@keyframes nav-slide-down {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-link {
  font-family: 'Lexend', sans-serif;
  font-size: 14px; font-weight: 400; line-height: 20px;
  letter-spacing: -0.07em; text-transform: uppercase; text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}
.nav-link.active {
  color: #FFF200;
  padding-bottom: 4px;
  border-bottom: 2px solid #FFF200;
}

/* ─── FOOTER (shared base) ─── */
.footer {
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 32px;
}
.footer-top { display: flex; flex-direction: column; gap: 32px; }
.footer-col { width: 100%; display: flex; flex-direction: column; gap: 16px; }
.footer-ghost { display: none; }
.footer-logo { width: 145px; height: 44px; object-fit: fill; }
.footer-contact-block { display: flex; flex-direction: column; gap: 16px; }
.footer-heading {
  font-family: 'Epilogue', sans-serif;
  font-size: 16px; font-weight: 700; line-height: 15px;
  letter-spacing: 0.0625em; text-transform: uppercase; color: #6B7280;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links.tight { gap: 4px; }
.footer-company  { font-family: 'Epilogue', sans-serif; font-size: 16px; font-weight: 400; line-height: 20px; color: #FFFFFF; text-decoration: none; display: block; }
.footer-address  { font-family: 'Epilogue', sans-serif; font-size: 14px; font-weight: 400; line-height: 20px; color: #E5E2E1; text-decoration: none; display: block; }
.footer-email    { font-family: 'Epilogue', sans-serif; font-size: 14px; font-weight: 400; line-height: 20px; color: #2281ED; text-decoration: none; display: block; }
.footer-legal-link { font-family: 'Epilogue', sans-serif; font-size: 14px; font-weight: 400; line-height: 20px; color: #FFFFFF; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px; margin: 0 -32px -40px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copyright {
  font-family: 'Epilogue', sans-serif;
  font-size: 14px; font-weight: 300; line-height: 20px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════════════════
   HOME PAGE  (.page-home)
   ═══════════════════════════════════════════════════════════ */

/* ─── HERO ─── */
.page-home .hero {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 80px 32px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../img/hero/fotobots-hero-bg.png') center / cover no-repeat,
    url('../img/hero/fotobots-hero-texture.png') center / 100% 100% no-repeat;
  background-color: #050505;
}
.page-home .hero-content {
  display: flex; flex-direction: column; align-items: center;
  gap: 32px; text-align: center; width: 100%;
}
.page-home .hero-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 400; line-height: 24px;
  letter-spacing: 0.4em; text-transform: uppercase; color: #87CEFF;
}
.page-home .hero-title {
  font-family: 'Epilogue', sans-serif;
  font-size: 40px; font-weight: 900; font-style: italic;
  line-height: 1.25; letter-spacing: -0.07em;
  text-transform: uppercase; color: #E5E2E1; width: 100%;
}
.page-home .hero-title .blue { color: #2281ED; }
.page-home .hero-subtitle {
  font-family: 'Lexend', sans-serif;
  font-size: 16px; font-weight: 400; line-height: 24px;
  color: rgba(255, 255, 255, 0.7); width: 100%;
}
.page-home .scroll-indicator {
  position: absolute;
  bottom: 56px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.page-home .scroll-text {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; line-height: 16px; letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4); white-space: nowrap;
}
.page-home .scroll-line {
  width: 1px; height: 64px;
  background: linear-gradient(180deg, #FFF200 0%, rgba(255, 242, 0, 0) 100%);
}

/* ─── SECTION DIVIDER ─── */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 242, 0, 1) 0%, rgba(255, 242, 0, 0) 100%);
}

/* ─── TRENDING EVENTS ─── */
.page-home .trending { background: #050505; padding: 80px 32px; }
.page-home .trending-inner { display: flex; flex-direction: column; gap: 48px; }
.page-home .trending-sidebar { display: flex; flex-direction: column; gap: 23px; width: 100%; }
.page-home .trending-title {
  font-family: 'Epilogue', sans-serif;
  font-size: 36px; font-weight: 800; font-style: italic;
  line-height: 1.15; text-transform: uppercase; color: #E5E2E1;
}
.page-home .trending-title .events-color { color: #00A3FF; }
.page-home .trending-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 400; line-height: 22.75px; color: #9CA3AF;
}
.page-home .trending-controls { display: flex; flex-direction: column; align-items: flex-start; }
.page-home .trending-more {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; padding-top: 8.4px;
}
.page-home .trending-more span {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700; line-height: 20px; color: #00A3FF;
}
.slider-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: transparent; border: 1px solid #374151;
  display: flex; justify-content: center; align-items: center;
  cursor: pointer; transition: background 0.15s;
  appearance: none; -webkit-appearance: none;
}
.slider-arrow.next { border-color: #00A3FF; }
.slider-arrow:hover:not(:disabled) { background: rgba(255, 255, 255, 0.06); }
.slider-arrow:disabled { opacity: 0.25; cursor: default; }
.slider-arrows-desktop { display: none; padding-top: 17px; }

@keyframes slideInRight { from { opacity:0; transform:translateX(8px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideInLeft  { from { opacity:0; transform:translateX(-8px); } to { opacity:1; transform:translateX(0); } }
.page-home .event-card.slide-in-right { animation: slideInRight 0.2s ease forwards; }
.page-home .event-card.slide-in-left  { animation: slideInLeft  0.2s ease forwards; }

.page-home .events-grid { display: flex; flex-direction: column; gap: 16px; }
.page-home .event-card {
  border: 1px solid #1F2937; border-radius: 12px;
  padding: 17px 16px 17px 40px;
  display: flex; flex-direction: column; gap: 4.5px;
  cursor: pointer; transition: border-color 0.15s;
}
.page-home .event-card:hover { border-color: #4B5563; }
.page-home .event-date {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 800; line-height: 15px;
  letter-spacing: -0.05em; text-transform: uppercase; color: #00A3FF;
}
.page-home .event-name {
  font-family: 'Inter', sans-serif;
  font-size: 18px; font-weight: 800; font-style: italic;
  line-height: 28px; letter-spacing: -0.025em;
  text-transform: uppercase; color: #FFFFFF;
}
.page-home .event-meta { display: none; }
.page-home .event-location, .page-home .event-type {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 800; line-height: 15px;
  letter-spacing: 0.1em; text-transform: uppercase; color: #6B7280;
}
.page-home .event-dot {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700; color: #6B7280; margin: 0 8px;
}

/* ─── MEDIA SHOWCASE ─── */
.page-home .media-showcase {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  height: 575px; overflow: hidden;
}
.page-home .media-bg {
  position: absolute; inset: 0;
  background: url('../img/bg/fotobots-media-bg.png') center / cover no-repeat;
}
.page-home .media-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.page-home .media-content {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 24px; padding: 0 32px; text-align: center;
}
.page-home .play-btn {
  width: 77px; height: 77px; border-radius: 50%; border: 2px solid #FFFFFF;
  display: flex; justify-content: center; align-items: center;
  cursor: pointer; flex-shrink: 0;
}
.page-home .play-btn svg { width: 16.5px; height: 21px; margin-left: 3px; }
.page-home .media-title {
  font-family: 'Epilogue', sans-serif;
  font-size: 48px; font-weight: 800;
  line-height: 76px; letter-spacing: -0.03em;
  text-transform: uppercase; color: #E5E2E1; width: 100%;
}
.page-home .media-title .yellow { color: #FFF200; }
.br-mobile { display: block; }
.page-home .media-desc {
  font-family: 'Lexend', sans-serif;
  font-size: 16px; font-weight: 400; line-height: 24px;
  color: rgba(255, 255, 255, 0.8); width: 100%;
}

/* ─── RUNNING EXPERIENCES ─── */
.page-home .experiences { background: #050505; padding: 80px 32px 20px; }
.page-home .experiences-top { display: flex; flex-direction: column; gap: 16px; }
.page-home .experiences-label {
  font-family: 'Lexend', sans-serif;
  font-size: 16px; font-weight: 400; line-height: 24px; color: #2281ED;
}
.page-home .experiences-heading-row { display: flex; flex-direction: column; gap: 16px; }
.page-home .experiences-title {
  font-family: 'Epilogue', sans-serif;
  font-size: 36px; font-weight: 800; font-style: italic;
  line-height: 1.1; letter-spacing: -0.03em;
  font-variant: small-caps; text-transform: uppercase; color: #E5E2E1;
}
.page-home .experiences-title .blue { color: #2281ED; }
.page-home .stats-cards { display: flex; flex-direction: column; gap: 16px; }
.page-home .stat-card {
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
  border-radius: 12px; padding: 16px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.page-home .stat-label {
  font-family: 'Epilogue', sans-serif;
  font-size: 14px; font-weight: 500; line-height: 12px;
  letter-spacing: 0.0857em; color: #5F5E5E; white-space: nowrap;
}
.page-home .stat-value {
  font-family: 'Epilogue', sans-serif;
  font-size: 32px; font-weight: 700; line-height: 38.4px;
  letter-spacing: -0.01em; color: #2281ED;
}
.page-home .experiences-screenshot { padding: 32px 0 0; }
.page-home .experiences-screenshot img {
  width: 100%; height: 189px; object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(240, 242, 245, 0.2); display: block;
}

/* ─── DATA DISPLAY ─── */
.page-home .data-display { background: #050505; padding: 80px 32px; }
.page-home .data-inner { display: flex; flex-direction: column; gap: 32px; }
.page-home .data-stat {
  display: flex; flex-direction: column; gap: 16px;
  padding: 16px 0 16px 32px;
}
.page-home .data-stat:first-child { border-left: 4px solid #00A3FF; }
.page-home .data-stat:last-child  { border-left: 4px solid rgba(255, 255, 255, 0.2); }
.page-home .data-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 400; line-height: 24px; color: #6B7280;
}
.page-home .data-number { font-family: 'Epilogue', sans-serif; font-size: 80px; font-weight: 400; line-height: 80px; }
.page-home .data-number.blue  { color: #0D99FF; }
.page-home .data-number.white { color: #FFFFFF; }
.page-home .data-desc { font-family: 'Epilogue', sans-serif; font-size: 16px; font-weight: 400; line-height: 24px; color: #E5E2E1; }

/* ─── PARTNERS ─── */
.page-home .partners {
  background: linear-gradient(180deg, #131313 0%, #050505 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 280px;
  padding: 48px 32px;
  display: flex; flex-direction: column; gap: 0;
}
.page-home .partners-inner { display: flex; flex-direction: column; }
.page-home .partners-title {
  font-family: 'Epilogue', sans-serif;
  font-size: 36px; font-weight: 800; font-style: italic;
  line-height: 1.1; letter-spacing: -0.04em;
  font-variant: small-caps; text-transform: uppercase; color: #E5E2E1;
}
.page-home .partners-title .blue { color: #2281ED; }
.partners-track-wrap {
  flex: 1;
  display: flex; align-items: center;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partners-track {
  display: flex; align-items: center;
  gap: 64px; width: max-content;
  animation: marquee 22s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
.partner-logo { display: flex; align-items: center; flex-shrink: 0; }
.partner-name {
  font-family: 'Epilogue', sans-serif;
  font-size: 16px; font-weight: 400; line-height: 36px; letter-spacing: 0.15em;
}
.partner-name.light { font-weight: 300; }

/* ═══════════════════════════════════════════════════════════
   EVENTS PAGE  (.page-events)
   ═══════════════════════════════════════════════════════════ */

.page-events .footer {
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.page-events .footer-top { gap: 40px; }

/* ─── MAIN LAYOUT ─── */
.page-events .main {
  padding: 100px 32px 40px;
  display: flex; flex-direction: column; gap: 48px;
}

/* ─── PAGE HEADER ─── */
.page-events .page-header {
  display: flex; flex-direction: column; gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(63, 72, 82, 0.2);
}
.page-events .page-title {
  font-family: 'Epilogue', sans-serif;
  font-size: 36px; font-weight: 700;
  line-height: 70.4px; letter-spacing: -0.0356em;
  color: #E5E2E1;
}
.search-bar {
  display: flex; align-items: center; gap: 4px;
  background: #1C1B1B;
  border: 1px solid rgba(63, 72, 82, 0.3);
  border-radius: 9999px;
  padding: 4px 12px;
}
.search-input {
  flex: 1; background: none; border: none; outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 400; line-height: 24px;
  color: #BEC7D4; min-width: 0;
}
.search-input::placeholder { color: rgba(190, 199, 212, 0.5); }

/* ─── EVENTS GRID ─── */
.page-events .events-grid {
  display: flex; flex-direction: column; gap: 16px;
}

/* ─── EVENT CARD ─── */
.page-events .event-card {
  border: 1px solid #1F2937; border-radius: 12px;
  padding: 20px 16px;
  display: flex; align-items: center;
  cursor: pointer; transition: border-color 0.15s, background 0.15s;
}
.page-events .event-card:hover { border-color: #374151; background: rgba(255,255,255,0.02); }
.page-events .event-margin {
  padding-left: 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.page-events .event-date {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700; line-height: 1;
  letter-spacing: 0.08em; text-transform: uppercase; color: #00A3FF;
}
.page-events .event-name {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 800; font-style: italic;
  line-height: 1.3; letter-spacing: -0.02em;
  text-transform: uppercase; color: #FFFFFF;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── LOAD MORE ─── */
.load-more-wrap {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex; justify-content: center;
}
.load-more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: none;
  border: 1px solid rgba(190, 199, 212, 0.3);
  border-radius: 9999px;
  padding: 10px 24px; cursor: pointer;
  transition: border-color 0.15s, opacity 0.15s;
  font-family: 'Epilogue', sans-serif;
  font-size: 12px; font-weight: 500; line-height: 12px;
  color: #BEC7D4; letter-spacing: 0.05em;
}
.load-more-btn:hover:not(:disabled) { border-color: rgba(190, 199, 212, 0.6); }
.load-more-btn:disabled { opacity: 0.4; cursor: default; }
.load-more-btn.loading { opacity: 0.4; pointer-events: none; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.spinner { animation: spin 1.2s linear infinite; }

.page-events .event-card.hidden { display: none; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-events .event-card.reveal { animation: fadeUp 0.25s ease forwards; }

/* ═══════════════════════════════════════════════════════════
   DESKTOP  ≥ 1024px
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  body { min-width: 1280px; }

  /* ─── NAV ─── */
  .nav { padding: 24px 32px; }
  .nav-hamburger { display: none; }
  .nav-links { display: flex; gap: 40px; align-items: center; }

  /* ─── FOOTER ─── */
  .footer { padding: 40px 80px; gap: 16px; }
  .footer-top { flex-direction: row; justify-content: space-between; }
  .footer-col { width: 560px; justify-content: space-between; }
  .footer-col-left  { min-height: 211px; }
  .footer-col-right { min-height: 179px; }
  .footer-ghost { display: block; visibility: hidden; }
  .footer-logo { width: 191px; height: 58px; }
  .footer-bottom { border-top: none; padding: 0; margin: 0; }

  /* ─── HOME DESKTOP ─── */
  .page-home .hero { padding: 0; }
  .page-home .hero-content { padding: 0 16px; width: auto; }
  .page-home .hero-title { font-size: 64px; letter-spacing: -0.075em; line-height: 80px; width: 784px; }
  .page-home .hero-subtitle { width: 670px; }

  .page-home .trending { padding: 96px 80px; }
  .page-home .trending-inner { flex-direction: row; align-items: stretch; }
  .page-home .trending-sidebar { width: 320px; flex-shrink: 0; }
  .page-home .trending-title { font-size: 48px; letter-spacing: -0.03em; font-variant: small-caps; }
  .page-home .trending-title .events-color { color: #2281ED; }
  .page-home .trending-desc { width: 318px; }
  .slider-arrows-desktop { display: flex; gap: 8px; }
  .page-home .events-grid {
    display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
    gap: 8px; align-self: stretch; flex: 1;
  }
  .page-home .event-card { padding: 16px 16px 16px 40px; justify-content: center; }
  .page-home .event-meta { display: flex; align-items: center; padding-top: 3.5px; }

  .page-home .media-showcase { height: 819px; }
  .page-home .media-title { font-size: 72px; letter-spacing: -0.02em; width: 594px; }
  .page-home .media-desc { width: 573px; }
  .br-mobile { display: none; }

  .page-home .experiences { padding: 80px 0 0; }
  .page-home .experiences-top { padding: 0 80px; }
  .page-home .experiences-heading-row { flex-direction: row; align-items: flex-end; gap: 32px; }
  .page-home .experiences-title { font-size: 48px; flex: 1; }
  .page-home .stats-cards { flex-direction: row; flex-shrink: 0; }
  .page-home .stat-card { padding: 24px; gap: 4px; }
  .page-home .experiences-screenshot { padding: 60px 80px; }
  .page-home .experiences-screenshot img { height: 657px; border-radius: 24px; }

  .page-home .data-display { padding: 80px 0; }
  .page-home .data-inner { flex-direction: row; gap: 0; padding: 0 80px; }
  .page-home .data-stat { flex: 1; }
  .page-home .data-label { font-family: 'Epilogue', sans-serif; }

  .page-home .partners { min-height: 320px; padding: 56px 0; }
  .page-home .partners-inner { padding: 0 80px; }
  .page-home .partners-title { font-size: 48px; letter-spacing: -0.03em; width: 398px; }
  .partner-name { font-size: 24px; letter-spacing: 0.1em; }
  .partners-track { gap: 96px; }

  /* ─── EVENTS DESKTOP ─── */
  .page-events .main { padding: 120px 32px 89px; }
  .page-events .page-header {
    flex-direction: row; justify-content: space-between; align-items: flex-end;
  }
  .page-events .page-title { font-size: 64px; letter-spacing: -0.02em; line-height: 70.4px; }
  .search-bar { width: 240px; flex-shrink: 0; }
  .page-events .events-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  }
  .page-events .event-card { padding: 24px 20px; }
  .page-events .event-margin { padding-left: 28px; gap: 10px; }
  .page-events .event-date { font-size: 11px; }
  .page-events .event-name {
    font-size: 18px;
    display: block; overflow: visible; -webkit-line-clamp: unset;
  }
}
