/* Legacy home CTA strip (Got Questions / Free Giveaways) */
.home-cta-strip {
  background: linear-gradient(135deg, #1a3c34 0%, #2d5a4a 50%, #1e4a3e 100%);
  color: #fff;
  padding: 0.6rem 0 0.85rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.home-cta-strip-header-row {
  padding: 0.35rem 1rem 0.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-cta-strip-header-label {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.home-cta-strip-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0.65rem 1rem 0.35rem;
}

.home-cta-strip-panel {
  flex: 1 1 280px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  min-width: 0;
}

.home-cta-strip-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  opacity: 0.95;
}

.home-cta-strip-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.home-cta-strip-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.25;
}

.home-cta-strip-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  flex: 1;
}

.home-cta-strip-btn {
  align-self: flex-start;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #1a3c34;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.home-cta-strip-btn:hover {
  color: #0f2a24;
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.home-cta-strip-btn:focus {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 2px;
}

.home-cta-strip-btn--accent {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.home-cta-strip-btn--accent:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
}

.home-cta-strip-divider {
  width: 1px;
  align-self: stretch;
  min-height: 4rem;
  margin: 0.25rem 0;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

/* Home guest sign-in promo banner */
.home-signin-banner-wrap {
  margin: 14px auto 10px;
  padding: 0 14px;
}

.home-signin-banner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  /** background: #f8fbf8;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08); **/
}

.home-signin-card {
  min-height: 112px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.06);
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-signin-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.11);
}

.home-signin-card-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.home-signin-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

.home-signin-copy h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.home-signin-copy p {
  margin: 3px 0 0;
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.35;
}

.home-signin-action {
  color: #64748b;
  font-size: 0.92rem;
  flex-shrink: 0;
}

.home-signin-card--google {
  background: #ffffff;
}

.home-signin-card--facebook {
  background: #f3f7ff;
}

.home-signin-card--center {
  background: linear-gradient(180deg, #fff9e8 0%, #fffef8 100%);
  border-color: rgba(22, 163, 74, 0.25);
}

.home-signin-bolt {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff3cd;
  color: #b7791f;
  flex-shrink: 0;
}

.home-signin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border-radius: 999px;
  border: 1px solid #1f8f4f;
  background: #1f8f4f;
  color: #fff;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.5rem 0.95rem;
  flex-shrink: 0;
}

.home-signin-btn:hover {
  background: #16773f;
  border-color: #16773f;
  color: #fff;
}

@media (max-width: 991.98px) {
  .home-cta-strip {
    padding: 0.5rem 0 0.65rem;
    border-radius: 8px;
  }

  .home-cta-strip-header-row {
    padding: 0.25rem 0.75rem 0.4rem;
  }

  .home-cta-strip-header-label {
    font-size: 0.9rem;
  }

  .home-cta-strip-inner {
    flex-direction: column;
    padding: 0.5rem 0.75rem 0.25rem;
    gap: 0.25rem;
  }

  .home-cta-strip-panel {
    flex: 1 1 auto;
    padding: 0.4rem 0.25rem;
  }

  .home-cta-strip-divider {
    display: none;
  }

  .home-cta-strip-title {
    font-size: 1rem;
  }

  .home-cta-strip-text {
    font-size: 0.82rem;
  }

  .home-cta-strip-btn {
    font-size: 0.82rem;
    padding: 0.4rem 1rem;
  }

  .home-signin-banner {
    grid-template-columns: 1fr;
  }

  .home-signin-card {
    min-height: 96px;
  }

  .home-signin-btn {
    margin-left: 0;
  }
}
