/* ==========================================================================
   Riyadh Today — page-unique styles
   ========================================================================== */

/* Centered page intro */
.rt-intro {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* City overview split */
.rt-overview-img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

/* Economic indicator cards */
.rt-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  height: 100%;
}
.rt-stat .rt-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
}
.rt-stat .rt-value {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  margin: 0.35rem 0 0.2rem;
}
.rt-stat .rt-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin: 0;
}
.rt-stat .rt-delta {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-700);
  margin-top: 0.4rem;
}
/* mini bar chart */
.rt-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
  height: 38px;
  margin-top: 0.6rem;
}
.rt-bars span {
  flex: 1;
  border-radius: 3px 3px 0 0;
}
.rt-bars.green span { background: var(--accent); }
.rt-bars.gold span { background: #c89b4a; }
/* tag pills inside stat */
.rt-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.7rem;
}
.rt-pills .pill {
  font-size: 0.62rem;
  font-weight: 600;
  background: rgba(118, 192, 67, 0.14);
  color: var(--accent-700);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
}
.rt-progress {
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--bg-lavender);
  overflow: hidden;
  margin-top: 0.6rem;
}
.rt-progress > i {
  display: block;
  height: 100%;
  background: var(--primary);
}

/* Investment opp grey cards (per design) */
.rt-opp {
  background: var(--bg-lavender);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem;
  height: 100%;
  transition: all 0.25s ease;
}
.rt-opp:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.rt-opp .opp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.66rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.4rem;
}
.rt-opp h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.rt-opp p {
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

/* Event date cards */
.rt-event .ev-date {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-lavender);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  text-align: center;
}
.rt-event .ev-date strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.rt-event .ev-date span {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
}
.rt-event .ev-cat {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0.8rem 0 0.2rem;
}
.rt-event h3 {
  font-size: 0.95rem;
}

/* Major projects feature band */
.rt-major-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.rt-major-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.rt-major-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 0.75rem 1.1rem;
}
.rt-major-badge strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.rt-major-badge span {
  font-size: 0.7rem;
  opacity: 0.9;
}

/* Destinations cards */
.rt-dest .thumb {
  aspect-ratio: 16/11;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #cdbff0, #a78bda);
}
.rt-dest h3 {
  font-size: 0.95rem;
  margin-top: 0.7rem;
}
.rt-dest p {
  font-size: 0.78rem;
  margin: 0.15rem 0 0;
}

/* Latest news */
.rt-news-feature img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
}
.rt-news-feature h3 {
  font-size: 1.15rem;
  margin: 0.9rem 0 0.5rem;
}
.rt-news-feature .meta {
  font-size: 0.72rem;
  color: var(--text-light);
  display: flex;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.rt-news-list .news-item {
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}
.rt-news-list .news-item:last-child {
  border-bottom: 0;
}
.rt-news-list .news-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}
.rt-news-list h4 {
  font-size: 0.92rem;
  margin: 0.2rem 0;
}
.rt-news-list span {
  font-size: 0.7rem;
  color: var(--text-light);
}
