:root {
  --blue: #2e48ec;
  --navy: #143459;
  --yuanta: #005bac;
  --pale: #eaf3fe;
  --pale-2: #d7eeff;
  --card: #f3f4f7;
  --border: #d2d2d2;
  --orange: #f26f28;
  --font-sans: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Noto Sans CJK TC", "Noto Sans CJK", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 1440px;
  background: #fff;
  color: var(--navy);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.nowrap {
  white-space: nowrap;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.page-shell {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.hero {
  position: relative;
  width: 100%;
  height: min(900px, 100svh);
  margin-left: 0;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 31, 90, .5), rgba(0, 31, 90, 0));
  z-index: 1000;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.site-header--scrolled {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
}

.site-header--scrolled .mobile-menu-link {
  color: #0055dd;
}

.site-header--scrolled .mobile-menu-link:hover {
  color: #551A8B;
}

.brand {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
}

.logo_image {
  display: block;
  height: 38px;
  width: 178px;
  transform: none;
}

.site-header nav {
  display: flex;
  flex-shrink: 0;
  gap: 32px;
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.site-header nav a {
  color: inherit;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
}

.menu-btn.mobile {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.menu-btn.mobile span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.anchor-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  padding: 12px 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  font-size: 23px;
  font-weight: 450;
  line-height: 1.5;
  text-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

.chevron {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  transform: translateY(1px);
}

.section {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 120px;
  padding-right: 120px;
}

.section-white {
  height: 979px;
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff;
}

.section-blue {
  background: linear-gradient(180deg, #EFF4FB 0%, #D7EEFF 100%);
  
}

#section-2 {
  height: 992px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-intro {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-intro h1,
.inverse-title {
  margin: 0;
  color: var(--blue);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.5;
}

.section-intro p {
  margin: 32px 0 0;
  font-size: 18px;
  line-height: 1.5;
}

.section-intro.small {
  margin-top: 80px;
}

.card-grid {
  display: flex;
  gap: 60px;
  width: 1200px;
  margin: 80px auto 0;
}

.chart-card {
  background: var(--card);
  border-radius: 12px;
  text-align: center;
}

.chart-card--half {
  width: 570px;
  height: 458px;
  padding: 40px;
}

.chart-card h3 {
  min-height: 54px;
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.chart-card img {
  width: 490px;
  height: 300px;
  object-fit: contain;
}

.note {
  width: 1200px;
  margin: 60px auto 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.note strong {
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
}

.note strong.note-large {
  font-size: 16px;
}

.note-small {
  font-size: 13px;
  font-weight: 400;
}

.note.center {
  text-align: center;
}

.note.right {
  text-align: right;
}

.note-right-color {
  color: #7383A6
}

.wide-card {
  width: 1200px;
  height: 594px;
  margin: 80px auto 0;
  padding: 60px 40px;
  background: #fff;
  border-radius: 12px;
}

.split-visuals {
  display: flex;
  gap: 74px;
  justify-content: center;
  align-items: center;
  height: 351px;
}

.split-visuals img:first-child {
  width: 490px;
  height: 300px;
}

.split-visuals img:last-child {
  width: 489px;
  height: 294px;
}

.wide-card .note {
  width: 1120px;
  margin-top: 60px;
}

.section-decision {
  position: relative;
  height: auto;
  padding: 80px 120px 60px;
  background: #0065be;
  overflow: hidden;
}

.section-decision.is-split {
  height: 2650px;
}

.decision-bg {
  position: absolute;
  left: -128px;
  top: 0;
  width: 2488px;
  height: 1659px;
  object-fit: cover;
  z-index: 0;
}

.section-decision.is-split .decision-bg {
  top: auto;
  bottom: 0;
  height: 1659px;
}

.section-decision.is-split::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: calc(100% - 1659px);
  background: linear-gradient(180deg, #002CA0);
  z-index: 0;
}

.section-decision.is-split::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, #0065be);
  z-index: 0;
}

.inverse-title {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 1;
}

.decision-panel {
  position: relative;
  width: 1200px;
  margin: 88px auto 0;
  z-index: 1;
}

.tab-frame {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 800px;
  height: 104px;
  display: flex;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, .06));
}

.tab-frame__item {
  width: 400px;
  border: 0;
  padding: 16px;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.tab-frame__item.is-active {
  background: var(--blue);
  color: #fff;
}

.tab-frame__item span,
.tab-frame__item strong {
  display: block;
  line-height: 1.5;
  font-weight: 500;
}

.tab-frame__item span {
  font-size: 20px;
}

.tab-frame__item strong {
  font-size: 28px;
}

.proposal-panel {
  width: 1200px;
}

.decision-card {
  width: 1200px;
  min-height: 811px;
  padding: 130px 100px 60px;
  background: var(--card);
  border-radius: 12px 12px 0 0;
  text-align: center;
}

.decision-card h2,
.steps-card h2 {
  margin: 0;
  color: var(--blue);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.decision-card > p {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.5;
}

.chart-box {
  width: 1000px;
  height: 400px;
  margin: 80px auto 0;
  padding: 50px 35px;
  background: #fff;
  border-radius: 12px;
}

.chart-box img {
  width: 865px;
  height: 300px;
  object-fit: contain;
}

.decision-card .note {
  width: 1000px;
  margin-top: 40px;
  text-align: left;
}

.decision-card--split {
  min-height: 1749px;
}

.split-example-copy {
  color: var(--navy);
  font-weight: 500;
}

.split-illustration-wrap {
  margin: 40px auto 0;
  padding: 40px 60px;
  background: #EAF3FE;
  border-radius: 12px;
  text-align: center;
}

.split-illustration-wrap .split-example-copy {
  margin: 0 0 44px;
}

.split-illustration {
  display: block;
  width: 824px;
  height: 255px;
  margin: 0 auto;
  object-fit: contain;
}

.split-note {
  width: 1000px;
  margin-top: 40px;
  text-align: left;

}

.split-note__body {
  font-weight: 500;
  font-size: 14px;
}

.split-change {
  margin-top: 80px;
  text-align: center;
}

.split-change > p:not(.split-note) {
  width: max-content;
  margin: 24px auto 0;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}

.split-benefits {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
}

.split-benefits article {
  width: 220px;
  margin: 0;
}

.split-benefits img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.split-benefits h3 {
  margin: 24px 0 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.benefit-highlight {
  color: var(--blue);
}

.split-examples-title {
  margin: 80px 0 32px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 400;
}

.split-examples {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.split-examples img {
  width: 470px;
  height: 300px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
}

.steps-card {
  width: 1200px;
  min-height: 378px;
  padding: 60px 100px;
  background: #fff;
  border-radius: 0 0 12px 12px;
}

.steps-card .note {
  width: 100%;
  margin: 60px 0 0;
  overflow-wrap: anywhere;
}

.flow {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.flow-item {
  flex: 1;
  display: flex;
  gap: 20px;
  align-items: center;
}

.flow-icon {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  object-fit: contain;
}

.flow-icon.orange {
  background: #ff7900;
}

.flow-icon.blue {
  background: var(--blue);
}

.flow-item h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 500;
}

.flow-item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.flow-arrow {
  width: 20px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
}

.vote-section {
  height: 1963px;
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fff;
}

.vote-section.is-paper {
  height: 1733px;
}

.underline-tabs {
  display: flex;
  justify-content: center;
  width: 600px;
  margin: 60px auto 0;
}

.underline-tabs.wide {
  margin-top: 60px;
}

.underline-tabs button {
  width: 300px;
  padding: 20px;
  border: 0;
  border-bottom: 2px solid var(--border);
  background: transparent;
  color: var(--blue);
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}

.underline-tabs button.is-active {
  border-color: var(--blue);
}

.vote-lead {
  margin: 56px 0;
  text-align: center;
  font-size: 18px;
}

.vote-lead__line {
  display: inline;
}

.vote-info-button {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  vertical-align: 2px;
}

.phone-steps {
  width: 1128px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.phone-steps figure {
  width: 282px;
  margin: 0;
  padding: 0 16px;
  text-align: center;
}

.phone-steps figcaption {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 51px;
  margin-bottom: 32px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 18px;
}

.phone-steps img {
  width: 250px;
  height: 350px;
  object-fit: contain;
}

.sub-title {
  margin: 80px 0 56px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.other-vote {
  display: flex;
  gap: 20px;
  width: 1128px;
  margin: 0 auto;
  text-align: center;
}

.other-vote article {
  flex: 1;
}

.other-vote__icon {
  display: inline-flex;
  width: 160px;
  height: 160px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--pale);
}

.other-vote img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.other-vote h3 {
  margin: 20px 0 12px;
  font-size: 18px;
  font-weight: 500;
}

.other-vote p,
.other-vote a {
  font-size: 18px;
  line-height: 1.5;
}

.other-vote a {
  display: inline-block;
  margin-top: 12px;
  padding-bottom: 8px;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
}

.epassbook-article {
  position: relative;
}

#epassbook-toggle {
  cursor: pointer;
}

.app-store-dropdown {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  border: none;
  padding: 0;
}

.app-store-dropdown a {
  display: inline-block;
  margin: 0;
  padding: 0;
  border: none;
}

.app-store-dropdown img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.orange-notice {
  width: 1200px;
  margin: 80px auto 0;
  padding: 40px;
  border: 1px solid var(--orange);
  border-radius: 20px;
  background: #fff1e5;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.orange-notice span {
  color: #00b900;
  text-decoration: underline;
}

.vote-panel {
  width: 1200px;
  margin: 0 auto;
}

.paper-lead {
  width: max-content;
  max-width: none;
  margin: 64px auto 60px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}

.paper-lead strong {
  color: var(--blue);
  font-weight: 700;
}

.underline-text {
  text-decoration: underline;
  font-weight: 450;
}

.paper-layout {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.paper-vote-img {
  width: 880px;
  height: 735px;
  object-fit: contain;
}

.paper-steps {
  width: 260px;
  padding-top: 12px;
}

.paper-steps div {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
  text-align: left;
}

.paper-steps span {
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.paper-steps p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.invalid-box {
  width: 1000px;
  min-height: 208px;
  margin: 80px auto 0;
  padding: 36px 60px;
  border-radius: 12px;
  background: #F9E6E7;
  border: 1px solid #C10917;
}

.invalid-box h3 {
  margin: 0 0 20px;
  color: #C10917;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.invalid-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.invalid-box li {
  position: relative;
  padding-left: 28px;
  font-size: 18px;
  line-height: 1.5;
}

.invalid-box li + li {
  margin-top: 10px;
}

.invalid-box li::before {
  content: "✕";
  position: absolute;
  top: 0px;
  left: -8px;
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #C10917;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.paper-note {
  margin-top: 60px;
}

.paper-note-1 {
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0;

}

.paper-note-2 {
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--navy);
}


.schedule-section {
  height: 1327px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.timeline {
  display: block;
  width: 620px;
  height: 740px;
  margin: 60px auto 0;
  object-fit: contain;
}

.profile-section {
  height: 2060px;
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fff;
}

.allocation-grid {
  display: flex;
  justify-content: space-between;
  width: 1128px;
  margin: 80px auto 0;
}

.allocation {
  width: 524px;
  min-height: 458px;
  display: flex;
  flex-direction: column;
}

.allocation h3,
.top-holdings h3 {
  margin: 0 0 50px;
  font-size: 20px;
  font-weight: 400;
}

.allocation h3 {
  font-weight: 500;
}

.alloc-content {
  display: flex;
  gap: 50px;
}

.donut {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: conic-gradient(#e0e0e0 0 100%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 70px;
  border-radius: 50%;
  background: #fff;
}

.allocation ul {
  width: 234px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.allocation li,
.top-holdings li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 16px;
}

.allocation li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  column-gap: 12px;
  align-items: center;
  justify-content: normal;
  text-align: left;
}

.allocation li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin: 0;
  border-radius: 50%;
  background: var(--item-color, var(--blue));
}

.allocation li span {
  font-weight: 400;
  text-align: left;
}

.allocation li strong {
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
}

.allocation p {
  margin-top: auto;
  color: #7283a6;
  font-size: 13px;
}

.allocation a {
  float: right;
  color: #38a8fd;
  font-size: 14px;
}

.allocation-more {
  float: right;
  border: 0;
  padding: 0;
  background: transparent;
  color: #38a8fd;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}

.top-holdings {
  width: 1128px;
  margin: 80px auto 0;
}

.top-holdings h3 {
  font-weight: 500;
}

.top-holdings .note {
  width: 1128px;
}

.holdings-cols {
  display: flex;
  gap: 60px;
  padding: 0 36px;
}

.holdings-cols ul {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-holdings li {
  padding: 20px 12px;
  border-bottom: 1px solid var(--border);
  font-weight: 400;
}

.top-holdings li strong {
  font-weight: 400;
}

.profile-table {
  width: 1000px;
  margin: 60px auto 0;
}

.downloads {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--pale);
  font-size: 16px;
}

.downloads__icon {
  height: 20px;
  width: auto;
  vertical-align: middle;
}

.downloads__title {
  display: none;
}

.downloads__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}

.downloads__link:empty {
  display: none;
}

.downloads__link:hover {
  text-decoration: underline;
}

.profile-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.5;
}

.profile-table th {
  width: 160px;
  padding: 16px 20px;
  background: var(--yuanta);
  border-bottom: 1px solid #fff;
  color: #fff;
  font-weight: 400;
  text-align: center;
}

.profile-table td {
  width: 340px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--yuanta);
  background: #fff;
}

.profile-table tr:last-child th {
  border-bottom: 1px solid var(--yuanta);
}

.warning {
  height: 586px;
  padding: 80px 20px;
  background: var(--pale);
}

.warning-inner {
  width: 1200px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.5;
}

.warning-title {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.warning-title h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
}

.warning-title p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.warning strong,
.aml {
  font-size: 14px;
  font-weight: 500;
}

.aml {
  margin-top: 20px;
  font-size: 18px;
}

.warning-section {
  min-height: 586px;
  padding: 50px 20px;
  background: #dfedfb;
  color: #0e2a55;
  line-height: 22px;
  text-align: left;
}

.warning-section__inner {
  width: 1200px;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: rotate(0deg);
  opacity: 1;
}

.warning-section__title {
  display: flex;
  align-items: baseline;
  gap: 0;
  color: inherit;
}

.warning-section__title h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.warning-section__title p {
  margin: 0 0 0 1em;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}



.warning-section__body p {
  margin: 0 0 12px;
}

.warning-section__body_1 {
  padding: 20px 0 0;
  line-height: 22px;
  color: inherit;
  font-size: 12px;
  font-weight: 400;
}

.warning-section__body_1 p {
  margin: 0;
}
.warning-section__body strong {
  text-decoration: underline;
}

.warning-section__body u {
  text-decoration: underline;
}

.warning-section__disclaimer {
  margin-top: 12px;
  color: #143459;
  font-weight: 500;
  font-size: 14px;
}

.warning-section__body_1 + .warning-section__disclaimer {
  margin-top: 8px;
}

.warning-section__disclaimer_1{
  color: #005BAC;
}

.warning-section__disclaimer_2{
  text-decoration: underline;
}

.warning-section__disclaimer_3{
  font-size: 18px;
  color: #143459;
  font-weight: 500;
}

.warning-section__inner > p:last-child {
  margin-top: -2.5px;
}

.site-footer {
  color: #fff;
  font-size: 13px;
  line-height: 1.35em;
  font-family: Arial, "微軟正黑體", "Microsoft JhengHei", "MS UI Gothic", Helvetica, sans-serif;
  font-weight: 400;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(to top, #009ae7, #0080e0);
  padding: 20px 10px;
  text-align: center;
  letter-spacing: 0.1px;
}

.site-footer * {
  font-weight: 400;
}

.socialmedia {
  padding: 10px 0;
  margin: 0;
  list-style: none;
}

.socialmedia li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px;
}

.socialmedia li a {
  display: block;
}

.socialmedia li img {
  width: 22px;
  height: 22px;
}

.site-footer .copyright,
.site-footer .contact {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding: 5px 0;
}

.site-footer .contact p {
  display: inline-block;
  vertical-align: middle;
  padding: 0 6px;
  margin: 0;
}

.copyright {
  margin: 0;
}

.other-vote-card__arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.other-vote a:hover .other-vote-card__arrow {
  transform: translateX(4px);
}

.top {
  position: fixed;
  right: 57px;
  bottom: 50px;
  z-index: 999;
  width: 40px;
  height: 40px;
  display: none;
  border-radius: 5px;
  background: rgba(102, 102, 102, .6);
  color: #fff;
  cursor: pointer;
  opacity: .6;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: center;
}

.top.show {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: top .2s linear;
}

@keyframes top {
  0% {
    opacity: 0;
  }

  100% {
    opacity: .6;
  }
}

.top:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media screen and (min-width: 1025px) {
  .top:hover {
    opacity: 1;
  }
}

body.modal-open {
  overflow: hidden;
}

.app-modal__mask {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  background: rgba(0, 0, 0, .58);
}

.app-modal__wrapper {
  width: 1000px;
  height: 80vh;
  margin: 5% auto auto;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}

.app-modal__container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px 80px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
}

.app-modal__header h2 {
  width: 760px;
  margin: 0 auto;
  padding: 20px 0;
  color: #2c2745;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.app-modal__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.app-modal__close::before,
.app-modal__close::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 1px;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #aaa;
}

.app-modal__close::before {
  transform: rotate(45deg);
}

.app-modal__close::after {
  transform: rotate(-45deg);
}

.app-modal__body {
  width: 100%;
  max-height: calc(80vh - 150px);
  margin: 0;
  padding-bottom: 50px;
  overflow-x: hidden;
  overflow-y: auto;
}

.app-modal__body::-webkit-scrollbar {
  width: 2px;
}

.app-modal__body::-webkit-scrollbar-thumb {
  background: #aaa;
}

.app-modal__table {
  width: 100%;
  border-collapse: collapse;
  color: #2c2745;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
}

.app-modal__table th,
.app-modal__table td {
  width: 50%;
  padding: 12px 4px;
}

.app-modal__table th {
  background: #2e48ec;
  color: #fff;
  font-weight: 700;
}

.app-modal__table tbody tr:nth-child(odd) td {
  background: #eef1ff;
}

.industry-modal-layout {
  display: flex;
  gap: 70px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
}

.industry-modal-donut {
  width: 300px;
  height: 300px;
  flex: 0 0 300px;
}

.industry-modal-list {
  width: 430px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-modal-list li {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0 8px 24px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.4;
}

.industry-modal-list li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--item-color, var(--blue));
}

.industry-modal-list strong {
  font-weight: 500;
  white-space: nowrap;
}

.industry-modal-date {
  margin: 36px 0 0;
  color: #2f4363;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.mobile-text {
  display: none;
}

@media (min-width: 768px) {
  .split-examples picture {
    display: block;
  }

}

@media (min-width: 768px) and (max-width: 1439px) {
  body {
    min-width: 0;
    overflow-x: hidden;
  }

  .page-shell,
  .section {
    width: 100%;
  }

  .page-shell {
    margin: 0;
  }

  .site-header {
    padding-right: clamp(32px, 5vw, 72px);
    padding-left: clamp(32px, 5vw, 72px);
  }

  .section {
    padding-right: clamp(40px, 7vw, 96px);
    padding-left: clamp(40px, 7vw, 96px);
  }

  .section-white,
  #section-2,
  .vote-section,
  .vote-section.is-paper,
  .schedule-section,
  .profile-section {
    padding-top: clamp(56px, 7vw, 100px);
    padding-bottom: clamp(56px, 7vw, 100px);
  }

  .section-white,
  #section-2,
  .vote-section,
  .vote-section.is-paper,
  .schedule-section,
  .profile-section {
    height: auto;
  }

  .section-intro,
  .card-grid,
  .note,
  .wide-card,
  .wide-card .note,
  .decision-panel,
  .proposal-panel,
  .decision-card,
  .chart-box,
  .decision-card .note,
  .split-note,
  .steps-card,
  .phone-steps,
  .other-vote,
  .orange-notice,
  .vote-panel,
  .invalid-box,
  .allocation-grid,
  .top-holdings,
  .top-holdings .note,
  .profile-table,
  .warning-inner,
  .warning-section__inner {
    width: 100%;
    max-width: 1200px;
  }

  .section-intro h1,
  .inverse-title {
    font-size: clamp(38px, 3.6vw, 48px);
  }

  .section-intro p,
  .decision-card > p,
  .flow-item p,
  .other-vote p,
  .other-vote a,
  .paper-steps p,
  .invalid-box li {
    font-size: clamp(15px, 1.4vw, 18px);
  }

  .card-grid {
    gap: clamp(28px, 4vw, 60px);
  }

  .chart-card--half {
    width: auto;
    height: auto;
    flex: 1 1 0;
    min-width: 0;
    padding: clamp(24px, 3.4vw, 40px);
  }

  .chart-card h3 {
    min-height: 0;
    font-size: clamp(15px, 1.35vw, 18px);
  }

  .chart-card img,
  .split-visuals img:first-child,
  .split-visuals img:last-child,
  .chart-box img,
  .split-illustration,
  .split-examples img,
  .timeline,
  .paper-vote-img {
    max-width: 100%;
  }

  .chart-card img {
    width: 100%;
    height: auto;
  }

  .wide-card,
  .split-visuals,
  .chart-box {
    height: auto;
  }

  .wide-card {
    margin-top: clamp(56px, 6vw, 80px);
    padding: clamp(40px, 5vw, 60px) clamp(28px, 4vw, 40px);
  }

  .split-visuals {
    gap: clamp(28px, 5vw, 74px);
  }

  .split-visuals img:first-child,
  .split-visuals img:last-child {
    width: calc((100% - clamp(28px, 5vw, 74px)) / 2);
    height: auto;
  }

  .section-decision,
  .section-decision.is-split {
    height: auto;
  }

  .decision-panel {
    margin-top: clamp(72px, 7vw, 88px);
  }

  .tab-frame {
    width: min(800px, 74vw);
    height: auto;
  }

  .tab-frame__item {
    width: 50%;
    padding: clamp(12px, 1.4vw, 16px);
  }

  .tab-frame__item span {
    font-size: clamp(16px, 1.6vw, 20px);
  }

  .tab-frame__item strong {
    font-size: clamp(22px, 2.4vw, 28px);
  }

  .decision-card {
    min-height: 0;
    padding-top: clamp(96px, 9vw, 130px);
    padding-bottom: clamp(44px, 5vw, 60px);
    padding-right: clamp(48px, 7vw, 100px);
    padding-left: clamp(48px, 7vw, 100px);
  }

  .decision-card h2,
  .steps-card h2 {
    font-size: clamp(26px, 2.6vw, 32px);
  }

  .chart-box {
    margin-top: clamp(48px, 6vw, 80px);
    padding-top: clamp(36px, 4vw, 50px);
    padding-bottom: clamp(36px, 4vw, 50px);
    padding-right: clamp(28px, 4vw, 35px);
    padding-left: clamp(28px, 4vw, 35px);
  }

  .chart-box picture,
  .chart-box img {
    display: block;
    width: 100%;
    height: auto;
  }

  .split-change > p:not(.split-note),
  .paper-lead {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }

  .split-illustration-wrap {
    padding: clamp(28px, 4vw, 40px) clamp(32px, 5vw, 60px);
  }

  .split-illustration {
    width: 100%;
    height: auto;
  }

  .split-benefits,
  .split-examples,
  .flow,
  .paper-layout,
  .allocation-grid,
  .holdings-cols {
    gap: clamp(24px, 4vw, 60px);
  }

  .split-benefits article {
    width: clamp(170px, 18vw, 220px);
  }

  .split-benefits img {
    width: clamp(120px, 13vw, 160px);
    height: auto;
  }

  .split-examples article,
  .split-examples picture {
    flex: 1 1 0;
    min-width: 0;
  }

  .split-examples img {
    width: 100%;
    height: auto;
    padding: clamp(14px, 2vw, 20px);
  }

  .steps-card {
    min-height: 0;
    padding: clamp(44px, 5vw, 60px) clamp(48px, 7vw, 100px);
  }

  .flow-icon {
    width: clamp(112px, 11vw, 150px);
    height: clamp(112px, 11vw, 150px);
  }

  .flow-item {
    gap: clamp(16px, 2vw, 20px);
  }

  .flow-item h3 {
    font-size: clamp(16px, 1.4vw, 18px);
  }

  .underline-tabs {
    width: min(600px, 58vw);
  }

  .underline-tabs button {
    width: 50%;
    font-size: clamp(17px, 1.6vw, 20px);
  }

  .phone-steps figure {
    flex: 1 1 0;
    min-width: 0;
    padding-right: clamp(8px, 1.2vw, 16px);
    padding-left: clamp(8px, 1.2vw, 16px);
  }

  .phone-steps figcaption {
    min-width: 0;
    width: min(180px, 100%);
    height: auto;
    font-size: clamp(15px, 1.4vw, 18px);
  }

  .phone-steps img {
    width: 100%;
    height: auto;
  }

  .other-vote {
    gap: clamp(16px, 2vw, 20px);
  }

  .other-vote__icon {
    width: clamp(120px, 13vw, 160px);
    height: clamp(120px, 13vw, 160px);
  }

  .other-vote img {
    width: clamp(90px, 10vw, 120px);
    height: clamp(90px, 10vw, 120px);
  }

  .orange-notice,
  .invalid-box {
    padding-right: clamp(32px, 5vw, 60px);
    padding-left: clamp(32px, 5vw, 60px);
  }

  .paper-layout {
    align-items: flex-start;
  }

  .paper-layout picture {
    display: block;
    width: min(880px, calc(100% - clamp(220px, 22vw, 260px) - clamp(24px, 4vw, 60px)));
    flex: 1 1 auto;
  }

  .paper-vote-img {
    display: block;
    width: 100%;
    height: auto;
  }

  .paper-steps {
    width: clamp(220px, 22vw, 260px);
    flex: 0 0 clamp(220px, 22vw, 260px);
  }

  .timeline {
    width: min(620px, 70vw);
    height: auto;
  }

  .allocation-grid {
    align-items: stretch;
  }

  .alloc-content {
    gap: clamp(24px, 4vw, 50px);
    align-items: flex-start;
  }

  .allocation {
    width: calc((100% - clamp(24px, 4vw, 60px)) / 2);
    min-height: clamp(360px, 32vw, 458px);
  }

  .donut {
    width: min(240px, 45%);
    height: auto;
    aspect-ratio: 1;
    flex: 0 0 auto;
  }

  .donut::after {
    inset: 29%;
  }

  .allocation ul {
    width: min(234px, 55%);
  }

  .allocation li,
  .top-holdings li {
    font-size: clamp(14px, 1.25vw, 16px);
  }

  .holdings-cols {
    padding-right: clamp(12px, 2.5vw, 36px);
    padding-left: clamp(12px, 2.5vw, 36px);
  }

  .profile-table table {
    width: 100%;
  }

  .downloads {
    font-size: clamp(14px, 1.25vw, 16px);
  }

  .profile-table th,
  .profile-table td {
    padding: clamp(12px, 1.4vw, 16px) clamp(14px, 1.6vw, 20px);
  }

  .top-holdings,
  .top-holdings .note {
    max-width: 1128px;
  }

  .app-modal__wrapper {
    width: min(1000px, calc(100vw - 80px));
  }

  .app-modal__header h2 {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .hero {
    height: 100svh;
  }
}

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    min-width: 0;
  }

  .top {
    right: 10px;
    bottom: 10px;
    font-size: 12px;
  }

  .desktop-text {
    display: none;
  }

  .mobile-text {
    display: inline;
  }

  .page-shell,
  .section,
  .site-header,
  .anchor-bar {
    width: 100%;
  }

  .page-shell {
    margin: 0;
    overflow: hidden;
  }

  .site-header {
    left: 0;
    height: 52px;
    transform: none;
    padding: 0 20px;
  }

  .site-header nav {
    font-size: 14px;
  }

  .logo_image {
    width: 112px;
    height: 24px;
    transform: none;
  }

  .hero {
    width: 100vw;
    height: 100svh;
    min-height: 0;
    margin-left: calc(50% - 50vw);
  }

  .hero__image {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .anchor-bar {
    height: 64px;
    padding: 13px 21px;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
  }

  .anchor-bar span {
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
  }

  .chevron {
    width: 11px;
    height: 6px;
    transform: none;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-white,
  #section-2,
  .vote-section,
  .schedule-section,
  .profile-section {
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-intro,
  .inverse-title,
  .vote-panel,
  .schedule-panel,
  .note {
    width: 100%;
    max-width: 335px;
    margin-right: auto;
    margin-left: auto;
  }

  .section-intro h1,
  .inverse-title,
  .decision-card h2,
  .steps-card h2 {
    font-size: 32px;
    line-height: 1.5;
  }

  .section-intro p {
    margin-top: 20px;
    font-size: 16px;
  }

  .section-intro.small {
    margin-top: 60px;
  }

  .card-grid,
  .allocation-grid {
    width: 100%;
    max-width: 335px;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }

  .chart-card--half,
  .wide-card {
    width: 100%;
    max-width: 335px;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    padding: 20px;
    border-radius: 12px;
  }

  .chart-card h3 {
    min-height: 0;
    margin-bottom: 20px;
    font-size: 18px;
  }

  .chart-card img,
  .split-visuals img {
    display: block;
    width: 100%;
    max-width: 295px;
    height: auto;
    margin-right: auto;
    margin-left: auto;
  }

  .note {
    margin-top: 40px;
    font-size: 13px;
    text-align: left;
  }

  .note.right,
  .note.center {
    text-align: left;
  }

  .vote-panel[data-vote-panel="electronic"] > .note.center {
    text-align: center;
  }

  .note strong,
  .split-note__body,
  .paper-note-2 {
    font-size: 14px;
  }

  .wide-card {
    margin-top: 40px;
  }

  #section-2 .wide-card {
    padding: 20px 4px;
    border-radius: 8px;
  }

  .split-visuals {
    height: auto;
    flex-direction: column;
    gap: 30px;
  }

  #section-2 .split-visuals img:first-child,
  #section-2 .split-visuals img:last-child {
    width: 100%;
    max-width: 298px;
    height: auto;
    object-fit: contain;
  }

  .wide-card .note {
    width: 100%;
    margin-top: 30px;
    padding: 4px 10px;
  }

  .section-decision,
  .section-decision.is-split {
    height: auto;
    min-height: 0;
    padding: 40px 20px 70px;
    background: #01289d;
  }

  .decision-bg {
    left: -86.67vw;
    top: auto;
    bottom: -25.33vw;
    width: 273.6vw;
    height: 182.4vw;
    object-position: bottom;
  }

  .section-decision.is-split .decision-bg {
    height: 684px;
  }

  .section-decision.is-split::before,
  .section-decision.is-split::after {
    content: none;
  }

  .decision-panel,
  .proposal-panel,
  .decision-card,
  .steps-card {
    width: 100%;
    max-width: 335px;
  }

  .decision-panel {
    margin-top: 82px;
  }

  .tab-frame {
    width: 252px;
    height: 83px;
  }

  .tab-frame__item {
    width: 126px;
    padding: 16px 6px;
  }

  .tab-frame__item span {
    font-size: 16px;
  }

  .tab-frame__item strong {
    font-size: 18px;
  }

  .decision-card {
    min-height: 0;
    padding: 83px 20px 40px;
    border-radius: 12px 12px 0 0;
  }

  .decision-card > p {
    margin-top: 20px;
    font-size: 16px;
  }

  .chart-box {
    width: 100%;
    height: 349px;
    margin-top: 20px;
    padding: 26px 9px;
    border-radius: 8px;
  }

  .chart-box img {
    display: block;
    width: 100%;
    max-width: 276px;
    height: auto;
    margin-right: auto;
    margin-left: auto;
  }

  .decision-card .note,
  .split-note {
    width: 100%;
    margin-top: 40px;
  }

  .split-illustration-wrap {
    width: 100%;
    margin-top: 40px;
    padding: 0;
    background: transparent;
  }

  .split-illustration-wrap .split-example-copy {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .split-illustration {
    width: 100%;
    max-width: 264px;
    height: auto;
  }

  .split-change {
    margin-top: 40px;
  }

  .split-change > p:not(.split-note) {
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
    white-space: normal;
  }

  .split-benefits {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
  }

  .split-benefits article {
    width: 100%;
  }

  .split-benefits h3 {
    margin-top: 20px;
    font-size: 18px;
  }

  .split-examples-title {
    margin: 40px 0;
    font-size: 18px;
    line-height: 1.5;
  }

  .split-examples {
    flex-direction: column;
    gap: 40px;
  }

  .split-examples picture {
    display: flex;
    width: 100%;
    max-width: 295px;
    height: 295px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    padding: 20px 8px;
  }

  .split-examples img {
    width: 100%;
    max-width: 279px;
    height: auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .steps-card {
    min-height: 0;
    padding: 40px 20px;
  }

  .flow {
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }

  .flow-item {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    text-align: center;
  }

  .flow-item h3 {
    margin-bottom: 16px;
  }

  .flow-arrow {
    width: 0;
    height: 0;
    border-right: 38px solid transparent;
    border-left: 38px solid transparent;
    border-top: 19px solid #aab6de;
    object-fit: initial;
    transform: none;
  }

  .steps-card .note {
    margin-top: 40px;
  }

  .vote-section.is-paper {
    height: auto;
  }

  .underline-tabs,
  .underline-tabs.wide {
    width: 100%;
    max-width: 335px;
    margin-top: 40px;
  }

  .underline-tabs button {
    width: 50%;
    min-height: 102px;
    padding: 20px 8px;
    font-size: 20px;
    line-height: 1.5;
  }

  .vote-lead,
  .paper-lead {
    width: 100%;
    margin: 40px auto;
    font-size: 16px;
    line-height: 1.5;
    white-space: normal;
  }

  .vote-lead {
    position: relative;
    display: grid;
    width: max-content;
    max-width: 100%;
    grid-template-columns: auto 24px;
    column-gap: 10px;
    align-items: end;
    padding-right: 0;
    color: var(--navy);
    font-size: 21px;
    line-height: 1.5;
    text-align: center;
  }

  .vote-lead__line {
    display: block;
    grid-column: 1;
    justify-self: center;
    white-space: nowrap;
  }

  .vote-info-button {
    position: static;
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 5px;
    width: 24px;
    height: 24px;
    font-size: 16px;
  }

  .phone-steps {
    width: 100%;
    flex-direction: column;
    gap: 40px;
  }

  .phone-steps figure {
    width: 100%;
    padding: 0;
  }

  .phone-steps figcaption {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .sub-title {
    margin: 60px 0 40px;
  }

  .other-vote {
    width: 100%;
    flex-direction: column;
    gap: 40px;
  }

  .other-vote p,
  .other-vote a,
  .orange-notice {
    font-size: 16px;
  }

  .orange-notice {
    width: 100%;
    max-width: 335px;
    margin-top: 60px;
    padding: 20px;
    border-radius: 12px;
  }

  .paper-layout {
    flex-direction: column;
    gap: 40px;
  }

  .paper-layout picture,
  .paper-vote-img {
    width: 100%;
    max-width: 335px;
    height: auto;
  }

  .paper-steps {
    width: 100%;
    padding-top: 0;
  }

  .paper-steps div {
    gap: 2px;
    margin-bottom: 10px;
    color: var(--navy);
    text-align: left;
  }

  .paper-steps div:last-child {
    margin-bottom: 0;
  }

  .paper-steps span,
  .paper-steps p {
    font-size: 19px;
    line-height: 1.6;
  }

  .paper-steps span {
    flex-basis: 22px;
  }

  .paper-steps p {
    flex: 1;
  }

  .paper-steps div:nth-child(2) p {
    font-size: 18px;
    letter-spacing: 0;
  }

  .paper-step-break {
    display: none;
  }

  .invalid-box {
    width: 100%;
    margin-top: 40px;
    padding: 24px 20px;
  }

  .invalid-box li {
    font-size: 16px;
  }

  .schedule-section {
    background: var(--pale);
  }

  .schedule-panel picture {
    display: block;
    width: 100%;
    max-width: 335px;
    margin-right: auto;
    margin-left: auto;
  }

  .timeline {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0;
  }

  .allocation-grid {
    gap: 40px;
  }

  .allocation,
  .top-holdings,
  .top-holdings .note,
  .profile-table {
    width: 100%;
    max-width: 335px;
  }

  .allocation {
    min-height: 0;
  }

  .allocation h3,
  .top-holdings h3 {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
  }

  .alloc-content {
    align-items: flex-start;
    gap: 32px;
  }

  .donut {
    width: 110px;
    height: 110px;
  }

  .donut::after {
    inset: 32px;
  }

  .allocation ul {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }

  .allocation li {
    grid-template-columns: 10px minmax(0, 1fr) 64px;
    padding: 8px 0;
  }

  .allocation p {
    position: relative;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
    line-height: 1.5;
  }

  .allocation-more {
    position: absolute;
    top: 0;
    right: 0;
    float: none;
  }

  .top-holdings {
    margin-top: 40px;
  }

  .holdings-cols {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .top-holdings li {
    padding: 12px 4px;
  }

  .downloads {
    width: 335px;
    min-height: 104px;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, max-content);
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    row-gap: 12px;
    padding: 20px;
    text-align: center;
    background: var(--pale);
    color: var(--navy);
    font-size: 16px;
  }

  .downloads__title {
    display: block;
    grid-column: 1 / -1;
    font-size: 16px;
    line-height: 1.5;
  }

  .downloads__link {
    gap: 12px;
    font-size: 16px;
    line-height: 1.5;
    white-space: nowrap;
  }

  .downloads__icon {
    height: 16px;
  }

  .profile-table table {
    display: grid;
    width: 100%;
    grid-template-columns: 120px minmax(0, 1fr);
    border-collapse: separate;
    font-size: 16px;
    line-height: 1.5;
  }

  .profile-table tbody,
  .profile-table tr {
    display: contents;
  }

  .profile-table th,
  .profile-table td {
    display: flex;
    width: 100%;
    min-height: 56px;
    align-items: center;
    border-bottom: 1px solid var(--yuanta);
    text-align: left;
  }

  .profile-table th {
    justify-content: center;
    padding: 12px;
    border-bottom-color: #fff;
    text-align: center;
  }

  .profile-table td {
    display: block;
    justify-content: flex-start;
    padding: 12px;
    word-break: break-word;
  }

  .profile-table tr:last-child th {
    border-bottom-color: var(--yuanta);
  }

  .profile-table td .nowrap {
    display: inline;
    white-space: normal;
  }

  .warning-section {
    min-height: 0;
    padding: 50px 20px;
    line-height: 20px;
  }

  .warning-section__inner {
    width: 100%;
    height: auto;
    max-width: 335px;
  }

  .warning-section__title {
    align-items: flex-start;
    flex-direction: column;
  }

  .warning-section__title p {
    margin-left: 0;
  }

  .warning-section__body_1 {
    padding: 5px 0;
    line-height: 20px;
    text-align: left;
    letter-spacing: 0.01px;
  }

  .warning-section__title {
    display: block;
  }

  .warning-section__title h2 {
    font-size: 22px;
  }

  .warning-section__title p,
  .warning-section__disclaimer_3 {
    font-size: 16px;
  }

  .warning-section__body_1 {
    line-height: 20px;
  }

  .warning-section__disclaimer {
    font-size: 13px;
    line-height: 1.5;
  }

  .site-footer {
    padding: 20px 10px;
  }

  .socialmedia {
    padding: 0 0 10px;
  }

  .site-footer .copyright,
  .site-footer .contact {
    max-width: 330px;
    text-align: left;
  }

  .site-footer .contact p {
    display: block;
    padding: 3px 0;
  }

  .app-modal__wrapper {
    width: calc(100vw - 40px);
    height: 82vh;
    margin-top: 9vh;
  }

  .app-modal__container {
    padding: 20px;
  }

  .app-modal__header h2 {
    width: calc(100% - 48px);
    font-size: 18px;
  }

  .app-modal__close {
    top: 20px;
    right: 20px;
  }

  .app-modal__table {
    font-size: 14px;
  }

  .industry-modal-layout {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .industry-modal-donut {
    width: 220px;
    height: 220px;
    flex-basis: 220px;
  }

  .industry-modal-list {
    width: 100%;
  }

  .industry-modal-list li {
    font-size: 14px;
  }
}