/** Shopify CDN: Minification failed

Line 258:0 Unexpected "}"

**/
.press-tabs {
  position: relative;
  overflow: hidden;
  background-color: var(--color-background);
  color: var(--color-text);
}

.press-tabs__container {
  max-width: 100%;
  display: flex;
  gap: 3rem;
}

/* Desktop Tab Navigation */
.press-tabs__nav--desktop {
  display: none;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex: 300;
}

@media only screen and (min-width: 768px) {
  .press-tabs__nav--desktop {
    display: flex;
    flex-direction: column;
  }
}

.press-tabs__tab {
  background: transparent;
  border: none;
  padding: 0.5rem 1.5rem;
  padding-block-end: 1.25rem;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
  position: relative;
  border-left: 4px solid transparent;
  width: 100%;
}

.press-tabs__tab:hover {
  opacity: 0.75;
}

.press-tabs__tab--active {
  opacity: 1;
  border-left-color: var(--color-accent);
}

.press-tabs__tab--active:hover {
  opacity: 1;
  border-left-color: var(--color-text);
}

.press-tabs__tab:focus-visible {
  outline: 2px solid var(--color-focus, #000);
  border-radius: 4px;
}

.press-tabs__logo {
  display: block;
  height: auto;
  max-width: 154px;
  width: 100%;
  object-fit: contain;
}

.press-tabs__logo--inverted {
  filter: brightness(0) invert(1);
}

/* Desktop Tab Panels */
.press-tabs__panels--desktop {
  display: none;
  position: relative;
  min-height: 200px;
  flex: 924;
}

@media only screen and (min-width: 768px) {
  .press-tabs__panels--desktop {
    display: grid;
    align-items: center;
  }
}

.press-tabs__panel {
  animation: fadeIn 0.4s ease-in-out;
  grid-column: 1;
  grid-row: 1;
  visibility: hidden;
  opacity: 0;
  transform: translateY(5%);
  transition: all 0.4s ease-in-out;
}

.press-tabs__panel--active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.press-tabs__panel:focus-visible {
  outline: 2px solid var(--color-focus, #000);
  outline-offset: 4px;
  border-radius: 4px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Quote Styling */
.press-tabs__quote {
  margin: 0;
  padding: 0;
  max-width: 100%;
  display: flex;
}

.press-tabs__quote-mark {
  font-family: var(--typeBasePrimary);
  color: var(--color-accent); 
  display: inline;
  font-size: clamp(2.25rem, calc(1.4577rem + 3.3803vw), 4.5rem);
  line-height: 1;
  font-weight: 700;
  transform: translateY(-0.125em);
  margin-right: 0.125em;
}

.press-tabs__quote-text {
  display: inline-block;
  font-family: var(--typeHeaderPrimary);
  font-size: clamp(1.125rem, calc(0.2887rem + 3.5681vw), 3.5rem);
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
  color: currentColor;
}

/* Mobile Slider */
.press-tabs__slider {
  display: none;
}

.press-tabs--mobile-slider .press-tabs__slider {
  width: 100%;
  display: block;
  overflow: visible;
}

.press-tabs--mobile-slider .splide__track {
  overflow: visible;
}

.press-tabs--mobile-slider .press-tabs__list--mobile {
  display: none;
}

@media only screen and (min-width: 768px) {
  .press-tabs__slider {
    display: none !important;
  }
}

.press-tabs--mobile-slider .press-tabs__item {
  flex-direction: column-reverse;
  align-items: center;
}

.press-tabs--mobile-slider .press-tabs__item-logo {
  margin-top: 1rem;
  flex: none;
  width: 20%;
  height: auto;
  max-width: 100%;
}

.press-tabs--mobile-slider .press-tabs__item-quote .press-tabs__quote {
  text-align: left;
  max-width: none;
}

/* Mobile List View */
.press-tabs__list--mobile {
  display: none;
}

.press-tabs--mobile-column .press-tabs__list--mobile {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media only screen and (min-width: 768px) {
  .press-tabs__list--mobile {
    display: none !important;
  }
}

.press-tabs__item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.press-tabs__item-logo {
  flex: 72;
  min-width: 72px;
  max-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-tabs__item-logo .press-tabs__logo {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.press-tabs__item-quote {
  flex: 250;
}

.press-tabs__item-quote .press-tabs__quote {
  text-align: left;
  max-width: none;
}

.press-tabs__item-quote .press-tabs__quote-mark {
  font-size: clamp(2.25rem, calc(1.4577rem + 3.3803vw), 4.5rem);
  font-family: var(--typeBasePrimary); 
}

.press-tabs__item-quote .press-tabs__quote-text {
  font-size: clamp(1.125rem, calc(0.2887rem + 3.5681vw), 3.5rem);
  font-family: var(--typeHeaderPrimary);
  line-height: 1.2;
  font-weight: 700;
}
}

/* Empty State */
.press-tabs__empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(0, 0, 0, 0.5);
}

/* Visually Hidden Utility */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
