.rs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Inter", sans-serif;
}

.rs-title-section {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

/* 3 card per riga */
#rs_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.rs-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.rs-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.rs-content {
  padding: 15px 18px 20px;
  text-align: center;
}

.rs-content h3 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  margin: 12px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rs-content h3 a {
  color: #111;
  text-decoration: none;
}

.rs-content h3 a:hover {
  color: #0073aa;
}

.rs-fonte {
  font-size: 15px;
  color: #555;
  margin: 0;
}

.rs-fonte a {
  color: #0073aa;
  text-decoration: none;
}

.rs-fonte a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  #rs_list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  #rs_list { grid-template-columns: 1fr; }
  .rs-thumb { height: 180px; }
}
