body {
  display: flex;
  flex-flow: column nowrap;
  margin: 0 auto;
  padding: 0;
}

main {
  display: flex;
  flex-flow: column nowrap;
}

/* Hero Section -------------------------------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  grid-template-rows: 8rem 8rem 8rem;
  background: rgba(var(--milky-way), 1);
}

.thumbnails {
  display: contents;
}

.thumbnails picture:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.thumbnails picture:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.thumbnails picture:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
}

.thumbnails picture {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.thumbnails img {
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.main-image {
  grid-column: 2;
  grid-row: 1 / 4;
  display: flex;
}

.main-image picture {
  display: flex;
  width: 100%;
}

.main-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.content {
  grid-column: 3;
  grid-row: 1 / 4;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
  background: rgba(var(--burgundy), 1);
}

.content h2 {
  color: rgba(var(--milky-way), 1);
}

.benefits {
  padding: 2rem 1rem;
  text-align: center;
  background: linear-gradient(to bottom, #f9f9f9, white);
}

.benefits h2 {
  font-family: "Imperial Script", cursive;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.benefits-hook {
  font-size: 1.25rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 0.5rem;
}

.benefits-solution {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.brand-highlight {
  color: var(--primary);
  font-size: 1.5rem;
}

.benefits-list {
  display: flex;
  flex-flow: column wrap;
  gap: 1.5rem;
  margin: 0 auto;
  list-style: none;
}

.benefits-list li {
  display: flex;
  flex-flow: row nowrap;
  gap: 1.5rem;
  align-items: center;
  text-align: left;
  padding: 1rem;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.benefits-list li img {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  filter: var(--burgundy-filter);
}

.benefits-list li p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 2rem 0;
  border: 1px solid black;
  background-color: black;
}

.product-card {
  display: flex;
  flex-flow: column nowrap;
  box-sizing: border-box;
  color: inherit;
  overflow: hidden;
  background-color: white;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.product-card-image {
  display: block;
  width: 100%;
}

.product-card-info {
  padding: 0.5rem;
  border-top: 1px solid black;
}

.product-card-title a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
}

.product-card-price {
  font-size: 1rem;
  font-weight: bold;
  color: var(--color-accent, #888);
}

@media (min-width: 600px) {
  .hero {
    grid-template-rows: 12rem 12rem 12rem;
  }
}

@media (min-width: 960px) {
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .benefits-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }
}

@media (min-width: 1280px) {
}

