/* Global styles */
@font-face {
  font-family: "Noe Display";
  src: url("../fonts/NoeDisplay-Bold.woff");
  font-weight: 700;
}
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-dark: #6d6e71;
  --color-gray-medium: #555555;
  --color-body: #E5E5E5;
  --font-family-inter: "Inter", sans-serif;
  --font-family-noe: "Noe Display", serif;
  --font-family-acumin: "acumin-pro", sans-serif;
  --font-family-dm-sans: "DM Sans", sans-serif;
}

body, html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family-inter);
  background-color: var(--color-body);
  color: var(--color-black);
  overflow-x: hidden;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

embed,
iframe,
object {
  max-width: 100%;
}

input, select, option, textarea {
  font-family: inherit;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul, ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul, li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

p {
  margin: 0 0 1.5em;
}

strong,
.bold {
  font-weight: bold;
}

em {
  font-style: italic;
}

input[type=search],
input[type=submit],
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

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

/*Headings*/
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

h1,
.h1-like {
  font-family: "Noe Display", serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2,
.h2-like {
  font-family: "Noe Display", serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
}

h3,
.h3-like {
  font-family: "Noe Display", serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
}

h4,
.h4-like {
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: normal;
}

h5,
.h5-like {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: normal;
}

/*Links & Buttons*/
a {
  color: inherit;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  transition: all 0.3s cubic-bezier(0.755, 0.116, 0.25, 0.757);
}

a:hover {
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
}

.btn, .wp-element-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  font-family: var(--font-family-inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  background: white;
  text-transform: uppercase;
  border: 2px solid #000;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.755, 0.116, 0.25, 0.757);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border-radius: 0px;
  text-align: center;
  color: black;
  -webkit-text-decoration-color: transparent !important;
          text-decoration-color: transparent !important;
}

.btn-dark {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn-dark:hover {
  background-color: var(--color-gray-dark);
}

.btn-gray {
  background-color: var(--color-gray-dark);
  color: var(--color-white);
  border: 0px;
}

.btn-gray:hover {
  opacity: 0.8;
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-black);
}

.btn-outline-dark:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

.arrow-btn {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  gap: 10px;
}
.arrow-btn::after {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background-color: #fff;
  -webkit-mask: url("../svg/arrow-right.svg");
          mask: url("../svg/arrow-right.svg");
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: transform 0.3s cubic-bezier(0.755, 0.116, 0.25, 0.757);
}
.arrow-btn:hover::after {
  transform: translateX(4px);
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid currentColor;
  -webkit-animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
          animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}

@-webkit-keyframes l20-1 {
  0% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
            clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
            clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
            clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    -webkit-clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    -webkit-clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}

@keyframes l20-1 {
  0% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
            clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
            clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
            clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    -webkit-clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    -webkit-clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@-webkit-keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.cover-image {
  position: relative;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cover-image img {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.cover-image-link {
  display: block;
  overflow: hidden;
}
.cover-image-link .cover-image {
  transition: transform 0.4s cubic-bezier(0.755, 0.116, 0.25, 0.757);
}
.cover-image-link:hover .cover-image, .cover-image-link:focus .cover-image {
  transform: scale(1.1);
}

.screen-reader-text, .slick-visually-hidden {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          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, .slick-visually-hidden:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

.slick-controls {
  list-style-type: none;
  display: flex;
  gap: 8px;
  padding: 0px;
  margin: 0px;
  justify-content: center;
}

/*Layout*/
.body_cover {
  background-color: white;
  z-index: 1;
  position: relative;
  margin-bottom: 700px;
  padding-top: 212px;
}

.body_cover::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  height: 180px;
  background: white;
  -webkit-mask: url("../svg/logo.svg") no-repeat center top;
  -webkit-mask-size: cover;
  -webkit-mask: url("../svg/logo.svg") no-repeat center top;
          mask: url("../svg/logo.svg") no-repeat center top;
  mask-size: cover;
  pointer-events: none;
}

.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  background-color: var(--color-white);
}

.container {
  width: 90%;
  max-width: 1312px;
  margin: 0 auto;
}

.menu {
  list-style: none;
  margin: 0;
}

.category-tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--color-gray-dark);
  color: var(--color-white);
  font-family: var(--font-family-inter);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.98px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.share-widget, .share-widget-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
}
.share-widget-title {
  margin: 0;
}
.share-widget-menu li {
  width: 25px;
}
.share-widget-menu svg {
  display: block;
  width: 100%;
  height: auto;
  fill: currentColor;
}
.share-widget a {
  transition: color 0.2s ease;
}
.share-widget a:hover {
  color: var(--color-gray-dark);
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-pause {
  display: none;
}

/* Header Styles */
.site-header {
  background-color: var(--color-white);
  position: fixed;
  top: 0px;
  width: 100%;
  transition: all 350ms cubic-bezier(0.755, 0.116, 0.25, 0.757);
  z-index: 10;
}

.logged-in .site-header {
  top: 30px;
}

.header-container {
  max-width: 100%;
  margin: 0 auto;
}

.header-container.desktop {
  display: block;
}

.site-header .header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 24px;
}

.site-header .header-top .btn {
  font-size: 16px;
  font-family: var(--font-family-inter);
  font-weight: 700;
  padding: 10px 20px;
  margin: 0;
}

.site-header .header-logo {
  text-align: center;
  margin-bottom: 0px;
}

.site-header .header-logo img {
  width: 668px;
  max-width: 90%;
  margin: 0 auto;
  transition: all 350ms cubic-bezier(0.755, 0.116, 0.25, 0.757);
}

.site-header .header-nav-wrapper {
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  padding: 12px 0;
  transition: all 350ms cubic-bezier(0.755, 0.116, 0.25, 0.757);
  overflow: hidden;
}

.site-header .header-nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .search-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.site-header .main-navigation ul {
  display: flex;
  gap: 48px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.site-header .main-navigation ul li a {
  font-family: var(--font-family-inter);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-header .social-icons {
  display: flex;
  gap: 12px;
}

.site-header .social-icons img {
  width: 25px;
  height: 25px;
}

.site-header.shrink {
  padding-bottom: 0px;
}

.site-header.shrink .header-nav-wrapper {
  padding: 0px;
  max-height: 0px;
  border-top: 0px;
}

.site-header.shrink .header-logo img {
  width: 232px;
}

.header-container.mobile, .main-navigation.mobile {
  display: none;
}

@media (max-width: 1200px) {
  .site-header .main-navigation {
    gap: 24px;
  }

  .site-header .header-nav-bar {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .body_cover {
    padding-top: 120px;
  }

  .header-container.desktop {
    display: none;
  }

  .site-header .main-navigation ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .header-container.mobile {
    background: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
    display: block;
  }
  .header-container.mobile .header-top {
    justify-content: center;
    border-bottom: 1px solid #000;
    width: 100%;
    position: relative;
    margin-bottom: 0px;
  }
  .header-container.mobile .header-top .header-logo {
    width: 170px;
  }
  .header-container.mobile .header-top .header-icons {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 16px;
  }
  .header-container.mobile .header-nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    border: 0px;
  }

  .site-header .main-navigation.desktop {
    display: none;
  }

  .site-header .header-nav-bar {
    justify-content: space-between;
  }

  .site-header .header-top {
    padding: 24px 20px;
  }

  .main-navigation.mobile {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    max-height: 0vh;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.755, 0.116, 0.25, 0.757);
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }
  .main-navigation.mobile.active {
    max-height: 100vh;
    padding: 60px 20px 20px 20px;
  }

  .site-header.shrink .header-logo img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .site-header .header-top .btn {
    font-size: 12px;
    padding: 8px 12px;
  }

  .site-header .header-logo img {
    width: 100%;
  }
}
/* END OF HEADER */
/* Hero Styles */
.hero-section {
  padding: 60px 0;
}

.hero-grid {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.hero-image-wrapper {
  width: 635px;
  aspect-ratio: 1;
  flex-shrink: 0;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 614px;
}

.hero-headline {
  font-family: var(--font-family-noe);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -1.28px;
}

.hero-subhead {
  font-family: var(--font-family-inter);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}

.hero-body {
  font-family: var(--font-family-inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
}

.hero-author {
  font-family: var(--font-family-inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  padding-top: 12px;
}

@media (max-width: 1250px) {
  .hero-image-wrapper {
    max-width: 50%;
  }
}
@media (max-width: 992px) {
  .hero-grid {
    flex-direction: column;
  }

  .hero-image-wrapper {
    max-width: 100%;
    width: 100%;
  }

  .hero-text-wrapper {
    max-width: 100%;
    width: 100%;
  }

  .hero-headline {
    font-size: 48px;
  }
}
/* End Hero Styles */
/* CSS for Articles */
.articles-section {
  margin-bottom: 60px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px;
  margin-bottom: 60px;
}

.article-card {
  position: relative;
}
.article-card::before, .article-card::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--color-black);
  display: none;
}
.article-card::before {
  left: -29px;
}
.article-card::after {
  right: -29px;
}
.article-card:nth-child(3n+2)::before, .article-card:nth-child(3n+2)::after {
  display: block;
}
.article-card-image {
  width: 100%;
  margin-bottom: 32px;
}
.article-card-image .cover-image {
  padding-top: 100%;
}
.article-card-category {
  margin-bottom: 20px;
}
@media (min-width: 783px) {
  .hero-section .article-card {
    display: grid;
    gap: 60px;
    grid-template-columns: 48.6% 1fr;
  }
  .hero-section .article-card .article-card-image {
    margin: 2px;
  }
  .hero-section .article-card .article-card-title {
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
}

.article-card .card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.article-card h2 {
  font-family: var(--font-family-noe);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.8px;
}

.article-sub-title {
  font-family: var(--font-family-inter);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}

.article-card .body-text {
  font-family: var(--font-family-inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
}

.article-card .article-contributor {
  font-family: var(--font-family-inter);
  font-weight: 700;
  font-size: 16px;
  padding-top: 12px;
}

.author-name {
  text-transform: uppercase;
}

.view-all-wrapper {
  text-align: center;
}

@media (max-width: 992px) {
  .articles-grid {
    border-left: none;
    padding-left: 0;
  }

  .article-card {
    border-right: none;
    padding-right: 0;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-black);
  }

  .article-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
/* CSS for section section:ad-banner-1 */
.ad-banner {
  padding: 60px 0;
}

.ad-banner img {
  width: 100%;
}

/* CSS for events section */
.events-section {
  background-color: var(--color-black);
  color: var(--color-white);
  padding-top: 60px;
}

.events-section .container {
  max-width: 1440px;
  padding: 0 64px;
}

.events-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.events-header .btn {
  margin: 0;
}

.slider-nav {
  display: flex;
  gap: 10px;
}

.slider-nav button {
  background-color: var(--color-gray-dark);
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-image: url("../images/4016_2680.svg");
  background-position: center;
  background-repeat: no-repeat;
  color: transparent;
}

.slider-nav button.slick-next {
  background-image: url("../images/4016_2797.svg");
}

.events-grid {
  /*display: flex;*/
  gap: 50px;
  padding-bottom: 60px;
}
.events-grid .slick-dot button {
  background: #6D6E71;
}
.events-grid .slick-dot.slick-active button {
  background-color: var(--color-white);
}

.event-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 25px;
  padding-right: 25px;
}

.event-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

.event-date {
  font-family: var(--font-family-inter);
  font-weight: 700;
  font-size: 15px;
}

.event-card h3 {
  font-family: var(--font-family-noe);
  font-weight: 700;
  font-size: 39px;
  line-height: 1.1;
}

.events-cta-bar {
  background-color: var(--color-gray-dark);
  padding: 32px 0;
}

.events-cta-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.events-cta-content h3 {
  font-family: var(--font-family-inter);
  font-weight: 700;
  font-size: 32px;
}

@media (max-width: 768px) {
  .events-section .container {
    padding: 0 20px;
  }

  .events-cta-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .events-cta-content h3 {
    font-size: 24px;
  }
}
/* CSS for ad-banner-2 */
.ad-banner {
  padding: 60px 0;
}

.ad-banner img {
  width: 100%;
}

/* CSS for membership-cta */
.membership-cta-section {
  background-color: var(--color-gray-dark);
  color: var(--color-white);
  padding: 40px 0;
}

.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-text h2 {
  font-family: var(--font-family-inter);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -1.28px;
  margin-bottom: 24px;
}

.cta-text p {
  font-family: var(--font-family-inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  max-width: 690px;
}

.membership-cta-section .btn {
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-text h2 {
    font-size: 48px;
  }
}
/* CSS for print-journal */
.print-journal-section {
  padding: 80px 0;
}

.journal-grid {
  display: flex;
  gap: 70px;
  align-items: center;
  border: 1px solid #000;
}

.journal-image-wrapper {
  width: 638px;
  max-width: calc(50% - 70px);
}

.journal-image-wrapper img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.journal-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 558px;
  max-width: calc(50% - 70px);
}

.journal-text-wrapper h2 {
  font-family: var(--font-family-noe);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -1.28px;
}

.journal-text-wrapper .subhead {
  font-family: var(--font-family-inter);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}

.journal-text-wrapper .body-text {
  font-family: var(--font-family-inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .journal-grid {
    flex-direction: column;
  }

  .journal-image-wrapper, .journal-text-wrapper {
    max-width: 100%;
  }

  .journal-text-wrapper h2 {
    font-size: 48px;
  }
}
/* CSS for article-list */
.article-list-section {
  padding: 60px 0;
}

.list-item {
  display: flex;
  gap: 60px;
  padding: 26px 0;
  border-top: 1px solid var(--color-black);
  align-items: flex-start;
  position: relative;
}

.list-item h3 {
  font-family: var(--font-family-noe);
  font-weight: 700;
  font-size: 39px;
  line-height: 1.1;
  width: 662px;
  max-width: 50%;
}
.list-item h3 a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.list-item p {
  font-family: var(--font-family-inter);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  width: 640px;
  max-width: 50%;
}

.list-item-ender {
  border-top: 1px solid var(--color-black);
}

.slick-dots {
  list-style-type: none;
  display: flex;
  justify-content: center;
  gap: 27px;
  transition: all 300ms ease-out;
}
.slick-dots .slick-dot button {
  background-color: #D9D9D9;
  border-radius: 100%;
  width: 10px;
  height: 10px;
  color: transparent;
  border: 0px;
}

.articles-grid .slick-dots {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: 50px;
}

.slick-dot.slick-active button {
  background-color: #000;
}

@media (max-width: 768px) {
  .list-item {
    flex-direction: column;
    gap: 16px;
  }

  .list-item h3 {
    max-width: 100%;
    font-size: 32px;
  }

  .list-item p {
    max-width: 100%;
    font-size: 18px;
  }
}
/* CSS for ctas */
.dual-cta-section {
  padding: 60px 0;
}

.cta-grid {
  display: flex;
  gap: 32px;
}

.cta-card {
  background-color: var(--color-gray-dark);
  color: var(--color-white);
  display: flex;
  gap: 32px;
  align-items: center;
}

.cta-card img {
  width: 304px;
  height: 304px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.cta-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  align-items: flex-start;
  padding-left: 0px;
}

.cta-card-content h3 {
  font-family: var(--font-family-inter);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
}

.cta-card-content p {
  font-family: var(--font-family-inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
}

.cta-card-content .btn {
  margin-top: 16px;
}

@media (max-width: 1300px) {
  .cta-card {
    flex-direction: column;
    text-align: center;
  }

  .cta-card img {
    width: 100%;
    height: auto;
  }

  .cta-card-content {
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1000px) {
  .articles-grid {
    display: block;
  }
  .articles-grid .slick-list {
    width: 175%;
  }

  .slick-slide .article-card {
    border-left: 0px;
    padding-left: 0px;
    border-right: 1px solid black;
    padding-right: 30px;
    max-width: 92%;
    width: 100%;
  }

  .events-grid .slick-list {
    width: 175%;
  }
  .events-grid .slick-list .event-card {
    padding-left: 0px;
  }
}
@media (max-width: 750px) {
  .cta-grid {
    flex-direction: column;
    gap: 40px;
  }
}
/* Listing styles */
.hero-section.listing .container {
  display: flex;
  gap: 50px;
}
@media (max-width: 1250px) {
  .hero-section.listing .container {
    flex-direction: column-reverse;
    gap: 30px;
  }
}

.hero-section.listing .hero-image-wrapper {
  width: 527px;
}

@media (max-width: 900px) {
  .listing.articles-section .article-card {
    max-width: calc(50% - 50px);
  }
}
@media (max-width: 600px) {
  .listing.articles-section .article-card {
    max-width: 100%;
  }
}
.filter-sidebar {
  width: 150px;
  font-weight: bold;
  flex-shrink: 0;
}
.filter-sidebar-title, .filter-sidebar-menu {
  margin-bottom: 40px;
}
.filter-sidebar-menu li {
  margin-bottom: 1em;
}
.filter-sidebar .filter-block--select {
  margin-left: -0.25em;
}

/* Pagination */
.pagination-flex, .pagination {
  background: #f0f0f0;
  padding: 10px 0;
  margin: 0 auto 40px auto;
  font-family: "Inter", sans-serif;
  border-radius: 8px;
  max-width: 600px;
  margin-top: 60px;
}

.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.pagination-btn, .next, .prev {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.pagination-btn:hover, .next:hover, .prev:hover {
  background: #e0e0e0;
}

.next.light, .prev.light {
  font-weight: 300;
}

.page-numbers-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 130px;
}

.pagination-numbers {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0 8px;
}

.pagination-btn img {
  width: 18px;
  height: 18px;
  display: inline-block;
}

@media (max-width: 600px) {
  .pagination-flex {
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
    max-width: 98vw;
  }
}
/* End listing styles*/
.article-header {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 34px;
  grid-template-columns: 48.6% 1fr;
  padding-top: 40px;
  margin-bottom: 78px;
}
@media (max-width: 782px) {
  .article-header {
    grid-template-columns: 1fr;
  }
}
.article-header-image .cover-image {
  padding-top: 100%;
}
.article-header-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
.article-header-content-top p {
  margin-bottom: 1rem;
}
.article-header-date {
  font-size: 18px;
  line-height: 1.4;
  text-transform: uppercase;
}
.article-header-title {
  margin-bottom: 1rem;
}
@media (min-width: 1201px) {
  .article-header-sharing {
    position: absolute;
    top: 100%;
    left: 0;
    margin: 78px 0 0 26px;
  }
}
@media (max-width: 1200px) {
  .article-header-sharing {
    margin-top: 20px;
  }
  .article-header-sharing,
.article-header-sharing .share-widget-menu {
    flex-direction: row;
  }
}

#main .bwp.beyondwords-player .standard .main {
  background: #fff !important;
  border-radius: 0 !important;
  border: 2px #000 solid !important;
}

.article-content {
  border-bottom: 1px #D5D5D5 solid;
}

.article-footer {
  margin-top: 2em;
}
.article-footer-contributors {
  font-weight: 600;
}

.article-footnote {
  font-size: 0.875rem;
  font-style: italic;
}

.related-articles-section {
  padding: 65px 0;
}
.related-articles-section-title {
  display: inline-block;
  padding: 0.38em 1.1em;
  background-color: var(--color-gray-dark);
  color: var(--color-white);
  font-family: var(--font-family-inter);
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.event-header-date {
  display: flex;
  gap: 2em;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.4;
}
.event-header-date .event-date {
  font: inherit;
  text-transform: uppercase;
}
.event-header-details {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}
.event-header-details p {
  margin-bottom: 1.5em;
}

/* Start flex styles */
#content_area {
  padding-bottom: 120px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  padding-top: 60px;
  min-height: 300px;
}

#content_area.container > * {
  max-width: 752px;
  margin-left: auto;
  margin-right: auto;
}

#content_area.container .full, #content_area.container .alignfull {
  max-width: 1088px;
}

#content_area .btn_wrapper .btn {
  margin: 0px;
}

#content_area h1 {
  margin-bottom: 20px;
  margin-top: 40px;
}

#content_area h2 {
  margin-bottom: 30px;
}

#content_area h3 {
  margin-bottom: 21px;
}

#content_area p {
  margin-bottom: 18px;
}

#content_area hr {
  margin-top: 60px;
  margin-bottom: 60px;
}

#content_area .wide, #content_area.container .alignwide {
  max-width: 1312px;
}

#content_area .center {
  text-align: center;
}

#content_area .spacer {
  padding-top: 60px;
}

#content_area iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: unset;
}

/* End flex styles */
/* image grid styles */
.grid_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 60px;
}

.image_card {
  max-width: calc(25% - 32px);
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
}

.image_card .card_title, .listing-grid-item-title {
  font-family: "Noe Display";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.48px;
  margin: 0px;
}
.image_card .card_title::after, .listing-grid-item-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.listing-grid-item-image.cover-image {
  height: 316px;
  align-self: stretch;
  aspect-ratio: 76/79;
}

.image_card .card_caption, .listing-grid-item-desc {
  font-family: var(--font-family-acumin);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin: 0px;
}

/* end image grid styles */
/* start block quote styles */
.blockquote-container {
  position: relative;
  color: #000;
  font-style: normal;
  width: 620px;
  margin: 40px auto;
  display: flex;
  gap: 50px;
}

.blockquote-quote-mark {
  font-family: "Noe Display", serif;
  font-weight: bold;
  font-size: 200px;
  line-height: 1.2;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.blockquote-text {
  top: 43px;
  left: 0;
  width: 620px;
  font-family: "Noe Display", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.2;
}

.blockquote-caption {
  margin-top: 20px;
  width: 224px;
  height: 44px;
  font-family: "Acumin Pro", sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

/* end blockquote styles */
/* start cta styles */
.cta {
  background: #0D0D0D;
  color: white;
  text-align: center;
  padding: 35px;
}

.cta p {
  max-width: 545px;
}

.cta .btn {
  border: 2px solid #FFF;
  padding: 12px 18px 12px 20px;
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  width: 218px;
  max-width: 100%;
  margin: auto;
  background: transparent;
  text-align: center;
}

/* End CTA styles */
/* start CTA repeater styles */
.cta-image-flex {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  background: #fff;
  padding: 48px 0;
  max-width: 1088px;
  margin: 0 auto;
}

.cta-image-flex.reverse {
  flex-direction: row-reverse;
}

.cta-image-flex-img {
  flex: 0 0 640px;
  max-width: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-image-flex-img img {
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
}

.cta-image-flex-content {
  flex: 1 1 411px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#content_area .cta-image-flex-title {
  font-family: "Noe Display", serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  color: #000;
  margin-bottom: 0;
}

.cta-image-flex-underline {
  width: 100%;
  margin-bottom: 36px;
  height: 4px;
  background-color: #000;
}

.cta-image-flex-body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  margin-bottom: 0;
}

.cta-image-flex-btn-wrap {
  margin-top: 12px;
}

.cta-image-flex-btn {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  background: transparent;
  padding: 12px 18px 12px 20px;
  border: 2px solid #000;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}

.cta-image-flex-btn:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 900px) {
  .cta-image-flex {
    flex-direction: column;
    gap: 32px;
    padding: 32px 0;
  }

  .cta-image-flex-img, .cta-image-flex-content {
    max-width: 100%;
    width: 100%;
  }
}
/* end CTA repeater styles */
/* start accordion styles */
.accordion {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.accordion-header, .accordion-trigger {
  padding-top: 35px;
  padding-bottom: 35px;
  cursor: pointer;
  background: transparent;
  border: none;
}

.accordion-header h4 button {
  width: 864px;
  max-width: 80%;
  font-family: "Inter";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-align: left;
  padding-left: 10%;
}

.accordion-body, .accordion-content {
  width: 895px;
  max-width: 80%;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  padding-left: 10%;
}

.accordion.is-open .accordion-body, .accordion.is-open .accordion-content {
  max-height: 1000px;
}

/* end accordion styles */
.filter-section {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  gap: 2em;
}
.filter-section-title {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
}
.filter-section-reset {
  flex-shrink: 0;
  border: 0;
  -webkit-text-decoration: 2px transparent underline;
          text-decoration: 2px transparent underline;
  text-underline-offset: 3px;
  background-color: transparent;
  font: inherit;
  color: inherit;
  justify-self: flex-end;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.3s, opacity 0.3s linear;
}
.filter-section-reset:hover {
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
}
.filter-section--active .filter-section-reset {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s linear;
}
.filter-block {
  flex-grow: 1;
}
.filter-block select, .filter-block input {
  border: 0;
  background-color: transparent;
  font: inherit;
  color: inherit;
}
.filter-block select {
  padding-right: 6px;
  cursor: pointer;
}

/* Start Product Listing styles */
.store_listing {
  padding-bottom: 60px;
}

.store_listing .container {
  display: flex;
  justify-content: space-between;
}

.product_list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 60px;
  max-width: 968px;
  width: 80%;
  margin-left: auto;
  margin-right: 0px;
}

.product_card {
  display: flex;
  flex-direction: column;
  width: calc(33% - 28px);
  gap: 9px;
}

.product_name {
  font-family: "Noe Display";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.48px;
}

/* End Product Listing Styles */
.product-detail-page {
  background: #fff;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  font-family: "Inter", sans-serif;
}

.product-detail-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.product-detail-back {
  margin-bottom: 32px;
}
.product-detail-back a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
}
.product-detail-back a .back-arrow {
  width: 20px;
  height: 20px;
  transform: rotate(180deg);
}
.product-detail-back a:hover {
  text-decoration: underline;
}

.product-detail-flex {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .product-detail-flex {
    flex-direction: column;
    gap: 32px;
  }
}

.product-detail-image {
  flex: 0 0 613px;
  max-width: 613px;
}
.product-detail-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
  display: block;
}

.product-detail-info {
  flex: 1 1 517px;
  max-width: 517px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-detail-category {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 8px;
}

.product-detail-title {
  font-family: "Noe Display", serif;
  font-weight: 700;
  font-size: 40px;
  color: #000;
  margin-bottom: 8px;
}

.product-detail-price {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #000;
  margin-bottom: 16px;
}

.product-detail-description {
  font-size: 18px;
  color: #000;
  line-height: 1.4;
  margin-bottom: 16px;
}
.product-detail-description strong {
  font-weight: 700;
}

.product-detail-buy {
  margin-bottom: 24px;
}
.product-detail-buy .buy-now-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  border: 2px solid #000;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}
.product-detail-buy .buy-now-btn:hover {
  background: #000;
  color: #fff;
}

.product-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-detail-meta .meta-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: #000;
  margin-right: 8px;
}
.product-detail-meta .meta-underline {
  display: block;
  width: 100%;
  height: 4px;
  margin: 4px 0 12px 0;
}

.product-detail-share {
  margin-top: 24px;
}
.product-detail-share .share-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: #000;
  margin-right: 16px;
}
.product-detail-share .share-icons {
  display: flex;
  gap: 16px;
}
.product-detail-share .share-icons img {
  width: 24px;
  height: 24px;
  display: block;
}

@media (max-width: 600px) {
  .product-detail-container {
    padding: 0 8px;
  }

  .product-detail-flex {
    gap: 16px;
  }

  .product-detail-image {
    max-width: 100%;
  }

  .product-detail-info {
    max-width: 100%;
  }
}
/* Search Template + Overlay Styles */
#hero.search {
  text-align: center;
}

#hero.search .container {
  border-bottom: 1px solid #000;
}

.search-results .listing .container {
  flex-direction: column;
}

.search_overlay, .popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.search_overlay.active, .popup-modal.active {
  z-index: 10;
  pointer-events: auto;
  opacity: 1;
  transition: all 0.3s ease-out;
}

.search-overlay-background, .popup-overlay-background {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.popup-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-image-wrapper img {
  max-height: 450px;
}

.search-overlay-content, .popup-modal-inner {
  z-index: 2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-modal-content {
  background: white;
  padding: 40px 32px;
  max-width: 1152px;
  width: 90%;
  box-sizing: border-box;
  display: flex;
  gap: 50px;
  max-height: 90vh;
  overflow-y: scroll;
}

.popup-image-wrapper {
  width: 315px;
  flex-shrink: 0;
}

.search-overlay-content input[type=text] {
  height: 56px;
  border: 2px solid #000;
  background: #FFF;
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  padding-left: 25px;
}

.search-overlay-content input[type=submit] {
  display: flex;
  width: 105px;
  padding: 12px 18px 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  border: 2px solid black;
  background: white;
  transition: all 300ms ease-out;
  cursor: pointer;
}

.search-overlay-content input[type=submit]:hover {
  background: black;
  color: white;
}

#searchform div {
  display: flex;
  gap: 25px;
}

.search_subtitle {
  margin-bottom: 16px;
}

.search_term {
  margin-bottom: 16px;
}

.search_filters {
  margin-bottom: 20px;
  margin-top: 20px;
  display: flex;
  gap: 25px;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.search_filters select {
  background-color: transparent;
  border: 0px;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

@media (max-width: 1000px) {
  .popup-modal-content {
    flex-direction: column;
    padding: 20px 16px;
    max-width: 90%;
    gap: 25px;
  }
}
/* End Search Template Styles */
body.page-template-event-calendar {
  overflow: unset;
}

.site-main--events {
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  padding-bottom: 100px;
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 1200px) {
  .site-main--events {
    font-size: 16px;
  }
}

.event-calendar-header {
  padding-top: 20px;
  padding-bottom: 40px;
  border-bottom: 1px #D5D5D5 solid;
  margin-bottom: 53px;
}
.event-calendar-header .page-title {
  text-align: center;
  margin-bottom: 30px;
}
.event-calendar-header-columns {
  display: flex;
  align-items: stretch;
  gap: 30px;
}
.event-calendar-header-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 50%;
  border: 2px #fff solid;
  padding: 19px 20px;
}
.event-calendar-header-cta-title {
  margin: 0;
}
.event-calendar-header-cta .btn {
  color: #000;
  background-color: #fff;
  flex-shrink: 0;
}
.event-calendar-header-cta .btn:hover {
  color: #fff;
  background-color: #555;
}
.event-calendar-header-cta--alt {
  background-color: #6D6E71;
  border-color: #6D6E71;
}
.event-calendar-header-cta--alt .btn {
  color: #fff;
  background-color: #000;
}
.event-calendar-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 86px;
}
.event-calendar-controls {
  width: 416px;
  flex-shrink: 0;
  align-self: flex-start;
  position: -webkit-sticky;
  position: sticky;
  top: 153px;
}
.event-calendar-filters {
  margin-bottom: 20px;
  justify-content: flex-start;
}
.event-calendar-listing {
  flex-grow: 1;
}
.event-calendar-listing .event-list-empty,
.event-calendar-listing .event-list-loading {
  display: none;
}
.event-calendar-listing.loading .event-list,
.event-calendar-listing.loading .event-list-empty {
  display: none;
}
.event-calendar-listing.loading .event-list-loading {
  display: block;
}
.event-calendar-listing.no-events .event-list,
.event-calendar-listing.no-events .event-list-loading {
  display: none;
}
.event-calendar-listing.no-events .event-list-empty {
  display: block;
}
@media (max-width: 1200px) {
  .event-calendar-header-cta-title {
    font-size: 24px;
  }
  .event-calendar-content {
    gap: 60px;
  }
  .event-calendar-controls {
    width: 300px;
  }
}
@media (max-width: 782px) {
  .event-calendar-header-columns {
    flex-direction: column;
  }
  .event-calendar-header-cta {
    width: auto;
  }
  .event-calendar-content {
    flex-direction: column;
  }
  .event-calendar-listing {
    width: 100%;
  }
  .event-calendar-controls {
    position: relative;
    top: auto;
  }
  .event-calendar-controls .ui-datepicker-calendar {
    display: none;
  }
}
@media (max-width: 640px) {
  .event-calendar-header-columns {
    gap: 20px;
  }
  .event-calendar-header-cta {
    padding: 10px;
  }
  .event-calendar-header-cta-title {
    font-size: 20px;
  }
  .event-calendar-header-cta .btn {
    font-size: 14px;
    padding: 0.5em;
  }
  .event-calendar-controls {
    width: 100%;
  }
}

.event-list-item {
  display: flex;
  flex-direction: row-reverse;
  gap: 82px;
  padding-bottom: 30px;
  border-bottom: 1px #D5D5D5 solid;
  margin-bottom: 50px;
}
.event-list-item-image {
  width: 203px;
  flex-shrink: 0;
}
.event-list-item-image .cover-image {
  padding-top: 100%;
}
.event-list-item-content {
  flex-grow: 1;
}
.event-list-item-categories {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px 5px;
  flex-wrap: wrap;
  margin-bottom: 17px;
}
.event-list-item-categories:empty {
  display: none;
}
.event-list-item-date {
  margin-bottom: 1em;
}
.event-list-item-title {
  margin-bottom: 24px;
}
.event-list-item-title a {
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  transition: -webkit-text-decoration-color 0.2s ease;
  transition: text-decoration-color 0.2s ease;
  transition: text-decoration-color 0.2s ease, -webkit-text-decoration-color 0.2s ease;
}
.event-list-item-title a:hover {
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
}
.event-list-loading {
  position: relative;
  z-index: 1;
  min-height: 600px;
  padding: 100px 0;
}
.event-list-loading .loader {
  margin: auto;
}
.event-list-empty {
  min-height: 420px;
  padding: 100px 0;
  text-align: center;
}
@media (max-width: 1200px) {
  .event-list-item {
    gap: 50px;
  }
  .event-list-item-image {
    width: 150px;
  }
  .event-list-item-title {
    font-size: 30px;
  }
}
@media (max-width: 782px) {
  .event-list-item {
    gap: 25px;
  }
  .event-list-item-image {
    width: 100px;
  }
}
@media (max-width: 640px) {
  .event-list-item {
    font-size: 14px;
  }
  .event-list-item .category-tag {
    font-size: 12px;
  }
}

.ui-datepicker-header {
  display: grid;
  grid-template-columns: 1fr 40px 40px;
  gap: 20px;
  grid-template-areas: "month prev next";
  margin-bottom: 25px;
}
.ui-datepicker-header .ui-icon {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.ui-datepicker-prev, .ui-datepicker-next {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #6D6E71;
  cursor: pointer;
}
.ui-datepicker-prev::after, .ui-datepicker-next::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-color: #fff;
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.ui-datepicker-prev.ui-state-disabled, .ui-datepicker-next.ui-state-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.ui-datepicker-prev:hover, .ui-datepicker-next:hover {
  background-color: #fff;
}
.ui-datepicker-prev:hover::after, .ui-datepicker-next:hover::after {
  background-color: #000;
}
.ui-datepicker-prev {
  grid-area: prev;
}
.ui-datepicker-prev::after {
  -webkit-mask: url("../svg/arrow-left.svg");
          mask: url("../svg/arrow-left.svg");
}
.ui-datepicker-next {
  grid-area: next;
}
.ui-datepicker-next::after {
  -webkit-mask: url("../svg/arrow-right.svg");
          mask: url("../svg/arrow-right.svg");
}
.ui-datepicker-title {
  grid-area: month;
  font-family: "Noe Display";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.8px;
}
.ui-datepicker-calendar {
  width: 100%;
  text-align: center;
  border: 2px #fff solid;
  font-size: 15px;
  line-height: 1.2;
  font-weight: bold;
  display: block;
  padding: 15px 20px;
}
.ui-datepicker-calendar thead,
.ui-datepicker-calendar tbody {
  display: block;
}
.ui-datepicker-calendar thead {
  border-bottom: 2px #fff solid;
  margin: 0 18px 10px;
}
.ui-datepicker-calendar thead tr {
  display: flex;
  justify-content: space-between;
}
.ui-datepicker-calendar thead th {
  display: flex;
  justify-content: center;
  padding: 0.5em 0 1.2em;
  width: 16px;
}
.ui-datepicker-calendar tbody tr {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.ui-datepicker-calendar td {
  padding: 0.45em;
}
.ui-datepicker-calendar td span,
.ui-datepicker-calendar td a {
  display: inline-block;
  padding: 6px;
  border: 2px transparent solid;
  min-width: 36px;
}
.ui-datepicker-calendar td a:hover {
  border: 2px #fff solid;
}
.ui-datepicker-calendar td.ui-state-disabled {
  opacity: 0.5;
}
.ui-datepicker-today a,
.ui-datepicker-today span {
  background-color: #fff;
  color: #000;
}
@media (max-width: 1200px) {
  .ui-datepicker-header {
    grid-template-columns: 1fr 30px 30px;
    gap: 15px;
  }
  .ui-datepicker-title {
    font-size: 30px;
  }
  .ui-datepicker-calendar td {
    padding: 0;
  }
}

/* Footer Styles */
.site-footer {
  position: fixed;
  color: var(--color-black);
  padding: 80px 0 40px;
  overflow: hidden;
  bottom: 0px;
  left: 0px;
  width: 100%;
  background-color: #E5E5E5;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.footer-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer-container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: flex;
  gap: 60px;
  margin-bottom: 80px;
  justify-content: space-between;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a, .footer-col h4 {
  font-family: var(--font-family-acumin);
  font-weight: 700;
  font-size: 16px;
  line-height: 2.2;
  text-transform: uppercase;
}

.footer-col h4 {
  margin-bottom: 10px;
}

.footer-social-icons {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.newsletter-signup-box {
  background-color: var(--color-black);
  padding: 40px;
  color: white;
}

.newsletter-signup-box h3 {
  font-family: var(--font-family-noe);
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 8px;
}

.newsletter-signup-box p {
  font-family: var(--font-family-inter);
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 12px;
  border: none;
  font-size: 18px;
  font-family: var(--font-family-acumin);
}

.newsletter-form .btn {
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  font-family: var(--font-family-dm-sans);
  font-weight: 300;
  font-size: 12px;
  color: var(--color-gray-medium);
}

@media (max-width: 992px) {
  .footer-grid {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }
}
/* End footer styles */
