/* Home - Products */
.atw-home-products {
  padding: 3rem 0;
}

.atw-home-products__title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.atw-home-products__note {
  text-align: center;
  font-size: 14px;
  color: var(--atw-gray-600);
  margin-bottom: 2rem;
}

.atw-home-products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.atw-home-products__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  text-decoration: none;
  color: var(--atw-black);
}

.atw-home-products__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--atw-gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 0.25s ease;
}
.atw-home-products__card:hover .atw-home-products__photo { background: var(--atw-gray-200); }
.atw-home-products__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.atw-home-products__label {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 900;
  color: var(--atw-gray-200);
}

.atw-home-products__name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left;
  margin-top: 10px;
}

.atw-home-products__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--atw-gray-600);
  margin-top: 4px;
}

@media (min-width: 768px) {
  .atw-home-products__grid { grid-template-columns: repeat(4, 1fr); }
}
