.elementor-1918 .elementor-element.elementor-element-b6270fc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-7952c77 */*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:        #ffffff;
  --surface:   #f4f6fa;
  --border:    #dde1ea;
  --accent:    #f5a623;
  --accent2:   #1fd485;
  --text:      #1a1d26;
  --muted:     #6b7280;
  --card-glow: rgba(245, 166, 35, 0.18);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  min-height: 100vh;
}

/* ── SECTION ── */
.prediction-section {
  padding: 60px 20px 80px;
  max-width: 1180px;
  margin: 0 auto;
}

/* ── HEADER ── */
.prediction-header {
  text-align: center;
  margin-bottom: 52px;
}

.prediction-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.prediction-sites-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: var(--text);
}

.title-accent {
  color: var(--accent);
}

.prediction-sites-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
}

.header-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  margin: 0 auto;
}

/* ── GRID ── */
.prediction-sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
  margin-bottom: 36px;
}

/* ── CARD ── */
.prediction-site-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: #fff;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.prediction-site-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px var(--card-glow);
  border-color: var(--accent);
}

/* Number badge */
.card-number {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* Banner image */
.card-inner {
  width: 100%;
  aspect-ratio: 16 / 5;
  overflow: hidden;
  background: #e8eaf0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.prediction-site-card:hover .card-inner img {
  transform: scale(1.04);
}

/* Footer */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  background: var(--surface);
  border-top: 1.5px solid var(--border);
}

.card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--text);
  text-transform: uppercase;
}

.card-visit {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245, 166, 35, 0.10);
  border: 1px solid rgba(245, 166, 35, 0.35);
  padding: 5px 11px;
  border-radius: 5px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.prediction-site-card:hover .card-visit {
  background: var(--accent);
  color: #000;
}

/* ── FEATURED BANNER ── */
.prediction-featured-card {
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--accent);
  background: var(--surface);
  box-shadow: 0 0 40px rgba(245, 166, 35, 0.15);
}

.featured-label {
  background: linear-gradient(90deg, var(--accent), #f7c948);
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
}

.prediction-featured-card a {
  display: block;
}

.prediction-featured-card img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.prediction-featured-card:hover img {
  transform: scale(1.015);
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .prediction-sites-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */