.areas { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-5); }
.area {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ground);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  overflow: hidden;
}

/* Image sits flush at the top of the card, the rest of the content is padded.
   Same treatment as the category cards so the two blocks read as a set. */
.area__media {
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.area__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.area:hover .area__media img { transform: scale(1.03); }
.area__media .img-placeholder { height: 100%; border: 0; border-radius: 0; }

.area > *:not(.area__media) { margin-inline: var(--s-6); }
.area > *:last-child { margin-bottom: var(--s-6); }
.area__head { margin-top: var(--s-5); }
.area__title { font-size: var(--step-1); }
.area__title a { text-decoration: none; color: var(--ink); }
.area__title a:hover { color: var(--accent); }
.area__summary { color: var(--ink-soft); font-size: var(--step--1); margin-top: var(--s-2); }

.area__fields {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-3);
  align-items: baseline;
  font-size: var(--step--1);
  color: var(--ink-soft);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--line);
}

.area__products { display: grid; gap: 1px; margin-top: auto; }
.area__products a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-3) var(--s-3);
  margin-inline: calc(var(--s-3) * -1);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--ink);
  font-size: var(--step--1);
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.area__products a:hover { background: var(--accent-wash); color: var(--accent); }
.area__product-name { font-weight: 500; }
.area__product-spec { color: var(--ink-faint); flex-shrink: 0; }

.area__more { font-size: var(--step--1); padding-top: var(--s-3); border-top: 1px solid var(--line); }

@media (max-width: 860px) { .areas { grid-template-columns: 1fr; } }
