/*!
Theme Name: Action Squared
Theme URI: https://actionnetwork.org
Author: Action Squared - Bryan Farris
Author URI: https://actionnetwork.org
Template: heliotrope
Description: Child theme for Action Network's official blog. Based on the parent theme, heliotrope by Wide Eye.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: actionsquared
Tags: custom-menu, featured-images, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

heliotrope is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

/* Styles for the post loop/feed */
.post-feed > .container {
  display: flex;
  justify-content: space-between;
}
.post-feed .post__featured-image {
  align-items: flex-start;
  aspect-ratio: 4/3;
  display: flex;
  overflow: hidden;
  width: 100%;
  z-index: 9;
  position: relative;
}
@media (min-width: 768px) {
  .post-feed .post__featured-image {
    width: 300px;
  }
}
.post-feed .post__featured-image.post__featured-mobile-image {
  display: block;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .post-feed .post__featured-image.post__featured-mobile-image {
    display: none;
  }
}
.post-feed .post {
  align-items: flex-start;
  display: flex;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
}
.post-feed .post .entry-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}
.post-feed .post .entry-title a {
  color: #211d22;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
}
.post-feed .post .entry-title a:hover {
  text-decoration: underline;
}
.post-feed .post-card__media {
  display: none;
}
@media (min-width: 768px) {
  .post-feed .post-card__media {
    display: block;
    margin-right: 2.5rem;
  }
}
.post-feed .content-col__centered {
  max-width: 768px;
}
@media (min-width: 960px) {
  .post-feed .content-col__centered {
    margin-right: 5rem;
  }
}
.post-feed .post-card__meta {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
}
.post-feed .post-card__meta .tax-links {
  width: 100%;
}
@media (min-width: 768px) {
  .post-feed .post-card__content {
    width: calc(100% - 340px);
  }
}
.post-feed .eyebrow__category {
  width: 100%;
}
.post-feed .eyebrow__category .cat-links {
  display: flex;
  margin-right: 0;
}
.post-feed .eyebrow__category a {
  color: #211D22;
  padding-bottom: 1rem;
}
.post-feed .category-news .eyebrow__category .cat-links {
  border-bottom: 2px dashed #cc70eb;
}
.post-feed .category-dev-updates .eyebrow__category .cat-links {
  border-bottom: 2px dashed #1781fa;
}
.post-feed .category-partner-interviews .eyebrow__category .cat-links {
  border-bottom: 2px dashed #FD570D;
}

/* Blockquote */
blockquote cite {
  font-size: 1.25rem;
  margin-top: 2rem;
  display: block;
}

/* Mobile Nav */
.home .hamburger-control__inner, .home .hamburger-control__inner::after,
.home .hamburger-control__inner::before {
  background-color: #211D22;
}

.is-active .hamburger-control__inner::after,
.is-active .hamburger-control__inner::before {
  background-color: #fff;
}

/* Post/Single styles */
article.single {
  padding-bottom: 10rem;
  /*
  &.category-news .topper__entry-meta {
      border-bottom-color: $magenta;
  }

  &.category-dev-updates  .topper__entry-meta {
      border-bottom-color: $blue;
  }

  &.category-partner-interviews .topper__entry-meta {
      border-bottom-color: $red;
  } */
}
article.single .entry-title {
  margin-top: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
article.single .topper__entry-meta {
  /* border-bottom: 2px dashed $magenta; */
  margin-bottom: 5rem;
  padding-bottom: 3rem;
}
article.single .social {
  display: none;
}
article.single .topper__entry-meta {
  justify-content: center;
}
article.single .topper__byline {
  text-align: left;
}
article.single .topper__byline-item {
  display: block;
}
article.single .topper__byline-item:last-of-type:before {
  content: "";
  display: none;
}

.post-content {
  max-width: 768px;
  /* For imported interview posts with nested strong tags */
}
.post-content .entry-excerpt p {
  font-size: 1.4rem;
}
.post-content a {
  color: #FD570D;
}
.post-content a:hover, .post-content a:active {
  color: #000;
}
.post-content h3 {
  white-space: break-spaces;
}
.post-content strong {
  font-weight: bold;
}
.post-content p {
  font-size: 18px;
  line-height: 32px;
  margin-top: 24px;
}
.post-content blockquote {
  font-size: 2rem;
  padding: 1.5rem 0.5rem;
  margin: 2rem 0;
  border-top: 2px dashed #1781fa;
  border-bottom: 2px dashed #1781fa;
}
@media (min-width: 960px) {
  .post-content blockquote {
    padding: 3rem 1.5rem;
    margin: 3rem 0;
  }
}
.post-content blockquote p {
  font-size: 1.5rem;
  line-height: 2;
  margin: 0;
}
@media (min-width: 960px) {
  .post-content blockquote p {
    font-size: 2rem;
  }
}

.topper__entry-meta,
.post-card__meta {
  align-items: center;
  display: flex;
}
.topper__entry-meta > *,
.post-card__meta > * {
  font-size: 0.9rem;
  margin-right: 1rem;
}

.tax-links a {
  color: #211D22;
  position: relative;
  text-decoration: none;
}
.tax-links a:hover, .tax-links a:focus {
  color: #FD570D;
}

.entry-excerpt {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.entry-excerpt p {
  color: #7a777a;
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: 0rem;
  white-space: break-spaces;
}
.single .entry-excerpt p {
  font-size: 1.4rem;
  line-height: 1.6;
}

.avatar {
  border-radius: 50%;
}

.author__avatar {
  margin-right: 0.5rem;
}

.topper__byline-item {
  color: #211D22;
  margin-right: 0.5rem;
}
.topper__byline-item:last-of-type {
  position: relative;
}
.topper__byline-item:last-of-type:before {
  content: "|";
  color: #211D22;
  display: inline-block;
  padding-right: 0.5rem;
}
.topper__byline-item .author {
  color: #211D22;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.topper__byline-item .author:hover, .topper__byline-item .author:active {
  border-bottom-color: #211D22;
  color: #211D22;
}

.topper__byline-readtime {
  color: #7a777a;
}

.post__header--alt {
  background: #fff;
  padding-bottom: 2rem;
  padding-top: 4rem;
  margin-bottom: -10rem;
}
.post__header--alt > .container {
  text-align: center;
}
.category-news .post__header--alt {
  background: #cc70eb;
}
.category-dev-updates .post__header--alt {
  background: #1781fa;
}
.category-partner-interviews .post__header--alt {
  background: #FD570D;
}
.category-partner-interviews .post__header--alt ::selection {
  background: #fff;
  color: #211D22;
}
.post__header--alt .topper__byline-item,
.post__header--alt .entry-excerpt p,
.post__header--alt .topper__byline-readtime {
  color: #211D22;
}
.post__header--alt .eyebrow__category a {
  border-bottom: 2px solid transparent;
  display: inline-block;
}
.post__header--alt .eyebrow__category a:hover, .post__header--alt .eyebrow__category a:active {
  color: #211D22;
  border-bottom: 2px solid #211D22;
}

/* Reset homepage site header styles */
.home .site-header__inner {
  background: #fff;
}
.home .site-header__inner .site-header__main-logo svg .text {
  fill: #211D22;
}

.home .has-dropdowns .dropdown-trigger svg path {
  fill: #211D22;
}

.home .site-header,
.home .site-header a,
.home .site-header__secondary-menu a.btn:hover {
  color: #211D22;
}

/* Post Media (image) styles */
.post-content .post__featured-image,
.post-content .wp-block-image,
.post-content figure {
  margin-bottom: 3rem;
  margin-top: 3rem;
}
@media (min-width: 960px) {
  .post-content .post__featured-image,
.post-content .wp-block-image,
.post-content figure {
    margin-left: -10%;
    max-width: none;
    width: 120%;
  }
}
.post-content .post__featured-image .wp-post-image,
.post-content .post__featured-image img,
.post-content .wp-block-image .wp-post-image,
.post-content .wp-block-image img,
.post-content figure .wp-post-image,
.post-content figure img {
  width: 100%;
  z-index: 8;
}
.post-content .post__featured-image .wp-post-image,
.post-content .post__featured-image img {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.post__featured-image-caption,
.wp-block-image figcaption,
.post__featured-image-caption figcaption,
.post-content figure figcaption {
  background: #fff;
  color: #7a777a;
  display: block;
  font-size: 0.9rem;
  font-style: italic;
  margin: 0.5rem auto;
  z-index: 9;
}
.post__featured-image-caption a,
.wp-block-image figcaption a,
.post__featured-image-caption figcaption a,
.post-content figure figcaption a {
  color: #FD570D;
}
.post__featured-image-caption a:hover, .post__featured-image-caption a:active,
.wp-block-image figcaption a:hover,
.wp-block-image figcaption a:active,
.post__featured-image-caption figcaption a:hover,
.post__featured-image-caption figcaption a:active,
.post-content figure figcaption a:hover,
.post-content figure figcaption a:active {
  text-decoration: none;
}

/* 404 */
.four-oh-four__image {
  display: none;
}

/* Blog Topper */
.topper-blog {
  background: #211D22;
  padding: 3rem 0;
  color: #fff;
  display: flex;
  flex-flow: row wrap;
  margin-top: 0;
}
@media (min-width: 375px) {
  .topper-blog {
    flex-flow: row nowrap;
  }
}
.topper-blog .page-title, .topper-blog p {
  color: #fff;
  margin-bottom: 0;
}
.topper-blog .social {
  margin: 2rem 0 0 0;
}
.topper-blog .social-links svg {
  fill: #fff;
  height: 16px;
}
.topper-blog .topper__title {
  display: block;
  order: 1;
  width: 100%;
}
.topper-blog .social {
  margin: 1rem 0 0 0;
  min-width: 175px;
  order: 2;
  position: relative;
}
@media (min-width: 375px) {
  .topper-blog .social {
    margin: 0;
    margin-left: auto;
  }
}
.topper-blog .social h6 {
  margin: 0 0 1rem 0;
}
.topper-blog .social a:focus svg,
.topper-blog .social a:hover svg {
  fill: #FD570D;
}
.topper-blog #search-form__wrap {
  display: none;
  margin-top: 1rem;
  order: 2;
}
.topper-blog #search-form__wrap .search__input {
  background-color: #fff;
  color: #211D22;
}
.topper-blog .search__form {
  display: flex;
}
.topper-blog .search__form .search__col--input {
  margin-right: 1rem;
}
.topper-blog .search__form .search__input {
  font-size: 14px;
}
.topper-blog .search__form .search__col--submit {
  flex: 1 0 auto;
}
.topper-blog .search__form .search__submit-btn:hover,
.topper-blog .search__form .search__submit-btn:active,
.topper-blog .search__form .search__submit-btn:focus {
  background: #F89E1C;
  opacity: 1;
  cursor: pointer;
}
.topper-blog .author__eyebrow {
  margin-bottom: 1rem;
}

#search-form__wrap {
  order: 2;
}
#search-form__wrap .search__input {
  background-color: #fff;
  color: #211D22;
}

.search__form {
  display: flex;
}
.search__form .search__col--input {
  margin-right: 1rem;
}
.search__form .search__input {
  font-size: 14px;
}
.search__form .search__col--submit {
  flex: 1 0 auto;
}
.search__form .search__submit-btn:hover,
.search__form .search__submit-btn:active,
.search__form .search__submit-btn:focus {
  background: #F89E1C;
  opacity: 1;
  cursor: pointer;
}

/* Sidebar */
.sidebar {
  min-width: 230px;
  padding-bottom: 10rem;
  width: 25%;
  display: none;
}
@media (min-width: 960px) {
  .sidebar {
    display: block;
  }
}
.sidebar .btn,
.sidebar .wp-block-button a,
.sidebar [type=submit],
.sidebar input[type=submit] {
  padding-left: 16px;
  padding-right: 16px;
}

.sidebar__wrap {
  position: sticky;
  top: 3rem;
}

.sidebar__item {
  margin-bottom: 5rem;
}
.sidebar__item h5 {
  margin-bottom: 1rem;
}

.pagination {
  display: flex;
  margin-bottom: 60px;
  justify-content: center;
}

ul.page-numbers {
  align-items: center;
}
ul.page-numbers svg {
  height: 52px;
}
ul.page-numbers svg:hover, ul.page-numbers svg:active {
  fill: #FD570D;
}
ul.page-numbers .current,
ul.page-numbers a {
  font-size: 1.3rem;
  font-weight: bold;
}
ul.page-numbers a {
  color: #7a777a;
  text-decoration: none;
}
ul.page-numbers a:hover, ul.page-numbers a:active {
  color: #FD570D;
}

/* Events Calendar styles */
.tribe-common a {
  color: #FD570D;
}

.tribe-mini-calendar-event {
  display: flex;
  flex-flow: row wrap;
}
.tribe-mini-calendar-event .list-date {
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  width: 100%;
}
.tribe-mini-calendar-event .list-info {
  font-size: 14px;
}
.tribe-mini-calendar-event .tribe-events-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 10px;
  margin-top: 0;
}
.tribe-mini-calendar-event .tribe-events-title a {
  color: #FD570D;
}
.tribe-mini-calendar-event .tribe-events-title a:hover, .tribe-mini-calendar-event .tribe-events-title a:active {
  text-decoration: none;
}

.tribe-events-widget-events-list .tribe-events-widget-events-list__event-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 10px;
}
.tribe-events-widget-events-list .tribe-events-widget-events-list__event-wrapper {
  margin-left: 1rem;
}
.tribe-events-widget-events-list .tribe-events-widget-events-list__event-datetime-wrapper {
  font-size: 12px;
}
.tribe-events-widget-events-list .tribe-events-widget-events-list__event-date-tag-month {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.7;
}
.tribe-events-widget-events-list .tribe-events-widget-events-list__event-date-tag-daynum {
  font-size: 2rem;
}

.tribe-events-widget-link a {
  font-size: 14px;
}

.tribe-events-single-event-title {
  font-size: 2.5rem;
}

.tribe-events-schedule h2 {
  font-size: 1rem;
  font-weight: normal;
}

.tribe-events-single-event-description p:first-child {
  border-bottom: 2px dashed #1781fa;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

.single-tribe_events .tribe_events a,
.single-tribe_events #tribe-events-footer a {
  color: #FD570D;
}
.single-tribe_events #tribe-events-footer {
  border-top: 2px dashed #1781fa;
  padding-top: 2rem;
  margin-top: 2rem;
}
.single-tribe_events .tribe-events-c-subscribe-dropdown__content {
  width: 250px;
}
.single-tribe_events .tribe-events-c-subscribe-dropdown__button {
  background: transparent;
  border: 2px solid #211d22;
  padding: 13px 30px;
  border-radius: 3px;
  color: #211d22;
  width: auto;
  display: inline-block;
}
.single-tribe_events .tribe-events-c-subscribe-dropdown__button:hover, .single-tribe_events .tribe-events-c-subscribe-dropdown__button:active {
  background: #211d22;
  color: #fff;
}
.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__list-item a {
  color: #FD570D;
}
.single-tribe_events .tribe-events-event-meta {
  width: 100%;
}
.single-tribe_events .tribe-events-single-section-title {
  font-size: 1.25rem;
}
.single-tribe_events .tribe-recurring-event-time {
  display: inline-block;
}
.single-tribe_events .tribe-events-meta-group-details dt {
  font-weight: bold;
}
.single-tribe_events .tribe-events-meta-group-organizer {
  display: none;
}

.tribe-common-b3 {
  font-size: 1rem;
  font-weight: normal;
  text-transform: uppercase;
}

.tribe-common--breakpoint-medium.tribe-common .tribe-common-h4 {
  font-size: 1.75rem;
}

.tribe-common .tribe-common-h8 {
  font-size: 0.85rem;
  font-weight: normal;
}
.tribe-common .tribe-common-h8 a {
  color: #FD570D;
}

.tribe-events-calendar-month__day-date-link {
  color: #211d22 !important;
  text-decoration: none;
}

.tribe-events-calendar-month__calendar-event-datetime {
  font-size: 12px;
}

.tribe-events .tribe-events-calendar-month__day--past .tribe-events-calendar-month__day-date {
  opacity: 0.6;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-month__body {
  border-top: 1px solid #211d22;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-month__week {
  border-left: 1px solid #211d22;
}

.tooltipster-content {
  background: #fff;
  padding: 2rem !important;
  width: 300px;
}

.tribe-events-calendar-month__calendar-event-tooltip {
  color: #211d22;
}

.tribe-events-calendar-month__calendar-event-tooltip-datetime {
  font-size: 10px;
  margin: 2rem;
}

.tribe-events-calendar-month__calendar-event-tooltip-title {
  font-size: 1.5rem;
}
.tribe-events-calendar-month__calendar-event-tooltip-title a {
  color: #FD570D;
  display: block;
  margin-bottom: 1rem;
}

.tribe-events-calendar-month__calendar-event-tooltip-description p {
  font-size: 12px;
  text-transform: none;
}

.tribe-events-c-view-selector__content {
  background: #fff;
  box-shadow: 0 2px 5px 0 #211d22;
  width: auto;
}

.tribe-events .tribe-events-c-view-selector__list-item-icon {
  height: auto;
}

.tribe-events-c-view-selector__list-item-text {
  word-break: normal;
}

.tribe-events .tribe-events-calendar-list__event-title-link {
  color: #FD570D;
  transition: none;
}
.tribe-events .tribe-events-calendar-list__event-title-link:hover, .tribe-events .tribe-events-calendar-list__event-title-link:active {
  color: #211d22;
  text-decoration: none;
}
.tribe-events .tribe-events-calendar-list__event-title-link:visited {
  color: #211d22;
}

.tribe-events-calendar-list-nav {
  display: none !important;
}

.tribe-events .tribe-events-calendar-list__event-date-tag-weekday {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.7;
}

.tribe-common .tribe-common-h5 {
  font-size: 2rem;
}

.tribe-events .tribe-events-c-top-bar__datepicker-button {
  font-size: 22px;
}

.tribe-events .tribe-events-c-top-bar__datepicker-button-icon-svg {
  display: inline-block;
  height: 8px;
  margin-left: 1rem;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-view-selector__button-icon {
  height: auto;
  margin-right: 0.5rem;
}

.tribe-events .tribe-events-c-view-selector .tribe-events-c-view-selector__button-text {
  clip: auto !important;
  height: auto !important;
  margin: 0 !important;
  position: static !important;
  width: auto !important;
  flex: auto !important;
  font-size: 1rem;
}

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