/* components/home-hero/home-hero.css */
/* Hero Panel */
.hero-panel {
  min-height: 550px;
  display: flex;
  align-items: center;
}

.hero-contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.hero-images {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.hero-images img {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-img-1 {
  grid-column: 2;
  grid-row: 1;
}

.hero-img-2 {
  grid-column: 2;
  grid-row: 2;
}

.hero-img-3 {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* Mobile Portrait */
@media (max-width: 1023px) {
  .hero-text {
    text-align: center;
  }

  .hero-contents {
    grid-template-columns: 1fr;
  }
}

/* components/home-hero-full-image/home-hero-full-image.css */
/* Full image hero alternative */
.home-hero-full-image {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: white;
  background: var(--dark-blue);
}

.home-hero-full-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.46) 42%, rgba(0, 0, 0, 0.12) 74%, rgba(0, 0, 0, 0.04) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.18) 100%);
}

.home-hero-full-image__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero-full-image__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero-full-image__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}

.home-hero-full-image__copy {
  max-width: 720px;
}

.home-hero-full-image__copy .heading {
  color: white;
}

.home-hero-full-image__copy p {
  max-width: 660px;
}

@media (max-width: 1023px) {
  .home-hero-full-image {
    min-height: clamp(620px, 82vh, 760px);
    align-items: flex-end;
  }

  .home-hero-full-image::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.48) 42%, rgba(0, 0, 0, 0.72) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.22) 100%);
  }

  .home-hero-full-image__media img {
    object-position: center top;
  }

  .home-hero-full-image__content {
    padding-top: 180px;
    padding-bottom: 52px;
  }
}

/* components/card-grid/card-grid.css */
/* General Card Panels */
.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* components/icon-card/icon-card.css */
/* Icon Card Panel */
.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1 1 200px;
  max-width: 400px;
}

.icon-wrapper {
  background: rgb(255 255 255 / 20%);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* components/image-card/image-card.css */
/* Image Card */
.image-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  flex: 1 1 300px;
  max-width: 360px;
}

.image-card--img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.image-card--content {
  padding: 20px;
}

.image-card--content a:focus-visible {
  outline: 3px solid var(--dark-blue);
  outline-offset: 2px;
  border-radius: 2px;
}

/* components/text-card/text-card.css */
/* Text Card */
.text-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 32px;
  max-width: calc(100% - 30px);
  flex: 1 1 400px;
}

.text-card a:focus-visible {
  outline: 3px solid var(--dark-blue);
  outline-offset: 2px;
  border-radius: 2px;
}

/* components/stat-card/stat-card.css */
/* Stat Card */
.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 30px;
  flex: 1 1 200px;
  max-width: 220px;
  text-align: center;
}

/* components/highlight-cta/highlight-cta.css */
/* Highlight CTA panel */
.highlight-cta-panel {
  min-height: 550px;
}
