/* ---- Base Layout ---- */
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

/* ---- Headings ---- */
h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

h2 {
  color: #444;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

h3 {
  color: #444;
  margin-top: 2rem;
}

/* ---- Sections ---- */
section {
  margin-bottom: 2.5rem;
}

section p {
  font-size: 1.2rem;
  color: #444;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

ul li {
  background: #f7f7f7;
  padding: 10px 14px;
  margin-bottom: 8px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

ul li strong {
  color: #444;
}


/* ---- Team Section ---- */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.team-list span {
  background: #f5f5f5;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 500;
  color: #333;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.team-list span a {
  text-decoration: none;
  color: inherit;
}

.team-list span a:hover {
  text-decoration: underline;
}

/* ---- Media ---- */
.media-section {
  margin-top: 3rem;
}

.media-grid {
  column-count: 3;
  column-gap: 1rem;
}

.media-grid img,
.media-grid video {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 12px;
  display: block;
  break-inside: avoid;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-grid img:hover,
.media-grid video:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}



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

  h1 {
    font-size: 2rem;
  }

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