.location-card {
  position: relative;
  width: 500px;
  padding: 32px;
  height: 320px;
  border-radius: 20px;
  color: #2F2F2F;
  font-family: 'Poppins';
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.5);
  /* box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.15), inset 0 0 0 rgba(0, 0, 0, 0.15); */
  overflow: hidden;
}

.city-name {
  font-size: 40px;
  font-weight: 600;
  margin-top: 12px;
}

.registered {
  color: #2F2F2F;
  font-weight: 400;
  font-size: 12px;
  opacity: 0.8;
  align-self: center;
}

.venue-name {
  font-size: 24px;
  font-weight: 300;
  margin-top: 4px;
}

.time-wrapper {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  margin-top: 16px;
}

.time-wrapper .date {
  padding-right: 12px;
  margin-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.8);
}

.status {
  background-color: #C7DDEF;
  padding: 8px 20px;
  font-size: 12px;
  border-radius: 999px;
  display: inline-block;
  line-height: 1;
}

.register-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: max-content;
}

.btn-register {
  color: #fff;
  padding: 12px 40px;
  border: 1.6px solid #2F2F2F;
  color: #2F2F2F;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 16px;
  line-height: 1;
  background: transparent;
  cursor: pointer;
}

.image-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(30%, -25%);
}


/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */

/* ── TABLET (max 1024px) ── */
@media (max-width: 1024px) {
  .location-card {
    width: 100%;
    max-width: 500px;
    height: 300px;
    padding: 28px;
    border-radius: 18px;
  }

  .city-name {
    font-size: 36px;
    margin-top: 10px;
  }

  .venue-name {
    font-size: 20px;
    margin-top: 4px;
  }

  .time-wrapper {
    font-size: 15px;
    margin-top: 14px;
  }

  .btn-register {
    padding: 11px 36px;
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 14px;
  }

  .image-wrapper {
    transform: translate(70%, -5%);
  }
}

/* ── SMALL TABLET (max 768px) ── */
@media (max-width: 768px) {
  .location-card {
    width: 100%;
    height: auto;
    min-height: 260px;
    padding: 24px;
    border-radius: 16px;
  }

  .city-name {
    font-size: 32px;
    margin-top: 10px;
  }

  .venue-name {
    font-size: 18px;
  }

  .time-wrapper {
    font-size: 14px;
    margin-top: 14px;
  }

  .btn-register {
    padding: 10px 32px;
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 12px;
  }

  .image-wrapper {
    transform: translate(70%, -5%);
    opacity: 0.5;
  }

  .image-wrapper img {
   max-width: 100px;;
  }

}

/* ── MOBILE (max 480px) ── */
@media (max-width: 480px) {
  .location-card {
    width: 100%;
    height: auto;
    min-height: unset;
    padding: 20px 18px;
    border-radius: 14px;
  }

  .city-name {
    font-size: 16px;
    margin-top: 8px;
  }

  .venue-name {
    font-size: 12px;
    margin-top: 2px;
  }

  .time-wrapper {
    font-size: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 4px;
  }

  .time-wrapper .date {
    padding-right: 10px;
    margin-right: 10px;
  }

  .status {
    padding: 6px 14px;
    font-size: 8px;
  }

  .register-wrapper {
    max-width: max-content;
    align-items: center;
  }

  .btn-register {
    padding: 8px 20px;
    font-size: 16px;
    margin-top: 16px;
    margin-bottom: 10px;
  }

}