/* Google Font - League Spartan */
@font-face {
  font-family: 'League Spartan';
  src: url('../assets/fonts/LeagueSpartan-VariableFont_wght.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Exercise Wrapper */
.exercise-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem;
}

/* Exercise Container */
.exercise-container {
  width: auto;
  max-width: none;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-y: visible;
}

/* Months Container */
.months-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 0.5rem;
}

/* Month Row */
.month-row {
  width: auto;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Month Card */
.month-card {
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background-color: transparent;
  border-radius: 0.5rem;
  box-shadow: none;
  transition: none;
}

.month-card:hover {
  transform: none;
  box-shadow: none;
}

/* Month Image */
.month-image {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: none;
  border-radius: 0.25rem;
}

/* Month Names */
.month-names {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 0;
  gap: 1rem;
}

/* Month */
.month {
  font-size: 1.1rem;
  color: #00699F;
  font-weight: bold;
  text-align: center;
  flex: 1;
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: background-color 0.2s ease;
}

.month:hover {
  background-color: #f0f0f0;
}

/* Hide elements */
.hidden {
  display: none;
}

footer {
  display: none;
}

/* Responsive Design */
@media (max-width: 48rem) {
  .month-card {
    width: auto;
  }
  
  .month-image {
    width: auto;
    height: auto;
  }
  
  .month-names {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .month {
    width: 100%;
  }
}