/* Rio Casino: Phase 6 Pages (contact, news, privacy, terms, sitemap) */

/* News list (page-news.php) */
.rkc-news__list {
  display: flex;
  flex-direction: column;
  gap: var(--rkc-space-md);
}

.rkc-news__item {
  background: var(--rkc-cream);
  padding: var(--rkc-space-md);
  border-radius: var(--rkc-radius-md);
  border-left: 4px solid var(--rkc-coral);
}

.rkc-news__head {
  margin-bottom: var(--rkc-space-sm);
}

.rkc-news__date {
  font-family: var(--rkc-font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--rkc-gold);
  display: block;
  margin-bottom: 6px;
}

.rkc-news__title {
  font-family: var(--rkc-font-body);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.rkc-news__title a {
  color: var(--rkc-black);
  text-decoration: none;
  transition: color 0.2s ease;
}

.rkc-news__title a:hover {
  color: var(--rkc-coral);
}

.rkc-news__excerpt {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--rkc-gray);
  margin-bottom: var(--rkc-space-sm);
}

.rkc-news__pagination {
  margin-top: var(--rkc-space-lg);
  display: flex;
  justify-content: center;
  gap: 8px;
}

.rkc-news__pagination .page-numbers {
  padding: 8px 14px;
  background: var(--rkc-white);
  color: var(--rkc-black);
  text-decoration: none;
  border-radius: var(--rkc-radius-sm);
  border: 1px solid var(--rkc-border);
  font-family: var(--rkc-font-display);
  font-size: 0.9rem;
}

.rkc-news__pagination .page-numbers.current,
.rkc-news__pagination .page-numbers:hover {
  background: var(--rkc-coral);
  color: var(--rkc-white);
  border-color: var(--rkc-coral);
}

.rkc-news__empty {
  text-align: center;
  padding: var(--rkc-space-xl) 0;
  font-size: 1.05rem;
  color: var(--rkc-gray);
}

/* Sitemap list (page-sitemap.php) */
.rkc-sitemap__eyebrow {
  display: block;
  margin-bottom: var(--rkc-space-sm);
}

.rkc-sitemap__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--rkc-space-md);
  margin-top: var(--rkc-space-md);
}

.rkc-sitemap__cell {
  display: block;
  padding: var(--rkc-space-md);
  background: var(--rkc-white);
  border-radius: var(--rkc-radius-md);
  border: 1px solid var(--rkc-border);
  text-decoration: none;
  position: relative;
  transition: all 0.25s ease;
}

.rkc-sitemap__cell:hover {
  border-color: var(--rkc-coral);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--rkc-shadow);
}

.rkc-sitemap__title {
  font-family: var(--rkc-font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--rkc-black);
}

.rkc-sitemap__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--rkc-gray);
  margin: 0;
}

.rkc-sitemap__arrow {
  position: absolute;
  top: var(--rkc-space-md);
  right: var(--rkc-space-md);
  font-size: 1.4rem;
  color: var(--rkc-coral);
  transition: transform 0.2s ease;
}

.rkc-sitemap__cell:hover .rkc-sitemap__arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .rkc-sitemap__list { grid-template-columns: 1fr; }
}
