.cloud-hero {
  max-width: var(--container-max-width);
  margin: 0 auto 2.5rem;
  text-align: center;
  padding: 5rem 1.25rem 0;
}

.cloud-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal-black);
  margin-bottom: 1rem;
}

.cloud-hero .highlight {
  color: var(--primary);
}

.hero-sub {
  font-size: var(--font-size-body);
  color: var(--gray-muted);
  line-height: 1.6;
  max-width: 45rem;
  margin: 0 auto;
}

/* =====================
   CARDS SECTION
   ===================== */
.cloud-cards {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 1.25rem 5rem;
}

/* =====================
   CARD BASE
   ===================== */
.card {
  background: var(--bg-light);
  border-radius: 3px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: row;
  overflow: hidden;
  min-height: 320px;
  height: 320px;
  width: 100%;
}

/* =====================
   CARD IMAGE
   ===================== */
.card__image {
  flex: 0 0 45%;
  background-color: var(--bg-light);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
}

/* =====================
   CARD CONTENT
   ===================== */
.card__content {
  flex: 0 0 55%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.625rem;
}

.card__content h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h3);
  font-weight: 700;
  line-height: 1.3;
  color: var(--charcoal-black);
}

.card__content p {
  font-size: var(--font-size-body);
  color: var(--gray-muted);
  line-height: 1.65;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-block;
  margin-top: auto;
  padding: 0.5rem 1.25rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: var(--font-size-small);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
  align-self: flex-start;
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn--orange {
  background-color: var(--primary);
  color: var(--bg-light);
}

.btn--green {
  background: linear-gradient(135deg, #3ACBFA 0%, #76D260 100%);
  color: var(--bg-light);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  .cloud-hero {
    padding: 5rem 1rem 0;
  }

  .cloud-cards {
    padding: 0 1rem 3rem;
  }

  .card {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }

  .card__image {
    flex: unset;
    height: 160px;
    width: 100%;
  }

  .card--gov {
    flex-direction: column-reverse;
  }

  .card__content {
    flex: 1;
    padding: 1.5rem;
  }
}
