:root {
  --nr-bg: #f5f5f7;
  --nr-card: #fff;
  --nr-text: #1d1d1f;
  --nr-muted: #6e6e73;
  --nr-line: #d0d0d0;
  --nr-blue: #06c;
  --nr-shell: 980px;
  --nr-radius: 32px;
}
.newsroom-page {
  background: var(--nr-bg);
  color: var(--nr-text);
}
.newsroom-page .global-header {
  position: absolute;
}
.newsroom-localnav {
  position: sticky;
  z-index: 900;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.newsroom-localnav-inner {
  width: calc(100% - 44px);
  max-width: var(--nr-shell);
  height: 52px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.newsroom-localnav-title {
  font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  font-size: 21px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0.011em;
}
.newsroom-localnav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 12px;
}
.newsroom-localnav-menu {
  display: none;
  border: 0;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.24s ease;
}
.newsroom-localnav-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.newsroom-search-toggle {
  border: 0;
  border-radius: 980px;
  background: #e8e8ed;
  color: #1d1d1f;
  padding: 7px 13px;
  cursor: pointer;
  font-size: 12px;
}
.newsroom-search {
  width: calc(100% - 44px);
  max-width: var(--nr-shell);
  margin: auto;
  padding: 14px 0 17px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #e5e5e7;
}
.newsroom-search[hidden] {
  display: none;
}
.newsroom-search label {
  font-size: 12px;
  font-weight: 600;
}
.newsroom-search input {
  height: 38px;
  border: 0;
  border-radius: 980px;
  background: #f5f5f7;
  padding: 0 16px;
  outline: none;
}
.newsroom-search input:focus {
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.16);
}
.newsroom-search button {
  border: 0;
  background: transparent;
  color: var(--nr-blue);
  cursor: pointer;
}
.newsroom-main {
  background: var(--nr-bg);
}
.newsroom-latest,
.newsroom-more {
  width: calc(100% - 44px);
  max-width: var(--nr-shell);
  margin: auto;
}
.newsroom-latest {
  padding: 52px 0 80px;
}
.newsroom-latest h1,
.newsroom-more h2 {
  margin: 0;
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.newsroom-featured-card {
  display: grid;
  grid-template-columns: 643px 337px;
  height: 362px;
  margin-top: 24px;
  border-radius: var(--nr-radius);
  overflow: hidden;
  background: var(--nr-card);
}
.news-card,
.newsroom-featured-card,
.newsroom-more-item {
  position: relative;
}
.news-card-link {
  position: absolute;
  z-index: 4;
  inset: 0;
  border-radius: inherit;
}
.news-card-link:focus-visible {
  outline: 3px solid #0071e3;
  outline-offset: 3px;
}
.newsroom-featured-card.apple-card-hover,
.newsroom-featured-card.apple-card-hover:hover,
.news-card.apple-card-hover,
.news-card.apple-card-hover:hover,
.newsroom-more-item.apple-card-hover,
.newsroom-more-item.apple-card-hover:hover {
  transform: none !important;
  box-shadow: none !important;
}
.news-media {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  background: #f5f5f5;
}
.news-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.news-media-default {
  position: absolute;
  inset: 0;
  background: #f5f5f5;
}
.newsroom-featured-card .news-media img,
.newsroom-featured-card .news-media-fallback,
.news-card .news-media img,
.news-card .news-media-fallback,
.newsroom-more-item .news-media img,
.newsroom-more-item .news-media-fallback {
  transform: scale(1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.25, 1);
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  .newsroom-featured-card:hover .news-media img,
  .newsroom-featured-card:hover .news-media-fallback,
  .news-card:hover .news-media img,
  .news-card:hover .news-media-fallback,
  .newsroom-more-item:hover .news-media img,
  .newsroom-more-item:hover .news-media-fallback {
    transform: scale(1.03);
  }
}
.news-media-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  color: #fff;
  background: linear-gradient(135deg, #6380ff, #171d4c);
}
.news-media-fallback::before {
  content: "";
  position: absolute;
  width: 54%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  right: -5%;
  top: -20%;
}
.news-media-fallback::after {
  content: "";
  position: absolute;
  width: 32%;
  aspect-ratio: 1;
  border-radius: 50%;
  right: 20%;
  bottom: -13%;
  background: rgba(255, 255, 255, 0.16);
}
.news-media-fallback span {
  position: relative;
  z-index: 1;
  font-size: clamp(25px, 4vw, 54px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.055em;
  white-space: pre-line;
}
[data-tone="ice"] .news-media-fallback {
  color: #14213d;
  background: linear-gradient(135deg, #eaf2ff, #8bb4e4);
}
[data-tone="graphite"] .news-media-fallback {
  background: linear-gradient(135deg, #4b4b53, #09090b);
}
[data-tone="sand"] .news-media-fallback {
  color: #3d2c20;
  background: linear-gradient(135deg, #f2d4a6, #c47c51);
}
[data-tone="sage"] .news-media-fallback {
  color: #17332c;
  background: linear-gradient(135deg, #dce9df, #769b8f);
}
[data-tone="violet"] .news-media-fallback {
  background: linear-gradient(135deg, #9379e8, #29204f);
}
[data-tone="orange"] .news-media-fallback {
  background: linear-gradient(135deg, #ff9a3c, #cb3d27);
}
[data-tone="blue"] .news-media-fallback {
  background: linear-gradient(135deg, #42a4ff, #093f7b);
}
.newsroom-featured-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 35px 32px 31px;
}
.news-type {
  display: block;
  color: var(--nr-muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.newsroom-featured-copy h2 {
  margin: 16px 0 0;
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.newsroom-featured-copy time {
  margin-top: auto;
  color: var(--nr-muted);
  font-size: 17px;
}
.newsroom-latest-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 36px;
  margin-top: 36px;
}
.news-card {
  min-width: 0;
  border-radius: var(--nr-radius);
  overflow: hidden;
  background: #fff;
}
.newsroom-latest-grid .news-card:nth-child(-n + 2) {
  grid-column: span 3;
  margin-inline: 1px;
}
.newsroom-latest-grid .news-card:nth-child(n + 3) {
  grid-column: span 2;
}
.news-card .news-media {
  min-height: 0;
  aspect-ratio: 16 / 9;
}
.news-card-copy {
  height: 177px;
  padding: 24px 26px 25px;
  display: flex;
  flex-direction: column;
}
.newsroom-latest-grid .news-card:nth-child(-n + 2) .news-card-copy {
  height: 211px;
  padding: 27px 30px 30px;
}
.news-card-copy h2,
.news-card-copy h3 {
  margin: 12px 0 0;
  font-size: 21px;
  line-height: 1.14;
  letter-spacing: -0.032em;
}
.newsroom-latest-grid .news-card:nth-child(-n + 2) .news-card-copy h2 {
  font-size: 27px;
  line-height: 1.1;
}
.news-card-copy p {
  margin: 10px 0 0;
  color: var(--nr-muted);
  font-size: 15px;
  line-height: 1.42;
}
.newsroom-latest-grid .news-card:nth-child(-n + 2) .news-card-copy p {
  margin-top: 13px;
}
.news-card-copy time {
  margin-top: auto;
  padding-top: 22px;
  color: var(--nr-muted);
  font-size: 14px;
}
.newsroom-more {
  max-width: none;
  width: 100%;
  padding: 80px max(22px, calc((100vw - var(--nr-shell)) / 2));
  background: #f5f5f7;
}
.newsroom-more h2 {
  max-width: var(--nr-shell);
  margin: 0 auto 64px;
}
.newsroom-more-grid {
  width: calc(100% + 56px);
  max-width: calc(var(--nr-shell) + 56px);
  margin: 0 -56px -44px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.newsroom-more-item {
  width: 457px;
  margin: 0 56px 44px 0;
  display: flex;
  flex-direction: column;
}
.newsroom-more-item::after {
  content: "";
  width: 100%;
  height: 1px;
  margin-top: 44px;
  background: var(--nr-line);
}
.newsroom-more-item:nth-child(odd)::after {
  width: calc(100% + 88px);
}
.newsroom-more-item:nth-last-child(-n + 2)::after {
  display: none;
}
.newsroom-more-content {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 132px;
}
.newsroom-more-thumb {
  height: 132px;
  border-radius: 20px;
  overflow: hidden;
}
.newsroom-more-thumb .news-media {
  height: 100%;
  min-height: 0;
}
.newsroom-more-thumb .news-media-fallback {
  padding: 16px;
}
.newsroom-more-thumb .news-media-fallback span {
  font-size: 23px;
}
.newsroom-more-copy h3 {
  margin: 10px 0 9px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.newsroom-more-copy time {
  color: var(--nr-muted);
  font-size: 16px;
}
.newsroom-view-archive-container {
  max-width: var(--nr-shell);
  margin: 64px auto 0;
  text-align: center;
}
.newsroom-view-archive {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px 11px;
  border-radius: 30px;
  background: #e8e8ed;
  color: var(--nr-text);
  font-size: 17px;
  line-height: 21px;
  font-weight: 600;
  transition:
    background-color 0.3s cubic-bezier(0.4, 0, 0.25, 1),
    color 0.3s cubic-bezier(0.4, 0, 0.25, 1);
}
.newsroom-view-archive:hover {
  background: #d2d2d7;
}
.newsroom-view-archive:focus-visible {
  outline: 3px solid #0071e3;
  outline-offset: 3px;
}
.newsroom-empty {
  max-width: var(--nr-shell);
  margin: 30px auto 0;
  color: var(--nr-muted);
  text-align: center;
}
.article-main {
  background: #fff;
}
.article-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 52px 0 100px;
}
.article-copy-width {
  width: calc(100% - 44px);
  max-width: 653px;
  margin-right: auto;
  margin-left: auto;
}
.article-eyebrow {
  margin: 0 0 20px;
}
.article-kicker {
  display: block;
  margin: 0;
  color: #1d1d1f;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.article-date {
  display: block;
  margin-top: 4px;
  color: #1d1d1f;
  font-size: 14px;
  line-height: 18px;
}
.article-shell h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 52px;
  font-weight: 600;
  letter-spacing: -0.035em;
  text-align: left;
}
.article-deck {
  margin-top: 20px;
  margin-bottom: 0;
  color: #1d1d1f;
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  letter-spacing: 0.009em;
  text-align: left;
}
.article-media-figure {
  width: 100%;
  margin: 112px 0 40px;
}
.article-media-figure + .article-media-figure {
  margin-top: 54px;
}
.article-media-frame {
  width: calc(100% - 44px);
  max-width: 980px;
  aspect-ratio: 3/2;
  margin: auto;
  overflow: hidden;
  background: #f5f5f7;
}
.article-media-frame .news-media {
  height: 100%;
  min-height: 0;
}
.article-media-frame .news-media-fallback {
  padding: 44px;
}
.article-media-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.article-media-description {
  width: calc(100% - 44px);
  max-width: 653px;
  margin: 12px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  color: #6e6e73;
  font-size: 12px;
  line-height: 16px;
}
.article-media-caption {
  flex: 1;
  min-width: 0;
}
.article-media-download {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-top: -4px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: #1d1d1f;
  cursor: pointer;
}
.article-media-download::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 8px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.article-media-download::after {
  content: "";
  position: absolute;
  left: 7px;
  bottom: 4px;
  width: 10px;
  border-bottom: 1.5px solid currentColor;
}
.article-media-download {
  position: relative;
}
.article-media-download[aria-disabled="true"] {
  color: #86868b;
  cursor: default;
}
.article-body {
  font-size: 19px;
  line-height: 27px;
}
.article-body p {
  margin: 0 0 27px;
}
.article-body p:last-child {
  margin-bottom: 0;
}
.article-press-contacts {
  margin-top: 54px;
  padding-top: 52px;
  border-top: 1px solid #d2d2d7;
}
.article-press-contacts h2 {
  margin: 0;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.009em;
}
.article-contact-list {
  margin-top: -4px;
}
.article-contact {
  margin-top: 24px;
  font-size: 14px;
  line-height: 20px;
}
.article-contact strong,
.article-contact span,
.article-contact a {
  display: block;
}
.article-contact strong {
  font-weight: 600;
}
.article-contact a {
  color: #06c;
}
.article-contact a:hover {
  text-decoration: underline;
}
.article-back-link {
  display: inline-block;
  margin-top: 42px;
  color: #06c;
  font-size: 14px;
}
@media (min-width: 735px) and (max-width: 1068px) {
  .newsroom-latest,
  .newsroom-more h2,
  .newsroom-more-grid,
  .newsroom-view-archive-container {
    max-width: 692px;
  }
  .newsroom-latest-grid {
    gap: 24px;
  }
  .newsroom-featured-card {
    grid-template-columns: 454px 238px;
    height: 306px;
  }
  .newsroom-featured-copy {
    padding: 30px 26px 27px;
  }
  .newsroom-featured-copy h2 {
    font-size: 27px;
  }
  .newsroom-latest-grid .news-card:nth-child(-n + 2) {
    margin-inline: 0;
  }
  .newsroom-latest-grid .news-card:nth-child(-n + 2) .news-card-copy,
  .newsroom-latest-grid .news-card:nth-child(n + 3) .news-card-copy {
    height: 190px;
    padding: 24px;
  }
  .newsroom-latest-grid .news-card:nth-child(-n + 2) .news-card-copy h2,
  .newsroom-latest-grid .news-card:nth-child(n + 3) .news-card-copy h2 {
    font-size: 21px;
    line-height: 1.14;
  }
  .newsroom-more {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .newsroom-more h2 {
    margin-bottom: 52px;
  }
  .newsroom-more-grid {
    width: calc(100% + 36px);
    max-width: 728px;
    margin-right: -36px;
    grid-template-columns: repeat(2, 1fr);
  }
  .newsroom-more-item {
    width: 326px;
    margin-right: 36px;
  }
  .newsroom-more-item:nth-child(odd)::after {
    width: calc(100% + 52px);
  }
  .newsroom-more-content {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 22px;
    min-height: 112px;
  }
  .newsroom-more-thumb {
    height: 112px;
  }
  .newsroom-more-copy h3 {
    font-size: 19px;
  }
  .newsroom-view-archive-container {
    margin-top: 44px;
  }
}
@media (max-width: 734px) {
  .newsroom-localnav {
    top: 0;
  }

  .newsroom-localnav-inner {
    position: relative;
    width: 100%;
    height: 48px;
    padding: 0 16px;
  }
  .newsroom-localnav-title {
    font-size: 19px;
  }
  .newsroom-localnav-menu {
    display: block;
    margin-left: auto;
  }
  .newsroom-localnav.is-open .newsroom-localnav-menu {
    transform: rotate(180deg);
  }
  .newsroom-localnav-links {
    position: absolute;
    z-index: 2;
    top: 48px;
    right: 0;
    left: 0;
    display: none;
    align-items: flex-start;
    gap: 0;
    padding: 12px 16px 18px;
    background: #fff;
    border-top: 1px solid #e5e5e7;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }
  .newsroom-localnav.is-open .newsroom-localnav-links {
    display: flex;
    flex-direction: column;
  }
  .newsroom-localnav-links > a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 15px;
  }
  .newsroom-search-toggle {
    width: auto;
    height: 34px;
    margin-top: 8px;
    padding: 0 13px;
  }
  .newsroom-search-toggle span {
    display: inline;
  }
  .newsroom-search {
    width: 100%;
    padding: 12px 16px 15px;
    grid-template-columns: 1fr auto;
  }
  .newsroom-search label {
    display: none;
  }
  .newsroom-latest {
    width: 87.5%;
    max-width: 366px;
  }
  .newsroom-latest {
    padding-top: 40px;
    padding-bottom: 52px;
  }
  .newsroom-latest h1,
  .newsroom-more h2 {
    font-size: 28px;
    line-height: 32px;
  }
  .newsroom-featured-card {
    grid-template-columns: 1fr;
    height: auto;
    margin-top: 24px;
  }
  .newsroom-featured-card .news-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .newsroom-featured-copy {
    min-height: 220px;
    padding: 24px;
  }
  .newsroom-featured-copy h2 {
    font-size: 29px;
  }
  .newsroom-featured-copy time {
    padding-top: 25px;
  }
  .newsroom-latest-grid,
  .newsroom-more-grid {
    grid-template-columns: 1fr;
  }
  .newsroom-latest-grid {
    gap: 24px;
    margin-top: 24px;
  }
  .newsroom-latest-grid .news-card:nth-child(-n + 2),
  .newsroom-latest-grid .news-card:nth-child(n + 3) {
    grid-column: auto;
    margin-inline: 0;
  }
  .news-card .news-media {
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .news-card-copy,
  .newsroom-latest-grid .news-card:nth-child(-n + 2) .news-card-copy,
  .newsroom-latest-grid .news-card:nth-child(n + 3) .news-card-copy {
    height: 205px;
    padding: 24px;
  }
  .news-card-copy h2,
  .newsroom-latest-grid .news-card:nth-child(-n + 2) .news-card-copy h2,
  .newsroom-latest-grid .news-card:nth-child(n + 3) .news-card-copy h2 {
    font-size: 23px;
    line-height: 1.13;
  }
  .newsroom-more {
    padding: 40px 6.25% 52px;
  }
  .newsroom-more h2 {
    max-width: 366px;
    margin: 0 auto 36px;
  }
  .newsroom-more-grid {
    width: 100%;
    max-width: 366px;
    margin: 0 auto -36px;
  }
  .newsroom-more-item {
    width: 100%;
    margin: 0 0 36px;
  }
  .newsroom-more-content {
    grid-template-columns: 96px 1fr;
    gap: 18px;
    min-height: 96px;
  }
  .newsroom-more-item::after,
  .newsroom-more-item:nth-child(odd)::after {
    width: 100%;
    margin-top: 36px;
  }
  .newsroom-more-item:nth-last-child(-n + 2)::after {
    display: block;
  }
  .newsroom-more-item:last-child::after {
    display: none;
  }
  .newsroom-more-thumb {
    height: 96px;
    border-radius: 17px;
  }
  .newsroom-more-copy h3 {
    font-size: 19px;
  }
  .newsroom-more-copy time {
    font-size: 14px;
  }
  .newsroom-view-archive-container {
    max-width: 366px;
    margin: 36px auto 0;
  }
  .article-shell {
    padding: 42px 0 72px;
  }
  .article-copy-width {
    width: calc(100% - 32px);
  }
  .article-eyebrow {
    margin-bottom: 18px;
  }
  .article-shell h1 {
    font-size: 36px;
    line-height: 40px;
  }
  .article-deck {
    margin-top: 17px;
    font-size: 21px;
    line-height: 25px;
  }
  .article-media-figure {
    margin-top: 64px;
    margin-bottom: 34px;
  }
  .article-media-frame {
    width: 100%;
    aspect-ratio: 4/3;
  }
  .article-media-description {
    width: calc(100% - 32px);
    margin-top: 10px;
    gap: 18px;
  }
  .article-body {
    font-size: 17px;
    line-height: 25px;
  }
  .article-body p {
    margin-bottom: 25px;
  }
  .article-press-contacts {
    margin-top: 44px;
    padding-top: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .newsroom-page * {
    scroll-behavior: auto !important;
  }
  .newsroom-featured-card .news-media img,
  .newsroom-featured-card .news-media-fallback,
  .news-card .news-media img,
  .news-card .news-media-fallback,
  .newsroom-more-item .news-media img,
  .newsroom-more-item .news-media-fallback {
    transform: none !important;
    transition: none !important;
  }
}
