:root {
  color-scheme: dark;
  --bg: #0a0d12;
  --surface: #0f1319;
  --surface-strong: #1a1f2a;
  --surface-light: #ffffff;
  --surface-muted: #f4f4f4;
  --text: #ffffff;
  --text-dark: #161616;
  --text-secondary: #6f7277;
  --muted: #8b92a0;
  --accent: #c72b28;
  --accent-soft: rgba(199, 43, 40, 0.1);
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
}

.page-shell,
.tabs-nav,
.banner-section,
.site-footer {
  background: transparent;
}

main {
  background: var(--surface-muted);
  color: var(--text-dark);
}

.page-shell {
  min-height: 100vh;
  background: var(--bg);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button-tertiary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.link-secondary {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  display: none;
}

.link-secondary:hover {
  color: var(--accent);
}

/* Header & Hero Wrapper */
.header-hero-wrapper {
  position: relative;
  overflow: hidden;
}

.page-header-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 1;
  z-index: 0;
}


.header-hero-wrapper::before {
  content: ''; 
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(10,13,18,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Header */
.site-header {
  position: relative;
  z-index: 2;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 16px 0;
  flex-wrap: wrap;
}

.logo-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
  flex-shrink: 0;
}

.logo {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--text);
}

.logo-subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--accent);
}

.header-inner .button {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* Hero Section */
.hero {
  position: relative;
  z-index: 2;
  padding: 60px 0 80px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 20px;
}

h1 {
  margin: 0 0 20px 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-description {
  margin: 0 0 30px 0;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions .button {
  padding: 12px 24px;
  font-size: 0.9rem;
}

/* Tabs Navigation */
.tabs-nav {
  background: var(--surface-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 28px 0 32px;
}

.tabs-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  transition: all 0.2s ease;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: var(--surface-light);
  line-height: 1.2;
}

.tab-item:hover {
  background: #f7f7f7;
  color: var(--accent);
}

.tab-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Image icon in tab (png/svg img) */
.tab-item .tab-icon[src] {
  object-fit: contain;
  width: 36px;
  height: 36px;
}

.card-icon {
  width: 56px;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.btn-icon {
  width: 18px;
  height: auto;
  margin-right: 8px;
  vertical-align: middle;
}

.card-download {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 22px;
  height: auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .card-download {
    right: 12px;
    bottom: 12px;
    width: 18px;
  }
}

/* mini candle inside small event media */
.event-small-media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.event-small-media .mini-candle {
  width: 100%;
  height: 100%;
  max-width: 160px;
  object-fit: contain;
}

.tab-item:hover .tab-icon {
  color: var(--accent);
}

/* Sections */
.section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--surface-light);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.card {
  background: var(--surface-light);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 24px 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.2s ease;
  position: relative;
  color: var(--text-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card:hover {
  background: #fafafa;
  border-color: rgba(0, 0, 0, 0.12);
}

.card-with-image {
  padding: 0 0 48px;
  min-height: 430px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 160px;
  background: #e6e7ea;
}

.video-card .card-image {
  background: #4a4a4a;
}

.video-card .card-download {
  right: 16px;
  bottom: 16px;
  width: 28px;
}

.card-with-image .card-tag {
  margin: 16px 20px 0;
}

.card-with-image h3,
.card-with-image p,
.card-with-image .card-action {
  padding: 0 20px;
}

.card-with-image .card-action {
  margin: 0 20px 20px;
}

.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
}

.card h3 {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

.card-action {
  align-self: flex-start;
  font-size: 1.4rem;
  color: var(--accent);
  transition: color 0.2s ease;
  margin-bottom: 8px;
}

.card:hover .card-action {
  color: var(--accent);
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 960px) {
  .events-grid {
    grid-template-columns: 1fr;
  }

  .event-large-split,
  .event-small-split {
    grid-template-columns: 1fr;
  }
}

.event-card {
  display: flex; 
  background: var(--surface-light);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.event-large {
  padding: 0;
}

.event-large-split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  min-height: 340px;
  align-items: stretch;
}

.event-large-media {
  background-image: url("../pictures/candle.jpeg");
  background-size: cover;
  background-position: center;
  min-height: 340px;
  /*height: 100%;*/
}

.event-large-copy {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(15, 15, 15, 0.98) 100%);
  display: flex;
  padding: 32px;
  height: 100%;
}

.event-large-copy-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.event-small-split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 0;
  min-height: 340px;
}

.event-small-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-dark);
}

.event-small-media {
  background-image: url("../pictures/memorial.jpeg");
  background-size: cover;
  background-position: center;
  min-height: 340px;
}

.event-large h3 {
  margin: 0 0 20px 0;
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
}

.event-large ul {
  margin: 0 0 30px 0;
  padding-left: 20px;
  list-style: none;
}

.event-large li {
  padding: 8px 0 8px 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  position: relative;
}

.event-large li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.event-large .button {
  margin-top: 0;
}

.event-date {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}

.event-time {
  margin: 8px 0 16px 0;
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--text-dark);
}

.event-small h3 {
  margin: 0 0 12px 0;
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}

.event-card p {
  margin: 0 0 12px 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.timer-countdown {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.timer-label {
  margin: 0 0 12px 0;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
}

.event-small .button {
  margin-top: 0;
}

@media (max-width: 960px) {
  .event-small-split {
    grid-template-columns: 1fr;
  }

  .event-small-media,
  .event-large-media {
    min-height: 240px;
  }
}

.event-date {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}

.event-time {
  margin: 8px 0 16px 0;
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
}

.event-small h3 {
  margin: 0 0 12px 0;
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-card p {
  margin: 0 0 12px 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.timer-countdown {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.timer-label {
  margin: 0 0 12px 0;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
}

.timer-display {
  display: flex;
  gap: 16px;
  align-items: center;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.timer-value {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 900;
  color: var(--text-dark);
}

.timer-unit {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* Banner Section */
.banner-section {
  background: var(--accent);
  padding: 40px 0;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.banner-icon {
  width: 60px;
  height: 60px;
  color: #fff;
  flex-shrink: 0;
}

.banner-text {
  flex: 1;
  min-width: 200px;
}

.banner-text p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.banner-text p + p {
  margin-top: 4px;
}

.banner-section .button {
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0 16px;
}

.footer-contacts {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-contact-title {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer-contact-col {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact-col p {
  margin: 0;
}

.footer-contact-col strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.footer-contact-col a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-contact-col a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.footer-info--compact {
  min-width: 160px;
}

.footer-logo img {
  max-height: 50px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.footer-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--text);
  text-transform: uppercase;
}

.footer-subtitle {
  margin: 4px 0 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icon:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.social-icon-vk {
  background: #4c75a3;
}

.social-icon-tg {
  background: #2ca5e0;
}

.social-icon-ok {
  background: #f4730b;
}

.social-icon-rutube {
  background: #ff0000;
}

.social-icon-dzen {
  background: #ffd400;
  color: #000;
}

.footer-copyright {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(199, 43, 40, 0.3);
  z-index: 999;
}

.back-to-top:hover {
  background: #a01e1b;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(199, 43, 40, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* Download Modal */
.download-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

.download-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 24px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  z-index: 1001;
}

.modal-close:hover {
  color: var(--accent);
}

.modal-form-wrapper {
  margin-top: 16px;
}

.card-download-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-download-btn img {
  width: 24px;
  height: 24px;
}

@media (max-width: 960px) {
  .modal-content {
    width: 95%;
    max-width: 600px;
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .modal-content {
    width: 98%;
    max-width: 100%;
    max-height: 90vh;
    padding: 16px;
    border-radius: 8px;
  }

  .modal-close {
    width: 32px;
    height: 32px;
    font-size: 24px;
  }

  .modal-form-wrapper iframe {
    min-height: 400px !important;
  }
}

@media (max-width: 640px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .back-to-top svg {
    width: 16px;
    height: 16px;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .tabs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tab-item {
    padding: 16px 12px;
    font-size: 0.7rem;
  }

  .tab-icon {
    width: 28px;
    height: 28px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-inner {
    gap: 1rem;
  }

  .main-nav {
    gap: 0.8rem;
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .main-nav a {
    font-size: 0.75rem;
  }

  .hero {
    padding: 40px 0 60px;
  }

  .event-card {
    padding: 24px;
  }

  .section {
    padding: 40px 0;
  }
}

@media (max-width: 640px) {
  .footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tabs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tab-item {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 8px;
  }

  .tab-item:nth-child(even) {
    border-right: none;
  }

  .tab-item:nth-child(n+4) {
    border-bottom: none;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
  }

  .banner-text {
    flex: 1;
    min-width: auto;
  }

  .banner-section .button {
    width: 100%;
  }

  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .timer-display {
    gap: 12px;
  }

  .events-grid {
    gap: 16px;
  }

  .event-card {
    padding: 16px;
  }

  .event-image {
    height: 200px;
  }

  .main-nav {
    font-size: 0.7rem;
  }

  .logo {
    font-size: 0.8rem;
  }

  .logo-subtitle {
    font-size: 0.6rem;
  }

  .header-inner .button {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 16px);
  }

  .tabs-grid {
    grid-template-columns: 1fr;
  }

  .tab-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px;
  }

  .tab-item:last-child {
    border-bottom: none;
  }

  h1 {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .event-large h3 {
    font-size: 1.1rem;
  }

  .event-time {
    font-size: 2rem;
  }

  .section {
    padding: 30px 0;
  }

  .header-inner {
    padding: 12px 0;
  }

  .event-card {
    padding: 12px;
  }
}
