/**
 * SuperX Theme - IR (Investor Relations) Site CSS
 * Styles specific to the IR site type
 * Based on old_site_IR_site_umjs_for_reference design
 */
@import "../assets/css/flag-icons.min.css";

/* ============================================
   CSS Variables for IR Site
   ============================================ */
body.site-type-ir {
  --superx-primary: #0F3B95;
  --superx-primary-dark: #082a5c;
  --superx-primary-light: #1a4ba8;
  --superx-primary-rgb: 15, 59, 149;
  --superx-primary-hover: rgba(15, 59, 149, 0.1);
  --superx-primary-active: rgba(15, 59, 149, 0.05);

  --ir-title-color: #040B18;
  --ir-subtitle-color: #4a4a4a;
  --ir-text-color: #333;
  --ir-text-muted: #666;
  --ir-text-light: #a1a1a1;

  --ir-header-height: 120px;
  --ir-header-height-mobile: 80px;
  --ir-max-width: 1200px;

  font-size: 14px;
  scroll-behavior: smooth;
}

/* ============================================
   Typography - IR Site
   ============================================ */
.site-type-ir {
  font-family: 'IBM Plex Sans', 'Noto Sans JP', 'Noto Sans', Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
}

.site-type-ir h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.1rem;
  color: var(--ir-title-color);
}

.site-type-ir h2 {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.1rem;
  color: var(--ir-title-color);
}

.site-type-ir h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--ir-title-color);
}

.site-type-ir h4 {
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--ir-title-color);
}

/* ============================================
   Header - IR Site
   ============================================ */

.site-type-ir .region-top-first{
  width: calc(var(--ir-max-width) + 60px);
  padding: 0 30px;
  margin: auto;
}

.site-type-ir .superx-header {
  position: relative;
  height: var(--ir-header-height);
  /*transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);*/
  /*backdrop-filter: blur(10px);*/
  /*-webkit-backdrop-filter: blur(10px);*/
  background-color: transparent;
  border-bottom: none;
  box-shadow:none;
}

.site-type-ir .superx-header.scrolled {
  position: fixed;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.95);
}

.site-type-ir .superx-header-inner {
  max-width: calc(var(--ir-max-width) + 60px);
  height: calc(var(--ir-header-height) - 40px);
  padding: 0 30px;
}

.toolbar-loading .superx-header.scrolled{
  position: relative!important;
  box-shadow:none;
  background-color: transparent;
}

.site-type-ir .superx-logo {
  flex:1;
}

.site-type-ir .superx-logo img {
  height: 50px;
  /*transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);*/
}

/* Navigation - IR Site */
.site-type-ir .superx-nav-list {
  gap: 8px;
}

.site-type-ir .superx-nav-link {
  font-size: 1.0rem;
  font-weight: 400;
  color: var(--ir-title-color);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.site-type-ir .superx-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--superx-primary-hover), transparent);
  transition: left 0.5s ease;
}

.site-type-ir .superx-nav-link:hover {
  background-color: var(--superx-primary-active);
  color: var(--superx-primary);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(15, 59, 149, 0.15);
}

.site-type-ir .superx-nav-link:hover::before {
  left: 100%;
}

.site-type-ir .superx-nav-item.active .superx-nav-link {
  background-color: #f0f4ff;
  color: var(--superx-primary);
}
.site-type-ir .superx-nav-item .superx-nav-link.active {
  background-color: transparent;
  color: var(--superx-primary);
}

.path-frontpage.site-type-ir {
  background-image: url("../images/bg/top_bg_ir.jpg");
  background-color: #f7faff;
  background-position: top center;
  background-repeat: no-repeat;
  background-size:contain;
}

.site-type-ir .main-content-grid{
  padding-top:5px;
}

/* Stock Quote Bar - IR Site */
.site-type-ir .ir-stock-bar {
  background-color: #f8f9fa;
  padding: 8px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid #e5e5e5;
}

.site-type-ir .ir-stock-bar-inner {
  max-width: calc(var(--ir-max-width) + 60px);
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-type-ir .stock-symbol {
  font-weight: 600;
  color: var(--ir-title-color);
}

.site-type-ir .stock-price {
  font-weight: 600;
  font-family: 'IBM Plex Mono', monospace;
}

.site-type-ir .stock-change {
  font-family: 'IBM Plex Mono', monospace;
}

.site-type-ir .stock-up {
  color: #16a34a;
}

.site-type-ir .stock-down {
  color: #dc2626;
}

/* .main-content-wrapper */
.site-type-ir .main-content-wrapper{
  margin-top:0;
}

/* ============================================
   Hero Section - IR Site
   ============================================ */
.site-type-ir .ir-hero {
  padding: 180px 0 100px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ffffff;
  position: relative;
  margin-top: calc(-1 * var(--ir-header-height));
}

.site-type-ir .ir-hero-inner {
  max-width: var(--ir-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.site-type-ir .ir-hero h1 {
  font-weight: 900;
  color: var(--ir-title-color);
  letter-spacing: -0.02em;
  margin-bottom: 46px;
}

.site-type-ir .ir-hero-subtitle {
  max-width: 1018px;
  font-weight: 300;
  font-size: 26px;
  color: var(--ir-title-color);
  line-height: 40px;
  text-align: center;
  margin-bottom: 40px;
}

.site-type-ir .ir-hero-buttons {
  display: flex;
  gap: 28px;
}

.site-type-ir .ir-btn-primary {
  min-width: 200px;
  height: 68px;
  border-radius: 8px;
  background: var(--superx-primary);
  font-weight: 400;
  font-size: 24px;
  color: #ffffff;
  line-height: 40px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-type-ir .ir-btn-primary:hover {
  background: var(--superx-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 59, 149, 0.3);
}

.site-type-ir .ir-btn-secondary {
  min-width: 200px;
  height: 68px;
  border-radius: 8px;
  background: #F7FAFF;
  border: 1px solid var(--superx-primary);
  font-weight: 400;
  font-size: 24px;
  color: var(--superx-primary);
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-type-ir .ir-btn-secondary:hover {
  background: var(--superx-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 59, 149, 0.15);
}

/* ============================================
  SuperX AI Investor Relations - IR Site
   ============================================ */
h1.text-align-center > strong{
  color: var(--superx-primary) !important;
}

/* ============================================
   Content Sections - IR Site
   ============================================ */
.site-type-ir .ir-section {
  padding: 80px 0;
}

.site-type-ir .ir-section-inner {
  max-width: var(--ir-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.site-type-ir .ir-section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ir-title-color);
  margin-bottom: 16px;
}

.site-type-ir .ir-section-subtitle {
  font-size: 1.125rem;
  color: var(--ir-text-muted);
  margin-bottom: 48px;
}

/* Navigation Tabs - IR Site */
.site-type-ir .ir-nav-tabs {
  border-radius: 25px;
  border: 1px solid #E5E5E5;
  height: 50px;
  display: inline-flex;
  gap: 10px;
  padding: 4px;
  font-weight: 400;
  font-size: 16px;
  background: #fff;
}

.site-type-ir .ir-nav-tabs a {
  display: inline-flex;
  align-items: center;
  user-select: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
  border-radius: 21px;
  color: #000;
  padding: 0 30px;
  text-decoration: none;
  height: 100%;
}

.site-type-ir .ir-nav-tabs a:hover {
  background-color: var(--superx-primary-hover);
  color: #333;
}

.site-type-ir .ir-nav-tabs a.active {
  background-color: var(--superx-primary);
  color: white;
}

/* Cards - IR Site */
.site-type-ir .ir-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-type-ir .ir-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.site-type-ir .ir-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ir-title-color);
  margin-bottom: 12px;
}

.site-type-ir .ir-card-text {
  font-size: 1rem;
  color: var(--ir-text-color);
  line-height: 1.6;
}

/* Quick Links Grid - IR Site */
.site-type-ir .ir-quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.site-type-ir .ir-quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e5e5e5;
}

.site-type-ir .ir-quick-link:hover {
  border-color: var(--superx-primary);
  box-shadow: 0 4px 16px rgba(15, 59, 149, 0.15);
  transform: translateY(-4px);
}

.site-type-ir .ir-quick-link-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--superx-primary);
}

.site-type-ir .ir-quick-link-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ir-title-color);
  text-align: center;
}

@media (max-width: 991px) {
  .site-type-ir .ir-nav-tabs{
    display: block;
    height: auto;
    width: 60%;
    min-width: 300px;
    margin:auto;
  }
  .site-type-ir .ir-nav-tabs a{
    display: grid;
    padding: 5px 0;
    margin:5px auto;
    background-color:#efefef;
  }

}
/* ============================================
   Footer - IR Site
   ============================================ */
.site-type-ir .superx-footer {
  background-color: #18181b;
}

.site-type-ir .superx-footer-inner {
  max-width: calc(var(--ir-max-width) + 60px);
  padding: 0 2rem 0;
}

.site-type-ir .superx-footer-logo img {
  width: 160px;
}

.site-type-ir .superx-footer-columns ul  > li{
  margin-left: var(--superx-spacing-4xl);
}
.site-type-ir .superx-footer-column ul  > li > ul > li {
  margin-left: 0;
}

.site-type-ir .superx-footer-columns ul > li > span {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.site-type-ir .superx-footer-columns ul > li > ul > li a {
  font-size: 1.1rem;
  color: #a1a1a1;
}

.site-type-ir .superx-footer-columns ul > li > ul > li a:hover {
  color: #ddd;
}

.site-type-ir .superx-footer-content{
  width:570px;
}

.site-type-ir .superx-footer-divider {
  background-color: #a1a1a1;
}

.site-type-ir .superx-footer-copyright p {
  font-size: 1.0rem;
  color: #a1a1a1;
  line-height: 1.5;
  margin:0;
}

.site-type-ir .superx-footer-legal a {
  font-size: 1.1rem;
  color: #a1a1a1;
}

.site-type-ir .superx-footer-legal a:hover {
  color: #ddd;
}

.site-type-ir .superx-footer-social{
  margin-top: 10px;
  gap: 5px;
}

.site-type-ir .superx-footer-social a{
  opacity:1;
  background-color:transparent;
  border:none;
}

.site-type-ir .superx-footer-bottom{
  gap:0;
}

/* ============================================
   Contact Button - IR Site
   ============================================ */
.site-type-ir .ir-contact-btn {
  width: 120px;
  height: 40px;
  background: linear-gradient(135deg, var(--superx-primary) 0%, var(--superx-primary-light) 100%);
  border-radius: 8px;
  border: none;
  color: white;
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.site-type-ir .ir-contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.site-type-ir .ir-contact-btn:hover {
  background: linear-gradient(135deg, var(--superx-primary-light) 0%, #2a5bb8 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 59, 149, 0.3);
}

.site-type-ir .ir-contact-btn:hover::before {
  left: 100%;
}

/* ============================================
   Responsive - IR Site
   ============================================ */

/* ============================================
   Extra Large Screens (1400px+)
   ============================================ */
@media (min-width: 1400px) {
  :root {
    --superx-container-width: 1200px;
  }
}
/* ============================================
   Large Screens (1200px - 1399px)
   ============================================ */
@media (max-width: 1399px) {
  :root {
    --superx-container-width: 1200px;
  }
  .site-type-ir .superx-footer-content{
    width:100%;
  }
}

@media (max-width: 1260px) {
  .site-type-ir .superx-header {
    height: 85px;
  }

  .site-type-ir .superx-header-inner {
    max-width: 100%;
    padding: 0 20px;
  }

  .site-type-ir .region-top-first{
    width: 100%;
    padding: 0 20px;
  }

  .site-type-ir .ir-quick-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body.site-type-ir {
    --ir-header-height: 80px;
  }

  .site-type-ir .superx-header-inner {
    padding: 0 16px;
  }

  .site-type-ir .superx-logo img {
    height: 40px;
  }

  .site-type-ir .ir-hero {
    padding: 10rem 0 2rem;
  }

  .site-type-ir .ir-hero h1 {
    font-size: 2rem;
  }

  .site-type-ir .ir-hero-subtitle {
    font-size: 14px;
    line-height: 1.5;
  }

  .site-type-ir .ir-hero-buttons {
    width: 100%;
    padding: 0 20px;
    gap: 10px;
    flex-direction: column;
  }

  .site-type-ir .ir-btn-primary,
  .site-type-ir .ir-btn-secondary {
    width: 100%;
    height: 48px;
    font-size: 16px;
  }

  .site-type-ir .ir-section {
    padding: 48px 0;
  }

  .site-type-ir .ir-section-inner {
    padding: 0 20px;
  }

  .site-type-ir .ir-section-title {
    font-size: 1.5rem;
  }


  .site-type-ir .superx-footer-inner {
    padding: 2rem 20px;
  }

  .site-type-ir .superx-footer-logo img {
    width: 120px;
  }

  .site-type-ir .superx-footer-columns ul > li > span {
    font-size: 16px;
  }

  .site-type-ir .superx-footer-columns ul > li > ul > li a {
    font-size: 14px;
  }

  .site-type-ir .superx-footer-copyright p {
    font-size: 13px;
  }

  .site-type-ir .superx-footer-legal a {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .site-type-ir .superx-header {
    height: 56px;
  }

  .site-type-ir .superx-header.scrolled {
    height: 82px;
  }

  .site-type-ir .superx-header-inner {
    padding: 0 12px;
  }

  .site-type-ir .superx-logo img {
    height: 35px;
  }

  .site-type-ir .ir-quick-links {
    grid-template-columns: 1fr;
  }

  .site-type-ir h1 {
    font-size: 1.75rem;
  }

  .site-type-ir h2 {
    font-size: 1.25rem;
  }
}

/* ============================================
   Mobile Navigation - IR Site (max-width: 991px)
   ============================================ */
@media (max-width: 991px) {
  /* 移动端导航容器 - 使用display控制显示隐藏 */
  .site-type-ir .superx-nav-container {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1100;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 80px 24px 24px;
  }

  .site-type-ir .superx-nav-container.open {
    display: flex;
  }

  /* 移动端导航列表样式 */
  .site-type-ir .superx-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .site-type-ir .superx-nav-item {
    border-bottom: 1px solid #e5e5e5;
  }

  .site-type-ir .superx-nav-link {
    padding: 14px 0;
    font-size: 16px;
    border-radius: 0;
    justify-content: space-between;
  }

  .site-type-ir .superx-nav-link::before {
    display: none;
  }

  .site-type-ir .superx-nav-link:hover {
    transform: none;
    box-shadow: none;
    background-color: transparent;
  }

  /* 移动端下拉菜单样式 */
  .site-type-ir .superx-nav-item > .superx-dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    background-color: #f8f9fa;
  }

  .site-type-ir .superx-nav-item.expanded > .superx-dropdown {
    display: block;
  }

  .site-type-ir .superx-nav-item > .superx-dropdown .superx-dropdown-link {
    padding: 12px 16px 12px 24px;
    font-size: 14px;
  }

  /* 箭头旋转 */
  .site-type-ir .superx-nav-item.expanded > .superx-nav-link .dropdown-arrow {
    transform: rotate(180deg);
  }
}

/* ============================================
   Administrator
   ============================================ */
li#navigation-link-menu-link-contenta4e23a52-3ce3-4cc2-be1d-aecada1cedd8 span,
li#navigation-link-menu-link-content9182e071-ece3-4ce6-9172-b092aae1e72f span,
li#navigation-link-menu-link-content47547fa7-3a34-4e76-b884-ea88b805bc27 span,
.investors_switch_link_css span{
  color:#0444c4;
}

li#navigation-link-menu-link-contenta4e23a52-3ce3-4cc2-be1d-aecada1cedd8 a::before,
li#navigation-link-menu-link-content9182e071-ece3-4ce6-9172-b092aae1e72f a::before,
li#navigation-link-menu-link-content47547fa7-3a34-4e76-b884-ea88b805bc27 a::before,
.investors_switch_link_css::before {
  color: #0444c4!important;
}
/* ============================================
    Administrator Porgress
============================================ */
.toolbar-loading .progress, .toolbar-loading .progress-stacked {
  --bs-progress-height: 2rem;
  --bs-progress-font-size: 1.2rem;
  --bs-progress-bg: var(--bs-secondary-bg);
}
.toolbar-loading .progress__bar{
  background: #0f3b94;
}
.toolbar-loading .progress__track{
  min-width:400px;
  margin-right: 20px;
  margin-left: 15px;
}
.toolbar-loading .progress__percentage{
  margin-right: 10px;
}

















.row.executivesGrid___HWE8m {
  max-width:1280px!important;
}
.executiveCard___rRGfq {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 20px;
  position: relative;
  cursor: pointer;
  background: rgb(255, 255, 255);
  border-radius: 16px;
  padding: 32px;
  transition: 0.3s;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(226, 232, 240);
  border-image: initial;
  overflow: hidden;
  height:354px;
  margin-bottom:25px;
}
.executiveCard___rRGfq::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 4px;
  background: linear-gradient(90deg, #20499e, #0F3B95);
}
.executiveCard___rRGfq:hover {
  transform: translateY(-4px);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 30px;
  border-color: #0F3B95;
}
.executiveCard___rRGfq .executiveInfo___h9Qxe .executiveName___oYh97 {
  font-size: 24px;
  font-weight: 700;
  color: rgb(45, 55, 72);
  line-height: 1.3;
  margin: 0px 0px 8px;
}
.executiveCard___rRGfq .executiveInfo___h9Qxe .nationality___yr8bp {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 6px;
}
.executiveCard___rRGfq .executiveInfo___h9Qxe .executiveTitle____FLWI {
  font-size: 14px;
  color: #0F3B95;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0px 0px 16px;
}
.executiveCard___rRGfq .executiveInfo___h9Qxe .executiveDescription___IlJ49 p {
  font-size: 15px;
  color: rgb(74, 85, 104);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.flagIcon___D_bjt.small___S_odM {
  font-size: 14px;
}
.flagIcon___D_bjt.medium___hngne {
  font-size: 20px;
}
 .flagIcon___D_bjt {
   display: inline-block;
   font-style: normal;
   line-height: 1;
   vertical-align: middle;
 }
.executiveCard___rRGfq .executiveInfo___h9Qxe .nationality___yr8bp .nationalityText___L7QFp {
  font-size: 13px;
  color: rgb(113, 128, 150);
  font-weight: 500;
}

/* Executive Modal Styles */
.executive-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000080;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.executive-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.executive-modal-content {
  background: white;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.executive-modal-overlay.open .executive-modal-content {
  transform: translateY(0);
}

.executive-modal-body {
  padding: 0;
}

.overlay___IBqiQ {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal___hh4EP {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px #0000004d;
  overflow: hidden;
}

.modalHeader___TLKWm {
  padding: 32px 32px 16px;
  border-bottom: 1px solid #e2e8f0;
}

.modalName___JiVEk {
  margin: 0 0 12px 0;
  font-size: 28px!important;
  font-weight: 700;
  color: rgb(45, 55, 72);
  line-height: 1.3;
}

.modalNationality___B_Uwl {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.flagIcon___D_bjt.medium___hngne {
  font-size: 16px;
}

.modalNationalityText___zXEeM {
  font-size: 14px;
  color: rgb(113, 128, 150);
  font-weight: 500;
}

.modalTitle___uvOt8 {
  margin: 0;
  font-size: 14px;
  color: #3182ce;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modalContent___SlRNh {
  padding: 24px 32px;
}

.modalContent___SlRNh p {
  font-size: 14px;
  color: #4a5568;
  line-height: 2.1;
  margin: 0;
  font-style: italic;
}

/* Executive Modal Styles */
.executive-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000080;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.executive-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.executive-modal-content {
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.executive-modal-overlay.open .executive-modal-content {
  transform: translateY(0);
}

.executive-modal-body {
  padding: 0;
}

.overlay___IBqiQ {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal___hh4EP {
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}




/* ============================================
   Governance Documents Section
   ============================================ */
.governance-documents-section {
  padding-top: 0;
}

.governance-document-card {
  height: 100%;
  box-shadow: 0 2px 8px rgb(179 188 199)!important;
}

.governance-document-card-title {
  color: var(--superx-primary)!important;
  margin-bottom: 24px;
}

.governance-document-card-title i {
  margin-right: 0.5rem;
}

.governance-document-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.governance-document-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.governance-document-link:hover {
  background-color: #e9ecef;
}

.governance-document-link-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.governance-document-link-pdf {
  font-size: 24px;
  color: #dc2626;
}

.governance-document-link-text {
  font-weight: 500;
}

.governance-document-link-info {
  font-size: 0.75rem;
  color: #666;
}

.governance-document-link-download {
  color: var(--superx-primary);
}

/* Add download icon style */
.governance-document-link .bi-download {
  color: var(--superx-primary);
}


/* ============================================
  News And Events Section
   ============================================ */
.header___lsL_S{

  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  padding-top: 2rem;
  position: relative;
  width: 100%;
  animation: fadeInUp___r15Xq .6s ease-out;

  :after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3182ce, #2b6cb0);
    border-radius: 2px;
  }
  .title___tkAdt {
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: .5em;
    font-weight: 500;
  }
}


/* ============================================
  Stock Info Section
   ============================================ */
.header___suF8Y{

  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  padding-top: 2rem;
  position: relative;
  width: 100%;
  animation: fadeInUp___r15Xq .6s ease-out;

  :after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3182ce, #2b6cb0);
    border-radius: 2px;
  }
  .title___tkAdt {
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: .5em;
    font-weight: 500;
  }
}



/* ============================================
  Investor FAQs Section
   ============================================ */
.header___mEVM2{

  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  padding-top: 2rem;
  position: relative;
  width: 100%;
  animation: fadeInUp___r15Xq .6s ease-out;

  :after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3182ce, #2b6cb0);
    border-radius: 2px;
  }
  .title___tkAdt {
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: .5em;
    font-weight: 500;
  }
}
.faqsSection___jL3Ei{
  .categorySection___XB545 {
    margin-bottom: 60px;
  }
  .categorySection___XB545 .categoryTitle___EjJUL
  {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
  }

   .categorySection___XB545 .ant-typography h2 {
    margin-bottom: 0.5em;
    color: rgba(0, 0, 0, 0.88);
    font-weight: 600;
    font-size: 30px;
    line-height: 1.2666666666666666;
  }
  .categorySection___XB545 .categoryTitle___EjJUL:after
  {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3182ce, #2b6cb0);
    border-radius: 2px;
  }

  .categorySection___XB545 .faqsList___HOPVO .faqItem___aL9VF {
    margin-bottom: 30px;
    padding: 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 2px 10px #0000000d;
    transition: all .3s ease;
  }
  .categorySection___XB545 .faqsList___HOPVO .faqItem___aL9VF .faqQuestion___wZLZR {
    margin-bottom: 16px;
  }

  :where(.css-198drv2).ant-typography {
    color: rgba(0, 0, 0, 0.88);
    word-break: break-word;
    line-height: 1.5714285714285714;
  }
  .categorySection___XB545 .categoryDivider___xwP7S
  {
    height: 2px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 40px 0;
    border-radius: 1px;
  }
}


/* ============================================
  Stock Info Section
   ============================================ */
.header___MTyIp{

  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  padding-top: 2rem;
  position: relative;
  width: 100%;
  animation: fadeInUp___r15Xq .6s ease-out;

  :after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3182ce, #2b6cb0);
    border-radius: 2px;
  }
  .title___PV2oF {
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: .5em;
    font-weight: 500;
  }
}
.mainContact___C8CpD{
  margin-bottom: 60px;

  :where(.css-198drv2).ant-row {
    display: flex;
    flex-flow: row wrap;
    min-width: 0;
  }
  :where(.css-198drv2).ant-row
  {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    font-size: 14px;
    box-sizing: border-box;
  }

  .ant-row{
    margin-left: -16px;
    margin-right: -16px;
    row-gap: 32px;

    .ant-col, .ant-col-xs-24, .ant-col-md-24{
      padding-left: 16px;
      padding-right: 16px;
    }

    @media (min-width: 768px) {
      :where(.css-198drv2).ant-col-md-24 {
        --ant-display: block;
        display: block;
        display: var(--ant-display);
        flex: 0 0 100%;
        max-width: 100%;
      }
    }

    :where(.css-198drv2).ant-col-xs-24 {
      --ant-display: block;
      display: block;
      display: var(--ant-display);
      flex: 0 0 100%;
      max-width: 100%;
    }

    :where(.css-198drv2).ant-col {
      position: relative;
      max-width: 100%;
      min-height: 1px;
    }

    :where(.css-198drv2).ant-col {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
      font-size: 14px;
      box-sizing: border-box;
    }

    :where(.css-198drv2).ant-card {
      box-sizing: border-box!important;
      margin: 0!important;
      padding: 0!important;
      color: rgba(0, 0, 0, 0.88)!important;
      font-size: 14px!important;
      line-height: 1.5714285714285714!important;
      list-style: none!important;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
      position: relative!important;
      background: #ffffff!important;
      border-radius: 8px!important;
    }
  }

  .contactCard___ViEm1 {
    height: 100%!important;
    border-radius: 16px!important;
    border: 1px solid #e2e8f0!important;
    box-shadow: 0 4px 20px #00000014!important;
  }
  :where(.css-198drv2).ant-card .ant-card-body {
    padding: 24px;
    border-radius: 0 0 8px 8px;
  }

  :where(.css-198drv2).ant-card [class^="ant-card"], :where(.css-198drv2).ant-card [class*=" ant-card"] {
    box-sizing: border-box;
  }

  .contactCard___ViEm1 .cardTitle___OyJWl {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 24px;
    text-align: center;
  }

  h3:where(.css-198drv2).ant-typography, div:where(.css-198drv2).ant-typography-h3, div:where(.css-198drv2).ant-typography-h3>textarea, :where(.css-198drv2).ant-typography h3 {
    margin-bottom: 0.5em;
    color: rgba(0, 0, 0, 0.88);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3333333333333333;
  }

  :where(.css-198drv2).ant-typography {
    color: rgba(0, 0, 0, 0.88);
    word-break: break-word;
    line-height: 1.5714285714285714;
  }

  :where(.css-198drv2).ant-typography {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    font-size: 14px;
    box-sizing: border-box;
  }

  h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5em;
    font-weight: 500;
  }

  h3 {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 600;
    font-family: IBM Plex Sans, Noto Sans, Noto Sans JP;
  }

  .investorContactPage___DKEp6 .mainContact___C8CpD .contactCard___ViEm1 .contactItems___J9Ry5 {
    width: 100%;
  }

  :where(.css-198drv2).ant-space-gap-col-large {
    column-gap: 24px;
  }

  :where(.css-198drv2).ant-space-gap-row-large {
    row-gap: 24px;
  }

  :where(.css-198drv2).ant-space-vertical {
    flex-direction: column;
  }

  :where(.css-198drv2).ant-space {
    display: inline-flex;
  }
  .contactCard___ViEm1 .contactItems___J9Ry5 .contactItem___cGN7J:last-child {
    border-bottom: none;
  }
  .contactCard___ViEm1 .contactItems___J9Ry5 .contactItem___cGN7J {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f7fafc;
  }
  .contactCard___ViEm1 .contactItems___J9Ry5 .contactItem___cGN7J .contactIcon___YFm0o {
    font-size: 20px;
    color: #3182ce;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .anticon {
    display: inline-flex;
    align-items: center;
    color: inherit;
    font-style: normal;
    line-height: 0;
    text-align: center;
    text-transform: none;
    vertical-align: -0.125em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .anticon {
    display: inline-flex;
    align-items: center;
    color: inherit;
    font-style: normal;
    line-height: 0;
    text-align: center;
    text-transform: none;
    vertical-align: -0.125em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .anticon svg {
    display: inline-block;
  }

  .anticon svg {
    display: inline-block;
  }

  .anticon >* {
    line-height: 1;
  }

  .anticon > * {
    line-height: 1;
  }

  .contactCard___ViEm1 .contactItems___J9Ry5 .contactItem___cGN7J .contactDetails___tdqJn {
    flex: 1 1;
  }

  :where(.css-198drv2).ant-typography {
    color: rgba(0, 0, 0, 0.88);
    word-break: break-word;
    line-height: 1.5714285714285714;
  }

  :where(.css-198drv2).ant-typography {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    font-size: 14px;
    box-sizing: border-box;
  }
  :where(.css-198drv2).ant-typography strong {
    font-weight: 600;
  }

  a:where(.css-198drv2).ant-typography, :where(.css-198drv2).ant-typography a {
    color: #1677ff;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s;
    border: 0;
    padding: 0;
    background: none;
    user-select: text;
  }

  responsive-iframe-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: transparent;
  }

  .responsive-iframe-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: transparent;
  }
}

/* ============================================
  Financials & Filings Section
   ============================================ */
.header___dRy7Q{

  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  padding-top: 2rem;
  position: relative;
  width: 100%;
  animation: fadeInUp___r15Xq .6s ease-out;

  :after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3182ce, #2b6cb0);
    border-radius: 2px;
  }
  .title___PV2oF {
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: .5em;
    font-weight: 500;
  }
}
.responsive-iframe-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
}
.responsive-iframe-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
}


/* ============================================
   Committee Composition - IR Site
   ============================================ */

.ant-tabs-content-holder{
  position: relative!important;
  width: 100%!important;
  box-sizing: border-box!important;

  .tabContent___qlncR {
    min-height: 400px!important;
    padding: 20px 0;
  }
  .ant-tabs-content-top{
    position: relative!important;
    width: 100%!important;
  }

  .committeeContent___oasXG {
    padding: 0;
    background: transparent;
  }
  .committeeContent___oasXG .committeeRolesSection___KYjqq {
    animation: fadeInUp___MpLAk .8s ease-out .4s both;
  }
  .committeeContent___oasXG .committeeRolesSection___KYjqq {
    margin-bottom: 80px;
  }

  .committeeContent___oasXG .committeeRolesSection___KYjqq .rolesTable___E4Kvu {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px #0000001a;
  }
  table {
    border-collapse: collapse;
  }
  .committeeContent___oasXG .committeeRolesSection___KYjqq .rolesTable___E4Kvu thead {
    background: linear-gradient(135deg, #3182ce, #2b6cb0);
    color: #fff;
  }
  .committeeContent___oasXG .committeeRolesSection___KYjqq .rolesTable___E4Kvu thead th:first-child {
    border-top-left-radius: 16px;
  }
  .committeeContent___oasXG .committeeRolesSection___KYjqq .rolesTable___E4Kvu thead th {
    padding: 20px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    border: none;
    position: relative;
  }

  .committeeContent___oasXG .committeeRolesSection___KYjqq .rolesTable___E4Kvu tbody tr {
    transition: all .3s ease;
    border-bottom: 1px solid #e2e8f0;
  }
  .committeeContent___oasXG .committeeRolesSection___KYjqq .rolesTable___E4Kvu .directorName___r6zsk {
    font-weight: 600;
    color: #2d3748;
    background: #f7fafc;
    font-size: 16px;
  }
  .committeeContent___oasXG .committeeRolesSection___KYjqq .rolesTable___E4Kvu tbody td {
    padding: 20px 16px;
    border: none;
    font-size: 15px;
    line-height: 1.4;
  }
  table td {
    white-space: break-spaces;
  }

  .committeeContent___oasXG .committeeRolesSection___KYjqq .rolesTable___E4Kvu .roleCell___WOlzH {
    text-align: center;
    vertical-align: middle;
  }
  .committeeContent___oasXG .committeeRolesSection___KYjqq .rolesTable___E4Kvu .roleCell___WOlzH .roleChair___LAGET {
    display: inline-block;
    background: linear-gradient(135deg, #3182ce, #2b6cb0);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 2px 8px #3182ce4d;
    transition: all .3s ease;
  }
  .committeeContent___oasXG .committeeRolesSection___KYjqq .rolesTable___E4Kvu .roleCell___WOlzH .roleMember___HRMvC {
    display: inline-block;
    background: linear-gradient(135deg, #718096, #4a5568);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 2px 8px #7180964d;
    transition: all .3s ease;
  }
}










