/* inthegame.blog custom styles */

/* Homepage hero section */
.hero {
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e9ecef;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.hero .subtitle {
  font-size: 1.2rem;
  color: #6c757d;
}

/* Sport cards on homepage */
.sport-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.sport-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.sport-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sport-card h3 {
  margin-top: 0;
}

/* Section landing pages */
.section-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
}

/* Last updated timestamp */
.last-updated {
  color: #6c757d;
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 1rem;
}
