@charset "UTF-8";
@font-face {
  font-family: "Cardo";
  font-weight: 400;
  font-style: normal;
  src: url("/assets/fonts/cardo/Cardo-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Cardo";
  font-weight: 700;
  font-style: normal;
  src: url("/assets/fonts/cardo/Cardo-Bold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Cardo";
  font-weight: 400;
  font-style: italic;
  src: url("/assets/fonts/cardo/Cardo-Italic.ttf") format("truetype");
  font-display: swap;
}
/*  Colors  */
/*  Size of page elements  */
/*   Base font sizes   */
/*   General header font sizes   */
/*   Card Font Sizes (for blog post previews)   */
/*   Daily Planetology schedule page font size   */
/*  Transformation of various page elements  */
#container {
  display: flex;
  justify-content: center;
  width: 100%;
}

#poster-info {
  flex: 4;
  padding: 0;
  margin: 0 5px;
  text-align: center;
}

#today, #tomorrow, #tomorrow-after {
  line-height: 0.9;
}

#today {
  font-size: 34px;
}

#today strong {
  font-size: 39px;
  color: rgb(255, 204, 0);
}

#tomorrow #tomorrow-after {
  font-size: 26px;
}

#schedule-container {
  flex: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  font-size: 20px;
  line-height: 1;
}

#month-change {
  margin-bottom: 20px;
}

#month-change button {
  padding: 10px 20px;
  margin-right: 10px;
  font-size: 16px;
}

#tables-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

#schedule-left, #schedule-right {
  flex: 1;
}

#schedule-left {
  margin-left: 10px;
}

#schedule-right {
  margin-left: 30px;
}

table {
  width: 49%;
  border-collapse: collapse;
}

th {
  text-align: right;
}

tr {
  display: flex;
  line-height: 1.2;
  border-bottom: 1px solid rgba(250, 250, 255, 0.5);
}

td.date {
  flex: 3.5;
  text-align: left;
}

td.name {
  flex: 4.5;
  text-align: right;
}

/* Mobile layout — this stylesheet is loaded only by /napi-planetologia,
   so these rules affect no other page. Tablet/desktop (>600px) unchanged. */
@media screen and (max-width: 600px) {
  /* Shrink the page title so long words don't overflow at 320px */
  h1 {
    font-size: 32px;
  }
  /* Stack poster-info above the schedule instead of beside it */
  #container {
    flex-direction: column;
  }
  #poster-info {
    margin: 0 0 20px 0;
  }
  #today {
    font-size: 24px;
    line-height: 1.1;
  }
  #today strong {
    font-size: 28px;
  }
  /* Smaller table text + tighter buttons so everything fits at 320px */
  #schedule-container {
    font-size: 16px;
  }
  #month-change button {
    padding: 8px 12px;
    margin-right: 8px;
  }
  /* Stack the two half-month tables into one full-width column */
  #tables-wrapper {
    flex-direction: column;
  }
  #schedule-left,
  #schedule-right {
    width: 100%;
    margin-left: 0;
  }
  #schedule-right {
    margin-top: 20px;
  }
}

/*# sourceMappingURL=schedule.css.map */
