@charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
:root {
  --color__background-body: #FAFAFA;
  --color__background-hr: #636363;
  --color__text-main: #000000;
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/JetBrainsMono-Regular.woff2") format("woff2");
  font-display: auto;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/JetBrainsMono-Bold.woff2") format("woff2");
  font-display: auto;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/JetBrainsMono-ExtraBold.woff2") format("woff2");
  font-display: auto;
}
:root {
  --font__main: JetBrains Mono, Monaco, Consolas, monospace;
  --font__alt: JetBrains Mono, Monaco, Consolas, monospace;
}

/*--------------------------------------------------------------
## Notes from Style Guide
--------------------------------------------------------------*/
:root {
  --size__site-narrow: 40rem;
  --size__site-main: 78rem;
}

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
html {
  font-size: 87.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
select,
optgroup,
textarea {
  color: var(--color__text-main);
  font-family: var(--font__main);
  font-size: 1rem;
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  letter-spacing: 0.0125em;
  margin-bottom: 0.5em;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
}

h1 {
  font-size: var(--wp--preset--font-size--gigantic);
}

h2 {
  font-size: var(--wp--preset--font-size--huge);
}

h3 {
  font-size: var(--wp--preset--font-size--x-large);
}

h4 {
  font-size: var(--wp--preset--font-size--large);
}

h5 {
  font-size: var(--wp--preset--font-size--normal);
}

h6 {
  font-size: var(--wp--preset--font-size--normal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.is-style-alternate, .site-aside h2 {
  color: #636363;
  font-family: var(--font__alt);
  font-size: var(--wp--preset--font-size--normal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

p {
  margin-top: 1em;
  margin-bottom: 1.5em;
}

dfn,
cite,
i {
  font-style: italic;
}

strong,
b {
  font-weight: 800;
}

blockquote,
.wp-blockquote {
  border-left: 5px solid #c8c8c8;
  margin: 2rem 0;
  padding-left: 1rem;
}
blockquote p,
.wp-blockquote p {
  font-size: var(--wp--preset--font-size--large);
  margin-bottom: 0;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #e5e5e5;
  font-family: "Courier 10 Pitch", Courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #FAFAFA;
  text-decoration: none;
}

.has-x-large-font-size,
.has-huge-font-size,
.has-gigantic-font-size {
  line-height: 1.25;
}

.meta {
  color: #636363;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

::selection {
  background-color: #D14905;
  color: #ffffff;
}

/* Elements
--------------------------------------------- */
/*--------------------------------------------------------------
## Icon Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Icon Font
--------------------------------------------------------------*/
@font-face {
  font-family: "ahub-icons";
  src: url("../icons/ahub-icons.ttf?vv7r73") format("truetype"), url("../icons/ahub-icons.woff?vv7r73") format("woff"), url("../icons/ahub-icons.svg?vv7r73#ahub-icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "ahub-icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.menu-icon > a:before {
  margin-right: 0.5em;
  vertical-align: -0.05em;
}

.icon-arrow-right,
.menu-icon.arrow-right > a {
  display: inline-block;
}
.icon-arrow-right:before,
.menu-icon.arrow-right > a:before {
  content: "▷";
}

.icon-arrow-down:before,
.menu-icon.arrow-down > a:before {
  content: "⬇";
}

.icon-arrow-left:before,
.menu-icon.arrow-left > a:before {
  content: "⬅";
}

.icon-arrow-up:before,
.menu-icon.arrow-up > a:before {
  content: "⬈";
}

.icon-arrow-down-double:before,
.menu-icon.arrow-down-double > a:before {
  content: "⤓";
}

.icon-arrow-left-double:before,
.menu-icon.arrow-left-double > a:before {
  content: "⤆";
}

.icon-arrow-right-double:before,
.menu-icon.arrow-right-double > a:before {
  content: "⤇";
}

.icon-arrow-up-double:before,
.menu-icon.arrow-up-double > a:before {
  content: "⤊";
}

.icon-bookmark:before,
.menu-icon.bookmark > a:before {
  content: "✻";
}

.icon-camera:before,
.menu-icon.camera > a:before {
  content: "⚭";
}

.icon-clock:before,
.menu-icon.clock > a:before {
  content: "⏲";
}

.icon-heart:before,
.menu-icon.heart > a:before {
  content: "♡";
}

.icon-home:before,
.menu-icon.home > a:before {
  content: "⌂";
}

.icon-person:before,
.menu-icon.person > a:before {
  content: "⍤";
}

.icon-project:before,
.menu-icon.project > a:before {
  content: "⌘";
}

.icon-circle:before,
.menu-icon.circle > a:before {
  content: "◯";
}

.icon-exit:before,
.menu-icon.exit > a:before {
  content: "➔";
}

.icon-info:before,
.menu-icon.info > a:before {
  content: "☊";
}

.icon-moon:before,
.menu-icon.moon > a:before {
  content: "🌙";
}

.icon-music:before,
.menu-icon.music > a:before {
  content: "♬";
}

.icon-rss:before,
.menu-icon.rss > a:before {
  content: "✦";
}

.icon-search:before,
.menu-icon.search > a:before {
  content: "🔎";
}

.icon-star:before,
.menu-icon.star > a:before {
  content: "✩";
}

.icon-sun:before,
.menu-icon.sun > a:before {
  content: "🌞";
}

.icon-talk:before,
.menu-icon.talk > a:before {
  content: "☏";
}

.icon-triangle:before,
.menu-icon.triangle > a:before {
  content: "▴";
}

.icon-globe:before,
.menu-icon.globe > a:before {
  content: "🌑";
}

.icon-new-window:before,
.menu-icon.new-window > a:before {
  content: "◱";
}

.icon-circle-arrow-up:before,
.menu-icon.circle-arrow-up > a:before {
  content: "▲";
}

.icon-mail:before {
  content: "\e902";
}

.icon-facebook:before {
  content: "\e900";
}

.icon-twitter:before {
  content: "\e903";
}

.icon-instagram:before {
  content: "\e901";
}

.wp-block-separator,
hr {
  background-color: var(--color__background-hr);
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0;
}

ul {
  list-style: square;
  padding-left: 1.125em;
}

ol {
  list-style: decimal;
  padding-left: 2em;
}

.site-content li {
  margin-bottom: 1rem;
}

li > ul,
li > ol {
  margin-left: 1em;
  margin-top: 1em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure videos, embeds, and iframes fit their containers. */
video,
embed,
iframe,
object {
  max-width: 100%;
}

.wp-block-embed__wrapper {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}
.wp-block-embed__wrapper iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

td {
  border-top: 1px solid #c8c8c8;
}

/* Links
--------------------------------------------- */
.tribe-events .tribe-events-c-nav__next, .tribe-events .tribe-events-c-nav__prev, a {
  color: var(--wp--preset--color--accent);
  text-decoration-color: #e5e5e5;
  text-decoration-thickness: 0.125em;
  text-underline-offset: 0.285em;
  transition: all 0.125s;
}
.tribe-events .tribe-events-c-nav__next:focus, .tribe-events .tribe-events-c-nav__prev:focus, a:focus {
  outline: thin dotted;
}
.tribe-events .tribe-events-c-nav__next:hover, .tribe-events .tribe-events-c-nav__prev:hover, a:hover, .tribe-events .tribe-events-c-nav__next:active, .tribe-events .tribe-events-c-nav__prev:active, a:active {
  text-decoration-color: #000000;
  outline: 0;
}

.site-content a {
  font-weight: 800;
}

.link-external a::after {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "ahub-icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "▷";
  position: absolute;
  transform: rotate(-45deg);
  transform-origin: right;
}

/* Forms
--------------------------------------------- */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  line-height: 1;
  padding: 0.75em;
  text-decoration: none;
  white-space: nowrap;
  background: #D14905;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.125s;
}

.icon-button {
  background: none;
  border: 0;
  font-weight: normal;
}
.icon-button:hover {
  box-shadow: none;
}

.wp-block-button__link {
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  line-height: 1;
  padding: 0.75em;
  text-decoration: none;
  white-space: nowrap;
  background: #D14905;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wp-block-buttons .wp-block-button {
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  border: 0;
  border-radius: 0.25rem;
  box-shadow: inset 0px 1px 4px rgba(170, 170, 170, 0.8);
  color: #666;
  max-width: 100%;
  padding: 0.5rem;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #111;
}

select {
  box-shadow: inset 0px 1px 4px rgba(170, 170, 170, 0.8);
}

textarea {
  width: 100%;
}

label {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
label + input {
  display: block;
}
.comment-form-cookies-consent label {
  letter-spacing: 0;
  text-transform: none;
}

input[type=search],
.wp-block-search__input {
  border: 1px solid #e5e5e5;
}

.wp-block-search__inside-wrapper {
  background: var(--wp--preset--color--white);
  padding: 0 0 0 0.5em;
}
.wp-block-search__button-inside .wp-block-search__input,
.wp-block-search__button-inside .wp-block-search__button {
  border: 0;
}
.wp-block-search__button-inside .wp-block-search__button {
  background: transparent;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Containers / Wrapping
--------------------------------------------------------------*/
.site-main,
.site-footer {
  padding-left: 1rem;
  padding-right: 1rem;
}

.site-main {
  display: grid;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-areas: "logo nav" "sidebar sidebar" "main main" "footer footer";
  grid-template-columns: 10rem 1fr;
  grid-template-rows: min-content 1fr;
}
@media screen and (min-width: 64rem) {
  .site-main {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--size__site-main);
  }
}

.site-branding {
  grid-area: logo;
}

.site-aside {
  grid-area: sidebar;
}

.desktop-navigation {
  grid-area: nav;
}

.site-content {
  grid-area: main;
  padding-bottom: 2rem;
  width: 100%;
}

.page-footer {
  grid-area: footer;
}

@media screen and (min-width: 46rem) {
  .site-content {
    min-height: 20rem;
  }
}
@media screen and (min-width: 64rem) {
  .site-main {
    grid-column-gap: 2rem;
    grid-row-gap: 6rem;
    grid-template-areas: "logo nav" "sidebar main" "sidebar footer";
    grid-template-columns: 10rem 1fr;
  }

  .site-content {
    min-height: 32rem;
  }
}
.tax-ahub_medium .site-content {
  display: flex;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}
.tax-ahub_medium .site-content .grid-col {
  flex: 1;
}
.tax-ahub_medium .site-content .card_image {
  margin: 0.25rem;
}
@media screen and (min-width: 46rem) {
  .tax-ahub_medium .site-content {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .tax-ahub_medium .site-content .card_image {
    margin: 0.5rem;
  }
}

@media screen and (min-width: 78rem) {
  .site-main,
.site-footer {
    padding-left: 0;
    padding-right: 0;
  }
}
.home .site-main {
  grid-template-areas: "logo nav" "main main" "sidebar sidebar" "secondary secondary";
}
.home .site-content {
  min-height: auto;
  padding-bottom: 0;
}
.home .secondary-content {
  grid-area: secondary;
}
@media screen and (min-width: 64rem) {
  .home .site-main {
    grid-column-gap: 2rem;
    grid-row-gap: 6rem;
    grid-template-areas: "logo nav" "sidebar main" "sidebar secondary";
  }
}

html {
  overflow-x: hidden;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
/*--------------------------------------------------------------
## Site Header
--------------------------------------------------------------*/
:root {
  --masthead-height: 5.5rem;
}
@media screen and (min-width: 46rem) {
  :root {
    --masthead-height: 8rem;
  }
}

div.site-branding {
  display: flex;
  flex-direction: column;
  height: var(--masthead-height);
  max-width: 12rem;
  text-transform: lowercase;
}
div.site-branding .site-title {
  font-size: var(--wp--preset--font-size--large);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0;
}
div.site-branding a {
  color: var(--color__text-main);
  text-decoration: none;
}
div.site-branding .site-description {
  font-size: var(--wp--preset--font-size--small);
  margin: 0;
}
.site-main div.site-branding {
  justify-content: flex-end;
}
@media screen and (min-width: 46rem) {
  div.site-branding {
    margin-bottom: -0.5rem;
  }
}

/*--------------------------------------------------------------
## Mobile Nav (Drawer)
--------------------------------------------------------------*/
.mobile-navigation {
  align-self: center;
  text-transform: lowercase;
}
.mobile-navigation .menu {
  font-size: 1.75rem;
  list-style: none;
  margin-bottom: 2rem;
  padding-left: 0;
}
.mobile-navigation .menu a {
  display: block;
  text-decoration: none;
}
.mobile-navigation.toggled {
  z-index: 9;
}
.mobile-navigation .main-menu-container a {
  color: var(--wp--preset--color--white);
}
.mobile-navigation .secondary-menu-container a {
  color: var(--wp--preset--color--primary);
}
@media screen and (min-width: 46rem) {
  .mobile-navigation {
    display: none;
  }
}

.mobile-nav-container {
  background: var(--wp--preset--color--accent);
  height: calc(100vh - var(--masthead-height));
  display: none;
  min-width: 16rem;
  opacity: 0;
  overflow-y: auto;
  padding: 3rem 2rem;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: var(--masthead-height);
  transition: all 0.25s ease-out;
  width: 100%;
}
.toggled .mobile-nav-container {
  display: block;
  opacity: 1;
  pointer-events: all;
}

.mobile-navigation-open {
  overflow: hidden;
}
.mobile-navigation-open body {
  background: var(--wp--preset--color--accent);
}

/*--------------------------------------------------------------
## Menu Toggle
--------------------------------------------------------------*/
.menu-toggle {
  background: transparent;
  box-shadow: 0;
  display: block;
  float: right;
  height: 3rem;
  padding: 0;
  position: relative;
  width: 3rem;
  z-index: 9;
}
.menu-toggle:hover, .menu-toggle:focus, .menu-toggle:active {
  background: transparent;
  box-shadow: none;
}

.menu-toggle .icon {
  background: #000000;
  display: block;
  height: 0.165rem;
  position: absolute;
  top: 1.375rem;
  transition: background 0s 0.15s;
  left: 0.75rem;
  right: 0.75rem;
}
.menu-toggle .icon::before, .menu-toggle .icon::after {
  background-color: #000000;
  content: "";
  display: block;
  height: 0.165rem;
  left: 0;
  position: absolute;
  transition-duration: 0.15s, 0.15s;
  transition-delay: 0.15s, 0s;
  width: 100%;
}
.menu-toggle .icon::before {
  top: -0.45rem;
  transition-property: top, transform;
}
.menu-toggle .icon::after {
  bottom: -0.45rem;
  transition-property: bottom, transform;
}
.toggled .menu-toggle .icon {
  background: none;
}
.toggled .menu-toggle .icon::before {
  top: 0;
  transform: rotate(45deg);
}
.toggled .menu-toggle .icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.toggled .menu-toggle .icon::before, .toggled .menu-toggle .icon::after {
  background-color: #000000;
  transition-delay: 0s, 0.15s;
}

/*--------------------------------------------------------------
## Desktop Nav
--------------------------------------------------------------*/
.desktop-navigation {
  align-items: flex-end;
  align-self: end;
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
  text-transform: lowercase;
}
.desktop-navigation a {
  color: var(--color__text-main);
  text-decoration: none;
}
.desktop-navigation .menu {
  height: 100%;
  list-style: none;
  padding-left: 0;
}
.desktop-navigation .menu-item {
  display: inline-flex;
  margin-right: 1.2rem;
}
.desktop-navigation .menu-item > a:hover::before,
.desktop-navigation .menu-item > a:focus::before,
.desktop-navigation .current_page_item > a::before,
.desktop-navigation .current-menu-item > a::before,
.desktop-navigation .current_page_ancestor > a::before,
.desktop-navigation .current-menu-ancestor > a::before,
.desktop-navigation .current_page_parent > a::before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "ahub-icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "⬇";
  position: absolute;
  transform: translateY(-100%);
}
.desktop-navigation .menu-item > a:hover,
.desktop-navigation .menu-item > a:focus {
  color: var(--wp--preset--color--accent);
}
.desktop-navigation .current_page_item > a,
.desktop-navigation .current-menu-item > a,
.desktop-navigation .current_page_ancestor > a,
.desktop-navigation .current-menu-ancestor > a,
.desktop-navigation .current_page_parent > a {
  font-weight: 800;
}
@media screen and (min-width: 46rem) {
  .desktop-navigation {
    display: flex;
  }
}

.desktop-utility {
  display: none;
}
@media screen and (min-width: 46rem) {
  .desktop-utility {
    display: inline-flex;
    align-items: center;
  }
}

/*--------------------------------------------------------------
## Search Form
--------------------------------------------------------------*/
.popover {
  display: none;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
}
.searchform-open .popover {
  display: block;
}
.popover .wrapper {
  height: 100%;
  overflow-y: auto;
  padding: 2rem 1rem;
}
@media screen and (min-width: 46rem) {
  .popover .wrapper {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.popover .tags-links {
  margin-top: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--size__site-main);
  text-align: center;
}
.popover .tags-links a {
  margin-right: 0;
}

.toggle-searchform {
  align-items: center;
  border-top: 0;
  color: var(--color__text-main);
  display: flex;
  text-decoration: none;
}

.icon-search {
  border-radius: 50%;
  display: block;
  font-size: 1.5rem;
  height: 3rem;
  line-height: 2.875rem;
  transition: all 0.125s;
  width: 3rem;
}

.search-submit {
  margin-left: 1rem;
}

.cancel-search {
  padding: 1rem;
}
.cancel-search a {
  font-weight: 800;
}

.site-footer {
  background: #e5e5e5;
  padding-top: 3rem;
  position: relative;
  z-index: 3;
}
.site-footer a {
  color: #636363;
  text-decoration-color: rgba(170, 170, 170, 0.25);
}
.site-footer a:hover, .site-footer a:focus {
  text-decoration-color: rgba(170, 170, 170, 0.75);
}
.site-footer .primary-navigation {
  display: flex;
}
.site-footer .menu {
  flex: 10rem;
  list-style: none;
  padding-left: 0;
  text-transform: lowercase;
}
.site-footer .menu-item a {
  display: block;
  padding-top: 1em;
  padding-right: 1em;
}

.site-info {
  color: #636363;
  margin-top: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.site-info p {
  font-size: var(--wp--preset--font-size--small);
}
.site-info a + a {
  margin-left: 1em;
  position: relative;
}
.site-info a + a::before {
  color: #aaaaaa;
  content: "|";
  left: -1em;
  position: absolute;
}
.site-info .wp-block-image {
  width: 10rem;
}

@media screen and (min-width: 46rem) {
  .site-footer .primary-navigation {
    display: block;
  }
  .site-footer .menu {
    display: inline-flex;
    flex-wrap: wrap;
    width: auto;
  }
  .site-footer .menu-item {
    margin-right: 1rem;
  }

  .site-footer .wrap {
    display: grid;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-areas: "logo nav" "secondary secondary";
    grid-template-columns: 10rem 1fr;
  }
}
@media screen and (min-width: 46rem) and (min-width: 64rem) {
  .site-footer .wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--size__site-main);
  }
}
@media screen and (min-width: 46rem) {
  .site-info {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    grid-area: secondary;
  }
  .site-info p + p::before {
    color: #aaaaaa;
    content: "|";
    display: inline;
    padding-left: 1em;
    padding-right: 1em;
  }
  .site-info .wp-block-image {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 63.9rem) {
  .site-aside h2 {
    display: none;
  }
}

.medium-list {
  display: none;
}
.medium-list a {
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--primary);
  border-top: 0;
  color: var(--color__text-main);
  display: block;
  padding: 0.75em;
  text-decoration: none;
}
.medium-list a:focus, .medium-list a:hover, .medium-list a.current_page_item {
  color: var(--wp--preset--color--accent);
}
@media screen and (min-width: 64rem) {
  .medium-list {
    display: block;
    padding-bottom: 4rem;
  }
  .medium-list a {
    background: transparent;
    border: none;
    padding: 0.375em 0;
  }
}

.toggle-filters {
  align-items: center;
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--primary);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 0.75em;
  text-decoration: none;
  text-transform: lowercase;
}
.filters-open .toggle-filters .icon-arrow-down {
  transform: rotate(-180deg);
}
@media screen and (min-width: 64rem) {
  .toggle-filters {
    display: none;
  }
}

/*--------------------------------------------------------------
## Page Header Title & Description
--------------------------------------------------------------*/
.page-header {
  padding-top: 3rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 64rem) {
  .page-header {
    padding-top: 4rem;
  }
  .page-header .page-title,
.page-header p {
    margin-top: 0;
  }
  .page-header .page-title {
    margin-right: 2rem;
  }
  .page-header .widget_text {
    display: flex;
  }
  .page-header .textwidget {
    flex: 1;
  }
}

.comment-navigation,
.post-navigation {
  margin: 0 0 1.5em;
}
.comment-navigation .nav-links,
.post-navigation .nav-links {
  flex-direction: row-reverse;
}

.nav-links {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.nav-links > * {
  flex: 1;
}

.pagination {
  margin: 0 0 1.5em;
}

.nav-previous, .nav-next {
  align-content: center;
  display: flex;
}
.nav-previous {
  justify-content: end;
}
.nav-previous a {
  margin-left: auto;
}

.nav-title, .tribe-events-c-nav__next-label {
  border-bottom: 2px solid transparent;
  margin: 0 0.5rem;
  padding-top: 0.25em;
  transition: all 0.125s;
}
a .nav-title:hover, a .tribe-events-c-nav__next-label:hover, a .nav-title:focus, a .tribe-events-c-nav__next-label:focus {
  border-color: #aaaaaa;
}
@media screen and (max-width: 45.9rem) {
  .nav-title, .tribe-events-c-nav__next-label {
    font-size: var(--wp--preset--font-size--small);
  }
}

.nav-previous a,
.nav-next a,
.return-link a,
.archive-link a {
  align-items: center;
  display: inline-flex;
  text-decoration: none;
  text-transform: lowercase;
}

.nav-previous,
.nav-next,
.return-link {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.nav-previous .icon-arrow,
.nav-next .icon-arrow,
.return-link .icon-arrow {
  font-size: 1.25rem;
}

.post-navigation + .return-link {
  border-top: 1px solid #c8c8c8;
}

/*--------------------------------------------------------------
## Taxonomy Term Links
--------------------------------------------------------------*/
.tags-links,
.cat-links {
  margin-bottom: 1rem;
}
.tags-links a,
.cat-links a {
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  line-height: 1;
  padding: 0.75em;
  text-decoration: none;
  white-space: nowrap;
  background: #ffffff;
  color: var(--color__text-main);
  font-size: var(--wp--preset--font-size--tiny);
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  text-transform: lowercase;
}
.tags-links a:hover, .tags-links a:active, .tags-links a:focus,
.cat-links a:hover,
.cat-links a:active,
.cat-links a:focus {
  color: #D14905;
}
p + .tags-links,
p + .cat-links {
  border-top: 1px solid #e5e5e5;
  padding-top: 1rem;
}

.cat-links a {
  background-color: #e5e5e5;
}

/* Content
--------------------------------------------- */
body {
  background-color: var(--color__background-body);
}

/*--------------------------------------------------------------
## Entry Header
--------------------------------------------------------------*/
.entry-title {
  color: var(--color__text-main);
  display: inline-block;
  font-weight: 800;
}
a:focus .entry-title {
  color: var(--wp--preset--color--accent);
}

/*--------------------------------------------------------------
## Entry/Page Footer
--------------------------------------------------------------*/
.entry-footer,
.page-footer {
  border-top: 6px solid var(--wp--preset--color--accent);
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 46rem) {
  .entry-footer,
.page-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

/*--------------------------------------------------------------
## Artist Cards
--------------------------------------------------------------*/
.card_artist {
  display: grid;
  grid-column-gap: 1rem;
  grid-template-areas: "image" "text";
  margin-top: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
  position: relative;
}
.card_artist .entry-header {
  grid-area: text;
  padding: 1rem;
}
.card_artist .entry-title {
  font-size: var(--wp--preset--font-size--gigantic);
  margin-top: 0;
}
.card_artist .link_main::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.card_artist .entry-content {
  grid-area: image;
}
.card_artist img {
  width: 100%;
}
.card_artist .attachment {
  margin-top: 0;
}
.card_artist .tags-links a {
  position: relative;
  z-index: 1;
}
.archive .card_artist, .post-type-archive .card_artist, .home .card_artist {
  border-top: 6px solid var(--wp--preset--color--accent);
}
.archive .card_artist:hover, .post-type-archive .card_artist:hover, .home .card_artist:hover {
  border-color: var(--wp--preset--color--primary);
}
@media screen and (max-width: 45.9rem) {
  .single .card_artist {
    margin-top: 3rem;
  }
  .single .card_artist .entry-title {
    background: var(--color__background-body);
    padding: 0.5rem;
    position: fixed;
    top: calc(var(--masthead-height) + 1rem);
    left: 0.5rem;
    z-index: 2;
  }
}
@media screen and (min-width: 46rem) {
  .card_artist {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-areas: "text image";
    grid-template-columns: 20rem 1fr;
    margin-left: 0;
    margin-right: 0;
  }
  .card_artist .entry-header {
    padding-left: 0;
    padding-right: 0;
  }
  .card_artist .entry-title {
    background: var(--color__background-body);
    position: sticky;
    top: 2rem;
    z-index: 2;
  }
  .search-results .card_artist .entry-title, .single .card_artist .entry-title {
    position: static;
  }
  .single .card_artist .entry-header .wrap {
    background: var(--color__background-body);
    position: sticky;
    top: 2rem;
    z-index: 2;
  }
}

/*--------------------------------------------------------------
## Image Cards
--------------------------------------------------------------*/
.card_image {
  display: inline-block;
  margin: 0;
}
.card_image p {
  margin: 0;
}

/*--------------------------------------------------------------
## Blog
--------------------------------------------------------------*/
.card_post {
  display: grid;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-areas: "header" "image" "text";
}
.card_post .cat-links,
.card_post .entry-title {
  grid-area: header;
}
.card_post .entry-content {
  grid-area: text;
}
.card_post .post-thumbnail {
  grid-area: image;
}
@media screen and (min-width: 46rem) {
  .card_post {
    grid-column-gap: 2rem;
    grid-template-areas: "header image" "text image";
    grid-template-columns: 20rem 1fr;
    grid-template-rows: auto 1fr;
  }
}

.blog .card_post {
  border-bottom: 1px solid #c8c8c8;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

@media screen and (min-width: 46rem) {
  .single-post .entry-content {
    max-width: var(--size__site-narrow);
  }
}

/*--------------------------------------------------------------
## Slider
## this is a container that scrolls horizontally only when needed
--------------------------------------------------------------*/
.slider {
  overflow-x: auto;
}
.slider .container {
  align-items: start;
  display: flex;
  justify-content: space-between;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  min-width: 60rem;
}

.slide {
  border: 1px solid #aaaaaa;
  flex: 1;
  position: relative;
  scroll-snap-align: start;
}
.slide + .slide {
  margin-left: 1rem;
}

/*--------------------------------------------------------------
## Miscellaneous
--------------------------------------------------------------*/
.archive-link {
  color: var(--wp--preset--color--accent);
  font-weight: 800;
  text-decoration: none;
  text-transform: lowercase;
}
.archive-link:focus, .archive-link:hover {
  color: var(--color__text-main);
}
@media screen and (min-width: 64rem) {
  .archive-link::after {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "ahub-icons" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    content: "▷";
    margin-left: 0.5em;
  }
}

.updated:not(.published) {
  display: none;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 2rem;
}
.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.wp-block-image {
  margin-bottom: 1rem;
}

.wp-block-media-text {
  grid-template-columns: 33% 1fr;
}

.site-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Captions
--------------------------------------------- */
figcaption {
  color: #636363;
  margin-top: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}

/* Galleries
--------------------------------------------- */
/*--------------------------------------------------------------
# Gallery Block
--------------------------------------------------------------*/
.wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
}
.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
  margin: 0 16px 16px 0;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.wp-block-gallery .blocks-gallery-image figure,
.wp-block-gallery .blocks-gallery-item figure {
  margin: 0;
  height: 100%;
}
.wp-block-gallery .blocks-gallery-image img,
.wp-block-gallery .blocks-gallery-item img {
  display: block;
  max-width: 100%;
  height: auto;
}
.wp-block-gallery .blocks-gallery-image img,
.wp-block-gallery .blocks-gallery-item img {
  width: 100%;
}
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-height: 100%;
  overflow: auto;
  padding: 40px 10px 5px;
  color: #fff;
  text-align: center;
  font-size: 13px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.3) 60%, transparent);
}
.wp-block-gallery .blocks-gallery-image figcaption img,
.wp-block-gallery .blocks-gallery-item figcaption img {
  display: inline;
}
.wp-block-gallery.is-cropped .blocks-gallery-image a, .wp-block-gallery.is-cropped .blocks-gallery-image img, .wp-block-gallery.is-cropped .blocks-gallery-item a, .wp-block-gallery.is-cropped .blocks-gallery-item img {
  width: 100%;
}
.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
  width: calc((100% - 16px) / 2);
}
.wp-block-gallery .blocks-gallery-image:nth-of-type(even),
.wp-block-gallery .blocks-gallery-item:nth-of-type(even) {
  margin-right: 0;
}
.wp-block-gallery.columns-1 .blocks-gallery-image, .wp-block-gallery.columns-1 .blocks-gallery-item {
  width: 100%;
  margin-right: 0;
}

@media (min-width: 600px) {
  .wp-block-gallery.columns-3 .blocks-gallery-image,
.wp-block-gallery.columns-3 .blocks-gallery-item {
    width: calc((100% - 32px) / 3);
    margin-right: 16px;
  }

  .wp-block-gallery.columns-4 .blocks-gallery-image,
.wp-block-gallery.columns-4 .blocks-gallery-item {
    width: calc((100% - 48px) / 4);
    margin-right: 16px;
  }

  .wp-block-gallery.columns-5 .blocks-gallery-image,
.wp-block-gallery.columns-5 .blocks-gallery-item {
    width: calc((100% - 64px) / 5);
    margin-right: 16px;
  }

  .wp-block-gallery.columns-6 .blocks-gallery-image,
.wp-block-gallery.columns-6 .blocks-gallery-item {
    width: calc((100% - 80px) / 6);
    margin-right: 16px;
  }

  .wp-block-gallery.columns-7 .blocks-gallery-image,
.wp-block-gallery.columns-7 .blocks-gallery-item {
    width: calc((100% - 96px) / 7);
    margin-right: 16px;
  }

  .wp-block-gallery.columns-8 .blocks-gallery-image,
.wp-block-gallery.columns-8 .blocks-gallery-item {
    width: calc((100% - 112px) / 8);
    margin-right: 16px;
  }

  .wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),
.wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),
.wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),
.wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),
.wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),
.wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),
.wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),
.wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),
.wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n) {
    margin-right: 0;
  }
}
.wp-block-gallery .blocks-gallery-image:last-child,
.wp-block-gallery .blocks-gallery-item:last-child {
  margin-right: 0;
}
.wp-block-gallery .blocks-gallery-item.has-add-item-button {
  width: 100%;
}
.wp-block-gallery.alignleft, .wp-block-gallery.alignright {
  max-width: 305px;
  width: 100%;
}
.wp-block-gallery.alignleft, .wp-block-gallery.aligncenter, .wp-block-gallery.alignright {
  display: flex;
}
.wp-block-gallery.aligncenter .blocks-gallery-item figure {
  justify-content: center;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* WPForms
--------------------------------------------- */
div.wpforms-container-full .wpforms-form .wpforms-field {
  padding-bottom: 2rem;
}

div.wpforms-container-full .wpforms-form em {
  background: #fbe79f;
  font-style: normal;
}

/* The Events Calendar
--------------------------------------------- */
div.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
  padding: 0;
}

.tribe-events-before-html p {
  font-size: var(--wp--preset--font-size--large);
  margin-bottom: 2rem;
}

.tribe-events .tribe-events-header {
  padding: 0;
}

.tribe-events .tribe-events-calendar-list__month-separator {
  border-top: 6px solid var(--wp--preset--color--accent);
  padding-top: 0.25em;
}
@media screen and (max-width: 45.9rem) {
  .tribe-events .tribe-events-calendar-list__month-separator {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    width: calc(100% + 5rem);
  }
}

/*--------------------------------------------------------------
## Event Cards (List View)
--------------------------------------------------------------*/
div.tribe-events .tribe-events-calendar-list__event-date-tag {
  display: none;
}
div.tribe-events .tribe-events-calendar-list__event-date-tag-datetime {
  background: #e5e5e5;
  height: auto;
  line-height: 2rem;
  padding: 0.25rem 0.25rem 0.65rem;
}
div.tribe-events .tribe-events-calendar-list__event-date-tag-weekday {
  font-size: var(--wp--preset--font-size--tiny);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
div.tribe-events .tribe-events-calendar-list__event-date-tag-daynum {
  font-size: var(--wp--preset--font-size--x-large);
}
@media screen and (min-width: 64rem) {
  div.tribe-events .tribe-events-calendar-list__event-date-tag {
    display: block;
  }
}

@media screen and (max-width: 45.9rem) {
  .tribe-events .tribe-events-calendar-list__event .tribe-events-calendar-list__event-featured-image-wrapper {
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 0;
    width: calc(100% + 2rem);
  }
}

.tribe-events-calendar-list__event-datetime-wrapper {
  font-size: var(--wp--preset--font-size--small);
}
.tribe-events-calendar-list__event-title {
  font-size: var(--wp--preset--font-size--large);
}
.tribe-events-calendar-list__event-venue {
  font-style: normal;
}

/*--------------------------------------------------------------
## Event Cards (Homepage)
--------------------------------------------------------------*/
.events-list {
  margin-top: 2rem;
}

.card_event .text {
  padding: 1rem;
}
.card_event-datetime-wrapper {
  font-size: var(--wp--preset--font-size--small);
}
.card_event-title {
  font-size: var(--wp--preset--font-size--large);
  margin-top: 0;
}
.card_event-title a {
  color: var(--color__text-main);
}
.card_event-venue {
  font-size: var(--wp--preset--font-size--small);
}

/*--------------------------------------------------------------
## Navigation
--------------------------------------------------------------*/
.tribe-events-c-nav__next-label {
  font-size: var(--wp--preset--font-size--normal);
}

.tribe-events .tribe-events-c-nav__next, .tribe-events .tribe-events-c-nav__prev {
  letter-spacing: 0;
  position: relative;
  text-transform: lowercase;
}
.tribe-events .tribe-events-c-nav__next[disabled], .tribe-events .tribe-events-c-nav__prev[disabled] {
  background: none;
  border: 0;
  color: #aaaaaa;
}
.tribe-events .tribe-events-c-nav__next::after, .tribe-events .tribe-events-c-nav__prev::before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "ahub-icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: absolute;
}
.tribe-events .tribe-events-c-nav__next::after {
  content: "▷";
  right: -1.25em;
}
.tribe-events .tribe-events-c-nav__prev::before {
  content: "⬅";
  left: -1.25em;
}
.tribe-events .tribe-events-c-nav__list-item--today {
  display: none;
}

/*--------------------------------------------------------------
## Event Single
--------------------------------------------------------------*/
.tribe-events-schedule {
  font-size: var(--wp--preset--font-size--large);
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text, .tribe-common-a11y-visual-hide {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus, .tribe-common-a11y-visual-hide:focus {
  background-color: #e5e5e5;
  border-radius: 0.25rem;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.aligncenter {
  text-align: center;
}

@media screen and (min-width: 30rem) {
  .alignleft {
    /*rtl:ignore*/
    float: left;
    /*rtl:ignore*/
    margin-right: 1rem;
    margin-bottom: 1rem;
  }

  .alignright {
    /*rtl:ignore*/
    float: right;
    /*rtl:ignore*/
    margin-left: 1rem;
    margin-bottom: 1rem;
  }
}

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