/* AFCON 2027 Business Listings — afcontanzaniaguide.com */
:root {
  --al-green: #1B5E20;
  --al-green-mid: #2E7D32;
  --al-green-light: #EAF3DE;
  --al-gold: #F9A825;
  --al-border: #E0E0E0;
  --al-gray: #F5F5F5;
  --al-text: #1a1a1a;
  --al-muted: #666;
  --al-radius: 10px;
  --al-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.afcon-listings { max-width: 900px; margin: 0 auto; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }

/* Filter tabs */
.afcon-listings__filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.afcon-listings__filter {
  background: #fff;
  border: 1px solid var(--al-border);
  border-radius: 24px;
  padding: 7px 16px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--al-text);
}
.afcon-listings__filter:hover { border-color: var(--al-green); color: var(--al-green); }
.afcon-listings__filter.active { background: var(--al-green); color: #fff; border-color: var(--al-green); font-weight: 600; }

/* Grid */
.afcon-listings__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 16px; margin-bottom: 32px; }

/* Listing card */
.afcon-listing {
  background: #fff;
  border: 1px solid var(--al-border);
  border-radius: var(--al-radius);
  overflow: hidden;
  box-shadow: var(--al-shadow);
  position: relative;
  transition: box-shadow 0.15s;
}
.afcon-listing:hover { box-shadow: 0 3px 12px rgba(0,0,0,0.1); }
.afcon-listing--featured { border-color: var(--al-green); }
.afcon-listing--sponsored { border-color: var(--al-gold); border-width: 2px; }

/* Badge */
.afcon-listing__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.afcon-listing__badge--featured      { background: var(--al-green-light); color: var(--al-green); }
.afcon-listing__badge--sponsored     { background: #FFF8E1; color: #856404; }
.afcon-listing__badge--afcon-partner { background: var(--al-green); color: #fff; }
.afcon-listing__badge--new           { background: #E3F2FD; color: #1565C0; }

/* Main row */
.afcon-listing__main { display: flex; gap: 12px; padding: 16px; align-items: flex-start; }

/* Logo */
.afcon-listing__logo { flex-shrink: 0; }
.afcon-listing__logo-img { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; border: 1px solid var(--al-border); }

/* Body */
.afcon-listing__body { flex: 1; min-width: 0; }
.afcon-listing__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 4px; }
.afcon-listing__name { font-size: 15px; font-weight: 700; margin: 0 0 2px; color: var(--al-text); line-height: 1.3; }
.afcon-listing__location { font-size: 12px; color: var(--al-muted); margin: 0; }
.afcon-listing__right { text-align: right; flex-shrink: 0; }
.afcon-listing__stars { color: var(--al-gold); font-size: 12px; line-height: 1; margin-bottom: 2px; }
.afcon-listing__price { font-size: 12px; font-weight: 600; color: var(--al-green); white-space: nowrap; }
.afcon-listing__desc { font-size: 13px; color: #444; margin: 8px 0; line-height: 1.5; }

/* Tags */
.afcon-listing__tags { display: flex; flex-wrap: wrap; gap: 5px; margin: 8px 0 0; }
.afcon-listing__tag {
  background: var(--al-gray);
  border: 1px solid var(--al-border);
  border-radius: 12px;
  padding: 2px 9px;
  font-size: 11px;
  color: #555;
}

/* CTA link */
.afcon-listing__cta { margin-top: 10px; }
.afcon-listing__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--al-green);
  text-decoration: none;
}
.afcon-listing__link:hover { text-decoration: underline; }

/* Photo (sponsored) */
.afcon-listing__photo { border-top: 1px solid var(--al-border); overflow: hidden; height: 140px; }
.afcon-listing__photo-img { width: 100%; height: 140px; object-fit: cover; display: block; }

/* No results */
.afcon-listings__no-results { color: var(--al-muted); font-size: 14px; padding: 20px 0; }
.afcon-listings__empty { color: var(--al-muted); font-size: 14px; }
.afcon-listings__empty a { color: var(--al-green); }

/* CTA Banner */
.afcon-listings__cta-banner {
  background: var(--al-green-light);
  border: 1px solid #C8E6C9;
  border-radius: var(--al-radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.afcon-listings__cta-text { font-size: 14px; color: var(--al-text); }
.afcon-listings__cta-text strong { display: block; font-size: 16px; color: var(--al-green); margin-bottom: 2px; }
.afcon-listings__cta-btn {
  background: var(--al-green);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}
.afcon-listings__cta-btn:hover { background: var(--al-green-mid); color: #fff; }

@media (max-width: 640px) {
  .afcon-listings__grid { grid-template-columns: 1fr; }
  .afcon-listings__cta-banner { flex-direction: column; text-align: center; }
  .afcon-listing__top { flex-direction: column; }
  .afcon-listing__right { text-align: left; }
}
