/**
 * Base things ---------------------------------------------------------------
 */

.btn-tertiary {
  align-items: center;
  background-color: #fff;
  border: 0.0625rem solid #f33e33;
  border-radius: 0.25rem;
  color: #434349;
  display: flex;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 0.75;
  gap: 0.25rem;
  justify-content: center;
  padding: 1rem 1.375rem;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
}

.btn-tertiary:link,
.btn-tertiary:visited,
.btn-tertiary:hover,
.btn-tertiary:active {
  color: #434349;
}

.submission-link-wrapper {
  background-color: #f5f7fa;
  border: 1px solid #b0b0b4;
  border-left-style: none;
  border-right-style: none;
  padding: 0.5rem;
}

.submission-link {
  align-items: center;
  color: #000;
  display: flex;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  gap: 0.5rem;
  justify-content: left;
  line-height: 1.42857;
  width: fit-content;
}

.submission-link:link,
.submission-link:visited,
.submission-link:hover,
.submission-link:active {
  color: #434349;
  text-decoration: none;
}

.submission-link::before {
  background: url('../img/icons/we-logo.svg') no-repeat center;
  content: '';
  height: 27px;
  max-width: 41px;
  min-width: 41px;
  width: 41px;
}

.submission-link span span {
  display: block;
  font-weight: 600;
}


/**
 * Ads -----------------------------------------------------------------------
 */

.archive.category.local-news .ad-slot {
  margin-bottom: 0;
  margin-top: 0;
}


/**
 * Hamburger button ----------------------------------------------------------
 */

.menu-hamburger {
  cursor: pointer;
  height: 30px;
  padding: 5px;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 36px;
}

.menu-hamburger .bar {
  background-color: #000;
  display: block;
  height: 3px;
  margin: 5px auto;
  pointer-events: none;
  position: relative;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 26px;
}

.menu-hamburger .bar:first-child {
  margin-top: 0;
}

.menu-hamburger .bar:last-child {
  margin-bottom: 0;
}

.menu-hamburger.active .bar:nth-of-type(1) {
  transform: translateY(11px) rotate(45deg);
}

.menu-hamburger.active .bar:nth-of-type(2) {
  opacity: 0;
}

.menu-hamburger.active .bar:nth-of-type(3) {
  transform: translateY(-11px) rotate(-45deg);
}

@media (min-width: 48rem) {
  .menu-hamburger {
    height: 40px;
    width: 50px;
  }

  .menu-hamburger .bar {
    height: 4px;
    margin: 7px auto;
    width: 40px;
  }
}


/**
 * Modals and menus ----------------------------------------------------------
 */

.modal-open {
  overflow: hidden;
}

.modal-overlay {
  background: rgba(0, 0, 0, 0.25);
  display: block;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  visibility: hidden;
  width: 100vw;
  z-index: 1000;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-site-context {
  background-color: #fff;
  height: 100vh;
  left: -100%;
  padding: 1.5rem;
  position: fixed;
  top: 0;
  transition: left 0.4s;
  width: 100%;
  z-index: 1001;
}

.nav-site-context.active {
  left: 0;
}

.nav-site-context .menu-hamburger {
  width: 40px;
}

.nav-site-context .menu-hamburger .bar {
  color: #444;
  height: 3px;
  opacity: 0.8;
  width: 26px;
}

.nav-site-context .menu-hamburger.active .bar:nth-of-type(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-site-context .menu-hamburger.active .bar:nth-of-type(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.nav-site-context .menu {
  list-style-type: none;
  margin: 1.5rem 0;
  padding: 0;
}

.nav-site-context .menu li {
  color: #000;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  padding: 12px 16px;
}

.nav-site-context .menu li a,
.nav-site-context .menu li a:link,
.nav-site-context .menu li a:visited,
.nav-site-context .menu li a:hover,
.nav-site-context .menu li a:active {
  color: inherit;
  text-decoration: none;
}

.nav-site-context .menu li a.active,
.nav-site-context .menu li a:hover,
.nav-site-context .menu li a:active {
  font-weight: 700;
}

@media (min-width: 48rem) {
  .nav-site-context {
    max-width: 20rem;
  }

  .nav-site-context .menu-hamburger.active .bar:nth-of-type(1) {
    transform: translateY(11px) rotate(45deg);
  }
}


/**
 * Breadcrumb component ------------------------------------------------------
 */

.breadcrumb {
  align-content: center;
  align-items: center;
  display: flex;
  flex: 1 0 0;
  flex-wrap: wrap;
  margin: 0 0 1.5rem;
}

.breadcrumb abbr {
  text-decoration: none;
}

.breadcrumb .breadcrumb-link {
  color: #434349;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.breadcrumb .breadcrumb-link::after {
  color: #888994;
  content: '>';
  font-size: 14px;
  line-height: 1.42857;
}

.breadcrumb .breadcrumb-link:last-child::after {
  content: none;
}

.breadcrumb .breadcrumb-link a:link,
.breadcrumb .breadcrumb-link a:visited,
.breadcrumb .breadcrumb-link a:hover,
.breadcrumb .breadcrumb-link a:active {
  color: inherit;
  text-decoration: none;
}

.breadcrumb .breadcrumb-link a:link,
.breadcrumb .breadcrumb-link a:visited {
  border-bottom: 1px solid #f33e33;
}

.breadcrumb .breadcrumb-link a:hover,
.breadcrumb .breadcrumb-link a:active {
  border-bottom-width: 0;
}


/**
 * Page header component -----------------------------------------------------
 */

.container-local-header {
  margin: 1.25rem auto;
  padding: 0.75rem 1.5rem;
  text-align: center;
}

.container-local-header a,
.container-local-header a:link,
.container-local-header a:visited,
.container-local-header a:hover,
.container-local-header a:active {
  text-decoration: none;
}

.container-local-header .inner {
  max-width: none;
  position: relative;
}

.container-local-header .title-wrapper {
  padding: 0 2.2rem;
}

.container-local-header .title-segment {
  color: #000;
  font-family: 'Zilla Slab', serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  margin: 0;
  text-transform: none;
}

.container-local-header .title-segment span {
  font-weight: 700;
}

.container-local-header .title-subhead {
  color: #434349;
  font-family: 'Zilla Slab', serif;
  font-optical-sizing: auto;
  font-size: 14px;
  font-style: italic;
  font-variation-settings: "wdth" 100;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 2;
  margin: 0;
}

.container-local-header .title-subhead small {
  font-size: inherit;
}

.container-local-header .local-hamburger {
  left: -5px;
  position: absolute;
  top: 0;
}

.container-local-header .local-hamburger .menu-label {
  display: none;
}

@media (min-width: 48rem) {
  .container-local-header {
    margin-top: 1.5rem;
  }

  .container-local-header .title-wrapper {
    padding: 0 3.2rem;
  }

  .container-local-header .title-segment {
    font-size: 2rem;
  }

  .container-local-header .title-subhead {
    color: #000;
    font-size: 1.125rem;
    line-height: 1.77777777778;
  }
}

@media (min-width: 64rem) {
  .container-local-header .title-wrapper {
    padding: 0 8.25rem;
  }

  .container-local-header .title-segment {
    font-size: 2.25rem;
    line-height: 0.77778;
    margin-bottom: 0.25rem;
  }

  .container-local-header .local-hamburger {
    align-items: center;
    display: flex;
    gap: 0.25rem;
  }

  .container-local-header .local-hamburger .menu-label {
    color: #000;
    display: block;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
  }
}


/**
 * Section navigation component ----------------------------------------------
 */

.section-navigation-container {
  margin: 0 0 2rem;
  padding: 0 1.5rem;
}

.section-navigation-eyebrow {
  color: #99999e;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 1rem;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.section-navigation-title {
  border-bottom: 1px solid #b0b0b4;
  color: #000;
  font-family: 'Zilla Slab', serif;
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1;
  margin: 0;
  padding: 0.25rem 0 0.75rem;
  text-transform: uppercase;
}

.section-navigation-links {
  padding: 0.25rem 0;
  position: relative;
}

.section-navigation-links-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  width: fit-content;
}

.section-navigation-links-list li {
  border-right: 1px solid #e2e2e3;
  display: inline-block;
  margin: 0 0.5rem 0 0;
  padding: 0 0.5rem 0 0;
}

.section-navigation-links-list li:last-child,
.section-navigation-links-list .last-child {
  border-right-style: none;
}

.section-navigation-link,
.section-navigation-link:visited,
.section-navigation-links-link {
  color: #000;
  font-family: 'Libre Franklin', sans-serif;
  font-optical-sizing: auto;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.81818;
  text-transform: uppercase;
}

.section-navigation-links-link {
  cursor: pointer;
  display: flex;
}

.section-navigation-links-link::after {
  background: url('../img/icons/news-arrow-more.svg') no-repeat center;
  background-size: contain;
  content: '';
  height: 14px;
  margin-top: 1px;
  width: 14px;
}

.section-navigation-links-list li.active .section-navigation-link,
.section-navigation-links-list a.section-navigation-link:hover,
.section-navigation-links-list .section-navigation-link:active {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

li.section-navigation-links-more {
  display: none;
  position: relative;
}

.section-navigation-links-more-menu {
  background-color: #fff;
  border-radius: 0.25rem;
  box-shadow: 2px 2px 8.2px 0 rgba(0, 0, 0, 0.14);
  display: none;
  padding: 0.5rem;
  position: absolute;
  right: 10px;
  top: 26px;
}

.section-navigation-links-more-menu ul {
  column-count: 2;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.section-navigation-links-more-menu ul li {
  display: block;
  margin-right: 0;
  padding-right: 0;
  border-width: 0;
  text-align: right;
}

@media (min-width: 48rem) {
  .section-navigation-title {
    font-size: 2rem;
  }

  .section-navigation-links-more-menu ul {
    column-count: 1;
  }
}

@media (min-width: 80rem) {
  .section-navigation-title {
    font-size: 2.25rem;
  }
}


/**
 * Local “news” pages have two column layout ---------------------------------
 */

.local-news .page-col-1 {
  margin-bottom: 2rem;
}

.local-news .page-col-2 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 64rem) {
  .local-news .page-content {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
  }

  .local-news .page-col-1 {
    width: 74%;
  }

  .local-news .page-col-2 {
    gap: 2rem;
    width: 26%;
  }
}

@media (min-width: 80rem) {
  .local-news .page-col-2 {
    padding-left: 20px;
  }
}


/**
 * Local country and state pages are single column ---------------------------
 */

@media (min-width: 64rem) {
  .local-state .page-content {
    display: block;
  }
}


/**
 * Event section component ---------------------------------------------------
 */

.section-events-header {
  align-items: center;
  border-top: 1px solid #434349;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 0.5rem 0 0;

}

.section-events-title {
  color: #000;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71429;
  margin: 0;
  text-transform: uppercase;
}

.local-term-page .section-events:first-child {
  margin-top: 0;
}

.local-term-page .section-events:first-child .section-events-header {
  border-top-style: none;
  padding-top: 0;
}


/**
 * Event card component ------------------------------------------------------
 */

.card-event p.card-event-details-date {
  display: none;
}

@media (min-width: 48rem) {
  .local-news .card-event {
    width: calc(50% - 0.75rem);
  }
}

@media (min-width: 64rem) {
  .single-event .card-event {
    width: calc(25% - 1.15rem);
  }
}

@media (min-width: 70rem) {
  .local-news .card-event {
    width: calc(33% - 0.85rem);
  }

  .event-segment .card-event {
    width: calc(25% - 1.15rem);
  }
}


/*
 * Horizontal event card component -------------------------------------------
 */

.card-event.card-event-horizontal {
  align-items: stretch;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #f0f0f0;
  flex-direction: row;
  width: 100%;
}

.card-event.card-event-horizontal .card-event-date,
.card-event.card-event-horizontal .card-event-segment,
.card-event.card-event-horizontal .card-event-details-venue-location,
.card-event.card-event-horizontal .card-event-link-tickets {
  display: none;
}

.card-event.card-event-horizontal p.card-event-details-date {
  display: flex;
}

.card-event.card-event-horizontal .card-event-image-wrapper {
  border-radius: 0;
  height: auto;
  max-width: 7.5rem;
  min-width: 7.5rem;
  width: 7.5rem;
}

.card-event.card-event-horizontal .card-event-content {
  padding: 0.5rem 0.75rem;
}

.card-event.card-event-horizontal .card-event-title {
  font-size: 1rem;
  line-height: 1.5;
}

.card-event.card-event-horizontal .card-event-details p {
  font-size: 14px;
  line-height: 1.42857;
}

.card-event.card-event-horizontal .card-event-details p::before {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  height: 12px;
  width: 12px;
}

.card-event.card-event-horizontal .card-event-details-date::before {
  opacity: 0.75;
}


/**
 * Local “news” right rail components ----------------------------------------
 */

.right-rail-post-container {
  border: 1px solid #e2e2e3;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.right-rail-post-container-header {
  border-bottom: 1px solid #e2e2e3;;
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.right-rail-post-container-datebox {
  border-right: 1px solid #e2e2e3;;
  color: #323e52;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.right-rail-post-container-datebox-month {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
  text-transform: uppercase;
}

.right-rail-post-container-datebox-day {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.33333;
}

.right-rail-post-container-title {
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.33333;
  padding-right: 1rem;
  text-transform: uppercase;
}

@media (min-width: 48rem) {
  .right-rail-post-container-content {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (min-width: 64rem) {
  .right-rail-post-container-content {
    display: block;
  }
}

.right-rail-post-container-more {
  border-top: 1px solid #e2e2e3;
  padding: 12px 0;
  text-align: center;
}

.right-rail-post-container-more .btn-tertiary {
  display: inline-block;
  font-size: 12px;
  padding: 12px;
  width: fit-content;
}

.card-horizontal-short {
  align-items: center;
  border-bottom: 1px solid #e2e2e3;
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0.5rem;
}

@media (min-width: 48rem) {
  .card-horizontal-short {
    width: 50%;
  }

  .card-horizontal-short:nth-child(odd) {
    border-right: 1px solid #e2e2e3;
  }
}

@media (min-width: 64rem) {
  .card-horizontal-short {
    width: 100%;
    border-right-width: 0;
  }

  .card-horizontal-short:nth-child(odd) {
    border-right-width: 0;
  }
}

.card-horizontal-short:hover,
.card-horizontal-short:active {
  text-decoration: none;
}

.card-horizontal-short:last-child {
  border-bottom: none;
}

.card-horizontal-short-image-container {
  border-radius: 0.25rem;
  flex: 1 0 0;
  max-height: 72px;
  min-height: 72px;
  height: 72px;
  overflow: hidden;
  width: calc(50% - 0.5rem);
}

.card-horizontal-short-image-container img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.card-horizontal-short-content {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.42857;
  width: calc(50% - 0.5rem);
}

.card-horizontal-short-date {
  color: #888994;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  margin: 0;
  text-transform: uppercase;
}

.card-horizontal-short-title {
  color: #000;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
  margin: 0;
}

.card-horizontal-short-profession {
  color: #11c4e6;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
  margin: 0;
}

.card-reminder.card-reminder-short {
  border-radius: 0.5rem;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
}

@media (min-width: 48rem) {
  .card-reminder.card-reminder-short {
    margin: 0 auto;
    max-width: 400px;
  }
}

@media (min-width: 64rem) {
  .card-reminder.card-reminder-short {
    margin: 0;
    max-width: unset;
  }
}

.card-reminder.card-reminder-short .card-reminder-header {
  align-items: center;
  position: static;
  display: flex;
  gap: 8px;
  padding: 0;
}

@media (min-width: 64rem) {
  .card-reminder.card-reminder-short .card-reminder-header {
    display: block;
  }
}

@media (min-width: 70rem) {
  .card-reminder.card-reminder-short .card-reminder-header {
    display: flex;
  }
}

.card-reminder.card-reminder-short .card-reminder-header .card-reminder-date {
  padding: 1rem;
}

.card-reminder.card-reminder-short .card-reminder-header .card-reminder-title {
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  padding: 1rem 1rem 1rem 0;
  text-transform: uppercase;
}

@media (min-width: 64rem) {
  .card-reminder.card-reminder-short .card-reminder-header .card-reminder-title {
    padding-left: 1rem;
  }
}

@media (min-width: 70rem) {
  .card-reminder.card-reminder-short .card-reminder-header .card-reminder-title {
    padding-left: 0;
  }
}

.card-reminder.card-reminder-short .card-reminder-content-wrapper {
  flex-direction: column;
}

.card-reminder.card-reminder-short .card-reminder-video-wrapper {
  height: auto;
  max-height: unset;
  max-width: unset;
  min-width: unset;
  width: calc(100% + 2px);
}

.card-reminder.card-reminder-short .card-reminder-content {
  margin: 0;
  max-width: unset;
  min-width: unset;
  padding: 1rem;
  width: 100%;
}

.card-reminder.card-reminder-short .card-reminder-content p {
  line-height: 1.4;
  margin-bottom: 1em;
}

.card-reminder.card-reminder-short .card-reminder-tags-wrapper,
.card-reminder.card-reminder-short p.card-reminder-subtitle,
.card-reminder.card-reminder-short .card-reminder-content-content {
  margin-bottom: 0;
}

.card-reminder.card-reminder-short .card-reminder-content p:last-child {
  margin-bottom: 0;
}


/**
 * Major cities component ----------------------------------------------------
 */

.section-major-cities {
  margin-top: 3.5rem;
}

.section-major-cities .section-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.375;
  margin: 0 0 4.25rem;
}

.container-major-cities {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  column-gap: 4.25rem;
}

@media (min-width: 64rem) {
  .section-major-cities .section-title,
  .section-all-cities .section-title {
    font-size: 1.75rem;
  }

  .container-major-cities {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
  }
}

@media (min-width: 70rem) {
  .section-major-cities .section-title,
  .section-all-cities .section-title {
    font-size: 2rem;
  }
}


/**
 * Major city component ------------------------------------------------------
 */

.major-city-container {
  border: 1px solid #e2e2e3;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4.25rem;
  width: 100%;
}

.major-city-container:last-child {
  margin-bottom: 0;
}

@media (min-width: 64rem) {
  .major-city-container {
    margin-bottom: 0;
    width: calc(50% - 1rem);
  }
}

@media (min-width: 70rem) {
  .major-city-container {
    width: calc(33% - 1.125rem);
  }
}

.major-city-header {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e2e2e3;
  border-radius: 0.5rem;
  padding: 1.5rem 1rem;
  text-align: center;
}

.major-city-header h3 {
  color: #434349;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.33333;
  margin: 0;
  text-transform: uppercase;
}

.major-city-footer {
  padding: 0.75rem;
  text-align: center;
}

.major-city-footer .btn-tertiary {
  font-size: 0.75rem;
  margin: 0 auto;
  padding: 1em;
  width: fit-content
}

.major-city-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 1rem;
}


/**
 * All cities component ------------------------------------------------------
 */

.section-all-cities {
  margin-top: 56px;
}

.section-all-cities .section-title {
  border-top: 1px solid #434349;
  color: #000;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71429;
  margin: 0 0 1.5rem;
  padding: 0.5rem 0 0.25rem;
  text-transform: uppercase;
}

.container-all-cities {
  column-count: 2;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 48rem) {
  .container-all-cities {
    column-count: 3;
  }
}

@media (min-width: 64rem) {
  .container-all-cities {
    column-count: 4;
  }
}

@media (min-width: 80rem) {
  .container-all-cities {
    column-count: 5;
  }
}

.container-all-cities li {
  color: #434349;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding:12px 0;
}

.container-all-cities li a {
  align-items: flex-start;
  color: inherit;
  display: flex;
  font-size: inherit;
  gap: 0.5rem;
  line-height: inherit;
}


/**
 * Event segment taxonomy page overrides -------------------------------------
 */

.event-segment .page-content {
  display: block;
}


/**
 * Single event page ---------------------------------------------------------
 */

.single-event .site-main {
  padding-bottom: 2rem;
}

@media (min-width: 70rem) {
  .single-event .site-main {
    padding-left: 0;
    padding-right: 0;
  }
}

.single-event-content-wrapper {
  margin-bottom: 68px;
}

.single-event-image-wrapper {
  margin: 0 0 1.5rem;
}

.single-event-image-wrapper img {
  display: block;
}

.single-event-content {
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.single-event-content h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.375;
  margin: 0;
}

.single-event-content p {
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}

.single-event-content p b {
  font-size: 1.5rem;
  font-weight: 700
}

.single-event-time a,
.single-event-time a:visited {
  color: inherit;
}

.single-event-time span {
  display: block;
}

.single-event-venue b {
  font-size: 24px;
}

.single-event-description p {
}

.btn-single-event {
  font-size: 20px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 1rem 40px;
  text-transform: none;
  width: fit-content;
}

@media (min-width: 64rem) {
  .single-event-content-wrapper {
    display: flex;
    gap: 2rem;
  }

  .single-event-image-wrapper {
    width: 50%;
  }

  .single-event-content {
    width: 47%;
  }
}

.single-event-why-who-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0 auto 68px;
}

.single-event-why,
.single-event-who {
  border: 1px solid #e2e2e3;
  border-radius: 0.5rem;
  padding: 1.25rem;
}

.single-event-spotlight-wrapper {
  background-color: #f5f5f8;
  margin-bottom: 68px;
}

.single-event-venue-about-wrapper {
  margin-bottom: 68px;
}

.single-event-spotlight-wrapper .inner,
.single-event-venue-about-wrapper .inner {
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.in-the-spotlight-item,
.venue-about-item {
  margin-bottom: 1.25rem;
}

.in-the-spotlight-item:last-child,
.venue-about-item:last-child {
  margin-bottom: 0;
}

.single-event-why h2,
.single-event-who h2,
.single-event-spotlight-wrapper h2,
.single-event-venue-about-wrapper h2 {
  color: #000;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.33333;
  margin: 0 0 1.5rem;
  text-transform: none;
}

.in-the-spotlight-item h3,
.venue-about-item h3 {
  color: #f33e33;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}

.single-event-why ul,
.single-event-who ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.single-event-why li,
.single-event-why p,
.single-event-who li,
.single-event-who p,
.single-event-spotlight-wrapper li,
.single-event-spotlight-wrapper p,
.single-event-venue-about-wrapper li,
.single-event-venue-about-wrapper p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 12px;
}

.single-event-why li {
  color: #000;
  display: flex;
  gap: 0.5rem;
}

.single-event-who p,
.single-event-spotlight-wrapper p,
.single-event-venue-about-wrapper p {
  color: #434349;
}

.single-event-why li:last-child,
.single-event-why p:last-child,
.single-event-who li:last-child,
.single-event-who p:last-child,
.single-event-spotlight-wrapper li:last-child,
.single-event-spotlight-wrapper p:last-child,
.single-event-venue-about-wrapper li:last-child,
.single-event-venue-about-wrapper p:last-child {
  margin-bottom: 0;
}

.single-event-why li::before {
  background: url('../img/icons/circle-check-red.svg') center no-repeat;
  background-size: contain;
  content: '';
  max-height: 19px;
  max-width: 19px;
  min-height: 19px;
  min-width: 19px;
  height: 19px;
  margin-top: 4px;
  width: 19px;
}

.single-event .ad-container {
  background-color: #f6f6f6;
  margin-bottom: 68px;
}

@media (min-width: 64rem) {
  .single-event-why-who-wrapper {
    flex-direction: row;
    gap: 2rem;
  }

  .single-event-why {
    width: 50%;
  }

  .single-event-who {
    width: 47%;
  }
}


/**
 * Local news homepage -------------------------------------------------------
 */

/* Do we have a specific class for the local news homepage? */
.local-news #page .outer {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.local-news #page .page-content {
  margin-top: 2rem;
  padding-top: 0;
}

@media (min-width: 64rem) {
  .local-news.archive .page-content {
    display: block;
  }

  .local-news.archive .page-col-1,
  .local-news.archive .page-col-2 {
    width: 100%;
  }
}

@media (min-width: 80rem) {
  .local-news.archive .page-content {
    display: flex;
    gap: 0;
  }

  .local-events.local-state.archive .page-content {
    display: block;
  }

  .local-news.archive .page-col-1 {
    border-right: 1px solid #b0b0b4;
    padding-right: 1.5rem;
    width: 74.609375%;
  }

  .local-news.archive .page-col-2 {
    padding-left: 1.5rem;
    width: 25.390625%;
  }
}

/* Featured/top stories component */
.news-stories-top {
  margin-bottom: 56px;
}

/* General news story component */
.news-story {
  align-items: flex-start;
  border-bottom: 1px solid #e2e2e3;
  color: #000 !important;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}

.news-story:hover,
.news-story:active {
  text-decoration: none;
}

.news-story:first-child {
  gap: 12px;
}

.news-story:last-child {
  border-bottom-style: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.news-story:first-child .news-story-headline {
  font-family: 'Zilla Slab', serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.125;
  padding: 0;
}

.news-story .news-story-headline {
  color: inherit;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  padding: 0.5rem 0;
}

.news-story .news-story-excerpt {
  color: #434349;
  font-family: 'Literata', serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 48rem) {
  .news-stories-top {
    display: flex;
    flex-wrap: wrap;
  }

  .news-stories-top .news-story:first-child {
    border-bottom-width: 1px;
    border-right-width: 0;
    margin: 0 0 1.5rem;
    padding-bottom: 1.5rem;
    padding-top: 0;
    padding-left: 0 !important;
    padding-right: 0;
    width: 100%;
  }

  .news-stories-top .news-story {
    border-bottom-width: 0;
    border-right: 1px solid #e2e2e3;
    margin: 0;
    padding: 0 1.5rem 0 0;
    width: 50%;
  }

  .news-stories-top .news-story:last-child {
    border-right-width: 0;
    margin-bottom: 0;
    padding-bottom: 0 !important;
    padding-left: 1.5rem;
    padding-right: 0;
    padding-top: 0;
  }
}

@media (min-width: 64rem) {
  .news-stories-top .news-story:first-child .news-story-headline {
    font-size: 40px;
    line-height: 1.25;
  }
}

@media (min-width: 80rem) {
  .news-stories-top .news-story:first-child .news-story-headline {
    font-size: 3rem;
    line-height: 1.04167;
  }
}

/* News story category component */
.news-stories-category-heading {
  border-top: 1px solid #434349;
  color: #000;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71429;
  margin: 0 0 1.5rem;
  padding: 0.5rem 0 0.25rem;
  text-transform: uppercase;
}

.news-stories-category-stories,
.news-stories-category .submission-link-wrapper {
  margin-bottom: 56px;
}

.news-stories-category .news-story:first-child .news-story-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.news-stories-category .news-story .news-story-headline {
  line-height: 1.33333;
  padding: 0;
}

.news-stories-categories-image-wrapper-mobile {
  margin-top: 12px;
}

.news-stories-categories-image-wrapper-mobile img {
  display: block;
  height: auto;
  width: 100%;
}

.news-stories-categories-image-wrapper-desktop {
  display: none;
}

@media (min-width: 48rem) {
  .news-stories-category-stories-main {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .news-stories-category-stories-remainder {
    border-top: 1px solid #e2e2e3;
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
  }

  .news-stories-categories-image-wrapper-mobile {
    display: none;
  }

  .news-stories-categories-image-wrapper-desktop {
    display: block;
    width: calc(50% - 0.75rem);
  }

  .news-stories-categories-image-wrapper-desktop img {
    display: block;
  }

  .news-stories-category-stories-main-stories {
    width: calc(50% - 0.75rem);
  }

  .news-stories-category-stories-main-stories .news-story:first-child .news-story-headline {
    font-size: 1.5rem;
  }

  .news-stories-category-stories-remainder .news-story {
    border-width: 0;
    margin: 0;
    padding: 0;
    width: 50%;
  }

  .news-stories-category-stories-remainder .news-story:first-child {
    border-right: 1px solid #e2e2e3;
    padding-right: 1.5rem;
  }

  .news-stories-category-stories-remainder .news-story:last-child {
    padding-left: 1.5rem;
  }

  .news-stories-category .submission-link-wrapper {
    text-align: center;
  }

  .news-stories-category .submission-link {
    justify-self: center;
  }

  .news-stories-category .submission-link span span {
    display: inline;
  }
}

@media (min-width: 64rem) {
  .news-stories-category-stories-main {
    gap: 3rem;
  }
}

/* News right rail */
.right-rail-post-container-new-title {
  border-top: 1px solid #434349;
  color: #000;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71429;
  margin: 0 0 0.75rem;
  padding: 0.5rem 0 0.25rem;
  text-transform: uppercase;
}

.right-rail-post-container-new-title a:link,
.right-rail-post-container-new-title a:visited,
.right-rail-post-container-new-title a:hover,
.right-rail-post-container-new-title a:active {
  color: inherit;
}

.right-rail-post-container-new-content .card-news-style {
  border-bottom: 1px solid #e2e2e3;
  display: flex;
  gap: 18px;
  margin: 0 0 12px;
  min-height: 182px;
  padding: 0 0 12px;
  text-decoration: none;
}

.right-rail-post-container-new-content .card-news-style:hover,
.right-rail-post-container-new-content .card-news-style:active {
  text-decoration: none;
}

.right-rail-post-container-new-content .card-news-style:last-child {
  border-bottom-style: none;
  margin: 0;
  padding: 0;
}

.right-rail-post-container-new-content .card-news-style-content-wrapper,
.right-rail-post-container-new-content .card-news-style-image-wrapper {
  width: calc(50% - 9px);
}

.right-rail-post-container-new-content .card-news-style-image-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
}

.right-rail-post-container-new-content .card-news-style-image-wrapper img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.right-rail-post-container-new-content .card-news-style-date,
.right-rail-post-container-new-content .card-news-style-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  margin: 0;
}

.right-rail-post-container-new-content .card-news-style-date {
  color: #99999e;
  font-size: 14px;
  line-height: 1.42857;
}

.right-rail-post-container-new-content .card-news-style-title {
  color: #000;
  font-size: 1rem;
  line-height: 1.25;
}

@media (min-width: 48rem) {
  .right-rail-post-container-new-content {
    background-color: #e2e2e3;
    display: flex;
    gap: 1px;
  }

  .right-rail-post-container-new-content .card-news-style {
    background-color: #fff;
    border-bottom-style: none;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0 12px !important;
    width: 25%;
  }

  .right-rail-post-container-new-content .card-news-style:first-child {
    padding-left: 0 !important;
  }

  .right-rail-post-container-new-content .card-news-style:last-child {
    padding-right: 0 !important;
  }

  .right-rail-post-container-new-content .card-news-style-content-wrapper {
    order: 2;
    width: 100%;
  }

  .right-rail-post-container-new-content .card-news-style-image-wrapper {
    height: 214px;
    order: 1;
    width: 100%;
  }
}

@media (min-width: 80rem) {
  .right-rail-post-container-new:first-child .right-rail-post-container-new-title {
    border-top-width: 0;
    padding-top: 0;
  }

  .right-rail-post-container-new-content {
    background-color: transparent;
    display: block;
  }

  .right-rail-post-container-new-content .card-news-style {
    border-bottom: 1px solid #e2e2e3;
    flex-direction: row;
    gap: 18px;
    margin: 0 0 12px;
    min-height: 142px;
    padding: 0 0 12px !important;
    width: 100%;
  }

  .right-rail-post-container-new-content .card-news-style-content-wrapper,
  .right-rail-post-container-new-content .card-news-style-image-wrapper {
    height: auto;
    order: unset;
    width: calc(50% - 9px);
  }
}

/* More news footer */
.more-news .news-stories-category-heading {
  margin-top: 2rem;
}

.news-stories-bottom-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.news-stories-bottom {
  width: 50%;
}

.news-stories-bottom:nth-child(n + 3) {
  border-top: 1px solid #e2e2e3;
  margin-top: 12px;
  padding-top: 12px;
}

.new-stories-bottom-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-stories-bottom:nth-child(odd) .new-stories-bottom-content {
  border-right: 1px solid #e2e2e3;
  padding-right: 12px;
}

.news-stories-bottom:nth-child(even) .new-stories-bottom-content {
  padding-left: 12px;
}

.news-stories-bottom:last-child .new-stories-bottom-content {
  border-right: 0;
}

.news-stories-bottom-heading {
  color: #000;
  font-family: 'Zilla Slab', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.news-stories-bottom-image-wrapper {
  aspect-ratio: 1;
  margin-bottom: 12px;
  overflow: hidden;
  width: 100%;
}

.news-stories-bottom-image-wrapper img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.news-stories-bottom .news-story {
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.news-stories-bottom .news-story:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.news-stories-bottom .news-story .news-story-headline {
  color: #434349;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.42857;
  padding: 0;
}

@media (min-width: 48rem) {
  .news-stories-bottom {
    width: 20.4%;
  }

  .news-stories-bottom .new-stories-bottom-content {
    border-right: 1px solid #e2e2e3;
    padding: 0 12px;
  }

  .news-stories-bottom:nth-child(5n+1),
  .news-stories-bottom:nth-child(5n) {
    width: 19.154%;
  }

  .news-stories-bottom:nth-child(5n+1) .new-stories-bottom-content {
    padding-left: 0;
  }

  .news-stories-bottom:nth-child(5n) .new-stories-bottom-content {
    border-right: 0;
    padding-right: 0;
  }

  .news-stories-bottom:nth-child(n + 3) {
    border-top-width: 0;
    margin-top: 0;
    padding-top: 0;
  }

  .news-stories-bottom:nth-child(n + 6) {
    border-top: 1px solid #e2e2e3;
    margin-top: 20px;
    padding-top: 20px;
  }
}

@media (min-width: 64rem) {
  .news-stories-bottom {
    width: 20.5%;
  }

  .news-stories-bottom:nth-child(5n+1),
  .news-stories-bottom:nth-child(5n) {
    width: 18.68%;
  }

  .more-news .news-stories-bottom .new-stories-bottom-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .more-news .news-stories-bottom:nth-child(5n+1) .new-stories-bottom-content {
    padding-left: 0;
  }

  .more-news .news-stories-bottom:nth-child(5n) .new-stories-bottom-content {
    padding-right: 0;
  }
}
