/* legal/cloudcontentvideo/layout.css
 * Layout overrides and cloud-prefixed component classes for Cloud Content Video brand pages.
 * Loaded alongside base.css and brand.css on every page. */

/* ─── Page hero banner (used on About, Contact, legal pages) ─── */
.cloudPageHero {
  background: linear-gradient(135deg, #4f6b1a 0%, #2f4210 100%);
  color: #fff;
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
}
.cloudPageHero h1 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  color: #fff;
  font-family: var(--heading-font);
}
.cloudPageHero p {
  font-size: 1rem;
  opacity: 0.88;
  margin: 0.75rem auto 0;
  max-width: 540px;
  line-height: 1.65;
}

/* ─── Rich 4-column footer ─── */
.cloudSiteFooter {
  background: var(--footer-bg);
  color: var(--footer-fg);
  text-align: left;
  padding: 3rem 2.5rem 1.5rem;
}
.cloudFooterGrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
.cloudFooterBrand .cloudFooterLogo {
  display: block;
  width: 52px;
  height: 52px;
  background-image: var(--logo-url);
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 0.75rem;
}
.cloudFooterBrand .cloudBrandTitle {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}
.cloudFooterBrand .cloudTagline {
  font-size: 0.82rem;
  color: #a9c17e;
  margin-bottom: 1rem;
  line-height: 1.55;
}
.cloudFooterBrand .cloudDisclosure {
  font-size: 0.78rem;
  color: #8ba868;
  line-height: 1.6;
  border-left: 3px solid #9acd32;
  padding-left: 0.75rem;
}
.cloudFooterCol h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 1rem;
}
.cloudFooterCol ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cloudFooterCol ul li { margin-bottom: 0.55rem; }
.cloudFooterCol ul li a {
  color: #a9c17e;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s ease;
}
.cloudFooterCol ul li a:hover { color: #c3e04a; }
.cloudFooterContact p {
  font-size: 0.875rem;
  color: #a9c17e;
  margin: 0 0 0.5rem;
  line-height: 1.55;
}
.cloudFooterContact a { color: #c3e04a; text-decoration: none; }
.cloudFooterContact a:hover { text-decoration: underline; }
.cloudFooterBottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.cloudFooterBottom p { font-size: 0.78rem; color: #6f8a52; margin: 0 0 0.3rem; }
.cloudFooterBottom a { color: #85a066; text-decoration: none; }
.cloudFooterBottom a:hover { color: #c3e04a; }

/* ─── Highlight cards (reused on About and Contact) ─── */
.cloudHighlightCards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.cloudHighlightCard {
  background: linear-gradient(135deg, #f4f9e3, #e8f3c8);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.cloudHighlightCard .icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.cloudHighlightCard h3 { font-size: 1rem; font-weight: 700; color: #1e2a14; margin: 0 0 0.35rem; }
.cloudHighlightCard p { font-size: 0.85rem; color: #445138; margin: 0; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .cloudFooterGrid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 580px) {
  .cloudFooterGrid { grid-template-columns: 1fr; gap: 1.75rem; }
  .cloudSiteFooter { padding: 2.5rem 1.25rem 1.25rem; }
  .cloudPageHero h1 { font-size: 1.6rem; }
}
