* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{
  text-decoration: none;
}

.main-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, rgba(254, 242, 242, 1) 0%, rgba(240, 253, 244, 1) 100%);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  width: 100%;
  max-width: 1152px;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.title {
  font-weight: 700;
  color: #016630;
  font-size: 1.875rem;
  text-align: center;
  letter-spacing: 0.35px;
  line-height: 1.2;
}

.subtitle {
  font-weight: 400;
  color: #008235;
  font-size: 1rem;
  text-align: center;
  letter-spacing: -0.44px;
  line-height: 1.75;
  padding: 0 1rem;
}

.people-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 2rem;
  width: 100%;
}

.person-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease;
}

.person-card:hover {
  transform: scale(1.02);
}

.avatar-container {
  position: relative;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.person-card:hover .avatar-container {
  transform: scale(1.05);
}

.avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #016630;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

.person-name {
  font-weight: 400;
  color: #016630;
  font-size: 1.25rem;
  text-align: center;
  letter-spacing: -0.45px;
  line-height: 1.75;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin-top: 1rem;
}

.decorations {
  font-size: 1.25rem;
  text-align: center;
  letter-spacing: 0.07px;
  line-height: 2;
}

.footer-text {
  font-weight: 400;
  color: #008235;
  font-size: 0.875rem;
  text-align: center;
  letter-spacing: -0.31px;
  line-height: 1.5;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .people-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .main-container {
    padding: 3rem 2rem;
  }

  .title {
    font-size: 2.25rem;
    line-height: 3rem;
  }

  .subtitle {
    font-size: 1.125rem;
  }

  .decorations {
    font-size: 1.5rem;
  }

  .footer-text {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .main-container {
    padding: 3rem 14.78125rem;
  }

  .people-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .title {
    font-size: 3rem;
    white-space: nowrap;
  }
}
