:root {
  color-scheme: light dark;
  --teas-canvas: #f4f6f8;
  --teas-surface: #ffffff;
  --teas-surface-soft: #edf1f5;
  --teas-ink: #17202a;
  --teas-muted: #65707d;
  --teas-line: #d8dee5;
  --teas-accent: #235fb8;
  --teas-accent-strong: #194b93;
  --teas-on-accent: #f8fbff;
  --teas-header: rgba(255, 255, 255, 0.94);
  --teas-shadow: 0 22px 60px rgba(28, 50, 78, 0.12);
  --teas-radius: 18px;
  --teas-control-radius: 10px;
  --teas-header-height: 72px;
  --teas-container: 1180px;
  --teas-transition: 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --teas-canvas: #10151b;
    --teas-surface: #171e26;
    --teas-surface-soft: #202a35;
    --teas-ink: #edf2f7;
    --teas-muted: #aab5c0;
    --teas-line: #34404d;
    --teas-accent: #6ba4f0;
    --teas-accent-strong: #8ab8f5;
    --teas-on-accent: #0d1723;
    --teas-header: rgba(16, 21, 27, 0.94);
    --teas-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--teas-header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--teas-canvas);
  color: var(--teas-ink);
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.teas-menu-open {
  overflow: hidden;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
dl,
dd,
figure {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  background: var(--teas-accent);
  color: var(--teas-on-accent);
}

:focus-visible {
  outline: 3px solid var(--teas-accent);
  outline-offset: 4px;
}

.teas-container {
  width: min(calc(100% - 48px), var(--teas-container));
  margin-inline: auto;
}

.teas-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--teas-control-radius);
  background: var(--teas-ink);
  color: var(--teas-canvas);
  transform: translateY(-160%);
  transition: transform var(--teas-transition);
}

.teas-skip-link:focus {
  transform: translateY(0);
}

.teas-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--teas-header-height);
  border-bottom: 1px solid var(--teas-line);
  background: var(--teas-header);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.teas-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), 1480px);
  height: 100%;
  margin-inline: auto;
}

.teas-brand,
.teas-footer__brand {
  display: inline-flex;
  align-items: center;
  min-width: 120px;
}

.teas-brand img,
.teas-footer__brand img {
  width: auto;
  max-width: 180px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.teas-navigation__list {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 42px);
}

.teas-navigation a {
  position: relative;
  display: block;
  padding-block: 10px;
  color: var(--teas-muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color var(--teas-transition);
}

.teas-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--teas-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--teas-transition);
}

.teas-navigation a:hover,
.teas-navigation a:focus-visible {
  color: var(--teas-ink);
}

.teas-navigation a:hover::after,
.teas-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.teas-menu-button {
  display: none;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: var(--teas-ink);
  cursor: pointer;
}

.teas-menu-button__label {
  font-size: 13px;
  font-weight: 700;
}

.teas-menu-button__lines {
  position: relative;
  display: block;
  width: 28px;
  height: 18px;
}

.teas-menu-button__lines i {
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background: currentColor;
  transition: transform var(--teas-transition), top var(--teas-transition);
}

.teas-menu-button__lines i:first-child {
  top: 4px;
}

.teas-menu-button__lines i:last-child {
  top: 12px;
}

.teas-menu-button[aria-expanded="true"] .teas-menu-button__lines i:first-child {
  top: 9px;
  transform: rotate(45deg);
}

.teas-menu-button[aria-expanded="true"] .teas-menu-button__lines i:last-child {
  top: 9px;
  transform: rotate(-45deg);
}

.teas-hero {
  display: grid;
  grid-template-columns: minmax(360px, 5fr) minmax(0, 7fr);
  min-height: calc(100dvh - var(--teas-header-height));
  background: var(--teas-surface);
}

.teas-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(56px, 8vw, 132px) clamp(32px, 6vw, 110px);
}

.teas-hero__eyebrow,
.teas-section-heading > p,
.teas-company__heading > p,
.teas-page-hero__copy > p,
.teas-title-hero p,
.teas-article__header p {
  margin-bottom: 18px;
  color: var(--teas-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.teas-hero h1 {
  max-width: 11em;
  font-size: clamp(40px, 4.6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.16;
}

.teas-hero h1 span {
  display: block;
  color: var(--teas-muted);
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.teas-hero__lead {
  max-width: 31em;
  margin-top: 28px;
  color: var(--teas-muted);
  font-size: 16px;
  line-height: 1.9;
}

.teas-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 54px;
  margin-top: 34px;
  padding: 14px 24px;
  border: 1px solid var(--teas-accent-strong);
  border-radius: var(--teas-control-radius);
  background: var(--teas-accent);
  color: var(--teas-on-accent);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(35, 95, 184, 0.18);
  transition: background var(--teas-transition), transform var(--teas-transition), box-shadow var(--teas-transition);
}

.teas-button:hover,
.teas-button:focus-visible {
  background: var(--teas-accent-strong);
  box-shadow: 0 16px 34px rgba(35, 95, 184, 0.25);
  transform: translateY(-2px);
}

.teas-button:active {
  transform: translateY(1px);
}

.teas-hero__visual {
  min-height: 620px;
  overflow: hidden;
}

.teas-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teas-section {
  padding-block: clamp(82px, 10vw, 150px);
}

.teas-section-heading {
  max-width: 760px;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.teas-section-heading h2,
.teas-company__heading h2,
.teas-contact__intro h2 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.teas-news-summary {
  background: var(--teas-surface-soft);
}

.teas-news-summary__list {
  border-top: 1px solid var(--teas-line);
}

.teas-news-row {
  border-bottom: 1px solid var(--teas-line);
}

.teas-news-row a {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.35fr) auto;
  gap: 36px;
  align-items: center;
  padding: 28px 8px;
  transition: background var(--teas-transition), padding var(--teas-transition);
}

.teas-news-row a:hover,
.teas-news-row a:focus-visible {
  padding-inline: 18px;
  background: var(--teas-surface);
}

.teas-news-row h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.teas-news-row p {
  color: var(--teas-muted);
  font-size: 14px;
  line-height: 1.75;
}

.teas-news-row span {
  color: var(--teas-accent);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.teas-services {
  background: var(--teas-canvas);
}

.teas-services__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.teas-service-card {
  grid-column: span 6;
  overflow: hidden;
  border: 1px solid var(--teas-line);
  border-radius: var(--teas-radius);
  background: var(--teas-surface);
  box-shadow: 0 12px 34px rgba(28, 50, 78, 0.07);
  transition: transform var(--teas-transition), box-shadow var(--teas-transition);
}

.teas-service-card:nth-child(4n + 1),
.teas-service-card:nth-child(4n) {
  grid-column: span 7;
}

.teas-service-card:nth-child(4n + 2),
.teas-service-card:nth-child(4n + 3) {
  grid-column: span 5;
}

.teas-service-card:hover {
  box-shadow: var(--teas-shadow);
  transform: translateY(-5px);
}

.teas-service-card__media {
  height: clamp(250px, 30vw, 390px);
  overflow: hidden;
  background: var(--teas-surface-soft);
}

.teas-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.teas-service-card:hover .teas-service-card__media img {
  transform: scale(1.035);
}

.teas-service-card__body {
  padding: clamp(24px, 3.5vw, 42px);
}

.teas-service-card__body h3 {
  margin-bottom: 18px;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.45;
}

.teas-service-card__body > p {
  color: var(--teas-muted);
  line-height: 1.9;
}

.teas-service-card__details {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--teas-line);
  color: var(--teas-muted);
  font-size: 14px;
  line-height: 1.9;
}

.teas-company {
  background: var(--teas-surface);
}

.teas-company__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(60px, 10vw, 150px);
}

.teas-company__heading {
  align-self: start;
  position: sticky;
  top: calc(var(--teas-header-height) + 40px);
}

.teas-company__heading > span {
  display: block;
  max-width: 28em;
  margin-top: 26px;
  color: var(--teas-muted);
}

.teas-company__facts {
  border-top: 1px solid var(--teas-line);
}

.teas-company__facts > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  padding-block: 23px;
  border-bottom: 1px solid var(--teas-line);
}

.teas-company__facts dt {
  color: var(--teas-muted);
  font-size: 13px;
  font-weight: 700;
}

.teas-company__facts dd {
  font-weight: 600;
  line-height: 1.75;
}

.teas-access {
  background: var(--teas-surface-soft);
}

.teas-access__map {
  overflow: hidden;
  min-height: 440px;
  border: 1px solid var(--teas-line);
  border-radius: var(--teas-radius);
  background: var(--teas-surface);
  box-shadow: var(--teas-shadow);
}

.teas-access__map iframe {
  width: 100%;
  height: 440px;
  border: 0;
}

.teas-page-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  min-height: 520px;
  background: var(--teas-surface);
}

.teas-page-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px);
}

.teas-page-hero__copy h1,
.teas-title-hero h1,
.teas-article__header h1 {
  max-width: 12em;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.22;
}

.teas-page-hero__media {
  min-height: 520px;
  overflow: hidden;
}

.teas-page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teas-title-hero,
.teas-article__header {
  padding-block: clamp(80px, 11vw, 160px);
  background: var(--teas-surface);
}

.teas-richtext__body,
.teas-article__body {
  max-width: 860px;
  padding: clamp(34px, 5vw, 70px);
  border: 1px solid var(--teas-line);
  border-radius: var(--teas-radius);
  background: var(--teas-surface);
  box-shadow: 0 12px 34px rgba(28, 50, 78, 0.07);
}

.teas-richtext__body h2,
.teas-richtext__body h3,
.teas-article__body h2,
.teas-article__body h3 {
  margin: 1.8em 0 0.7em;
  line-height: 1.45;
}

.teas-richtext__body h2:first-child,
.teas-richtext__body h3:first-child,
.teas-article__body h2:first-child,
.teas-article__body h3:first-child {
  margin-top: 0;
}

.teas-richtext__body p,
.teas-article__body p {
  margin-block: 1.2em;
  line-height: 2;
}

.teas-richtext__body img,
.teas-article__body img {
  margin-block: 34px;
  border-radius: var(--teas-radius);
}

.teas-contact {
  background: var(--teas-canvas);
}

.teas-contact__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.teas-contact__intro p {
  max-width: 28em;
  margin-top: 24px;
  color: var(--teas-muted);
}

.teas-form {
  display: grid;
  gap: 28px;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid var(--teas-line);
  border-radius: var(--teas-radius);
  background: var(--teas-surface);
  box-shadow: var(--teas-shadow);
}

.teas-form__field {
  display: grid;
  gap: 9px;
}

.teas-form__field label {
  font-size: 14px;
  font-weight: 800;
}

.teas-form__field label span {
  margin-left: 8px;
  color: var(--teas-accent);
  font-size: 11px;
}

.teas-form__field input,
.teas-form__field textarea {
  width: 100%;
  border: 1px solid var(--teas-line);
  border-radius: var(--teas-control-radius);
  background: var(--teas-canvas);
  color: var(--teas-ink);
  transition: border-color var(--teas-transition), box-shadow var(--teas-transition), background var(--teas-transition);
}

.teas-form__field input {
  min-height: 54px;
  padding: 12px 16px;
}

.teas-form__field textarea {
  min-height: 190px;
  padding: 16px;
  resize: vertical;
}

.teas-form__field input:focus,
.teas-form__field textarea:focus {
  border-color: var(--teas-accent);
  background: var(--teas-surface);
  box-shadow: 0 0 0 4px rgba(35, 95, 184, 0.13);
  outline: 0;
}

.teas-form__submit {
  justify-self: start;
  min-width: 180px;
  margin-top: 6px;
  cursor: pointer;
}

.teas-form[aria-busy="true"] .teas-form__submit {
  cursor: wait;
  opacity: 0.72;
}

.teas-news-archive {
  background: var(--teas-canvas);
}

.teas-news-archive__list {
  display: grid;
  gap: 18px;
}

.teas-news-entry a {
  display: grid;
  grid-template-columns: 120px minmax(240px, 0.8fr) minmax(0, 1.2fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px 30px;
  border: 1px solid var(--teas-line);
  border-radius: var(--teas-radius);
  background: var(--teas-surface);
  transition: border-color var(--teas-transition), transform var(--teas-transition), box-shadow var(--teas-transition);
}

.teas-news-entry a:hover,
.teas-news-entry a:focus-visible {
  border-color: var(--teas-accent);
  box-shadow: 0 12px 34px rgba(28, 50, 78, 0.1);
  transform: translateY(-3px);
}

.teas-news-entry time {
  color: var(--teas-muted);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.teas-news-entry h2 {
  font-size: 18px;
  line-height: 1.55;
}

.teas-news-entry p {
  color: var(--teas-muted);
  font-size: 14px;
}

.teas-news-entry > a > span {
  color: var(--teas-accent);
  font-size: 20px;
}

.teas-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 54px;
}

.teas-pagination a,
.teas-pagination > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid var(--teas-line);
  border-radius: var(--teas-control-radius);
  background: var(--teas-surface);
  font-size: 13px;
}

.teas-pagination__numbers {
  gap: 8px;
  border: 0 !important;
  background: transparent !important;
}

.teas-pagination a:hover,
.teas-pagination a:focus-visible {
  border-color: var(--teas-accent);
  color: var(--teas-accent);
}

.teas-empty {
  padding: 34px;
  border-radius: var(--teas-radius);
  background: var(--teas-surface);
  color: var(--teas-muted);
  text-align: center;
}

.teas-article__header-inner {
  display: grid;
  gap: 16px;
}

.teas-article__header time {
  color: var(--teas-muted);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.teas-article__body {
  margin-block: clamp(70px, 9vw, 130px);
}

.teas-footer {
  padding-top: clamp(70px, 8vw, 110px);
  border-top: 1px solid var(--teas-line);
  background: var(--teas-surface);
}

.teas-footer__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(270px, 1.1fr) minmax(260px, 1fr);
  gap: clamp(42px, 7vw, 100px);
}

.teas-footer h2 {
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 800;
}

.teas-footer__identity p {
  margin-top: 24px;
  color: var(--teas-muted);
  font-size: 14px;
}

.teas-footer__contact dl {
  display: grid;
  gap: 14px;
}

.teas-footer__contact dl > div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  font-size: 14px;
}

.teas-footer__contact dt {
  color: var(--teas-muted);
}

.teas-footer__contact a:hover,
.teas-footer__navigation a:hover {
  color: var(--teas-accent);
}

.teas-footer__navigation ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.teas-footer__navigation a {
  font-size: 14px;
  font-weight: 650;
  transition: color var(--teas-transition);
}

.teas-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 70px;
  padding-block: 24px;
  border-top: 1px solid var(--teas-line);
}

.teas-footer__bottom p {
  color: var(--teas-muted);
  font-size: 12px;
}

.teas-back-top {
  min-width: 54px;
  min-height: 44px;
  border: 1px solid var(--teas-line);
  border-radius: var(--teas-control-radius);
  background: var(--teas-surface-soft);
  color: var(--teas-ink);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color var(--teas-transition), color var(--teas-transition), transform var(--teas-transition);
}

.teas-back-top:hover,
.teas-back-top:focus-visible {
  border-color: var(--teas-accent);
  color: var(--teas-accent);
  transform: translateY(-2px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .teas-hero {
    grid-template-columns: minmax(310px, 0.9fr) minmax(0, 1.1fr);
  }

  .teas-hero__content {
    padding-inline: 42px;
  }

  .teas-service-card,
  .teas-service-card:nth-child(n) {
    grid-column: span 6;
  }

  .teas-news-entry a {
    grid-template-columns: 100px minmax(0, 1fr) auto;
  }

  .teas-news-entry p {
    grid-column: 2 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --teas-header-height: 66px;
  }

  .teas-container,
  .teas-header__inner {
    width: min(calc(100% - 32px), var(--teas-container));
  }

  .teas-menu-button {
    display: inline-flex;
  }

  .teas-navigation {
    position: fixed;
    top: var(--teas-header-height);
    right: 0;
    left: 0;
    max-height: calc(100dvh - var(--teas-header-height));
    overflow-y: auto;
    border-bottom: 1px solid var(--teas-line);
    background: var(--teas-surface);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity var(--teas-transition), transform var(--teas-transition);
  }

  .teas-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .teas-navigation__list {
    display: grid;
    gap: 0;
    width: min(calc(100% - 32px), var(--teas-container));
    margin-inline: auto;
    padding-block: 16px 28px;
  }

  .teas-navigation li {
    border-bottom: 1px solid var(--teas-line);
  }

  .teas-navigation a {
    padding-block: 15px;
    font-size: 15px;
  }

  .teas-navigation a::after {
    display: none;
  }

  .teas-hero,
  .teas-page-hero {
    grid-template-columns: 1fr;
  }

  .teas-hero__content,
  .teas-page-hero__copy {
    min-height: auto;
    padding: 64px 24px;
  }

  .teas-hero__visual,
  .teas-page-hero__media {
    min-height: 48dvh;
    max-height: 620px;
  }

  .teas-news-row a {
    grid-template-columns: 1fr auto;
    gap: 12px 20px;
  }

  .teas-news-row p {
    grid-column: 1 / -1;
  }

  .teas-company__layout,
  .teas-contact__layout,
  .teas-footer__grid {
    grid-template-columns: 1fr;
  }

  .teas-company__heading {
    position: static;
  }

  .teas-footer__grid {
    gap: 46px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .teas-brand img,
  .teas-footer__brand img {
    max-width: 142px;
    height: 36px;
  }

  .teas-menu-button__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .teas-hero h1,
  .teas-page-hero__copy h1,
  .teas-title-hero h1,
  .teas-article__header h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .teas-section {
    padding-block: 72px;
  }

  .teas-service-card,
  .teas-service-card:nth-child(n) {
    grid-column: 1 / -1;
  }

  .teas-service-card__media {
    height: 250px;
  }

  .teas-company__facts > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .teas-access__map,
  .teas-access__map iframe {
    min-height: 360px;
    height: 360px;
  }

  .teas-news-entry a {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 22px;
  }

  .teas-news-entry h2,
  .teas-news-entry p {
    grid-column: 1 / -1;
  }

  .teas-news-entry p {
    margin-top: 2px;
  }

  .teas-form,
  .teas-richtext__body,
  .teas-article__body {
    padding: 24px;
  }

  .teas-footer__navigation ul {
    grid-template-columns: 1fr;
  }

  .teas-footer__bottom {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .teas-header,
  .teas-back-top,
  .teas-button {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .teas-section {
    padding-block: 30px;
  }
}

/* Preserve the established site composition while keeping the implementation independent. */
@media screen {
  :root {
    color-scheme: light;
    --teas-canvas: #ffffff;
    --teas-surface: #ffffff;
    --teas-surface-soft: #f5f6f8;
    --teas-ink: #24272d;
    --teas-muted: #626975;
    --teas-line: #dfe2e7;
    --teas-accent: #2f63cc;
    --teas-accent-strong: #214b9d;
    --teas-on-accent: #ffffff;
    --teas-header: #ffffff;
    --teas-header-height: 72px;
    --teas-container: 1424px;
    --teas-radius: 0;
    --teas-control-radius: 10px;
  }

  body {
    background: #ffffff;
    color: var(--teas-ink);
    font-size: 16px;
    line-height: 1.85;
  }

  .teas-container {
    width: min(92%, var(--teas-container));
  }

  .teas-header {
    border-bottom-color: rgba(36, 39, 45, 0.08);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(31, 38, 50, 0.04);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .teas-header__inner {
    padding-inline: 24px 42px;
  }

  .teas-brand img {
    width: auto;
    max-width: 190px;
    height: 40px;
    object-fit: contain;
  }

  .teas-navigation__list {
    gap: clamp(30px, 3.1vw, 52px);
  }

  .teas-navigation__list a {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.035em;
  }

  .teas-page--home .teas-hero {
    height: calc(100dvh - var(--teas-header-height));
    min-height: min(680px, calc(100dvh - var(--teas-header-height)));
  }

  .teas-page--home .teas-hero__visual::after {
    background: rgba(13, 20, 28, 0.45);
  }

  .teas-page--home .teas-hero__content {
    justify-content: center;
    width: min(92%, var(--teas-container));
    padding: 20px 40px;
  }

  .teas-page--home .teas-hero__content::before {
    position: absolute;
    top: calc(50% - 132px);
    bottom: calc(50% - 132px);
    left: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.42);
    content: "";
  }

  .teas-page--home .teas-hero__eyebrow,
  .teas-page--home .teas-hero__lead {
    display: none;
  }

  .teas-page--home .teas-hero h1 {
    max-width: 900px;
    color: #ffffff;
    font-size: clamp(35px, 3.8vw, 60px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.035em;
    text-shadow: none;
  }

  .teas-page--home .teas-hero h1 span {
    display: block;
    color: #ffffff;
    font: inherit;
    letter-spacing: inherit;
  }

  .teas-page--home .teas-button {
    min-width: 166px;
    min-height: 64px;
    margin-top: 36px;
    padding: 18px 38px;
    border-radius: 10px;
  }

  .teas-page--home .teas-button span {
    display: none;
  }

  .teas-section {
    padding-block: clamp(76px, 7vw, 104px);
  }

  .teas-section-heading,
  .teas-company__heading {
    max-width: 760px;
    margin-bottom: clamp(46px, 5vw, 70px);
  }

  .teas-section-heading > p,
  .teas-company__heading > p,
  .teas-company__heading > span {
    display: none;
  }

  .teas-section-heading h2,
  .teas-company__heading h2 {
    font-size: clamp(28px, 2.6vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
  }

  .teas-section-heading::after,
  .teas-company__heading::after {
    display: block;
    width: 72px;
    height: 3px;
    margin-top: 24px;
    background: var(--teas-accent);
    content: "";
  }

  .teas-intro {
    background: #ffffff;
  }

  .teas-intro__layout {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
    gap: clamp(48px, 6vw, 88px);
    align-items: center;
  }

  .teas-intro__copy h3 {
    margin-bottom: 28px;
    font-size: clamp(28px, 2.6vw, 44px);
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.025em;
  }

  .teas-intro__copy > p {
    max-width: 65ch;
    color: var(--teas-muted);
    line-height: 2;
  }

  .teas-intro__media {
    overflow: hidden;
    margin: 0;
    aspect-ratio: 4 / 3;
    background: #e9edf3;
  }

  .teas-intro__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .teas-news-summary {
    background: var(--teas-surface-soft);
  }

  .teas-news-summary .teas-container {
    display: block;
  }

  .teas-news-summary .teas-section-heading {
    margin-bottom: clamp(46px, 5vw, 70px);
  }

  .teas-news-summary .teas-section-heading h2 {
    font-size: clamp(28px, 2.6vw, 44px);
  }

  .teas-news-row a {
    grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.4fr);
    gap: clamp(22px, 4vw, 64px);
    padding: 24px 0;
  }

  .teas-news-row a:hover,
  .teas-news-row a:focus-visible {
    padding-inline: 0;
    background: rgba(47, 99, 204, 0.035);
  }

  .teas-news-row span {
    display: none;
  }

  .teas-services {
    background: #ffffff;
  }

  .teas-service-card,
  .teas-service-card:nth-child(n) {
    grid-template-columns: minmax(300px, 460px) minmax(0, 1fr);
    gap: clamp(36px, 6vw, 84px);
    padding-block: clamp(44px, 6vw, 78px);
  }

  .teas-service-card__media {
    justify-self: start;
    width: min(100%, 460px);
    height: 310px;
  }

  .teas-service-card:nth-child(even) .teas-service-card__media {
    justify-self: end;
  }

  .teas-service-card__body {
    padding: 0;
  }

  .teas-service-card__body h3 {
    margin-bottom: 24px;
    font-size: clamp(23px, 1.8vw, 31px);
    line-height: 1.35;
  }

  .teas-service-card__body > p,
  .teas-service-card__details {
    max-width: 68ch;
    color: var(--teas-muted);
    line-height: 2;
  }

  .teas-company {
    background: var(--teas-surface-soft);
  }

  .teas-company__layout {
    display: block;
  }

  .teas-company__heading {
    position: static;
  }

  .teas-company__facts {
    width: 100%;
  }

  .teas-company__facts > div {
    grid-template-columns: minmax(150px, 28%) minmax(0, 72%);
    gap: 0;
    padding: 0;
  }

  .teas-company__facts dt,
  .teas-company__facts dd {
    margin: 0;
    padding: 24px clamp(18px, 3vw, 36px);
    font-size: 16px;
    line-height: 1.8;
  }

  .teas-company__facts dt {
    display: flex;
    align-items: center;
    background: #e9ebef;
    color: var(--teas-ink);
    font-weight: 700;
  }

  .teas-company__facts dd {
    background: #ffffff;
    font-weight: 400;
  }

  .teas-access {
    padding-top: 0;
    background: var(--teas-surface-soft);
  }

  .teas-access__map {
    min-height: 440px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .teas-access__map iframe {
    height: 440px;
  }

  .teas-page-hero {
    grid-template-columns: minmax(320px, 2fr) minmax(0, 3fr);
    min-height: 480px;
  }

  .teas-page-hero__copy,
  .teas-page-hero__media {
    min-height: 480px;
  }

  .teas-page-hero__copy {
    padding: clamp(58px, 7vw, 104px);
  }

  .teas-page-hero__copy h1 {
    font-size: clamp(38px, 4vw, 58px);
  }

  .teas-footer {
    padding-top: clamp(52px, 4vw, 64px);
    background: #ffffff;
  }

  .teas-footer__grid {
    grid-template-columns: minmax(180px, 0.7fr) minmax(340px, 1.2fr) minmax(280px, 1fr);
    gap: clamp(32px, 5vw, 72px);
  }

  .teas-footer h2 {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--teas-line);
    font-size: 15px;
  }

  .teas-footer__address {
    margin-bottom: 14px;
    color: var(--teas-ink);
    font-size: 14px;
    font-weight: 600;
  }

  .teas-footer__contact dl {
    gap: 10px;
  }

  .teas-footer__navigation ul {
    grid-template-columns: repeat(2, minmax(110px, 1fr));
    gap: 10px 24px;
  }

  .teas-footer__bottom {
    margin-top: 36px;
    padding-block: 24px 40px;
  }

  .teas-back-top {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    border: 0;
    border-radius: 0;
    background: #24272d;
    color: transparent;
    font-size: 0;
  }

  .teas-back-top::before {
    color: #ffffff;
    font-size: 22px;
    content: "↑";
  }
}

@media screen and (min-width: 821px) {
  .teas-page main,
  .teas-page .teas-footer {
    margin-left: 90px;
  }

  .teas-side-rail {
    width: 90px;
  }

  .teas-side-rail span {
    font-size: 13px;
  }
}

@media screen and (max-width: 820px) {
  .teas-container,
  .teas-header__inner {
    width: min(calc(100% - 32px), var(--teas-container));
  }

  .teas-page--home .teas-hero,
  .teas-page--home .teas-hero__visual,
  .teas-page--home .teas-hero__visual img,
  .teas-page--home .teas-hero__content {
    height: 720px;
    min-height: 720px;
  }

  .teas-page--home .teas-hero__content {
    width: min(calc(100% - 48px), var(--teas-container));
    padding: 20px 28px;
  }

  .teas-page--home .teas-hero__content::before {
    left: 0;
  }

  .teas-intro__layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .teas-intro__media {
    width: min(100%, 520px);
  }

  .teas-news-row a {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .teas-service-card,
  .teas-service-card:nth-child(n) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 38px;
  }

  .teas-service-card:nth-child(even) .teas-service-card__media {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

  .teas-service-card__media {
    width: min(100%, 520px);
    height: clamp(230px, 58vw, 320px);
  }

  .teas-service-card__body {
    padding: 0;
  }

  .teas-company__facts > div {
    grid-template-columns: 1fr;
  }

  .teas-company__facts dt {
    padding-bottom: 10px;
  }

  .teas-company__facts dd {
    padding-top: 12px;
  }

  .teas-page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .teas-page-hero__copy,
  .teas-page-hero__media {
    min-height: 320px;
  }

  .teas-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media screen and (max-width: 480px) {
  .teas-page--home .teas-hero h1 {
    font-size: clamp(32px, 9vw, 48px);
    line-height: 1.22;
  }

  .teas-section {
    padding-block: 68px;
  }

  .teas-intro__copy h3,
  .teas-section-heading h2,
  .teas-company__heading h2 {
    font-size: 28px;
  }

  .teas-footer__navigation ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Layout-preserving presentation layer. The structure remains independently authored. */
@media (min-width: 821px) {
  .teas-page main,
  .teas-page .teas-footer {
    margin-left: 88px;
  }

  .teas-side-rail {
    position: fixed;
    top: var(--teas-header-height);
    bottom: 0;
    left: 0;
    z-index: 12;
    display: flex;
    width: 88px;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--teas-line);
    background: var(--teas-surface);
  }

  .teas-side-rail span {
    color: var(--teas-ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.24em;
    line-height: 1;
    white-space: nowrap;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
}

.teas-header__inner {
  width: 100%;
  max-width: none;
  padding-inline: clamp(28px, 3vw, 52px);
}

.teas-page--home .teas-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  height: calc(100dvh - var(--teas-header-height));
  min-height: calc(100dvh - var(--teas-header-height));
  overflow: hidden;
  background: #20262d;
}

.teas-page--home .teas-hero__visual,
.teas-page--home .teas-hero__content {
  grid-area: 1 / 1;
}

.teas-page--home .teas-hero__visual {
  position: relative;
  z-index: 0;
  height: 100%;
  min-height: 0;
}

.teas-page--home .teas-hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 21, 29, 0.78) 0%, rgba(14, 21, 29, 0.46) 40%, rgba(14, 21, 29, 0.12) 78%);
  content: "";
  pointer-events: none;
}

.teas-page--home .teas-hero__visual img {
  height: 100%;
  min-height: 0;
}

.teas-page--home .teas-hero__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 96px), var(--teas-container));
  height: 100%;
  min-height: 0;
  margin-inline: auto;
  padding: clamp(64px, 8vw, 118px) 0;
}

.teas-page--home .teas-hero__eyebrow {
  color: #c8dcfb;
}

.teas-page--home .teas-hero h1 {
  max-width: 10em;
  color: #f7f9fc;
  font-size: clamp(46px, 5vw, 72px);
  letter-spacing: -0.045em;
  text-shadow: 0 2px 20px rgba(8, 14, 22, 0.22);
}

.teas-page--home .teas-hero h1 span {
  color: #f7f9fc;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: inherit;
}

.teas-page--home .teas-hero__lead {
  color: rgba(247, 249, 252, 0.88);
}

.teas-news-summary {
  background: #f0f2f5;
}

.teas-news-summary .teas-container {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 108px);
  align-items: start;
}

.teas-news-summary .teas-section-heading {
  margin-bottom: 0;
}

.teas-news-summary .teas-section-heading h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.teas-news-row a {
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.35fr) auto;
}

.teas-services {
  background: var(--teas-surface);
}

.teas-services__grid {
  display: block;
}

.teas-service-card,
.teas-service-card:nth-child(n) {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  margin: 0;
  padding-block: clamp(44px, 6vw, 78px);
  overflow: visible;
  border: 0;
  border-bottom: 1px solid var(--teas-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.teas-service-card:first-child {
  border-top: 1px solid var(--teas-line);
}

.teas-service-card:hover {
  box-shadow: none;
  transform: none;
}

.teas-service-card__media {
  height: clamp(300px, 30vw, 410px);
  border-radius: 8px;
}

.teas-service-card__body {
  padding: clamp(30px, 5vw, 74px);
}

.teas-service-card:nth-child(even) .teas-service-card__media {
  grid-column: 2;
  grid-row: 1;
}

.teas-service-card:nth-child(even) .teas-service-card__body {
  grid-column: 1;
  grid-row: 1;
}

.teas-company {
  background: #f0f2f5;
}

.teas-company__layout {
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 108px);
}

.teas-company__heading {
  position: static;
}

.teas-access {
  background: #f0f2f5;
  padding-top: 0;
}

.teas-access__map {
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(28, 50, 78, 0.1);
}

.teas-page-hero {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  min-height: 480px;
}

.teas-page-hero__copy {
  background: #252a30;
  color: #f7f9fc;
}

.teas-page-hero__copy > p {
  color: #b9d2f6;
}

.teas-page-hero__copy h1 {
  font-size: clamp(38px, 4.4vw, 62px);
}

.teas-page-hero__media {
  min-height: 480px;
}

.teas-richtext__body,
.teas-article__body,
.teas-form {
  border-radius: 8px;
}

.teas-footer {
  padding-top: clamp(74px, 8vw, 112px);
}

.teas-back-top,
.teas-button {
  border-radius: 8px;
}

@media (max-width: 820px) {
  .teas-side-rail {
    display: none;
  }

  .teas-page main,
  .teas-page .teas-footer {
    margin-left: 0;
  }

  .teas-page--home .teas-hero {
    height: 720px;
    min-height: 720px;
  }

  .teas-page--home .teas-hero__visual,
  .teas-page--home .teas-hero__content {
    grid-area: 1 / 1;
  }

  .teas-page--home .teas-hero__visual,
  .teas-page--home .teas-hero__visual img,
  .teas-page--home .teas-hero__content {
    height: 720px;
    min-height: 720px;
  }

  .teas-page--home .teas-hero__visual {
    max-height: none;
  }

  .teas-page--home .teas-hero__visual::after {
    background: linear-gradient(90deg, rgba(14, 21, 29, 0.82), rgba(14, 21, 29, 0.28));
  }

  .teas-page--home .teas-hero__content {
    width: min(calc(100% - 48px), var(--teas-container));
    padding: 64px 0;
  }

  .teas-news-summary .teas-container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .teas-service-card,
  .teas-service-card:nth-child(n) {
    display: block;
    padding-block: 38px;
  }

  .teas-service-card:nth-child(even) .teas-service-card__media,
  .teas-service-card:nth-child(even) .teas-service-card__body {
    grid-column: auto;
    grid-row: auto;
  }

  .teas-service-card__body {
    padding: 28px 0 0;
  }

  .teas-page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .teas-page-hero__copy,
  .teas-page-hero__media {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .teas-page--home .teas-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .teas-page--home .teas-hero__lead {
    max-width: 24em;
  }

  .teas-news-row a {
    grid-template-columns: 1fr auto;
  }

  .teas-service-card__media {
    height: 250px;
  }
}

@media print {
  .teas-side-rail {
    display: none !important;
  }

  .teas-page main,
  .teas-page .teas-footer {
    margin-left: 0;
  }
}

/* Final visual parity rules. Kept last so the independent compatibility layer cannot alter the established layout. */
@media screen {
  .teas-page--home .teas-hero__visual::after {
    background: rgba(13, 20, 28, 0.45);
  }

  .teas-page--home .teas-hero__content {
    justify-content: center;
    width: min(92%, var(--teas-container));
    padding: 20px 40px;
  }

  .teas-page--home .teas-hero__content::before {
    top: calc(50% - 132px);
    bottom: calc(50% - 132px);
    left: 0;
  }

  .teas-page--home .teas-hero h1 {
    max-width: 900px;
    font-size: clamp(35px, 3.8vw, 60px);
    line-height: 1.18;
    letter-spacing: -0.035em;
  }

  .teas-news-summary .teas-container {
    display: block;
  }

  .teas-news-summary .teas-section-heading {
    margin-bottom: clamp(46px, 5vw, 70px);
  }

  .teas-news-row a {
    grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.4fr);
    gap: clamp(22px, 4vw, 64px);
    padding: 24px 0;
  }

  .teas-news-row span {
    display: none;
  }

  .teas-service-card,
  .teas-service-card:nth-child(n) {
    grid-template-columns: minmax(300px, 460px) minmax(0, 1fr);
    gap: clamp(36px, 6vw, 84px);
    padding-block: clamp(44px, 6vw, 78px);
  }

  .teas-service-card__media {
    width: min(100%, 460px);
    height: 310px;
  }

  .teas-service-card__body {
    padding: 0;
  }

  .teas-company__layout {
    display: block;
  }

  .teas-access__map {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .teas-page-hero {
    grid-template-columns: minmax(320px, 2fr) minmax(0, 3fr);
    min-height: 480px;
  }

  .teas-page-hero__copy,
  .teas-page-hero__media {
    min-height: 480px;
  }

  .teas-footer {
    padding-top: clamp(52px, 4vw, 64px);
  }
}

@media screen and (min-width: 821px) {
  .teas-page main,
  .teas-page .teas-footer {
    margin-left: 90px;
  }

  .teas-side-rail {
    width: 90px;
  }
}

@media screen and (max-width: 820px) {
  .teas-page--home .teas-hero__content {
    width: min(calc(100% - 48px), var(--teas-container));
    padding: 20px 28px;
  }

  .teas-news-row a {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .teas-service-card,
  .teas-service-card:nth-child(n) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 38px;
  }

  .teas-service-card__media {
    width: min(100%, 520px);
    height: clamp(230px, 58vw, 320px);
  }

  .teas-service-card__body {
    padding: 0;
  }

  .teas-page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .teas-page-hero__copy,
  .teas-page-hero__media {
    min-height: 320px;
  }
}

/* Requested content refinements: preserve the layout while correcting presentation details. */
.teas-navigation a {
  color: var(--teas-ink);
}

.teas-service-card__details {
  padding-top: 0;
  border-top: 0;
}

.teas-page-hero--article .teas-page-hero__copy time {
  display: block;
  margin-bottom: 18px;
  color: #d7dde5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.teas-page-hero--article .teas-page-hero__copy h1 {
  font-size: clamp(32px, 3.2vw, 48px);
}

@media screen and (min-width: 821px) {
  .teas-side-rail span {
    font-size: 12px;
    letter-spacing: 0.18em;
    writing-mode: horizontal-tb;
    transform: rotate(90deg);
    transform-origin: center;
  }
}

@media screen and (max-width: 820px) {
  #news-content .teas-page-hero__copy {
    min-height: 210px;
    padding: 40px 30px;
  }

  #article-content .teas-page-hero__copy {
    min-height: 260px;
    padding: 42px 30px;
  }

  #news-content .teas-page-hero__copy > p,
  #article-content .teas-page-hero__copy > p {
    margin-bottom: 14px;
  }

  #news-content .teas-page-hero__copy h1 {
    font-size: clamp(32px, 10vw, 40px);
  }

  #article-content .teas-page-hero__copy h1 {
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.35;
  }

  #news-content .teas-page-hero__media,
  #article-content .teas-page-hero__media {
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 9;
  }
}
