:root {
  color-scheme: light;
  --red: #d7000f;
  --red-hover: #b9000d;
  --red-soft: rgba(215, 0, 15, 0.1);
  --red-shadow: rgba(215, 0, 15, 0.16);
  --dark-red: #3f1414;
  --ink: #202020;
  --muted: #666666;
  --surface: #fbfbfb;
  --surface-white: #ffffff;
  --primary-red: var(--red);
  --primary-red-shadow: var(--red-shadow);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  background: #ffffff;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  line-height: normal;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

img,
video {
  max-width: 100%;
}

a,
a:hover,
a:focus,
a:focus-visible,
a:active,
a:visited {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.page-root {
  width: 100%;
  overflow: clip;
}

.content-wrap {
  width: min(1640px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-section {
  position: relative;
  aspect-ratio: 1920 / 459;
  overflow: hidden;
  background: #07131f;
}

.hero-section__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-section__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 10, 18, 0.16), rgba(2, 10, 18, 0.015) 55%);
}

.hero-section h1 {
  position: absolute;
  left: max(20px, calc((100vw - 1648px) / 2));
  top: 191px;
  color: #ffffff;
  font-size: 48px;
  line-height: 50px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}

.stock-section {
  padding: 134px 0 98px;
  background: #fbfbfb;
}

.stock-section__inner {
  width: min(1640px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}

.stock-main {
  flex: 0 1 clamp(300px, 24.6vw, 404px);
  min-width: 0;
}

.stock-main__heading {
  display: flex;
  align-items: baseline;
  gap: 23px;
  margin-bottom: 16px;
}

.stock-name {
  font-size: 32px;
  line-height: 32px;
  color: #333333;
}

.stock-code {
  font-size: 20px;
  line-height: 32px;
  color: #333333;
}

.stock-price {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.stock-price__value {
  font-size: 62px;
  line-height: 0.95;
  font-weight: 700;
  color: #333333;
  font-family: "Microsoft YaHei", Arial, sans-serif;
}

.stock-price__market {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-bottom: 6px;
  color: #202020;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
}

.stock-price__triangle {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid var(--red);
}

.stock-price__triangle.los {
  border-bottom: 18px solid green;
}

.stock-change {
  margin-top: 12px;
  color: var(--red);
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
}

.stock-change.los {
  color: green;
}

.stock-divider {
  inline-size: 1px;
  flex: 0 0 1px;
  align-self: stretch;
  margin: 4px 150px 0 0;
  background: #d9d9d9;
}

.stock-metrics {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: 208px 208px 208px 208px;
  column-gap: 70px;
  padding: 0 0 0 1px;
}

.stock-metric p {
  margin-bottom: 18px;
  color: var(--dark-red);
  font-size: 18px;
  line-height: 32px;
  overflow-wrap: anywhere;
}

.stock-metric {
  transform: translateY(-5px);
}

.stock-metric strong {
  display: block;
  color: #333333;
  font-size: 42px;
  line-height: 32px;
  font-weight: 700;
}

.stock-source {
  position: absolute;
  left: 0;
  top: 122px;
  margin: 0;
  color: #999999;
  font-size: 18px;
  line-height: 32px;
}

.meeting-section {
  padding-bottom: 1px;
  background: #fbfbfb;
}

.meeting-card {
  position: relative;
  width: min(1640px, calc(100% - 48px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  background: #222222;
}

.meeting-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1);
}

.meeting-card__overlay {
  position: absolute;
  inset: 0;
  background: url("/wp-content/uploads/2026/05/153-dc7face8-fc01-420b-baf3-0a67b013c3df.png") center / 100% 100% no-repeat;
  opacity: 0.62;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 36%, rgba(0, 0, 0, 0.56) 59%, rgba(0, 0, 0, 0.08) 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 36%, rgba(0, 0, 0, 0.56) 59%, rgba(0, 0, 0, 0.08) 100%);
}

.meeting-card__content {
  position: relative;
  z-index: 1;
  padding: 74px 64px;
  color: #ffffff;
}

.meeting-card h2 {
  margin: 0;
  font-size: 42px;
  line-height: 38px;
  font-weight: 700;
  letter-spacing: 2.5px;
}

.meeting-card__subtitle {
  margin: 5px 0 109px;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 2px;
}

.meeting-card__label {
  margin: 0 0 13px;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 1px;
}

.meeting-card__time {
  display: flex;
  gap: 40px;
  align-items: center;
  font-size: 42px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: -0.8px;
}

.news-section {
  background: #ffffff;
  padding: 108px 0 78px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 20px;
}

.section-heading__bar {
  display: block;
  inline-size: 10px;
  align-self: stretch;
  padding-block: 25px;
  background: var(--red);
}

.section-heading h2 {
  margin: 0;
  color: var(--dark-red);
  font-size: 42px;
  line-height: 42px;
  font-weight: 700;
  letter-spacing: 4px;
}

.news-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 73px;
  border-bottom: 1px solid #d7d7d7;
}

.news-tabs__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 36px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: min(70px, 42%) 7px;
  color: #333333;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 1.6px;
}

.news-tabs__item.is-active {
  font-weight: 700;
}

.news-tabs__item:hover,
.news-tabs__item:focus-visible {
  color: var(--red);
}

.news-tabs__item:hover,
.news-tabs__item:focus-visible {
  background-image: linear-gradient(var(--red-soft), var(--red-soft));
}

.news-tabs__item.is-active {
  background-image: linear-gradient(var(--red), var(--red));
}

.news-tabs__item.is-active:hover,
.news-tabs__item.is-active:focus-visible {
  background-image: linear-gradient(var(--red), var(--red));
}

.news-list {
  margin-top: 31px;
}

.news-row {
  display: grid;
  grid-template-columns: 302px 1fr 98px;
  align-items: center;
  padding: 30px;
  color: #222222;
  transition: background-color var(--motion-interaction, 0.35s) ease,
    box-shadow var(--motion-interaction, 0.35s) ease;
}

.news-row:nth-child(even) {
  background: var(--surface);
}

.news-row time,
.news-row h3,
.news-row__link {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 1.5px;
}

.news-row h3 {
  margin: 0;
  font-weight: 400;
}

.news-row__title-link {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.news-row__link {
  justify-self: end;
  display: inline-block;
}

.news-row:hover,
.news-row:focus-within {
  background: #ffffff;
  box-shadow: inset 4px 0 0 var(--red-soft);
}

.news-row:hover .news-row__title-link,
.news-row:focus-within .news-row__title-link {
  color: var(--red);
  transform: translateX(3px);
}

.news-row:hover .news-row__link,
.news-row:focus-within .news-row__link {
  color: var(--red);
  transform: translateX(-3px);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
}

.pagination a {
  inline-size: 48px;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  color: #333333;
  background: #ffffff;
  font-family: "Outfit", "Microsoft YaHei", Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
}

.pagination a:first-child,
.pagination a:last-child {
  color: #888888;
  font-size: 28px;
  font-family: Arial, sans-serif;
}

.pagination a.is-active,
.pagination a:hover,
.pagination a:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: #ffffff;
  box-shadow: 0 12px 24px var(--red-shadow);
  transform: translateY(-2px);
}

.qa-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 36.25vw) minmax(0, 56.458333vw);
  gap: 0;
  align-items: start;
  aspect-ratio: 1920 / 879;
  max-block-size: calc(100vw * 879 / 1920);
  padding: 28px 0 0;
  overflow: hidden;
  background: #050607 url("/wp-content/uploads/2026/05/452.png") top center / 100% auto no-repeat;
}

.qa-section::before {
  content: none;
}

.qa-intro {
  position: relative;
  inline-size: 100%;
  align-self: stretch;
  overflow: hidden;
}

.qa-intro__content {
  position: relative;
  z-index: 1;
  inline-size: min(430px, calc(100% - 64px));
  margin-left: 162px;
  padding-top: 345px;
  padding-bottom: 48px;
  color: #ffffff;
}

.qa-intro h2 {
  margin: 0 0 27px;
  font-size: 42px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: 4px;
}

.qa-intro p {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.qa-intro__content .primary-action {
  margin-top: 29px;
  letter-spacing: 1px;
}

.qa-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  inline-size: 100%;
}

.qa-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.qa-column--right {
  gap: 20px;
}

.qa-card {
  position: relative;
  inline-size: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #f7f7f7;
  padding: 50px 28px 34px 106px;
}

.qa-column--right .qa-card--short:not(.qa-card--bottom) {
  padding-bottom: 51px;
}

.qa-column--right .qa-card--short:not(.qa-card--bottom) .qa-item + .qa-item {
  margin-top: 62px;
}

.qa-column--right .qa-card--bottom {
  padding-bottom: 83px;
}

.qa-column--right .qa-card--medium {
  padding-bottom: 43px;
}

.qa-item {
  position: relative;
}

.qa-item + .qa-item {
  margin-top: 30px;
}

.qa-item span {
  position: absolute;
  left: -78px;
  top: 0;
  inline-size: 50px;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  line-height: 28px;
}

.qa-item--question span {
  background: var(--red);
}

.qa-item--answer span {
  background: #9d9d9d;
}

.qa-item h3 {
  margin: 0;
  max-width: 376px;
  color: #14363f;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.qa-item p {
  margin: 0;
  max-width: 388px;
  color: var(--muted);
  font-size: 16px;
  line-height: 28px;
  overflow-wrap: anywhere;
}

.primary-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  inline-size: 139px;
  padding: 6px 8px 6px 14px;
  border: 2px solid var(--primary-red);
  border-radius: 999px;
  overflow: hidden;
  background: var(--primary-red);
  background-image: linear-gradient(90deg, var(--surface-white) 0 50%, var(--primary-red) 50% 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  color: var(--surface-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: color var(--motion-interaction, 0.35s) ease,
    background-position var(--motion-interaction, 0.35s) ease,
    box-shadow var(--motion-interaction, 0.35s) ease;
}

.primary-action > span,
.primary-action > i {
  position: relative;
  z-index: 1;
}

.primary-action:hover,
.primary-action:focus,
.primary-action:focus-visible {
  color: var(--primary-red);
  background-position: 0 0;
  box-shadow: 0 12px 24px var(--primary-red-shadow);
}

.action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 30px;
  aspect-ratio: 1;
  flex: 0 0 30px;
  border-radius: 50%;
  background: var(--surface-white);
  transition: background-color var(--motion-interaction, 0.35s) ease;
}

.action-icon .iconfont {
  color: var(--primary-red);
  font-size: 15px;
  line-height: 1;
  transition: color var(--motion-interaction, 0.35s) ease;
}

.primary-action:hover .action-icon,
.primary-action:focus .action-icon,
.primary-action:focus-visible .action-icon {
  background: var(--primary-red);
}

.primary-action:hover .action-icon .iconfont,
.primary-action:focus .action-icon .iconfont,
.primary-action:focus-visible .action-icon .iconfont {
  color: var(--surface-white);
}

.video-modal-open,
.video-modal-open body {
  overflow: hidden;
}

.shared-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.shared-video-modal.is-open {
  display: flex;
}

.shared-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.shared-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  background: #000;
}

.shared-video-modal__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.shared-video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  inline-size: 36px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
}

.shared-video-modal__close:hover,
.shared-video-modal__close:focus-visible {
  color: #ffffff;
  background: var(--red);
  box-shadow: 0 12px 24px var(--red-shadow);
  transform: translateY(-2px);
}

.investor-question-open {
  overflow: hidden;
}

.investor-question-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.investor-question-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.investor-question-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(18, 16, 16, 0.58);
}

.investor-question-modal__panel {
  position: relative;
  width: min(680px, calc(100vw - 40px));
  margin: 9vh auto 0;
  padding: 42px 48px 46px;
  background: #fff;
  border-top: 4px solid var(--red);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(22px);
  transition: transform 0.26s ease;
}

.investor-question-modal.is-open .investor-question-modal__panel {
  transform: translateY(0);
}

.investor-question-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid #eeeeee;
  background: #fbfbfb;
  color: #121010;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.investor-question-modal__close:hover,
.investor-question-modal__close:focus {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.investor-question-modal__eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}

.investor-question-modal__title {
  margin: 0 0 28px;
  color: #121010;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
}

.investor-question-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.investor-question-modal__field {
  display: block;
  margin: 0;
}

.investor-question-modal__field--wide {
  grid-column: 1 / -1;
}

.investor-question-modal__field span {
  display: block;
  margin-bottom: 8px;
  color: #333333;
  font-size: 15px;
  line-height: 1.3;
}

.investor-question-modal__field input,
.investor-question-modal__field textarea {
  width: 100%;
  border: 1px solid #e5e5e5;
  background: #fbfbfb;
  color: #121010;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.investor-question-modal__field input {
  height: 48px;
  padding: 0 14px;
}

.investor-question-modal__field textarea {
  min-height: 128px;
  resize: vertical;
  padding: 12px 14px;
}

.investor-question-modal__field input:focus,
.investor-question-modal__field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 10px 24px rgba(215, 0, 15, 0.1);
}

.investor-question-modal__submit {
  width: 168px;
  height: 50px;
  margin-top: 26px;
  border: 0;
  background: var(--red);
  color: #fff;
  font-size: 17px;
  cursor: pointer;
}

.investor-question-modal__submit:hover,
.investor-question-modal__submit:focus {
  background: var(--red-hover);
}

@media (max-width: 1500px) {
  .stock-section__inner {
    width: min(1320px, calc(100% - 48px));
  }

  .stock-main {
    flex-basis: clamp(300px, 27.3vw, 360px);
  }

  .stock-divider {
    margin-right: 50px;
  }

  .stock-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 24px;
  }
}

@media (min-width: 1281px) and (max-width: 1600px) {
  .qa-intro p {
    max-width: 340px;
  }
}

@media (max-width: 1280px) {
  .hero-section {
    min-height: 260px;
  }

  .hero-section h1 {
    top: auto;
    bottom: 54px;
  }

  .content-wrap,
  .stock-section__inner,
  .meeting-card {
    width: min(1120px, calc(100% - 40px));
  }

  .stock-divider {
    margin-right: 36px;
  }

  .stock-metrics {
    column-gap: 18px;
  }

  .stock-main {
    flex-basis: clamp(290px, 25.8vw, 330px);
  }

  .stock-name {
    font-size: 30px;
  }

  .stock-code {
    font-size: 18px;
  }

  .stock-price__value {
    font-size: 56px;
  }

  .stock-metric strong {
    font-size: 36px;
  }

  .qa-section {
    display: block;
    aspect-ratio: auto;
    max-block-size: none;
    padding: 80px 20px;
  }

  .qa-intro {
    position: relative;
    width: 100%;
    border-radius: 16px;
  }

  .qa-intro__content {
    width: min(430px, calc(100% - 48px));
    margin-left: 48px;
    padding-top: 96px;
    padding-bottom: 48px;
  }

  .qa-grid {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .qa-column {
    gap: 28px;
  }

  .qa-card,
  .qa-card--large,
  .qa-card--short,
  .qa-card--medium,
  .qa-card--right,
  .qa-card--bottom {
    position: relative;
    left: auto;
    top: auto;
    grid-column: auto;
    grid-row: auto;
    inline-size: 100%;
    width: 100%;
  }
}

@media (max-width: 1180px) {
  .stock-section {
    padding: 84px 0 72px;
  }

  .stock-section__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) 1px minmax(0, 1.55fr);
    gap: 0 34px;
    align-items: start;
    padding-top: 0;
  }

  .stock-divider {
    margin: 4px 0 0;
  }

  .stock-main {
    width: 100%;
    min-width: 0;
  }

  .stock-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 30px;
  }

  .stock-source {
    position: static;
    grid-column: 1 / -1;
    margin-top: 8px;
  }
}

@media (max-width: 900px) {
  .hero-section {
    aspect-ratio: 900 / 320;
    min-height: 240px;
  }

  .hero-section h1 {
    top: auto;
    bottom: 58px;
    font-size: 36px;
    line-height: 42px;
  }

  .stock-section {
    padding: 58px 0;
  }

  .stock-section__inner {
    display: block;
    padding-top: 0;
  }

  .stock-main {
    width: 100%;
  }

  .stock-divider {
    inline-size: 100%;
    border-top: 1px solid #d9d9d9;
    background: transparent;
    margin: 34px 0;
  }

  .stock-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 30px;
    padding-left: 0;
  }

  .stock-source {
    position: static;
    grid-column: 1 / -1;
    margin-top: 4px;
  }

  .meeting-section {
    padding-bottom: 44px;
  }

  .meeting-card {
    aspect-ratio: 16 / 9;
  }

  .meeting-card__content {
    padding: 52px 36px;
  }

  .meeting-card__subtitle {
    margin-bottom: 76px;
  }

  .meeting-card__time {
    gap: 22px;
    font-size: 32px;
    line-height: 36px;
    flex-wrap: wrap;
  }

  .news-section {
    padding: 56px 0;
  }

  .section-heading {
    gap: 16px;
  }

  .section-heading__bar {
    inline-size: 8px;
    padding-block: 20px;
  }

  .section-heading h2 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 2.4px;
  }

  .news-tabs {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 48px;
    row-gap: 12px;
  }

  .news-tabs__item {
    padding: 0 8px 20px;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
  }

  .news-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 18px;
  }

  .news-row time,
  .news-row h3,
  .news-row__link {
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 1px;
  }

  .news-row__link {
    justify-self: start;
  }

  .qa-intro__content {
    padding-top: 82px;
  }

  .qa-grid {
    grid-template-columns: 1fr;
  }

  .investor-question-modal__panel {
    width: calc(100vw - 28px);
    max-height: calc(100vh - 28px);
    margin-top: 14px;
    overflow-y: auto;
    padding: 34px 20px 28px;
  }

  .investor-question-modal__title {
    font-size: 25px;
    margin-bottom: 22px;
  }

  .investor-question-modal__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .investor-question-modal__submit {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .content-wrap,
  .stock-section__inner {
    width: calc(100% - 28px);
  }

  .meeting-card {
    aspect-ratio: 480 / 318;
    width: calc(100% - 28px);
  }

  .meeting-card__content {
    padding: 42px 28px;
  }

  .hero-section {
    aspect-ratio: 560 / 260;
    min-height: 212px;
    background-position: 58% center;
  }

  .hero-section h1 {
    left: 18px;
    bottom: 28px;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 1.2px;
  }

  .stock-name {
    font-size: 28px;
  }

  .stock-price__value {
    font-size: 52px;
  }

  .stock-metrics {
    column-gap: 18px;
    row-gap: 24px;
  }

  .stock-metric strong {
    font-size: 32px;
  }

  .meeting-card h2,
  .qa-intro h2 {
    font-size: 34px;
    line-height: 38px;
  }

  .news-section {
    padding: 42px 0 48px;
  }

  .section-heading {
    gap: 14px;
  }

  .section-heading__bar {
    inline-size: 8px;
    padding-block: 18px;
  }

  .section-heading h2 {
    font-size: 27px;
    line-height: 36px;
    letter-spacing: 1.4px;
  }

  .news-tabs {
    margin-top: 32px;
    row-gap: 8px;
  }

  .news-list {
    margin-top: 22px;
  }

  .news-row {
    gap: 6px;
    padding: 18px 16px;
  }

  .meeting-card__subtitle {
    margin-bottom: 38px;
  }

  .meeting-card__time {
    gap: 18px;
    font-size: 30px;
    line-height: 34px;
  }

  .news-tabs__item {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.6px;
  }

  .news-row time,
  .news-row h3,
  .news-row__link {
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0.6px;
  }

  .pagination {
    gap: 10px;
  }

  .pagination a {
    inline-size: 42px;
  }

  .qa-section {
    padding: 48px 14px;
  }

  .qa-intro__content {
    margin-left: 24px;
    padding-top: 70px;
  }

  .qa-card {
    padding: 28px 20px 28px 76px;
    min-height: 0;
  }

  .qa-item span {
    left: -58px;
  }

  .qa-item h3 {
    font-size: 16px;
    line-height: 26px;
  }

  .qa-item p {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 390px) {
  .content-wrap,
  .stock-section__inner,
  .meeting-card {
    width: calc(100% - 22px);
  }

  .stock-section {
    padding: 44px 0;
  }

  .stock-main__heading {
    gap: 14px;
    flex-wrap: wrap;
  }

  .stock-name {
    font-size: 24px;
    line-height: 30px;
  }

  .stock-code,
  .stock-change,
  .stock-metric p,
  .stock-source {
    font-size: 14px;
    line-height: 24px;
  }

  .stock-price {
    gap: 12px;
  }

  .stock-price__value {
    font-size: 44px;
  }

  .stock-price__market {
    font-size: 18px;
    line-height: 20px;
  }

  .stock-metrics {
    row-gap: 20px;
  }

  .stock-metric strong {
    font-size: 28px;
    line-height: 30px;
  }

  .meeting-card {
    aspect-ratio: 390 / 330;
  }

  .meeting-card__content {
    padding: 34px 22px;
  }

  .meeting-card__subtitle {
    margin-bottom: 32px;
  }

  .meeting-card__time {
    gap: 14px;
    font-size: 26px;
    line-height: 32px;
  }

  .news-section {
    padding: 34px 0 42px;
  }

  .news-tabs {
    margin-top: 28px;
    row-gap: 6px;
  }

  .news-tabs__item {
    padding-bottom: 18px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.5px;
  }

  .section-heading {
    gap: 12px;
  }

  .section-heading__bar {
    inline-size: 8px;
    padding-block: 16px;
  }

  .section-heading h2 {
    font-size: 27px;
    line-height: 36px;
    letter-spacing: 1.2px;
  }

  .news-list {
    margin-top: 18px;
  }

  .news-row {
    padding: 16px 14px;
  }

  .pagination {
    gap: 7px;
  }

  .pagination a {
    inline-size: 36px;
    font-size: 13px;
  }

  .qa-section {
    padding: 40px 11px;
  }

  .qa-intro__content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding-top: 56px;
    padding-bottom: 40px;
  }

  .qa-intro p {
    font-size: 15px;
    line-height: 25px;
  }

  .qa-card {
    padding: 24px 16px 24px 60px;
  }

  .qa-item + .qa-item {
    margin-top: 22px;
  }

  .qa-item span {
    left: -46px;
    inline-size: 38px;
    font-size: 16px;
  }
}
