/* Home page CTA strip — mirrors marketplace-stats-bar look, scoped to new classes only */
.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-icon i {
  vertical-align: middle;
}

.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;
}

@media (max-width: 767.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;
  }
}
