.nav {
  background-color: var(--color-primary);
}

.main__wrapper {
  background-color: var(--color-background);
  margin-top: 5rem;
}

.mous-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 5rem;
}

.mous__header {
  text-align: center;
  margin-bottom: 5rem;
  font-weight: 500;
}

.mous__title {
  font-size: 3.6rem;
  color: var(--color-primary-switch);
  font-weight: 700;
  border-bottom: 3px solid var(--color-border);
  padding: 0.5rem;
  display: inline-block;
}

.mous__description {
  font-size: 1.8rem;
  color: var(--color-primary-switch);
  margin-top: 1rem;
}

.mous__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-bottom: 3rem;
}

.mou__item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 1rem;
  padding: 30px;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.mou__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.1);
}

.mou__title {
  font-size: 24px;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.mou__date {
  display: block;
  font-size: 1.4rem;
  color: #888;
  margin-bottom: 1.5rem;
}

.mou__details {
  font-size: 1.6rem;
  color: var(--color-primary);
  line-height: 1.5;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 48em) {
  .mous__list {
    gap: 20px;
  }

  .mou__item {
    padding: 20px;
  }
}
