@charset "UTF-8";
/*!
Theme Name: CSFestival4
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: csfestival4
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

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

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

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/* ---------------------------------------------
abstracts
--------------------------------------------- */
:root {
  --navbar_h: 64px;
  --main-topbar-h: 40px;
  --csf-gray-950: #131319;
  --csf-gray-980: #0b0b0f;
}

/* ---------------------------------------------
common
--------------------------------------------- */
/* logo ------------------------------------ */
.csf-logo {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--bs-light);
}
.csf-logo span {
  color: var(--bs-gray-600);
  font-weight: 500;
}

/* social ------------------------------------ */
.csf-social {
  display: flex;
  gap: 16px;
}
.csf-social a {
  font-size: 18px;
  color: color-mix(in srgb, var(--bs-body-color) 55%, transparent);
  text-decoration: none;
}
.csf-social a:hover {
  color: var(--bs-body-color);
}

/* promo ------------------------------------ */
.csf-stream {
  padding: 2rem 1rem;
}
@media (max-width: 768px) {
  .csf-stream {
    padding: 1.5rem 1rem;
  }
}
.csf-stream__contend {
  padding: 2rem;
  background: var(--bs-primary-bg-subtle);
  border: 1px solid var(--bs-primary-border-subtle);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) {
  .csf-stream__contend {
    padding: 1.5rem;
    gap: 14px;
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }
}
.csf-stream__left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.csf-stream__icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: var(--bs-primary-bg-subtle);
  border: 0.5px solid var(--bs-primary-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.csf-stream__icon .bi {
  color: var(--bs-primary);
}
.csf-stream__title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--bs-light);
  margin: 0 0 4px;
}
.csf-stream__desc {
  font-size: 14px;
  color: color-mix(in srgb, var(--bs-body-color) 65%, transparent);
  margin: 0;
}
.csf-stream a.btn {
  min-width: 170px;
}

/* ---------------------------------------------
components
--------------------------------------------- */
/* navbar ------------------------------------ */
.csf-header__topbar {
  height: var(--main-topbar-h);
  background-color: var(--csf-gray-950);
  font-weight: 500;
  border-top: 1px solid #000;
  border-bottom: 1px solid var(--bs-dark-border-subtle);
  overflow: hidden;
  transition: height 0.1s ease, opacity 0.1s ease;
}
.csf-header__topbar--hidden {
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.csf-header__link {
  font-weight: 300 !important;
  font-size: 0.75rem;
  color: var(--bs-gray-600);
  text-transform: uppercase;
}
.csf-header__link:hover {
  color: var(--bs-primary);
}
.csf-header__link.active {
  color: var(--bs-light);
}
.csf-header__link-sm {
  font-size: 1rem !important;
  color: var(--bs-light);
  padding: 0.5rem;
}

/* NAV */
.csf-navbar {
  border-bottom: 1px solid var(--bs-dark-border-subtle);
  background-color: #000;
}
.csf-navbar .nav-link {
  color: var(--bs-gray-600);
}
.csf-navbar .nav-link:hover {
  color: var(--bs-gray-500);
}
.csf-navbar .nav-link.active {
  color: var(--bs-light);
}
.csf-navbar .nav-link.active:hover {
  color: var(--bs-light);
}

.navbar.fixed-top {
  top: var(--main-topbar-h);
}
.navbar.fixed-top.csf-navbar--no-topbar {
  top: 0;
}

.csf-dropdown {
  background-color: #000;
  border: 1px solid var(--bs-dark-border-subtle);
  border-radius: 4px;
  min-width: 160px;
}
.csf-dropdown__item {
  font-size: 13px;
  font-weight: 400;
  color: var(--bs-gray-600);
  letter-spacing: 0.03em;
  padding: 0.45rem 1rem;
}
.csf-dropdown__item:hover, .csf-dropdown__item:focus {
  background-color: var(--bs-dark-bg-subtle);
  color: var(--bs-light);
}
.csf-dropdown__item.active {
  background-color: transparent;
  color: var(--bs-primary);
  font-weight: 500;
}

@media (max-width: 991px) {
  .csf-navbar .navbar-nav .nav-link {
    padding-block: 0.5rem;
  }
}
/* card ------------------------------------ */
/* btn ------------------------------------ */
.btn {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 0.25rem;
  padding: 0.625rem 1.25rem;
}

/* ---------------------------------------------
layout
--------------------------------------------- */
/* body ------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "DM Serif Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.15;
  color: var(--bs-light);
}

body {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.7;
}

/* head------------------------------------ */
/* footer------------------------------------ */
.csf-footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--bs-dark-border-subtle);
  background-color: var(--csf-gray-980);
}
.csf-footer .csf-footer__copy {
  font-size: 12px;
  color: var(--bs-gray-800);
}

/* hero------------------------------------ */
/*
.csf-city,
.csf-hero,
.csf-about,
.csf-archive {
    scroll-behavior: smooth;
    scroll-margin-top: 61px;
}

.csf-main {
    scroll-behavior: smooth;
    scroll-margin-top: 100px;
}
*/
.csf-hero {
  min-height: 420px;
  background: var(--csf-gray-980);
  border-bottom: 1px solid var(--bs-dark-border-subtle);
  padding: 3rem 0;
}
.csf-hero__cs {
  color: var(--bs-gray-600);
}
.csf-hero__left {
  padding-right: 2rem;
  border-right: 1px solid var(--bs-dark-border-subtle);
}
@media (max-width: 991px) {
  .csf-hero__left {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--bs-dark-border-subtle);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}
.csf-hero__badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bs-primary);
  margin-bottom: 1rem;
}
.csf-hero__badge::before {
  content: "—  ";
}
.csf-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--bs-light);
  margin-bottom: 1.5rem;
}
.csf-hero__title em {
  font-style: normal;
  color: var(--bs-primary);
}
.csf-hero__artists-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bs-gray-600);
  margin-bottom: 0.5rem;
}
.csf-hero__right {
  padding-left: 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .csf-hero__right {
    padding-left: 0.75rem;
  }
}
.csf-hero__actions {
  margin-top: 1.5rem;
}

.csf-dates-label {
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bs-light);
  margin-bottom: 1rem;
}

.csf-date-list {
  margin: 0;
}
.csf-date-list__item {
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dotted var(--bs-dark-border-subtle);
}
.csf-date-list__item:hover .csf-date-list__city {
  color: var(--bs-primary);
}
.csf-date-list__item:hover .csf-date-list__city span {
  color: var(--bs-primary);
}
.csf-date-list__item:hover .csf-date-list__when {
  color: var(--bs-light);
}
.csf-date-list__item:hover .csf-date-list__icon {
  background: var(--bs-dark-bg-subtle);
  border: 0.5px solid var(--bs-light-border-subtle);
}
.csf-date-list__item:hover .csf-date-list__icon .bi {
  color: var(--bs-light);
}
.csf-date-list__item:last-child {
  border-bottom: none;
}
.csf-date-list__icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: var(--bs-primary-bg-subtle);
  border: 0.5px solid var(--bs-primary-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 15px;
}
.csf-date-list__icon .bi {
  color: var(--bs-primary);
}
.csf-date-list__city {
  font-size: 14px;
  font-weight: 500;
  color: var(--bs-light);
  margin: 0;
  margin-right: 0.5rem;
}
.csf-date-list__city span {
  color: var(--bs-gray-500);
}
.csf-date-list__when {
  font-size: 12px;
  color: var(--bs-body-color);
  margin: 3px 0 0 0;
}

/* form------------------------------------ */
.form-control {
  font-size: 14px;
}

/* ---------------------------------------------
pages
--------------------------------------------- */
/* front-page ------------------------------------ */
/* ABOUT */
.csf-about {
  border-bottom: 1px solid var(--bs-dark-border-subtle);
}
.csf-about__label {
  padding: 3rem 1rem;
  margin: 0;
  border-right: 1px solid var(--bs-dark-border-subtle);
  font-size: 1rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bs-light);
}
@media (max-width: 768px) {
  .csf-about__label {
    padding: 2rem 1rem 1rem 1rem;
    border-right: none;
  }
}
.csf-about__text {
  padding: 3rem 2.75rem;
  margin: 0;
  font-size: 15px;
  color: var(--bs-body-color);
  line-height: 1.75;
}
@media (max-width: 768px) {
  .csf-about__text {
    padding: 0 1rem 2rem 1rem;
  }
}
.csf-about__text strong {
  color: var(--bs-gray-500);
  font-weight: 500;
}

/* EDITIONS GRID */
.csf-archive {
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .csf-archive {
    padding: 3rem 1rem;
  }
}
.csf-archive__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.csf-archive__title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bs-light);
  margin: 0;
}
.csf-archive__link {
  font-size: 1rem;
  color: var(--bs-light);
  text-decoration: none;
}

/* LIST ARCHIVE */
.csf-archive__list-group {
  flex-direction: row;
}
@media (max-width: 768px) {
  .csf-archive__list-group {
    flex-direction: column;
  }
}
.csf-archive__list-group.list-group {
  --bs-list-group-border-color: var(--bs-dark-border-subtle);
}
.csf-archive__list-group > .list-group-item:first-child:not(:last-child) {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
@media (max-width: 768px) {
  .csf-archive__list-group > .list-group-item:first-child:not(:last-child) {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}
.csf-archive__list-group > .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
@media (max-width: 768px) {
  .csf-archive__list-group > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }
}
.csf-archive__list-group > .list-group-item.active {
  margin-top: 0;
}
.csf-archive__list-group > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
@media (max-width: 768px) {
  .csf-archive__list-group > .list-group-item + .list-group-item {
    border-left-width: 1px;
    border-top-width: 0;
  }
}
.csf-archive__list-group > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

/* CARD */
.csf-card {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .csf-card {
    flex-direction: row;
  }
}
.csf-card__year {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bs-primary);
  line-height: 1;
}
.csf-card__cities {
  font-size: 12px;
  color: var(--bs-body-color);
  line-height: 1.6;
}
.csf-card__arrow {
  margin-top: auto;
  font-size: 1rem;
  color: var(--bs-secondary);
}
@media (max-width: 768px) {
  .csf-card__arrow {
    margin-top: 0;
    margin-left: auto;
  }
}
.csf-card:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bs-primary);
}
.csf-card:hover .csf-card__year {
  color: var(--bs-light);
}
.csf-card:hover .csf-card__cities {
  color: var(--bs-gray-500);
}
.csf-card:hover .csf-card__arrow {
  color: var(--bs-primary);
}

/* PHOTOS */
.csf-photos {
  padding: 3rem 0;
  border-bottom: 1px solid var(--bs-dark-border-subtle);
}
.csf-photos h2 {
  font-size: 1.5rem;
}
.csf-photos p {
  color: var(--bs-body-color);
}
@media (max-width: 768px) {
  .csf-photos {
    padding: 2rem 0;
  }
}

/* page-edition ------------------------------------ */
.csf-ed-artists-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.125rem;
}
.csf-ed-artists-list li:not(:last-child)::after {
  content: " • ";
  color: var(--bs-gray-600);
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}
.csf-ed-artists-list li a {
  font-size: 1rem;
  font-weight: 300;
  color: var(--bs-gray-400);
  text-decoration: none;
}
.csf-ed-artists-list li a:hover {
  color: var(--bs-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.csf-city {
  padding: 3rem 0;
  border-bottom: 1px solid var(--bs-dark-border-subtle);
}
.csf-city:last-child {
  border-bottom: 0;
}
.csf-city__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0;
  padding-bottom: 1.5rem;
}
.csf-city__dates {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bs-primary);
  display: block;
}
.csf-city__name {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  margin: 0;
  color: var(--bs-light);
}
.csf-city__curators p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--bs-body-color);
  margin: 0;
}
.csf-city__credit {
  font-size: 0.875rem;
  color: var(--bs-gray-600);
  margin: 0;
}
.csf-city__credit a {
  color: var(--bs-gray-500);
}
.csf-city__credit a:hover {
  color: var(--bs-light);
}
.csf-city__poster {
  width: 100%;
  margin-bottom: 0.5rem;
  border: 1px solid var(--bs-dark-border-subtle);
}
.csf-city__caption {
  font-size: 0.875rem;
  color: var(--bs-body-color);
  margin-bottom: 0;
}

.csf-city__hr {
  opacity: 1;
  margin-top: 0;
  margin-bottom: 2rem;
  border-top: 2px solid var(--bs-primary);
  max-width: 5rem;
}

.csf-venues {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.csf-venues ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.csf-venues ul li {
  font-size: 0.875rem;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.55;
}
.csf-venues ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--bs-primary);
  font-weight: 700;
}
.csf-venues h3, .csf-venues h4, .csf-venues h5, .csf-venues h6 {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--bs-light);
  margin-bottom: 0.5rem;
}
.csf-venues h3 a, .csf-venues h4 a, .csf-venues h5 a, .csf-venues h6 a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.25);
}
.csf-venues h3 a:hover, .csf-venues h4 a:hover, .csf-venues h5 a:hover, .csf-venues h6 a:hover {
  color: var(--bs-link-color);
  text-decoration-color: rgba(var(--bs-link-color-rgb), 0.25);
}
.csf-venues h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.csf-venues h4 {
  font-size: 1.125rem;
  font-weight: 400;
}
.csf-venues h5 {
  font-size: 1rem;
  font-weight: 400;
}
.csf-venues h6 {
  font-size: 1rem;
  font-weight: 400;
}
.csf-venues address {
  font-style: italic;
  color: var(--bs-gray-500);
  margin-bottom: 1rem;
}
.csf-venues p.btn-tickets {
  margin-bottom: 1.5rem;
}
.csf-venues .btn-tickets a {
  font-size: 0.875rem;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  color: var(--bs-light);
  border: 0.5px solid var(--bs-light);
  border-radius: 3px;
  text-decoration: none;
  background-color: transparent;
}
.csf-venues .btn-tickets a:hover {
  color: var(--bs-dark);
  background-color: var(--bs-light);
}
.csf-venues .sideshow {
  color: var(--bs-primary);
  border-left: 2px solid var(--bs-primary);
  padding-left: 1.25rem;
  margin: 1rem 0;
  border-radius: 0 4px 4px 0;
}
.csf-venues__sideshow-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bs-primary);
  border: 0.5px solid var(--bs-primary-border-subtle);
  border-radius: 3px;
  padding: 1px 6px;
  margin-bottom: 0.5rem;
}

.csf-session {
  margin-bottom: 1.5rem;
}
.csf-session:last-child {
  margin-bottom: 0;
}
.csf-session__date {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bs-gray-400);
  margin-bottom: 0.75rem;
}
.csf-session__ticket {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  white-space: nowrap;
  flex-shrink: 0;
  border-width: 0.5px;
}
.csf-session__free-badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border: 0.5px solid color-mix(in srgb, var(--bs-success) 50%, transparent);
  color: var(--bs-success-text-emphasis);
  border-radius: var(--bs-border-radius-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* page-archive ------------------------------------ */
.csf-archive {
  padding: 3rem 0;
  border-bottom: 1px solid var(--bs-dark-border-subtle);
}
.csf-archive .csf-hero--compact {
  min-height: auto;
}
.csf-archive__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0;
  padding-bottom: 1.5rem;
}
.csf-archive__name {
  font-size: clamp(2rem, 4vw, 2rem);
  line-height: 1;
  margin: 0;
  color: var(--bs-light);
}
.csf-archive__dates {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bs-primary);
  display: block;
}
.csf-archive__cta {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .csf-archive__cta {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.csf-archive:last-child {
  border-bottom: 0;
}

.csf-dates-list-index__item {
  display: flex;
  align-items: center;
  border-bottom: 0.5px dotted var(--bs-dark-border-subtle);
}
.csf-dates-list-index__item:last-child {
  border-bottom: 0;
}
.csf-dates-list-index__item a {
  padding-left: 0.5rem;
}

/* ---------------------------------------------
plugins
--------------------------------------------- */
/* ---------------------------------------------
vendor
--------------------------------------------- */