/* =========================================================
   Press section - simple list of external press links.
   Self-contained: doesn't rely on theme grid/font variables.
   ========================================================= */

/* Divider above the Press list. Only wanted when Press follows another
   section (the About bio) - not on In The News, where this is the very
   first thing under the header (see .press-area-1--page-title below). */
.press-area-1-inner {
  padding-top: 40px;
  border-top: 1px solid rgba(17, 17, 17, 0.15);
}
.dark .press-area-1-inner {
  border-color: rgba(248, 242, 239, 0.15);
}

/* The About page stacks the bio section directly on top of Press - both
   use .section-spacing-200 (200px/150px/120px/100px/60px top+bottom
   padding), so back to back they doubled the gap between the portrait
   and the Press heading. about-uss-7 only appears on the About page, so
   it's safe to just cut its own bottom padding directly, then also pull
   back Press's top padding right after it. */
.about-uss-7.section-spacing-200 {
  padding-bottom: 40px;
}
.about-uss-7 + .press-area-1 {
  padding-top: 60px;
}
@media only screen and (max-width: 767px) {
  .about-uss-7 + .press-area-1 {
    padding-top: 30px;
  }
}

/* In The News uses .press-area-1 as the very first section on the page,
   right under the header, with nothing above it to space away from - so
   it gets no divider line and a much smaller top gap than Press (which
   needs to visually separate from the About bio above it). Its title is
   plain <h2 class="title"> too (same markup Press uses), so it shares
   the .press-area-1-inner .title styling below - left aligned, no more
   right-shifted "News" from the old two-column About-hero wrapper. */
/* Matches .section-spacing-top's own breakpoints (same top padding the
   Contact page title sits on), so the two pages line up. */
.press-area-1--page-title.section-spacing-200 {
  padding-top: 100px;
}
@media only screen and (max-width: 1919px) {
  .press-area-1--page-title.section-spacing-200 {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 1399px) {
  .press-area-1--page-title.section-spacing-200 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .press-area-1--page-title.section-spacing-200 {
    padding-top: 60px;
  }
}
.press-area-1--page-title .press-area-1-inner {
  padding-top: 0;
  border-top: none;
}

/* Section title - matches the large "Zian" title style used in the
   About section (.about-uss-7__content .over) so the "Press" heading
   reads as part of the same visual language. */
.press-area-1-inner .title {
  font-size: 180px;
  font-weight: 200;
  line-height: 1;
  margin: 0 0 60px;
  font-family: var(--font_ppeditor, inherit);
}
@media only screen and (max-width: 1399px) {
  .press-area-1-inner .title {
    font-size: 150px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .press-area-1-inner .title {
    font-size: 120px;
    line-height: 1.08;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .press-area-1-inner .title {
    font-size: 90px;
    line-height: 1.05;
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .press-area-1-inner .title {
    font-size: 64px;
    line-height: 1.05;
    margin-bottom: 10px;
  }
}

.press-area-1-inner .sub-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  margin-bottom: 0;
  letter-spacing: -0.7px;
  text-transform: uppercase;
  color: var(--primary, #111111);
}

.press-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}

.press-item {
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}
.dark .press-item {
  border-bottom-color: rgba(248, 242, 239, 0.12);
}

.press-item a {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  text-decoration: none;
  color: var(--primary, #111111);
  transition: opacity 0.3s ease, gap 0.3s ease;
}
.press-item a:hover {
  opacity: 0.6;
}

.press-item__source {
  flex: 0 0 150px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary, #555555);
}

.press-item__title {
  flex: 1 1 auto;
  font-size: 20px;
  line-height: 1.35;
}

.press-item__date {
  flex: 0 0 auto;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--secondary, #555555);
  white-space: nowrap;
}

.press-item__arrow {
  flex: 0 0 auto;
  font-size: 18px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.press-item a:hover .press-item__arrow {
  transform: translate(3px, -3px);
}

@media only screen and (max-width: 767px) {
  .press-item a {
    flex-wrap: wrap;
    gap: 4px 16px;
    padding: 20px 0;
  }
  .press-item__source {
    flex: 0 0 auto;
    order: 1;
  }
  .press-item__date {
    order: 2;
    margin-left: auto;
  }
  .press-item__title {
    flex: 1 1 100%;
    order: 3;
    font-size: 17px;
  }
  .press-item__arrow {
    display: none;
  }
}
