section {
  width: var(--content-size-md);
  margin-bottom: 10px;
}

:root {
  --gradient: linear-gradient(
    0deg,
    rgba(242, 235, 242, 1) 0%,
    rgba(247, 245, 245, 1) 100%
  );
  --card-gray: #ffffff;
  --quote-gray: #ffffff;
}

.banner {
  width: 100%;
  background: linear-gradient(
    0deg,
    rgba(242, 235, 242, 1) 0%,
    rgba(247, 245, 245, 1) 100%
  );
  text-align: center;
}

.banner video {
  width: 50%;
  height: 50%;
}

/* Tags */
.tags {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.tag {
  font-size: 11px;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: #9c9c9c;
  border: 1px solid #9c9c9c;
  border-radius: 20px;
  padding: 6px 14px;
}

.hr {
  width: 640px;
  height: 1px;
  background-color: #9c9c9c;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Meta grid */
.meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.meta-grid h4 {
  font-family: "Quicksand", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 6px;
}

.meta-grid p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  color: var(--text-body);
}

.eyebrow {
  font-size: 13px;
  color: var(--text-eyebrow);
  margin-bottom: 10px;
  margin-top: 40px;
}

section p,
.body-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0 0 20px;
}

/* Placeholders */
.placeholder {
  background: var(--gradient);
  width: 100%;
  border-radius: 2px;
}

.placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ph-tall {
  height: 300px;
}
.ph-medium {
  height: 230px;
}
.ph-small-rect {
  width: 86px;
  height: 46px;
  margin: 10px 0 26px;
}

/* 3 col cards (design/leadership/transmission) */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.card {
  background: var(--card-gray);
  padding: 18px;
  border-radius: 14px;
}
.card h4 {
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 10px;
}
.card p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  color: var(--text-body);
}

.quote-box {
  background: var(--quote-gray);
  padding: 26px 28px;
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
  border-radius: 14px;
}

/* two column layout: text + image */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.two-col .placeholder {
  height: 100%;
  min-height: 300px;
}

.cards-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.two-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
figure {
  margin: 0;
}
figure .placeholder {
  height: 170px;
  margin-bottom: 12px;
}
figcaption .cap-title {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text-dark);
  margin-bottom: 4px;
}
figcaption .cap-text {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-body);
}
figcaption.simple {
  font-size: 13px;
  color: var(--text-eyebrow);
}

h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feedback-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}
.feedback-cards .card {
  background: var(--card-gray);
  padding: 22px 24px;
}
.feedback-cards .card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.feedback-cards .card p {
  font-size: 13.5px;
}

@media (max-width: 640px) {
  .meta-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
  .cards-3 {
    grid-template-columns: 1fr;
  }
  .cards-2x2 {
    grid-template-columns: 1fr;
  }
  .cards-4 {
    grid-template-columns: 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .two-images {
    grid-template-columns: 1fr;
  }
}
