/* HERO */

.event-hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.95));
}

.event-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.event-title {
  font-size: clamp(40px, 8vw, 90px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.event-meta span {
  display: inline-block;
  margin-right: 20px;
  font-size: 14px;
  opacity: 0.8;
}

.event-cta {
  margin-top: 30px;
  font-size: 16px;
}

/* DETAILS */

.event-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.event-description {
  font-size: 18px;
  opacity: 0.9;
}

.event-info-box {
  background: #111;
  padding: 30px;
  border: 1px solid #222;
}

.event-info-box ul {
  list-style: none;
}

.event-info-box li {
  margin-bottom: 15px;
}

/* REGISTRATION */

.event-registration {
  background: #050505;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home-overlay {
  position:absolute;
  inset:0;
  background: radial-gradient(circle at center, rgba(0,255,73,0.08), transparent 60%);
}

.home-hero-content {
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  font-size: clamp(60px, 10vw, 120px);
  letter-spacing: 6px;
}

.hero-subtitle {
  margin: 20px 0 30px;
  opacity: 0.7;
  font-size: 18px;
}

.events-grid {
  display:grid;
  gap:30px;
  margin-top:40px;
}

.event-card {
  position:relative;
  overflow:hidden;
  display:block;
}

.event-card-img {
  height:400px;
  background-size:cover;
  background-position:center;
  transition:0.4s ease;
  opacity: 0.7;
}

.event-card:hover .event-card-img {
  transform:scale(1.05);
}

.event-card-content {
  position:absolute;
  bottom:20px;
  left:20px;
  text-align: center;
}

.event-card h3 {
  font-size:20px;
  letter-spacing:2px;
}

.past-events-slider {
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
}

.past-event {
  min-width:250px;
  scroll-snap-align:start;
}

.past-event img {
  width:100%;
  height:300px;
  object-fit:cover;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  z-index: 0;
}

.home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), #000);
  z-index: 1;
}

.grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

@keyframes grainMove {
  0% { transform: translate(0,0); }
  100% { transform: translate(-5%, -10%); }
}

.grain-overlay {
  animation: grainMove 1s steps(10) infinite;
}

.event-title {
  font-family: 'CvltureDisplay', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.event-meta {
  font-size: 12px;
  letter-spacing: 3px;
  opacity: 0.7;
  padding: 10px 0;
}

.event-hero {
  position: relative;
  height: 55vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.event-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, #000);
}

.event-hero-content {
  position: relative;
  z-index: 2;
}

.event-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: 3px;
}

.event-details {
  padding-top: 80px;
}

.event-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
}

.event-info {
  font-size: 16px;
}

.event-line {
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.event-line span {
  font-size: 11px;
  letter-spacing: 3px;
  opacity: 0.5;
  display: block;
  margin-bottom: 3px;
}

.event-registration-box {
  background: #0e0e0e;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
}

.cvlture-form .form-group {
  margin-bottom: 20px;
}

.cvlture-form input {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.cvlture-form input:focus {
  outline: none;
  border-color: #00ff49;
}

.cvlture-btn {
  width: 100%;
  padding: 16px;
  background: #00ff49;
  color: #000;
  font-weight: 600;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.cvlture-btn:hover {
  background: #fff;
}

@media (max-width: 900px) {
  .event-grid {
    grid-template-columns: 1fr;
  }

  .event-registration-box {
    margin-top: 40px;
  }
}

.event-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
}

.event-hero {
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.event-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.45);
  height: 500px;
}

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, #000);
}

.event-hero-content {
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 2px;
}

.badge.open {
  background: #00ff49;
  color: #000;
}

.badge.soldout {
  background: #ff2d2d;
  color: #fff;
}

.release-box {
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.event-line {
  margin-bottom: 15px;
}

.event-line span {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  opacity: 0.6;
}

@media (max-width: 900px) {
  .event-grid {
    grid-template-columns: 1fr;
  }
}

/* HEADER */

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(1px);
  padding: 0
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}


.menu-toggle {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001
}

.menu-toggle span {
  height: 2px;
  width: 100%;
  background: #fff;
  transition: 0.3s;
}

/* MOBILE MENU */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  display: flex;
  justify-content: center;
  align-items: center;

  transform: translateY(-100%);
  transition: 0.4s ease;
}

.site-header.open .mobile-menu {
  transform: translateY(0);
}

.mobile-menu {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu ul {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.mobile-menu li {
  margin-bottom: 20px;
}

.mobile-menu a {
  color: #fff;
  font-size: 18px;
  letter-spacing: 2px;
  text-decoration: none;
}

/* OPEN STATE */

.site-header.open .mobile-menu {
  max-height: 500px;
}

.site-header.open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translateY(13px);
}

.site-header.open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translateY(-13px);
}

@media (max-width: 900px) {

  .site-header {
    padding: 0;
  }

  .header-inner {
    padding: 15px 20px;
  }

  .logo img {
    height: 32px;
  }

  .menu-toggle {
    width: 24px;
    height: 18px;
  }

  .menu-toggle span {
    height: 2px;
  }

}

/* LOGO DESKTOP */

.custom-logo {
  width: 150px;
  height: auto;
}

/* Se WordPress aggiunge wrapper */

.custom-logo-link img {
  width: 150px;
  height: auto;
  display: block;
}

/* MOBILE */

@media (max-width: 900px) {
  .custom-logo,
  .custom-logo-link img {
    width: 80px;
  }
}

.header-inner {
  padding: 15px 0;
}

.header-inner {
  padding: 10px 0;
}

/* ==========================================
   SUBMENU "LOCATION" — accordion nel menu overlay
========================================== */

.mobile-menu li.has-submenu > a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu li.has-submenu > a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform .3s ease;
  flex-shrink: 0;
}

.mobile-menu li.has-submenu.submenu-open > a::after {
  transform: rotate(-135deg);
}

.mobile-menu .sub-menu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  padding: 0 0 0 16px;
  margin: 0;
  transition: max-height .35s ease;
}

.mobile-menu li.has-submenu.submenu-open > .sub-menu {
  max-height: 300px;
  margin-top: 14px;
}

.mobile-menu .sub-menu li {
  margin-bottom: 14px;
}

.mobile-menu .sub-menu li:last-child {
  margin-bottom: 0;
}

.mobile-menu .sub-menu a {
  font-size: 15px;
  letter-spacing: 1px;
  opacity: .7;
}

/* ==========================================
   VOCI "ACCEDI" / "REGISTRATI" — icone invece del testo
========================================== */

.mobile-menu .menu-icon-login,
.mobile-menu .menu-icon-register {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 16px;
}

.mobile-menu .menu-icon-login > a,
.mobile-menu .menu-icon-register > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.mobile-menu .menu-icon-login > a::before,
.mobile-menu .menu-icon-register > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.mobile-menu .menu-icon-login > a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4'/%3E%3Cpolyline points='10 17 15 12 10 7'/%3E%3Cline x1='15' y1='12' x2='3' y2='12'/%3E%3C/svg%3E");
}

.mobile-menu .menu-icon-register > a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='8.5' cy='7' r='4'/%3E%3Cline x1='20' y1='8' x2='20' y2='14'/%3E%3Cline x1='17' y1='11' x2='23' y2='11'/%3E%3C/svg%3E");
}



/* SECTION HEADER */

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 28px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.section-line {
  width: 60px;
  height: 2px;
  background: #00FF49;
}

/* TRACK SCROLL */

.past-events-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.past-events-track::-webkit-scrollbar {
  display: none;
}

/* CARD */

.past-event-card {
  position: relative;
  min-width: 280px;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  text-decoration: none;
  color: #fff;
  transition: transform 0.4s ease;
}

.past-event-card:hover {
  transform: scale(1.05);
}

.past-event-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.past-event-card:hover .past-event-bg {
  transform: scale(1.1);
}

.past-event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
}

.past-event-content {
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 20px;
}

.past-event-content h3 {
  margin: 5px 0 0;
  font-size: 20px;
}

.past-date {
  font-size: 12px;
  letter-spacing: 2px;
  color: #00FF49;
}

/* FOOTER */

.site-footer {
  background: #000;
  color: #fff;
  margin-top: 120px;
}

.footer-main {
  padding: 100px 0 60px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand h2 {
  font-size: 32px;
  letter-spacing: 4px;
  margin-bottom: 20px;
  color: #00FF49;
}

.footer-claim {
  color: #888;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-menu a:hover {
  color: #00FF49;
}

.footer-contact p {
  color: #ccc;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  font-size: 12px;
  color: #777;
  text-align: center;
}

@media (max-width: 900px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-main {
    padding: 60px 0 40px;
  }

}


.site-footer {
  background: #050505; /* nero leggermente diverso */
  position: relative;
  margin-top: 160px;
}

.site-footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #00FF49,
    transparent
  );
}


.events-hero {
  text-align: center;
  margin-bottom: 120px;
}

.events-hero h1 {
  font-size: 48px;
  letter-spacing: 4px;
}

.events-hero p {
  color: #888;
  margin-top: 10px;
}

.city-section {
  margin-bottom: 140px;
}

.city-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.city-header h2 {
  font-size: 28px;
  letter-spacing: 3px;
}

.view-all {
  color: #00FF49;
  text-decoration: none;
  font-size: 14px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.event-card {
  position: relative;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  transition: 0.4s ease;
}

.event-card:hover {
  transform: translateY(-10px);
}

.event-card.past {
  opacity: 0.5;
  filter: grayscale(100%);
}

.event-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.event-card-content {
  position: absolute;
  bottom: 30px;
  left: 20px;
}

.event-date {
  font-size: 12px;
  letter-spacing: 2px;
  color: #00FF49;
}

@media (max-width: 900px) {
  .events-grid {
    grid-template-columns: 1fr;
  }

  .city-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.city-hero {
  position: relative;
  height: 420px;
  margin-bottom: 60px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
}

.city-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
}

.city-hero-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
}

.city-hero-content h2 {
  font-size: 36px;
  letter-spacing: 4px;
}

/* HUB HERO */

.events-hub-hero {
  text-align: center;
  padding: 160px 20px 120px;
}

.events-hub-hero h1 {
  font-size: 48px;
  letter-spacing: 4px;
}

.events-hub-hero p {
  margin-top: 15px;
  color: #888;
}

/* LOCATION BAND */

.location-band {
  position: relative;
  display: block;
  height: 80vh;
  width: 100%;
  overflow: hidden;
  text-decoration: none;
  color: white;
}

.location-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 0.1s linear;
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
}

.location-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 2;
}

.location-content h2 {
  font-size: 42px;
  letter-spacing: 6px;
}

.location-cta {
  font-size: 14px;
  letter-spacing: 3px;
  color: #00FF49;
}

.city-hero {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
}

.city-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
}

.city-hero-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
}

.city-hero-content h1 {
  font-size: 48px;
  letter-spacing: 6px;
}

.city-external-event {
  position: relative;
  height: 70vh;
  border-radius: 16px;
  overflow: hidden;
}

.external-event-hero {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}

.external-event-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
}

.city-empty {
  text-align: center;
  margin-top: 80px;
  color: #888;
}


.password-group{
    position:relative;
}

.password-group input{
    width:100%;
}

.toggle-password{
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    opacity:.7;
    user-select:none;
}

.toggle-password:hover{
    opacity:1;
}

.privacy-group{
    margin-top:20px;
    font-size:14px;
}

.privacy-group label{
    align-items:center;
    gap:10px;
    cursor:pointer;
}


.account-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.account-card{
    border:1px solid rgba(255,255,255,.1);
    padding:30px;
    background:rgba(255,255,255,.02);
}

.account-card h3{
    margin-bottom:25px;
}

.account-line{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.account-line span{
    opacity:.6;
    text-transform:uppercase;
    font-size:12px;
    letter-spacing:2px;
}

.account-actions{
    margin-top:40px;
}

@media(max-width:768px){

    .account-grid{
        grid-template-columns:1fr;
    }

}



.already-registered{
    text-align:center;
}

.success-badge{
    display:inline-block;
    padding:14px 24px;
    border:1px solid #22c55e;
    color:#22c55e;
    border-radius:100px;
    margin-bottom:25px;
    font-weight:600;
    letter-spacing:1px;
}

.event-user-qr img{
    max-width:90px;
    width:100%;
    height:auto;
}


.event-main.section {
    padding: 0!important;
}

.event-status {
	display: none !important;
}


.cvlture-form label{
    display:block;
    margin-bottom:8px;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:2px;
    opacity:.7;
}

.event-hero {
	min-height: 55vh !important;
}


.cvlture-form input::placeholder{
    color: rgba(255,255,255,.5);
    opacity:1;
}

.cvlture-form input::-webkit-input-placeholder{
    color: rgba(255,255,255,.5);
}


.qr-note{
    margin-top:12px;
    font-size:13px;
    opacity:.7;
    line-height:1.5;
}


.registration-note{
    margin-bottom:20px;
    padding:12px 16px;
    border:1px solid rgba(255,255,255,.1);
    background:rgba(255,255,255,.03);
    font-size:14px;
    line-height:1.5;
    border-radius:8px;
}



.past-events{
    background:#050505;
}

.past-year{
    margin-top:80px;
}

.past-year:first-child{
    margin-top:40px;
}

.past-year h3{

    font-size:54px;
    font-weight:800;
    margin-bottom:35px;

    color:#fff;

    opacity:.12;

    letter-spacing:4px;

}

.past-events-grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));

    gap:30px;

}

.past-event-card{

    position:relative;

    overflow:hidden;

    background:#111;

    text-decoration:none;

    transition:.35s;

}

.past-event-card:hover{

    transform:translateY(-8px);

}

.past-event-image{

    position:relative;

    aspect-ratio:4/5;

}

.past-event-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    filter:grayscale(.85);

    transition:.4s;

}

.past-event-card:hover img{

    filter:grayscale(0);

    transform:scale(1.05);

}

.past-event-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.85)
    );

}

.past-event-badge{

    position:absolute;

    top:20px;

    left:20px;

    padding:8px 16px;

    font-size:11px;

    letter-spacing:2px;

    border:1px solid rgba(255,255,255,.25);

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(6px);

}

.past-event-content{

    position:absolute;

    left:25px;

    right:25px;

    bottom:25px;

    z-index:2;

}

.past-event-date{

    font-size:12px;

    letter-spacing:3px;

    opacity:.7;

    margin-bottom:8px;

}

.past-event-content h4{

    font-size:26px;

    margin:0;

    color:#fff;

    line-height:1.2;

}

@media(max-width:768px){

    .past-year h3{

        font-size:36px;

    }

    .past-events-grid{

        grid-template-columns:1fr;

    }

}