/* =================================================================
   NewPlaceAlert — additions for no-image listings + owner CTAs
   Add this CSS to your existing stylesheet (or include it as a 
   separate file before </head>). Variables like --orange3 should 
   already be defined in your theme; if not, fallbacks are provided.
   ================================================================= */

/* --- Listing card without image --- */
.lc.lc-no-img {
  /* Subtle accent stripe along the top so cards don't feel empty */
  border-top: 4px solid var(--orange3, #f97316);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .06), 0 1px 2px rgba(15, 23, 42, .04);
  transition: transform .15s ease, box-shadow .15s ease;
}
.lc.lc-no-img:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(15, 23, 42, .08), 0 2px 4px rgba(15, 23, 42, .04);
}
.lc.lc-no-img .lc-body {
  padding: 18px 20px 16px;
}
.lc.lc-no-img .lc-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text1, #0f172a);
  margin: 8px 0 4px;
  line-height: 1.3;
}
.lc.lc-no-img .lc-meta {
  font-size: .82rem;
  color: var(--text3, #64748b);
  margin-bottom: 10px;
}
.lc.lc-no-img .lc-desc {
  font-size: .9rem;
  color: var(--text2, #334155);
  line-height: 1.55;
  margin-bottom: 14px;
}

/* --- Owner-claim line at the bottom of each card --- */
.lc-claim {
  border-top: 1px dashed #e5e7eb;
  padding-top: 10px;
  margin-top: 6px;
  font-size: .78rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lc-claim-q {
  color: var(--text3, #64748b);
}
.lc-claim-link {
  color: var(--orange3, #f97316);
  font-weight: 600;
  text-decoration: none;
}
.lc-claim-link:hover {
  text-decoration: underline;
}

/* --- Big owner-CTA banner below the listings grid --- */
.owner-cta {
  margin: 28px 0 22px;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #f97316 100%);
  border-radius: 14px;
  padding: 2px;  /* gradient border */
}
.owner-cta-inner {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.owner-cta-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  background: #fff7ed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.owner-cta-text {
  flex: 1 1 320px;
  min-width: 280px;
}
.owner-cta-text h3 {
  font-size: 1.18rem;
  margin: 0 0 6px;
  color: var(--text1, #0f172a);
  font-weight: 700;
}
.owner-cta-text p {
  font-size: .92rem;
  color: var(--text2, #334155);
  margin: 0;
  line-height: 1.55;
}
.owner-cta-text .highlight {
  background: #fef3c7;
  color: #92400e;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: .85rem;
}
.owner-cta-btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 14px 22px;
  font-size: .95rem;
  font-weight: 700;
  background: var(--orange3, #f97316);
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 10px;
  transition: background .15s ease, transform .1s ease;
  white-space: nowrap;
}
.owner-cta-btn:hover {
  background: #ea580c;
  transform: translateY(-1px);
}

/* --- Responsive tweaks --- */
@media (max-width: 700px) {
  .owner-cta-inner {
    padding: 18px 18px;
  }
  .owner-cta-btn {
    width: 100%;
    text-align: center;
  }
}
