/**
 * Variables - imports from main file
 */
/**
 * Statue of Liberty Site - Design System Variables
 * Brand: Lavender (Primary), Sandy Beige (Secondary), Golden Yellow (Tertiary)
 *
 * This file overrides the plugin_pd_components base _variables.scss.
 * It must be placed at the same path in the cartridge overlay chain.
 */
/* Statue Schedule Component Styles */
.statue-schedule-container {
  width: 100%;
  padding: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.statue-schedule-container .statue-schedule-content {
  width: 100%;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.statue-schedule-container .statue-schedule-heading {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 30px;
  letter-spacing: 0;
}
.statue-schedule-container .statue-schedule-body {
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  letter-spacing: 0.032px;
}
.statue-schedule-container .statue-schedule-body p {
  margin-bottom: 16px;
}
.statue-schedule-container .statue-schedule-body p:last-child {
  margin-bottom: 0;
}
.statue-schedule-container .statue-schedule-body strong, .statue-schedule-container .statue-schedule-body b {
  font-weight: 700;
}
.statue-schedule-container .statue-schedule-body a {
  color: inherit;
  text-decoration: underline;
}
.statue-schedule-container .statue-schedule-body a:hover {
  text-decoration: none;
}
.statue-schedule-container .statue-schedule-body--notice {
  margin-top: 30px;
}

/* Theme Modifier Classes - colors resolved per site via _variables.scss */
.statue-schedule--primary {
  background-color: #dba3ee;
}
.statue-schedule--primary .statue-schedule-content {
  color: #464646;
}

.statue-schedule--secondary {
  background-color: #f4e2d8;
}
.statue-schedule--secondary .statue-schedule-content {
  color: #464646;
}

.statue-schedule--tertiary {
  background-color: #fdcb6e;
}
.statue-schedule--tertiary .statue-schedule-content {
  color: #464646;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .statue-schedule-container {
    padding: 32px 24px;
  }
  .statue-schedule-container .statue-schedule-heading {
    font-size: 20px;
    line-height: 26px;
  }
  .statue-schedule-container .statue-schedule-body {
    font-size: 14px;
    line-height: 22px;
  }
}
