/* CareClearly footer (Help Center) */

.cc-footer {
  background: #0b1324; /* deep navy like your main site footer */
  color: rgba(255, 255, 255, 0.78);
  padding: 3.25rem 0 2.25rem;
}

.cc-footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: start;
}

.cc-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cc-footer__logo img {
  height: 56px;
  width: auto;
  display: block;
}

.cc-footer__tagline {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.cc-footer__links {
  display: flex;
  font-size: 0.65rem;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  justify-content: flex-end;
  align-items: center;
  padding-top: 0.25rem;
}

.cc-footer__links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-weight: 500;
}

.cc-footer__links a:hover {
  color: rgba(138, 194, 175, 1); /* #8AC2AF */
  text-decoration: none;
}

.cc-footer__bottom {
  grid-column: 1 / -1;
  margin-top: 2.25rem;
}

.cc-footer__divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 1.25rem;
}

.cc-footer__copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
  .cc-footer__inner {
    grid-template-columns: 1fr;
  }

  .cc-footer__links {
    justify-content: flex-start;
  }

  .cc-footer__logo img {
    height: 52px;
  }
}


/* ================================
   CareClearly Help Center Footer
   ================================ */

/* Footer container */
.md-footer {
  background: linear-gradient(180deg, #0c1730 0%, #0a1428 100%);
}

/* Footer inner layout */
.md-footer-meta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
}

/* Logo */
.md-footer-meta__inner img,
.md-footer-meta__inner svg {
  height: 40px;
}

/* Tagline under logo (MAKE THIS SMALLER) */
.md-footer-meta__inner p {
  font-size: 0.875rem; /* ~14px */
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.75rem;
  max-width: 420px;
}

/* Footer navigation links (MAKE THESE BIGGER) */
.md-footer-meta__inner a {
  font-size: 1rem; /* ~16px */
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

/* Hover state */
.md-footer-meta__inner a:hover {
  color: #8ac2af; /* CareClearly teal */
}

/* Footer nav group spacing */
.md-footer-meta__inner nav a {
  margin-left: 1.5rem;
}

/* Copyright line */
.md-footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 1.5rem 0 2rem;
}


.md-footer { background: hotpink !important; }
