/* ====================
   ベーススタイル
   ==================== */
.information {
  background-color: #f3f8fd;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

/* 画像と同様に動画にも width/height/object-fit を指定する */
.information .link-button video {
  width: 100%;
  height: 100%;
  /* お好みに応じて cover/contain/fill を選択 */
  object-fit: cover;
  display: block;
}

/* move-icon の共通スタイル */
.information .link-button .move-icon {
  position: absolute;
  transition: transform 0.3s ease;
}

/* recruit-move 専用の位置・サイズ */
.information .recruit-button .move-icon {
  bottom: 80px;
  right: 80px;
  width: 271px;
  height: 32px;
}

/* contact-move 専用の位置・サイズ */
.information .contact-button .move-icon {
  bottom: 85px;
  right: 80px;
  width: 400px;
  height: 32px;
}

/* ホバー時にmove-iconが右へ動くアニメーション */
.information .recruit-button:hover .move-icon,
.information .contact-button:hover .move-icon {
  transform: translateX(20px);
}

.information-container {
  width: 100%;
  padding-top: 90px;
  position: relative;
  z-index: 2; /* コンテンツを前面に */
}

.information-content {
  display: flex;
  align-items: center;
  padding: 0 20px 0 90px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* タイポグラフィー */
.information-title {
  color: #333;
  font-family: "BIZ UDGothic";
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 8px;
  white-space: nowrap;
}

.information-subtitle {
  color: #333;
  font-family: "BIZ UDGothic";
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
}

/* レイアウト要素 */
.information-grid-line {
  margin: 0 28px;
  flex-shrink: 0;
  width: 4px;
  height: 100px;
}

.information-text-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* メイン記事スタイル */
.information-main {
  max-width: 1440px;
  margin: 60px auto 0;
  padding: 0 90px;
  position: relative;
  z-index: 1;
}

/* ▼ main-article を全体クリックできるように追加 */
.main-article {
  display: flex;
  gap: 60px;
  position: relative; /* 全体リンク用 */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 12px;
}

/* メイン記事をホバーしたときに浮く演出 */
.main-article:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.main-article:active {
  transform: translateY(0);
  box-shadow: none;
}

/* 全体リンク (.main-article-link) */
.main-article-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  overflow: hidden;
  z-index: 2;
  cursor: pointer;
}

.article-image {
  flex-shrink: 0;
  align-self: flex-start;
  width: min(520px, 45%);
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  position: relative;
}

.article-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-date {
  color: #333;
  font-family: "BIZ UDGothic";
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2.4px;
  opacity: 0.5;
}

.article-title {
  color: #333;
  font-family: "BIZ UDGothic";
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 3.6px;
}

.article-divider {
  height: 2px;
  background: #d9d9d9;
  margin: 0px 0;
}

.article-excerpt {
  color: #333;
  font-family: "BIZ UDGothic";
  font-size: 14px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 2.1px;
  opacity: 0.5;
}

.category-labels {
  display: flex;
  gap: 10px; /* ラベル間の間隔 */
  flex-wrap: wrap; /* 必要に応じて折り返し */
}

.information .category-label {
  display: flex;
  width: 191px;
  height: 25px;
  padding: 0 30px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  background: #fff;
  color: #333;
  font-family: "BIZ UDGothic";
  font-size: 14px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 2.1px;
  opacity: 0.5;
}

/* サブ記事グリッド */
.sub-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1440px;
  margin: 60px auto 0;
  padding: 0 90px;
  position: relative;
  z-index: 1;
}

/* ▼ sub-article を全体クリックできるように追加 */
.sub-article {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative; /* 全体リンク */
  padding-bottom: 20px;
  border-bottom: 2px solid #d9d9d9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 12px;
}

/* サブ記事のホバー演出 */
.sub-article:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.sub-article:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ▼ 全体リンク (.sub-article-link) */
.sub-article-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  overflow: hidden;
  z-index: 2;
  cursor: pointer;
}

.sub-article-date {
  color: #333;
  font-family: "BIZ UDGothic";
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2.4px;
  opacity: 0.5;
}

.sub-article-title {
  color: #333;
  font-family: "BIZ UDGothic";
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 2.7px;
}

/* 一覧を見るボタン */
.information .view-all-button-container {
  display: flex;
  justify-content: center;
  margin-top: 73px;
  padding-bottom: 200px;
}

.information .view-all-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 51px;
  background: #333;
  text-decoration: none;
  height: 50px;
  min-width: 295px;
  padding: 0 20px;
  position: relative;

  /* ホバー時アニメーション */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.information .view-all-button:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.information .view-all-button:active {
  transform: translateX(0);
  box-shadow: none;
}

.information .view-all-button span {
  color: #fff;
  text-align: center;
  font-family: "BIZ UDGothic";
  font-size: 16px;
  font-weight: 700;
  line-height: 28.9px;
  letter-spacing: 3.2px;
}

.information .arrow-icon {
  width: 20.4px;
  height: 20.4px;
}

.information .link-buttons {
  margin-top: 100px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.information .link-buttons-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.information .link-button {
  width: 50%;
  display: block;
  height: 450px;
  overflow: hidden;
}

.information .link-button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* リンクボタンのコンテンツスタイル */
.information .link-button {
  position: relative;
}

.information .link-button-content {
  position: absolute;
  top: 80px;
  left: 90px;
  text-align: left;
  z-index: 1;
}

.information .link-button-title {
  color: #333;
  font-family: "BIZ UDGothic";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4.8px;
  margin-bottom: 10px;
}

.information .link-button-subtitle {
  color: #333;
  font-family: "BIZ UDGothic";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.4px;
}

/* お問い合わせボタンの文字色を白に */
.information .contact-button .link-button-title,
.information .contact-button .link-button-subtitle {
  color: #fff;
}

/* ====================
   メディアクエリ
   ==================== */

/* メイン記事のレスポンシブ対応 */
@media screen and (max-width: 1440px) {
  .information-main {
    padding: 0 65px;
  }

  .main-article {
    gap: 30px;
  }

  .article-image {
    width: 45%;
    height: auto;
    min-width: 300px;
  }

  .article-content {
    flex: 1;
  }

  .sub-articles-grid {
    padding: 0 65px;
  }
}

@media screen and (max-width: 1200px) {
  .information .link-button-content {
    top: 60px;
    left: 60px;
  }

  .information .contact-button .move-icon {
    bottom: 85px;
    right: 45px;
    width: 300px;
    height: 24px;
  }

  .information .recruit-button .move-icon {
    bottom: 80px;
    right: 50px;
    width: 204px;
    height: 24px;
  }
  .information-main {
    padding: 0 40px;
  }

  .main-article {
    gap: 25px;
  }

  .article-image {
    width: 40%;
    min-width: 250px;
    aspect-ratio: 16 / 9;
    height: auto;
    background: #fff;
  }

  .article-image img {
    object-fit: contain;
  }

  .article-content {
    flex: 1;
    min-width: 0; /* flexアイテムが親要素を超えないように */
  }

  .article-title {
    font-size: 22px;
    line-height: 36px;
  }

  .article-excerpt {
    font-size: 13px;
    line-height: 23px;
  }

  .category-labels {
    flex-wrap: wrap;
    gap: 8px;
  }

  .information .category-label {
    width: auto;
    min-width: 120px;
    padding: 0 15px;
  }
  .information .link-button-content {
    top: 60px;
    left: 60px;
  }
}

/* タブレット (1004px以下) */
@media screen and (max-width: 1004px) {
  .information-main {
    margin-top: 40px;
    padding: 0 20px;
  }

  .main-article {
    gap: 20px;
  }

  .article-image {
    width: 35%;
    min-width: 200px;
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .article-title {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 2.4px;
  }

  .article-excerpt {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 1.8px;
  }

  .sub-articles-grid {
    margin-top: 40px;
    padding: 0 20px;
    gap: 20px;
  }

  .sub-article-title {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 2.4px;
  }

  .information-container {
    padding-top: 40px;
    padding-bottom: 70px;
  }

  .information-content {
    position: relative;
    width: fit-content;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    padding: 82px 0 0 30px;
    flex-direction: column;
    align-items: flex-start;
  }

  .information-grid-line {
    position: absolute;
    left: 0;
    top: 40px;
    margin: 0;
    height: 100%;
  }

  .information-title {
    font-size: 16px;
    letter-spacing: 6px;
    white-space: normal;
    margin: 0 0 13px 0;
  }

  .information-text-container {
    width: 100%;
    gap: 0;
  }

  .information-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 1.5;
  }
}

/* レスポンシブ対応を追加 */
@media screen and (min-width: 769px) and (max-width: 1004px) {
  .information-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 60px 0;
  }

  .information-grid-line {
    position: static;
    width: 4px;
    height: 90px;
    margin: 0 24px;
  }

  .information-title {
    font-size: 24px;
    letter-spacing: 6px;
    margin: 0;
    white-space: nowrap;
  }

  .information-text-container {
    width: auto;
    gap: 0;
  }

  .information-subtitle {
    font-size: 15px;
    letter-spacing: 2.4px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 768px) {
  .information .recruit-button .move-icon {
    bottom: 23px;
    right: 50px;
    width: 204px;
    height: 24px;
  }

  .information .contact-button .move-icon {
    bottom: 23px;
    right: 27px;
    width: 300px;
    height: 24px;
  }
  .information .link-button-content {
    top: 40px;
    left: 40px;
  }

  .information .link-button-title {
    font-size: 28px;
    letter-spacing: 4px;
  }

  .information .link-button-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
  }
  .information .link-button {
    width: 50%;
    display: block;
    height: 300px; /* この値は必要な高さに応じて調整できます */
    overflow: hidden; /* 画像がはみ出ないようにする */
  }

  .information .link-button img {
    width: 100%;
    height: 100%; /* 親要素の高さに合わせる */
    display: block;
    object-fit: cover; /* 画像の縦横比を保ちながら領域を埋める */
  }

  .sub-articles-grid {
    margin-top: 40px;
    padding: 0 60px;
    gap: 20px;
  }
  .information-main {
    margin-top: 80px;
    padding: 0 60px;
  }
  .information .link-buttons {
    margin-top: 60px;
  }

  .information .link-buttons-container {
    flex-direction: column;
  }

  .information .link-button {
    width: 100%;
  }
  .sub-articles-grid {
    grid-template-columns: 1fr;
  }

  .sub-article {
    padding-bottom: 15px;
  }

  .information .category-label {
    padding: 15px 15px;
    font-size: 10px;
    height: 22px;
  }
  .information .view-all-button span {
    font-size: 12px;
    line-height: 21.675px;
    letter-spacing: 2.4px;
  }

  .information .view-all-button {
    min-width: 230px;
  }

  .information .view-all-button-container {
    margin-top: 50px;
    padding-bottom: 60px;
  }
}

/* 小型モバイル (490px以下) */
@media screen and (max-width: 550px) {
  .information .recruit-button .move-icon {
    bottom: 23px;
    right: 22px;
    width: 145px;
    height: 17px;
  }

  .information .contact-button .move-icon {
    bottom: 23px;
    right: 21px;
    width: 213px;
    height: 17px;
  }
  .information .link-button-content {
    top: 30px;
    left: 30px;
  }

  .information .link-button-title {
    font-size: 20px;
    letter-spacing: 3.6px;
  }

  .information .link-button-subtitle {
    font-size: 12px;
    letter-spacing: 1.8px;
  }
  .information .link-button {
    height: 200px; /* この値は必要な高さに応じて調整できます */
    overflow: hidden; /* 画像がはみ出ないようにする */
  }

  .information .link-button img {
    width: 100%;
    height: 100%; /* 親要素の高さに合わせる */
    display: block;
    object-fit: cover; /* 画像の縦横比を保ちながら領域を埋める */
  }
  .information-main {
    margin-top: 30px;
    padding: 0 30px;
  }

  .main-article {
    flex-direction: column; /* 追加：垂直方向のレイアウトに変更 */
    gap: 15px;
  }

  .article-content {
    width: 100%; /* 追加：コンテンツを全幅に */
  }

  .article-image {
    width: 100%; /* 追加：画像を全幅に */
    min-width: auto; /* 追加：最小幅の制限を解除 */
    aspect-ratio: 16 / 9;
    height: auto;
    background: #fff;
  }

  .article-image img {
    object-fit: contain;
  }

  .article-date {
    color: #333;

    font-family: "BIZ UDGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.8px;
  }

  .article-title {
    color: #333;
    font-family: "BIZ UDGothic";
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 23px; /* 164.286% */
    letter-spacing: 2.1px;
  }

  .article-excerpt {
    color: #333;
    font-family: "BIZ UDGothic";
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 200% */
    letter-spacing: 1.5px;
  }

  .sub-articles-grid {
    margin-top: 30px;
    padding: 0 45px;
    gap: 15px;
  }

  .sub-article-date {
    font-size: 12px;
  }

  .sub-article-title {
    font-size: 12px;
    line-height: 24px;
  }
  .information-container {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .information-content {
    width: fit-content;
    max-width: calc(100% - 32px);
    margin: 0 auto;
    padding: 60px 0 20px 28px;
  }

  .information-grid-line {
    left: 0;
    top: 54px;
    height: 70px;
    width: 3.2px;
  }

  .information-title {
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 14px;
  }

  .information-subtitle {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .information-text-container {
    gap: 10px;
  }

  .information .arrow-icon {
    width: 18.4px;
    height: 18.4px;
  }

  .information .view-all-button-container {
    margin-top: 40px;
    padding-bottom: 25px;
  }

  .information .view-all-button {
    min-width: 230px;
    height: 31px;
  }
}

/* News / press release redesign */
.information {
  overflow: hidden;
  padding: 0;
  background: #f3f8fd;
}

.information-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 58px 72px 110px;
}

.information-content {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  gap: 48px;
  align-items: center;
  max-width: 1280px;
  padding: 0;
}

.information-heading {
  min-width: 0;
}

.information-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: #071832;
  font-family: "BIZ UDGothic";
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.2px;
}

.information-eyebrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e60012;
  flex: 0 0 auto;
}

.information-title {
  color: #071832;
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: 6px;
  margin: 0;
}

.information-grid-line {
  display: none;
}

.information-text-container {
  gap: 0;
}

.information-subtitle {
  color: #071832;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.8px;
  margin: 0;
}

.information .information-header-button {
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.information .view-all-button {
  min-width: 200px;
  height: 48px;
  padding: 0 28px;
  border: 1.5px solid #0057c8;
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
  gap: 24px;
}

.information .view-all-button span {
  color: #0057c8;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1.6px;
}

.information .view-all-button .arrow-icon {
  display: none;
}

.information .view-all-button::after {
  content: "→";
  color: #0057c8;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.information-main {
  max-width: 1280px;
  margin: 34px auto 0;
  padding: 0;
}

.main-article {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 1.12fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(7, 24, 50, 0.12);
}

.main-article:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(7, 24, 50, 0.15);
}

.article-image {
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 8;
  background: #fff;
}

.article-image img {
  object-fit: cover;
  object-position: center;
}

.article-content {
  justify-content: center;
  gap: 18px;
  padding: 42px 44px;
  min-width: 0;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 28px;
}

.article-date,
.sub-article-date {
  color: #071832;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  opacity: 0.56;
}

.information .category-label {
  width: auto;
  min-width: 96px;
  height: 28px;
  padding: 0 22px;
  border-radius: 999px;
  background: #ffe8ec;
  color: #e60012;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.6px;
  opacity: 1;
}

.information .category-label.is-release {
  background: #e7f1ff;
  color: #0057c8;
}

.article-title {
  color: #071832;
  font-size: 22px;
  line-height: 1.75;
  letter-spacing: 2.5px;
  margin: 0;
}

.article-divider {
  display: none;
}

.article-excerpt {
  color: #071832;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.6px;
  opacity: 0.62;
  margin: 0;
}

.article-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: #0057c8;
  font-family: "BIZ UDGothic";
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.8px;
  margin-top: 4px;
}

.sub-articles-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1120px;
  margin: 28px auto 0;
  padding: 20px 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(7, 24, 50, 0.1);
}

.sub-article {
  display: grid;
  grid-template-columns: 16px 112px 124px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 22px;
  min-height: 64px;
  padding: 0;
  border-bottom: 1px solid rgba(0, 87, 200, 0.16);
}

.sub-article:last-child {
  border-bottom: 0;
}

.sub-article:hover {
  transform: none;
  box-shadow: none;
}

.sub-article-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e60012;
}

.sub-article-dot.is-release {
  background: #0057c8;
}

.sub-article-title {
  color: #071832;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 1.8px;
  margin: 0;
}

.sub-article-arrow {
  color: #071832;
  font-size: 28px;
  line-height: 1;
  opacity: 0.9;
}

.information > .view-all-button-container,
.information-container > .view-all-button-container:not(.information-header-button) {
  display: none;
}

@media screen and (max-width: 1200px) {
  .information-container {
    padding: 56px 40px 96px;
  }

  .information-content {
    grid-template-columns: minmax(260px, 1fr) auto;
    gap: 32px;
  }

  .information-title {
    font-size: 32px;
    letter-spacing: 5px;
  }

  .main-article {
    grid-template-columns: minmax(340px, 0.95fr) minmax(360px, 1.05fr);
  }
}

@media screen and (max-width: 1004px) {
  .information-container {
    padding: 52px 28px 78px;
  }

  .information-content {
    grid-template-columns: 1fr auto;
    gap: 24px;
    max-width: 860px;
  }

  .information-heading {
    grid-column: 1 / 2;
  }

  .information-text-container {
    grid-column: 1 / -1;
    max-width: 620px;
  }

  .information .information-header-button {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .main-article {
    grid-template-columns: 1fr;
    max-width: 860px;
    margin: 0 auto;
  }

  .article-image {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
  }

  .article-image img {
    object-fit: cover;
  }

  .article-content {
    padding: 32px;
  }

  .sub-articles-grid {
    max-width: 860px;
  }

  .sub-article {
    grid-template-columns: 14px 96px 110px minmax(0, 1fr) 18px;
    gap: 14px;
  }
}

@media screen and (max-width: 768px) {
  .information,
  .information * {
    box-sizing: border-box;
  }

  .information {
    overflow-x: hidden;
  }

  .information-container {
    width: 100%;
    padding: 56px 22px 68px;
  }

  .information-content {
    display: block;
    max-width: none;
  }

  .information-eyebrow {
    font-size: 11px;
    letter-spacing: 1.6px;
    margin-bottom: 12px;
  }

  .information-title {
    font-size: 26px;
    letter-spacing: 3.5px;
    white-space: normal;
    word-break: keep-all;
  }

  .information-subtitle {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 1.2px;
  }

  .information .information-header-button {
    justify-content: flex-start;
    margin-top: 24px;
  }

  .information .view-all-button {
    min-width: 180px;
    height: 42px;
  }

  .information-main {
    margin-top: 28px;
  }

  .main-article {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    border-radius: 14px;
  }

  .article-image {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }

  .article-content {
    width: 100%;
    min-width: 0;
    padding: 24px 22px 28px;
    gap: 14px;
  }

  .article-meta {
    gap: 14px;
    flex-wrap: wrap;
  }

  .article-title {
    font-size: 17px;
    line-height: 1.75;
    letter-spacing: 1.5px;
    overflow-wrap: anywhere;
  }

  .article-excerpt {
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 1px;
    overflow-wrap: anywhere;
  }

  .sub-articles-grid {
    margin-top: 22px;
    padding: 10px 18px;
    border-radius: 14px;
  }

  .sub-article {
    grid-template-columns: 12px 88px minmax(0, 1fr) 16px;
    gap: 12px;
    min-height: 78px;
    padding: 10px 0;
  }

  .sub-article .category-label {
    grid-column: 2 / 3;
    grid-row: 2;
    min-width: 82px;
    height: 24px;
    padding: 0 12px;
    font-size: 10px;
  }

  .sub-article-title {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    min-width: 0;
    font-size: 13px;
    line-height: 1.65;
    letter-spacing: 1px;
    overflow-wrap: anywhere;
  }

  .sub-article-arrow {
    grid-column: 4;
    grid-row: 1 / 3;
  }
}

/* Closer desktop reproduction for the news reference design. */
@media screen and (min-width: 1005px) {
  .information {
    isolation: isolate;
  }

  body.home .information,
  body.home .information.js-motion-target {
    opacity: 1 !important;
    filter: none !important;
  }

  .information::before,
  .information::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
  }

  .information::before {
    right: -170px;
    bottom: 292px;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: #e60012;
  }

  .information::after {
    left: 0;
    top: 0;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(rgba(0, 87, 200, 0.18) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.65;
  }

  .information .shapes {
    z-index: 0;
  }

  .information .shapes .small-blue {
    width: 190px !important;
    height: 190px !important;
    right: -46px !important;
    top: 395px !important;
    opacity: 1 !important;
  }

  .information .shapes .medium-red {
    display: none !important;
  }

  .information-container {
    max-width: none;
    padding: 64px 80px 116px;
  }

  .information-content,
  .information-main {
    max-width: 1420px;
    width: min(1420px, calc(100vw - 160px)) !important;
  }

  .information-content {
    grid-template-columns: minmax(360px, 1fr) 210px;
    gap: 44px;
    align-items: end;
  }

  .information-eyebrow {
    margin-bottom: 16px;
    font-size: 15px;
    letter-spacing: 2.3px;
    white-space: nowrap;
  }

  .information-title {
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: 7px;
    white-space: nowrap;
  }

  .information-subtitle {
    padding-bottom: 2px;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 2px;
  }

  .information .information-header-button {
    align-self: center;
  }

  .information .view-all-button {
    min-width: 210px;
    height: 50px;
    padding: 0 30px;
    gap: 30px;
  }

  .information-main {
    margin-top: 34px;
  }

  .main-article {
    grid-template-columns: minmax(0, 52%) minmax(0, 48%);
    min-height: 322px;
    border-radius: 18px;
  }

  body.home .information .main-article,
  body.home .information .sub-article,
  body.home .information .sub-articles-grid {
    opacity: 1 !important;
    filter: none !important;
  }

  .article-image {
    aspect-ratio: auto;
    height: 322px;
  }

  .article-content {
    padding: 42px 48px 40px;
    gap: 16px;
  }

  .article-title {
    font-size: 24px;
    line-height: 1.65;
    letter-spacing: 2.8px;
  }

  .article-excerpt {
    max-width: 580px;
  }

  .sub-articles-grid {
    max-width: 1220px;
    width: min(1220px, calc(100vw - 260px)) !important;
    margin-top: 30px;
    padding: 18px 30px;
  }

  .sub-article {
    grid-template-columns: 16px 110px 130px minmax(0, 1fr) 24px;
    min-height: 66px;
  }
}

@media screen and (min-width: 1005px) and (max-width: 1280px) {
  .information-container {
    padding-left: 64px;
    padding-right: 64px;
  }

  .information-content,
  .information-main {
    max-width: 1120px;
    width: calc(100vw - 160px) !important;
  }

  .information-content {
    grid-template-columns: minmax(390px, 1fr) 180px;
    gap: 28px;
  }

  .information-title {
    font-size: 34px;
    letter-spacing: 4.8px;
  }

  .information-subtitle {
    font-size: 14px;
    letter-spacing: 1.7px;
  }

  .main-article {
    min-height: 280px;
  }

  .article-image {
    height: 280px;
  }

  .article-content {
    padding: 34px 38px;
  }

  .article-title {
    font-size: 21px;
    line-height: 1.7;
    letter-spacing: 2.2px;
  }

  .sub-articles-grid {
    width: calc(100vw - 260px) !important;
    max-width: 1040px;
  }
}

@media screen and (max-width: 768px) {
  .information-title {
    word-break: normal;
    overflow-wrap: anywhere;
  }
}
