/*
  MEDIA WITH CONTENT SECTION STYLES
  ===================================
  "Who We Are" -- an image on one side, your brand story on the other.
  Uses CSS Grid to place image + text side by side (like the product grid
  did), but this time just 2 columns instead of 4.
*/

.who-we-are {
  display: grid;
  grid-template-columns: 1fr 1fr; /* two equal-width columns: image | text */
  background-color: #372345d1; /* confirmed real color, same as marquee/divider */
  color: #ffffff;
  min-height: 60vh; /* matches your real "60svh" setting */
}

.who-we-are__media {
  width: 100%;
  height: 100%;
  min-height: 60vh;
}

.who-we-are__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.who-we-are__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 60px;
}

.who-we-are__content h2 {
  font-family: var(--font-primary);
  font-size: var(--font-size-h3);
  margin: 0;
}

.who-we-are__content p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 16px 0;
  max-width: 480px; /* keeps paragraphs from stretching too wide to read comfortably */
}

.who-we-are__content p:last-child {
  margin-bottom: 0;
}

.who-we-are__content em {
  font-style: italic;
}

/* On phones, stack image on top, text below, instead of side by side */
@media (max-width: 749px) {
  .who-we-are {
    grid-template-columns: 1fr;
  }

  .who-we-are__media,
  .who-we-are__media img {
    min-height: 40vh;
  }

  .who-we-are__content {
    padding: 32px 20px;
  }
}
