/* Global Base ---------------------------- */
body {
  font-family: system-ui, sans-serif;
  background: #f5f6f7;
  color: #222;
  padding: 2rem;
  line-height: 1.6;
}

/* Layout for your event blocks ------------ */
div-event {
  background: white;
  padding: 1.6rem;
  margin: 1.5rem auto;
  max-width: 850px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

div-event:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* Headings -------------------------------- */
h3 {
  margin-bottom: 0.6rem;
  font-size: 1.5rem;
  color: #333;
}

/* Text & labels --------------------------- */
p {
  margin: 0.3rem 0 0.8rem;
}

p strong {
  color: #000;
}

/* Link list styling ----------------------- */
ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

ul li {
  margin: 0.4rem 0;
}

/* Links improve --------------------------- */
a {
  color: #0066cc;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.2s ease;
}

a:hover {
  color: #004999;
  border-bottom: 1px solid #004999;
}

/* Responsive improvements ------------------ */
@media (max-width: 600px) {
  div {
    padding: 1.2rem;
  }

  h3 {
    font-size: 1.25rem;
  }
}
