/*
 * Theme Name: Sea Otter Australia Child Theme
 * Description: Custom styles for the Sea Otter Australia theme.
 * Author: Thirtypointfour
 * Version: 1.0
*/
.extra-large {
  font-size: 60px !important;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.row-gap-default,
.default-row-gap {
  row-gap: 10px;
}
.row-gap-default p,
.default-row-gap p {
  margin-bottom: 0;
}
ul.event-meta {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.event-meta li {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
ul.event-meta li span {
  flex-basis: 100%;
  margin-bottom: 5px;
}
ul.event-meta li p {
  flex-basis: 100%;
  margin: 0;
}
@media (min-width: 768px) {
  ul.event-meta li span,
  ul.event-meta li p {
    flex-basis: 50%;
  }
}
.flex-row {display: flex;
  justify-content: space-between;
  align-items: center;
}
.entry-content .has-medium-font-size {
  line-height: 1.8 !important;
}
.entry-content .has-large-font-size {
  line-height: 1.62 !important;
}
.entry-content .primary-header .uagb-heading-text {
  font-size: clamp(1.5rem, 1.75vw, 2.75rem) !important;
}
.entry-content .secondary-header .uagb-heading-text {
  font-size: clamp(1.25rem, 1.75vw, 2rem) !important;
}
.entry-content .light-font .uagb-heading-text {
  font-weight: 200 !important;
}
.event-links {
  display: inline-flex;
  column-gap: 15px;
}
.event-links .btn {
  padding: 12px 24px;
  border-radius: 3px;
  transition: 0.25s;
}
.event-links .btn-default {
  border: none;
  background: var(--ast-global-color-7);
  color: #fff;
}
.event-links .btn-primary {
  border: none;
  background: var(--ast-global-color-0);
  color: #fff;
}
.event-links .btn-primary:hover,
.event-links .btn-term:hover {
  background-color: var(--ast-global-color-3);
  color: #fff;
}
.event-links .btn-term {
  background-color: #999;
  padding: 8px 16px;
}
.date-title {
  margin: 0 0 0.5em 0;
}
.term-container {
  margin-bottom: 2em;
  border-bottom: 1px solid #000;
}
.event-wrapper {
  padding: 10px 0;
  column-gap: 10px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  border-top: 1px solid #000;
}
.event-wrapper .event-title {
  width: 20vw;
  font-size: 1.5em;
  word-wrap: break-word;
  /* This property allows long words to be broken and wrap onto the next line. */
}
.event-wrapper .event-title a {
  word-wrap: break-word;
}
.event-wrapper .meta-wrap {
  flex: 1;
  /* This makes each paragraph take up 1 part of the available space */
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.event-wrapper .meta-wrap p {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .wp-block-uagb-buttons-child {
    width: 100% !important;
  }
  .event-links {
    flex-direction: column;
    row-gap: 15px;
  }
  .event-wrapper {
    flex-direction: column;
  }
  .event-wrapper .event-title {
    width: 100%!important;
  }
}