/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: white;
  color: black;
}

/* Page Wrapper */
.people-page {
  padding: 0rem 0rem 0rem 3rem;
}

.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.people-title {
  padding-top: 2rem;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  margin-bottom: 2rem;
  gap: 0.5rem;
}

.red-dot {
  width: 1.8rem;
  height: 1.8rem;
  background-color: red;
  border-radius: 50%;
}

/* Links Block */
.people-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.people-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  border: 2px solid black;
  padding: 0.75rem 1rem;
  font-weight: bold;
  color: black;
  transition: all 0.3s ease;
}

.people-link:hover {
  background-color: black;
  color: white;
}

.arrow {
  font-size: 1.2rem;
}

/* Image Block */
.people-image img {
  width: 100%;
  height: auto;
  border-radius: 0px;
}

/* Responsive */
@media (max-width: 768px) {
  .people-grid {
    grid-template-columns: 1fr;
  }

  .people-title {
    font-size: 1.5rem;
  }

  .people-link {
    font-size: 0.95rem;
  }
}
