/* Homepage-only styles: clean vertical list, no grid */

body {
  background: #FAFAF7;
}

.home-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 0 20px 16px;
  border-bottom: 1px solid #E4E1D8;
  margin-bottom: 20px;
}

@media screen and (max-width: 700px) {
  .home-menu {
    gap: 12px 20px;
    padding: 0 12px 12px;
  }
}

.home-menu__link {
  text-decoration: none;
  color: #3A3A3A;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-menu__link:hover {
  color: #B0B0B0;
}

.home-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.home-list__item {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.home-list__img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: 2px;
}

.home-list__title {
  display: block;
  margin-top: 14px;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #2A2A2A;
  text-align: center;
}

.home-list__item:hover .home-list__title {
  color: #B0B0B0;
}
