﻿/* Home Redesign Variables Start */
:root {
  --home-primary: #082f63;
  --home-primary-dark: #061f42;
  --home-primary-deep: #03142b;
  --home-primary-light: #1f6fbf;
  --home-accent: #d8a24a;
  --home-text: #1f2937;
  --home-muted: #64748b;
  --home-bg: #f5f8fc;
  --home-white: #fff;
  --home-border: #e6edf5;
  --home-shadow: 0 18px 45px rgba(8, 47, 99, 0.16);
}
/* Home Redesign Variables End */

/* Home Base Start */
body {
  color: var(--home-text);
  background: var(--home-bg);
  font-family: "Microsoft YaHei", "PingFang SC", "Source Han Sans SC", Arial, sans-serif;
  line-height: 1.6;
}

.home-container {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
}
/* Home Base End */

/* Home Hero Header Start */
.home-header {
  position: relative;
  z-index: 20;
  background: var(--home-primary-deep);
}

.home-hero {
  position: relative;
  width: 100%;
  height: calc(100vw * 9 / 16);
  min-height: 560px;
  max-height: 860px;
  overflow: hidden;
  background: var(--home-primary-deep);
}

.home-hero-slider,
.home-hero-slider .swiper-container,
.home-hero-slider .swiper-wrapper,
.home-hero-slider .swiper-slide {
  width: 100%;
  height: 100%;
}

.home-hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.home-hero-slide {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--home-primary-dark);
}

.home-hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.home-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 20, 43, 0.78) 0%, rgba(8, 47, 99, 0.46) 42%, rgba(3, 20, 43, 0.16) 100%),
    linear-gradient(180deg, rgba(3, 20, 43, 0.34) 0%, rgba(3, 20, 43, 0.08) 45%, rgba(3, 20, 43, 0.72) 100%);
}

.home-hero-top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  padding-top: 28px;
}

.home-hero-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.home-brand {
  display: flex;
  align-items: center;
  max-width: 620px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(3, 20, 43, 0.28);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-brand:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(3, 20, 43, 0.34);
}

.home-brand img {
  display: block;
  width: 520px;
  max-width: 46vw;
  height: auto;
  filter: drop-shadow(0 5px 10px rgba(8, 47, 99, 0.18));
}

.home-header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 2px;
}

.home-date {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(3, 20, 43, 0.26);
  box-shadow: 0 10px 25px rgba(3, 20, 43, 0.18);
  font-size: 14px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.home-search-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: var(--home-white);
  background: rgba(8, 47, 99, 0.82);
  box-shadow: 0 12px 28px rgba(3, 20, 43, 0.3);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.home-search-toggle::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-2px, -2px);
}

.home-search-toggle::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  margin-top: 16px;
  margin-left: 18px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.home-search-toggle span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.home-search-toggle:hover {
  border-color: rgba(255, 255, 255, 0.64);
  background: var(--home-primary-light);
  transform: translateY(-2px);
}

.home-hero-copy {
  position: absolute;
  top: 52%;
  left: 50%;
  z-index: 4;
  color: var(--home-white);
  transform: translate(-50%, -50%);
}

.home-hero-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 8px 16px;
  border-left: 4px solid var(--home-accent);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}

.home-hero-copy h1 {
  margin: 0;
  color: var(--home-white);
  font-size: clamp(38px, 4.2vw, 68px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.45);
}

.home-hero-copy p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1.8;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.38);
}

.home-hero-pagination {
  position: absolute;
  bottom: 104px;
  left: 50%;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateX(-50%);
}

.home-hero-pagination .swiper-pagination-switch {
  display: block;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.home-hero-pagination .swiper-active-switch {
  width: 46px;
  background: var(--home-accent);
}
/* Home Hero Header End */

/* Home Navigation Start */
.home-nav {
  position: relative;
  z-index: 8;
  margin-top: -74px;
  background: rgba(8, 47, 99, 0.96);
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.12), 0 14px 34px rgba(3, 20, 43, 0.2);
  backdrop-filter: blur(12px);
}

.home-nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 74px;
  overflow: visible;
}

.home-nav-item {
  position: relative;
  display: flex;
  flex: 1;
  min-width: 0;
}

.home-nav-link {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 16px;
  color: var(--home-white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.home-nav-link::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 4px;
  background: var(--home-accent);
  transition: left 0.3s ease, right 0.3s ease;
}

.home-nav-link:hover,
.home-nav-link.cur,
.home-nav-item:hover .home-nav-link,
.home-nav-item:focus-within .home-nav-link {
  color: var(--home-white);
  text-decoration: none;
  background: rgba(31, 111, 191, 0.5);
}

.home-nav-link:hover::after,
.home-nav-link.cur::after,
.home-nav-item:hover .home-nav-link::after,
.home-nav-item:focus-within .home-nav-link::after {
  right: 22%;
  left: 22%;
}

.home-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 80;
  min-width: 168px;
  padding: 8px 0;
  border: 1px solid rgba(8, 47, 99, 0.08);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 38px rgba(3, 20, 43, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
}

.home-nav-dropdown:empty {
  display: none;
}

.home-nav-item:hover .home-nav-dropdown,
.home-nav-item:focus-within .home-nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.home-nav-sub-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--home-primary-dark);
  background: transparent;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  transition: color 0.24s ease, background 0.24s ease;
}

.home-nav-sub-link + .home-nav-sub-link {
  border-top: 1px solid #edf2f7;
}

.home-nav-sub-link:hover,
.home-nav-sub-link:focus {
  color: var(--home-white);
  text-decoration: none;
  background: var(--home-primary-light);
}
/* Home Navigation End */

/* Home Search Panel Start */
.home-search-panel {
  position: absolute;
  top: 92px;
  right: max(32px, calc((100% - 1200px) / 2));
  z-index: 30;
  width: 420px;
  max-width: calc(100% - 64px);
  padding: 18px;
  border: 1px solid var(--home-border);
  border-radius: 18px;
  background: var(--home-white);
  box-shadow: var(--home-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.home-search-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.home-search-label {
  display: block;
  margin-bottom: 10px;
  color: var(--home-primary);
  font-size: 16px;
  font-weight: 700;
}

.home-search-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-search-row input {
  flex: 1;
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--home-border);
  border-radius: 10px;
  color: var(--home-text);
  background: #f8fafc;
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.home-search-row input:focus {
  border-color: var(--home-primary-light);
  background: var(--home-white);
  box-shadow: 0 0 0 3px rgba(31, 111, 191, 0.12);
}

.home-search-form.is-error input {
  border-color: #d33;
  box-shadow: 0 0 0 3px rgba(221, 51, 51, 0.1);
}

.home-search-row button {
  min-width: 82px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  color: var(--home-white);
  background: var(--home-primary);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.home-search-row button:hover {
  background: var(--home-primary-light);
  transform: translateY(-1px);
}

.home-search-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  color: var(--home-muted);
  background: #f1f5f9;
  font-size: 22px;
  line-height: 26px;
  cursor: pointer;
}

.home-search-close:hover {
  color: var(--home-white);
  background: var(--home-primary);
}
/* Home Search Panel End */

/* Home Existing Area Harmonization Start */
.i-main-m::before {
  display: none;
}

.i-main-t {
  background: var(--home-primary);
}
/* Home Existing Area Harmonization End */

/* Home Responsive Start */
@media screen and (max-width: 1200px) {
  .home-container {
    width: calc(100% - 40px);
  }

  .home-brand img {
    width: 460px;
    max-width: 52vw;
  }

  .home-nav-link {
    padding: 0 10px;
    font-size: 16px;
  }

  .home-nav-sub-link {
    min-height: 40px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .home-container {
    width: calc(100% - 28px);
  }

  .home-hero {
    height: 540px;
    min-height: 540px;
    max-height: none;
  }

  .home-hero-top {
    padding-top: 16px;
  }

  .home-hero-inner {
    flex-direction: column;
    gap: 14px;
  }

  .home-brand {
    width: calc(100% - 28px);
    max-width: none;
    padding: 10px 14px;
    border-radius: 14px;
  }

  .home-brand img {
    width: 100%;
    max-width: none;
  }

  .home-header-tools {
    width: 100%;
    justify-content: space-between;
  }

  .home-date {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .home-search-toggle {
    width: 42px;
    height: 42px;
  }

  .home-hero-copy {
    top: 53%;
  }

  .home-hero-kicker {
    margin-bottom: 10px;
    padding: 6px 10px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .home-hero-copy h1 {
    font-size: 34px;
    line-height: 1.18;
  }

  .home-hero-copy p:last-child {
    max-width: 92%;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.7;
  }

  .home-hero-pagination {
    bottom: 124px;
  }

  .home-nav {
    margin-top: -108px;
  }

  .home-nav-inner {
    flex-wrap: wrap;
    min-height: 108px;
  }

  .home-nav-item {
    flex: 0 0 33.333%;
  }

  .home-nav-link {
    min-height: 54px;
    padding: 0 6px;
    font-size: 15px;
  }

  .home-nav-dropdown {
    top: 54px;
    left: 6px;
    right: 6px;
    min-width: 130px;
    border-radius: 0 0 12px 12px;
  }

  .home-nav-sub-link {
    min-height: 38px;
    padding: 0 10px;
    font-size: 13px;
  }

  .home-search-panel {
    top: 110px;
    right: 14px;
    left: 14px;
    width: auto;
    max-width: none;
  }
}

@media screen and (max-width: 420px) {
  .home-hero {
    height: 500px;
    min-height: 500px;
  }

  .home-hero-copy h1 {
    font-size: 30px;
  }

  .home-hero-copy p:last-child {
    font-size: 14px;
  }

  .home-search-row {
    flex-direction: column;
    align-items: stretch;
  }

  .home-search-row button {
    width: 100%;
  }
}
/* Home Responsive End */

/* Home Redesign Compatibility Overrides Start */
.home-hero-slider.banner-0 .pagination.home-hero-pagination {
  position: absolute;
  bottom: 104px;
  left: 50%;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateX(-50%);
}

.home-hero-slider.banner-0 .pagination.home-hero-pagination .swiper-pagination-switch {
  display: block;
  width: 28px;
  height: 4px;
  margin: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  opacity: 1;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.home-hero-slider.banner-0 .pagination.home-hero-pagination .swiper-active-switch {
  width: 46px;
  background: var(--home-accent);
}
/* Home Redesign Compatibility Overrides End */


/* Home Phase 2 Main Content Start */
.home-main {
  position: relative;
  z-index: 5;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(31, 111, 191, 0.08), transparent 28%),
    linear-gradient(180deg, #f5f8fc 0%, #fff 46%, #f5f8fc 100%);
}

.home-headline-section {
  padding: 34px 0 10px;
}

.home-headline-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 116px;
  padding: 24px 30px;
  border: 1px solid rgba(8, 47, 99, 0.08);
  border-radius: 22px;
  color: var(--home-text);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--home-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-headline-card:hover {
  border-color: rgba(31, 111, 191, 0.28);
  color: var(--home-text);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(8, 47, 99, 0.2);
}

.home-headline-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  color: var(--home-white);
  background: linear-gradient(135deg, var(--home-primary) 0%, var(--home-primary-light) 100%);
  box-shadow: 0 14px 28px rgba(8, 47, 99, 0.22);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.home-headline-content h2 {
  margin: 0 0 10px;
  color: var(--home-primary-dark);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-headline-content p {
  margin: 0;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.7;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-headline-more,
.home-more-link,
.home-panel-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--home-primary);
  background: rgba(31, 111, 191, 0.09);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.home-headline-card:hover .home-headline-more,
.home-more-link:hover,
.home-panel-more:hover {
  color: var(--home-white);
  text-decoration: none;
  background: var(--home-primary);
  transform: translateY(-1px);
}

.home-news-section,
.home-columns-section,
.home-disclosure-section,
.home-special-section {
  padding: 26px 0;
}

.home-ad-section,
.home-entrance-section {
  padding: 18px 0;
}

.home-news-grid,
.home-two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 26px;
  align-items: stretch;
}

.home-card {
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: 22px;
  background: var(--home-white);
  box-shadow: 0 14px 34px rgba(8, 47, 99, 0.1);
}

.home-module-head,
.home-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px 18px;
}

.home-module-head span,
.home-section-title span {
  display: block;
  margin-bottom: 4px;
  color: var(--home-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-module-head h2,
.home-section-title h2 {
  position: relative;
  margin: 0;
  color: var(--home-primary-dark);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
}

.home-focus-slider {
  position: relative;
  height: 408px;
  margin: 0 26px 26px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--home-primary-dark);
}

.home-focus-slider .swiper-container,
.home-focus-slider .swiper-wrapper,
.home-focus-slider .swiper-slide {
  width: 100%;
  height: 100%;
}

.home-focus-slide {
  position: relative;
  display: block;
  color: var(--home-white);
}

.home-focus-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-focus-slide span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 48px 24px 20px;
  color: var(--home-white);
  background: linear-gradient(180deg, transparent 0%, rgba(3, 20, 43, 0.86) 100%);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
}

.home-focus-slide:hover img {
  transform: scale(1.045);
}

.home-focus-pagination {
  position: absolute;
  right: 22px;
  bottom: 18px;
  z-index: 4;
}

.home-focus-pagination .swiper-pagination-switch {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
  cursor: pointer;
}

.home-focus-pagination .swiper-active-switch {
  width: 22px;
  border-radius: 999px;
  background: var(--home-accent);
}

.home-news-list {
  margin: 0;
  padding: 0 26px 22px;
}

.home-news-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 46px;
  padding-left: 17px;
  border-bottom: 1px solid #eef3f8;
  color: var(--home-muted);
  font-size: 15px;
}

.home-news-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--home-primary-light);
  transform: translateY(-50%);
}

.home-news-list li:last-child {
  border-bottom: 0;
}

.home-news-list a {
  min-width: 0;
  flex: 1;
  color: var(--home-text);
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.home-news-list a:hover {
  color: var(--home-primary-light);
  text-decoration: none;
}

.home-news-list time {
  flex: 0 0 auto;
  color: #94a3b8;
  font-size: 14px;
}

.home-news-list-large li {
  min-height: 52px;
}

.home-wide-ad {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: var(--home-white);
  box-shadow: 0 12px 30px rgba(8, 47, 99, 0.1);
}

.home-wide-ad img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.45s ease;
}

.home-wide-ad:hover img {
  transform: scale(1.015);
}

.home-tab-head {
  display: flex;
  gap: 12px;
  padding: 0 26px 18px;
}

.home-tab-btn {
  min-width: 118px;
  height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(8, 47, 99, 0.12);
  border-radius: 999px;
  color: var(--home-primary);
  background: #f7fbff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.home-tab-btn:hover,
.home-tab-btn.is-active {
  border-color: var(--home-primary);
  color: var(--home-white);
  background: var(--home-primary);
  box-shadow: 0 10px 22px rgba(8, 47, 99, 0.18);
}

.home-tab-panel {
  display: none;
}

.home-tab-panel.is-active {
  display: block;
}

.home-panel-more {
  margin: 0 26px 24px;
}

.home-action-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.home-action-card,
.home-entrance-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: var(--home-white);
  box-shadow: 0 14px 34px rgba(8, 47, 99, 0.1);
}

.home-action-card img,
.home-entrance-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-action-card:hover img,
.home-entrance-card:hover img {
  transform: scale(1.04);
}

.home-entrance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.home-entrance-card {
  min-height: 138px;
}

.home-disclosure-card {
  background:
    linear-gradient(135deg, rgba(8, 47, 99, 0.04) 0%, rgba(255, 255, 255, 0) 42%),
    var(--home-white);
}

.home-news-list-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
}

.home-news-list-two li {
  min-width: 0;
}

.home-section-title {
  padding: 0 0 20px;
}

.home-special-slider {
  overflow: hidden;
  padding: 6px 0 10px;
}

.home-special-slide {
  padding-right: 22px;
  box-sizing: border-box;
}

.home-special-slide a {
  position: relative;
  display: block;
  overflow: hidden;
  height: 190px;
  border-radius: 18px;
  color: var(--home-white);
  background: var(--home-primary-dark);
  box-shadow: 0 14px 34px rgba(8, 47, 99, 0.12);
}

.home-special-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-special-slide span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 38px 18px 16px;
  color: var(--home-white);
  background: linear-gradient(180deg, transparent 0%, rgba(3, 20, 43, 0.85) 100%);
  font-size: 17px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-special-slide a:hover {
  text-decoration: none;
}

.home-special-slide a:hover img {
  transform: scale(1.045);
}

@media screen and (max-width: 1024px) {
  .home-news-grid,
  .home-two-columns {
    grid-template-columns: 1fr;
  }

  .home-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .home-action-card {
    min-height: 170px;
  }
}

@media screen and (max-width: 768px) {
  .home-headline-section {
    padding-top: 22px;
  }

  .home-headline-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .home-headline-tag {
    width: auto;
    height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 15px;
  }

  .home-headline-content h2 {
    font-size: 22px;
    white-space: normal;
  }

  .home-headline-content p {
    white-space: normal;
  }

  .home-news-section,
  .home-columns-section,
  .home-disclosure-section,
  .home-special-section {
    padding: 18px 0;
  }

  .home-module-head,
  .home-section-title {
    padding: 20px 18px 14px;
  }

  .home-section-title {
    padding-right: 0;
    padding-left: 0;
  }

  .home-module-head h2,
  .home-section-title h2 {
    font-size: 22px;
  }

  .home-focus-slider {
    height: 280px;
    margin: 0 18px 20px;
  }

  .home-focus-slide span {
    padding: 42px 18px 16px;
    font-size: 17px;
  }

  .home-news-list {
    padding: 0 18px 18px;
  }

  .home-news-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    min-height: auto;
    padding: 12px 0 12px 15px;
  }

  .home-news-list a {
    width: 100%;
    white-space: normal;
    font-size: 15px;
  }

  .home-tab-head {
    padding: 0 18px 16px;
    overflow-x: auto;
  }

  .home-tab-btn {
    flex: 0 0 auto;
    min-width: 104px;
    height: 38px;
    font-size: 15px;
  }

  .home-panel-more {
    margin: 0 18px 20px;
  }

  .home-action-grid,
  .home-entrance-grid,
  .home-news-list-two {
    grid-template-columns: 1fr;
  }

  .home-action-card,
  .home-entrance-card {
    min-height: auto;
  }

  .home-special-slide {
    padding-right: 0;
  }

  .home-special-slide a {
    height: 210px;
  }
}

@media screen and (max-width: 420px) {
  .home-focus-slider {
    height: 230px;
  }

  .home-special-slide a {
    height: 180px;
  }
}
/* Home Phase 2 Main Content End */


/* Home Headline Overflow Hotfix Start */
.home-headline-card {
  overflow: hidden;
}

.home-headline-content {
  min-width: 0;
  overflow: hidden;
}

.home-headline-content h2,
.home-headline-content p {
  max-width: 100%;
}

.home-headline-more {
  flex-shrink: 0;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .home-headline-more {
    justify-self: flex-start;
  }
}
/* Home Headline Overflow Hotfix End */


/* Home Phase 3 Polish Start */
.home-page {
  min-width: 320px;
  background: var(--home-bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.home-page a,
.home-page button {
  -webkit-tap-highlight-color: rgba(31, 111, 191, 0.12);
}

.home-page img {
  max-width: 100%;
}

.home-main::before,
.home-main::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(1px);
}

.home-main::before {
  top: 260px;
  right: -180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(31, 111, 191, 0.1) 0%, rgba(31, 111, 191, 0) 66%);
}

.home-main::after {
  bottom: 460px;
  left: -220px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(216, 162, 74, 0.1) 0%, rgba(216, 162, 74, 0) 68%);
}

.home-main > section {
  position: relative;
  z-index: 1;
}

.home-card,
.home-headline-card,
.home-wide-ad,
.home-action-card,
.home-entrance-card,
.home-special-slide a {
  will-change: transform;
}

.home-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-card:hover {
  border-color: rgba(31, 111, 191, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(8, 47, 99, 0.14);
}

.home-module-head h2::after,
.home-section-title h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--home-accent), rgba(216, 162, 74, 0));
}

.home-latest-card .home-module-head,
.home-tab-card .home-module-head,
.home-disclosure-card .home-module-head {
  background: linear-gradient(180deg, rgba(8, 47, 99, 0.045), rgba(255, 255, 255, 0));
}

.home-news-list li {
  transition: background 0.25s ease, padding-left 0.25s ease;
}

.home-news-list li:hover {
  background: linear-gradient(90deg, rgba(31, 111, 191, 0.055), transparent);
}

.home-news-list li:hover::before {
  background: var(--home-accent);
}

.home-tab-btn:focus,
.home-search-toggle:focus,
.home-search-row input:focus,
.home-search-row button:focus,
.home-search-close:focus {
  outline: 2px solid rgba(216, 162, 74, 0.55);
  outline-offset: 2px;
}

.home-wide-ad,
.home-action-card,
.home-entrance-card {
  border: 1px solid rgba(8, 47, 99, 0.08);
}

.home-action-card::after,
.home-entrance-card::after,
.home-special-slide a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.home-action-card:hover::after,
.home-entrance-card:hover::after,
.home-special-slide a:hover::after {
  opacity: 1;
}

/* Homepage Footer Polish */
.home-page .footer {
  position: relative;
  margin-top: 44px;
  overflow: visible;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 12% 0%, rgba(31, 111, 191, 0.26), transparent 30%),
    linear-gradient(135deg, var(--home-primary-deep) 0%, var(--home-primary) 58%, #06264f 100%);
}

.home-page .footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--home-accent), rgba(216, 162, 74, 0.18), var(--home-primary-light));
}

.home-page .footer a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s ease, background 0.25s ease;
}

.home-page .footer a:hover {
  color: #fff;
  text-decoration: none;
}

.home-page .footer .foot-top {
  height: auto;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-page .footer .foot-top .foot-t-cont {
  width: min(1200px, calc(100% - 64px));
  height: auto;
}

.home-page .footer .foot-top .foot-t-cont .foot-ul-1 {
  display: flex;
  height: auto;
}

.home-page .footer .foot-top .foot-t-cont .foot-ul-1 li {
  position: relative;
  float: none;
  flex: 1;
  width: auto;
  height: 64px;
  line-height: 64px;
}

.home-page .footer .foot-top .foot-t-cont .foot-ul-1 li .foot-a-1 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 700;
}

.home-page .footer .foot-top .foot-t-cont .foot-ul-1 li .foot-a-1.cur,
.home-page .footer .foot-top .foot-t-cont .foot-ul-1 li .foot-a-1:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.home-page .footer .foot-top .foot-t-cont .foot-ul-1 li .foot-li-box {
  top: 64px;
  z-index: 30;
  width: 100%;
  border-radius: 0 0 14px 14px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(3, 20, 43, 0.18);
}

.home-page .footer .foot-top .foot-t-cont .foot-ul-1 li .foot-li-box a {
  color: var(--home-text);
  font-size: 14px;
}

.home-page .footer .foot-top .foot-t-cont .foot-ul-1 li .foot-li-box a:hover {
  color: var(--home-primary-light);
  background: #f5f8fc;
}

.home-page .footer .foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1200px, calc(100% - 64px));
  height: auto;
  min-height: 150px;
  padding: 34px 0;
}

.home-page .footer .foot-bottom .foot-b-l,
.home-page .footer .foot-bottom .foot-b-m,
.home-page .footer .foot-bottom .foot-b-r {
  float: none;
}

.home-page .footer .foot-bottom .foot-b-l {
  flex: 1 1 auto;
  width: auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.home-page .footer .foot-bottom .foot-b-l span {
  color: rgba(255, 255, 255, 0.82);
}

.home-page .footer .foot-bottom .foot-b-l .foot-b-l-1 {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.62);
}

.home-page .footer .foot-bottom .foot-b-l .foot-b-l-1 a {
  display: inline-block;
  padding: 2px 0;
  font-weight: 700;
}

.home-page .footer .foot-bottom .foot-b-l .foot-b-l-2 {
  font-style: normal;
}

.home-page .footer .foot-bottom .foot-b-l .foot-b-l-2 p {
  margin-bottom: 8px;
  line-height: 1.75;
}

.home-page .footer .foot-bottom .foot-b-m {
  flex: 0 0 auto;
  width: auto;
  padding: 0;
  text-align: center;
  white-space: nowrap;
}

.home-page .footer .foot-bottom .foot-b-m a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.home-page .footer .foot-bottom .foot-b-m .foot-b-m-1 {
  width: 44px;
}

.home-page .footer .foot-bottom .foot-b-m a.slyhwzafw {
  width: 86px;
  vertical-align: middle;
}

.home-page .footer .foot-bottom .foot-b-m a img {
  display: block;
  width: 100%;
  height: auto;
}

.home-page .footer .foot-bottom .foot-b-r {
  flex: 0 0 190px;
  width: 190px;
  padding-top: 0;
}

.home-page .footer .foot-bottom .foot-b-r div {
  float: none;
  width: 100%;
  margin-left: 0;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.home-page .footer .foot-bottom .foot-b-r img {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
}

.home-page .footer .foot-bottom .foot-b-r p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.4;
}

.home-page .SCROLLTOP {
  right: 28px;
  bottom: 48px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--home-primary);
  box-shadow: 0 14px 32px rgba(8, 47, 99, 0.22);
  overflow: hidden;
}

.home-page .SCROLLTOP img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .home-page .footer .foot-bottom {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .home-page .footer .foot-bottom .foot-b-l {
    flex: 1 1 100%;
  }

  .home-page .footer .foot-bottom .foot-b-r {
    flex-basis: 160px;
    width: 160px;
  }
}

@media screen and (max-width: 768px) {
  .home-main::before,
  .home-main::after {
    display: none;
  }

  .home-card:hover,
  .home-headline-card:hover {
    transform: none;
  }

  .home-page .footer {
    margin-top: 28px;
  }

  .home-page .footer .foot-top {
    display: none;
  }

  .home-page .footer .foot-bottom {
    display: block;
    width: calc(100% - 28px);
    min-height: 0;
    padding: 26px 0;
    text-align: center;
  }

  .home-page .footer .foot-bottom .foot-b-l {
    width: 100%;
    padding: 0;
  }

  .home-page .footer .foot-bottom .foot-b-l .foot-b-l-1 {
    display: block;
    margin-bottom: 14px;
    line-height: 1.8;
  }

  .home-page .footer .foot-bottom .foot-b-l .foot-b-l-2 p {
    font-size: 13px;
    line-height: 1.8;
  }

  .home-page .footer .foot-bottom .foot-b-m {
    width: 100%;
    padding: 16px 0 0;
  }

  .home-page .footer .foot-bottom .foot-b-m a,
  .home-page .footer .foot-bottom .foot-b-m a.slyhwzafw {
    width: auto !important;
    max-width: 86px;
    margin-top: 0;
  }

  .home-page .footer .foot-bottom .foot-b-r {
    display: block;
    width: 160px;
    margin: 18px auto 0;
  }

  .home-page .SCROLLTOP {
    right: 16px;
    bottom: 24px;
    width: 46px;
    height: 46px;
  }
}

@media screen and (max-width: 420px) {
  .home-page .footer .foot-bottom .foot-b-l .foot-b-l-1 span {
    display: none;
  }

  .home-page .footer .foot-bottom .foot-b-l .foot-b-l-1 a {
    margin: 0 6px;
  }
}
/* Home Phase 3 Polish End */

/* Home Phase 3 Final Detail Fixes Start */
.home-page *,
.home-page *::before,
.home-page *::after {
  box-sizing: border-box;
}

.home-page .footer .foot-top .foot-t-cont .foot-ul-1 li .foot-a-1 img {
  width: 14px;
  height: auto;
  margin-left: 8px;
  vertical-align: -1px;
  filter: brightness(0) invert(1);
  opacity: 0.72;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.home-page .footer .foot-top .foot-t-cont .foot-ul-1 li .foot-a-1.cur img,
.home-page .footer .foot-top .foot-t-cont .foot-ul-1 li .foot-a-1:hover img {
  opacity: 1;
}

.home-page .footer .foot-bottom .foot-b-m a.slyhwzafw {
  cursor: default;
}

.home-page .footer .foot-bottom .foot-b-l .foot-b-l-1 a:focus,
.home-page .footer .foot-bottom .foot-b-m a:focus,
.home-page .footer .foot-bottom .foot-b-r a:focus {
  outline: 2px solid rgba(216, 162, 74, 0.7);
  outline-offset: 3px;
}

@media screen and (max-width: 1024px) {
  .home-page .footer .foot-top .foot-t-cont,
  .home-page .footer .foot-bottom {
    width: min(1200px, calc(100% - 40px));
  }
}

@media screen and (max-width: 420px) {
  .home-page .footer .foot-bottom .foot-b-l .foot-b-l-2 p {
    word-break: break-word;
  }
}
/* Home Phase 3 Final Detail Fixes End */

/* Home Feedback Adjustments Start */
.home-card,
.home-headline-card,
.home-special-section .home-container {
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 252, 247, 0.98);
}

.home-card::before,
.home-headline-card::before,
.home-special-section .home-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 248, 239, 0.88) 100%),
    url("../images/home-section-watermark.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: center center, left bottom;
  background-size: 100% 100%, 96% auto;
  opacity: 0.82;
  pointer-events: none;
}

.home-card > *,
.home-headline-card > *,
.home-special-section .home-container > * {
  position: relative;
  z-index: 1;
}

.home-focus-slider,
.home-special-slider {
  position: relative;
  z-index: 1;
}

.home-latest-card .home-news-list-large {
  position: relative;
  height: 312px;
  padding-bottom: 0;
  overflow: hidden;
}

.home-latest-card .home-news-list-large::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 0;
  left: 26px;
  z-index: 2;
  height: 34px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0), rgba(255, 252, 247, 0.96) 92%);
  pointer-events: none;
}

.home-special-section .home-container {
  padding: 26px;
  border: 1px solid var(--home-border);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(8, 47, 99, 0.1);
}

.home-special-section .home-section-title {
  padding: 0 0 22px;
}

.home-special-slider {
  padding: 0 0 4px;
}

.home-special-slide a {
  border: 1px solid rgba(8, 47, 99, 0.08);
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 47, 99, 0.1);
}

.home-special-slide img {
  transform: scale(1.018);
  backface-visibility: hidden;
}

.home-special-slide span {
  background: linear-gradient(180deg, rgba(8, 47, 99, 0) 0%, rgba(8, 47, 99, 0.78) 100%);
}

.home-special-slide a:hover img {
  transform: scale(1.06);
}

@media screen and (max-width: 768px) {
  .home-card::before,
  .home-headline-card::before,
  .home-special-section .home-container::before {
    background-size: 100% 100%, 140% auto;
    opacity: 0.72;
  }

  .home-latest-card .home-news-list-large {
    height: 292px;
  }

  .home-special-section .home-container {
    padding: 18px;
    border-radius: 20px;
  }
}
/* Home Feedback Adjustments End */

/* ScrollTop Visibility Fix Start */
.home-page .SCROLLTOP {
  box-sizing: border-box;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: #1f6fbf;
  box-shadow:
    0 0 0 3px rgba(31, 111, 191, 0.88),
    0 14px 32px rgba(8, 47, 99, 0.28);
}

.home-page .SCROLLTOP img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
/* ScrollTop Visibility Fix End */

/* Home White Topbar Start */
.home-header {
  background: #fff;
}

.home-topbar {
  position: relative;
  z-index: 30;
  background: #fff;
  box-shadow: 0 8px 22px rgba(8, 47, 99, 0.055);
}

.home-topbar::after {
  display: none;
}

.home-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 108px;
  padding: 14px 0;
}

.home-topbar .home-brand {
  flex: 0 1 560px;
  max-width: 560px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.home-topbar .home-brand:hover {
  transform: none;
  box-shadow: none;
}

.home-topbar .home-brand img {
  width: 540px;
  max-width: 100%;
  filter: drop-shadow(0 5px 10px rgba(8, 47, 99, 0.12));
}

.home-topbar-right {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.home-topbar .home-date {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(8, 47, 99, 0.08);
  color: var(--home-muted);
  background: #f5f8fc;
  box-shadow: none;
  font-size: 13px;
  backdrop-filter: none;
}

.home-topbar-search {
  width: 410px;
}

.home-topbar-search .home-search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.home-topbar-search .home-search-row {
  gap: 0;
  height: 46px;
  border: 1px solid rgba(8, 47, 99, 0.12);
  border-radius: 999px;
  background: #f8fafc;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.home-topbar-search .home-search-row input {
  height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 18px;
}

.home-topbar-search .home-search-row input:focus {
  background: transparent;
  box-shadow: none;
}

.home-topbar-search .home-search-row button {
  min-width: 96px;
  height: 100%;
  border-radius: 999px;
  background: var(--home-primary);
}

.home-topbar-search .home-search-row button:hover {
  background: var(--home-primary-light);
}

.home-topbar-search.is-error .home-search-row {
  border-color: #d33;
  box-shadow: 0 0 0 3px rgba(221, 51, 51, 0.1);
}


.home-hero {
  min-height: 500px;
  max-height: 720px;
}

@media screen and (max-width: 1200px) {
  .home-topbar-inner {
    width: calc(100% - 40px);
  }

  .home-topbar .home-brand {
    flex-basis: 460px;
  }

  .home-topbar-search {
    width: 340px;
  }
}

@media screen and (max-width: 768px) {
  .home-topbar-inner {
    width: calc(100% - 28px);
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px 0;
  }

  .home-topbar .home-brand {
    width: 100%;
    max-width: none;
    padding: 0;
    border-radius: 0;
  }

  .home-topbar .home-brand img {
    width: 100%;
    max-width: none;
  }

  .home-topbar-right {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .home-topbar .home-date {
    width: 100%;
    justify-content: center;
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }

  .home-topbar-search {
    width: 100%;
  }

  .home-topbar-search .home-search-row {
    height: 42px;
  }

  .home-topbar-search .home-search-row button {
    min-width: 78px;
  }

  .home-hero {
    height: 500px;
    min-height: 500px;
  }
}
/* Home White Topbar End */

/* Home Topbar Blue Line Fix Start */
.home-topbar {
  border-bottom: 0;
}

.home-hero {
  margin-top: 0;
}
/* Home Topbar Blue Line Fix End */

/* Home Topbar Compact Start */
.home-topbar-inner {
  min-height: 48px;
  padding: 4px 0;
  gap: 20px;
}

.home-topbar .home-brand {
  flex-basis: 360px;
  max-width: 360px;
}

.home-topbar .home-brand img {
  width: 360px;
  max-height: 40px;
  object-fit: contain;
}

.home-topbar-right {
  gap: 10px;
}

.home-topbar .home-date {
  min-height: 32px;
  padding: 0 12px;
  font-size: 12px;
}

.home-topbar-search {
  width: 300px;
}

.home-topbar-search .home-search-row {
  height: 34px;
}

.home-topbar-search .home-search-row input {
  padding: 0 12px;
  font-size: 13px;
}

.home-topbar-search .home-search-row button {
  min-width: 70px;
  font-size: 13px;
}

@media screen and (max-width: 1200px) {
  .home-topbar .home-brand {
    flex-basis: 320px;
    max-width: 320px;
  }

  .home-topbar .home-brand img {
    width: 320px;
    max-height: 38px;
  }

  .home-topbar-search {
    width: 260px;
  }
}

@media screen and (max-width: 768px) {
  .home-topbar-inner {
    gap: 8px;
    padding: 8px 0;
  }

  .home-topbar .home-brand {
    max-width: 320px;
    margin: 0 auto;
  }

  .home-topbar .home-brand img {
    width: 100%;
    max-height: 42px;
  }

  .home-topbar-right {
    gap: 8px;
  }

  .home-topbar .home-date {
    min-height: 30px;
  }

  .home-topbar-search .home-search-row {
    height: 36px;
  }
}
/* Home Topbar Compact End */

/* Home Topbar Medium Adjust Start */
.home-topbar-inner {
  min-height: 64px;
  padding: 8px 0;
  gap: 24px;
}

.home-topbar .home-brand {
  flex-basis: 430px;
  max-width: 430px;
}

.home-topbar .home-brand img {
  width: 430px;
  max-height: 52px;
}

.home-topbar .home-date {
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
}

.home-topbar-search {
  width: 350px;
}

.home-topbar-search .home-search-row {
  height: 40px;
}

.home-topbar-search .home-search-row input,
.home-topbar-search .home-search-row button {
  font-size: 14px;
}

.home-topbar-search .home-search-row button {
  min-width: 82px;
}

@media screen and (max-width: 1200px) {
  .home-topbar .home-brand {
    flex-basis: 380px;
    max-width: 380px;
  }

  .home-topbar .home-brand img {
    width: 380px;
    max-height: 48px;
  }

  .home-topbar-search {
    width: 300px;
  }
}

@media screen and (max-width: 768px) {
  .home-topbar-inner {
    padding: 10px 0;
  }

  .home-topbar .home-brand {
    max-width: 360px;
  }

  .home-topbar .home-brand img {
    max-height: 48px;
  }

  .home-topbar-search .home-search-row {
    height: 38px;
  }
}
/* Home Topbar Medium Adjust End */

/* Home Hero Top Dark Strip Fix Start */
.home-hero,
.home-hero-slide {
  background: #f5f8fc;
}

.home-hero-slide img {
  object-position: center center;
}

.home-hero-shade {
  background:
    radial-gradient(ellipse at 22% 55%, rgba(3, 20, 43, 0.46) 0%, rgba(8, 47, 99, 0.22) 34%, rgba(3, 20, 43, 0) 68%),
    linear-gradient(180deg, rgba(3, 20, 43, 0) 0%, rgba(3, 20, 43, 0) 30%, rgba(3, 20, 43, 0.16) 62%, rgba(3, 20, 43, 0.64) 100%);
}
/* Home Hero Top Dark Strip Fix End */

/* Home Hero Gray Strip Fix Start */
.home-topbar {
  box-shadow: none !important;
}

.home-topbar::after {
  display: none !important;
}

.home-hero {
  margin-top: 0;
  border-top: 0;
  background: #fff;
}

.home-hero-slider {
  top: 0;
}

.home-hero-slide img {
  object-position: center top;
}
/* Home Hero Gray Strip Fix End */

/* Home Topbar Height 80px Start */
.home-topbar-inner {
  min-height: 80px;
  padding: 10px 0;
}
/* Home Topbar Height 80px End */

/* Home Aid31 Notice Start */
.home-notice-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
}

.home-notice-card::after {
  display: none;
}

.home-notice-card .home-module-head {
  flex: 0 0 auto;
  padding: 18px 20px 10px;
}

.home-notice-card .home-module-head span {
  margin-bottom: 4px;
  font-size: 13px;
}

.home-notice-card .home-module-head h2 {
  font-size: 26px;
}

.home-notice-card .home-module-head h2::after {
  width: 42px;
  height: 4px;
  margin-top: 10px;
}

.home-notice-more {
  min-width: 92px;
  height: 38px;
  padding: 0 16px;
  font-size: 14px;
}

.home-notice-list {
  flex: 1;
  min-height: 0;
  padding: 0 20px 14px;
  overflow: hidden;
}

.home-notice-list li {
  min-height: 46px;
  gap: 16px;
  padding-left: 17px;
  font-size: 15px;
}

.home-notice-list li::before {
  width: 6px;
  height: 6px;
}

.home-notice-list a {
  font-size: 16px;
}

.home-notice-list time {
  font-size: 14px;
}
/* Home Aid31 Notice End */

/* Home Notice And Special Motion Start */
.home-notice-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(8, 47, 99, 0.1);
  background-color: rgba(255, 252, 247, 0.98);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-notice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 248, 239, 0.9) 100%),
    url("../images/home-section-watermark.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: center center, left bottom;
  background-size: 100% 100%, 118% auto;
  opacity: 0.82;
  pointer-events: none;
  transition: opacity 0.3s ease, background-position 0.45s ease;
}

.home-notice-card::after {
  display: block;
  z-index: 2;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 0.35s ease, transform 0.55s ease;
}

.home-notice-card > * {
  position: relative;
  z-index: 1;
}

.home-notice-card:hover {
  border-color: rgba(31, 111, 191, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(8, 47, 99, 0.14);
}

.home-notice-card:hover::before {
  background-position: center center, 18px bottom;
  opacity: 0.94;
}

.home-notice-card:hover::after {
  opacity: 1;
  transform: translateX(120%);
}

.home-notice-list li {
  border-radius: 10px;
  transition: background 0.25s ease, padding-left 0.25s ease, transform 0.25s ease;
}

.home-notice-list li:hover {
  transform: translateX(4px);
}

.home-notice-list li:hover time {
  color: var(--home-accent);
}

.home-special-section .home-container {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-special-section .home-container:hover {
  border-color: rgba(31, 111, 191, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(8, 47, 99, 0.14);
}

.home-special-section .home-container:hover::before {
  background-position: center center, 18px bottom;
  opacity: 0.94;
}

.home-special-slide a {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-special-slide a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.home-special-slide a:hover {
  border-color: rgba(216, 162, 74, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(8, 47, 99, 0.16);
}

.home-special-slide a:hover::before {
  transform: translateX(120%);
}

.home-special-slide span {
  z-index: 3;
}
/* Home Notice And Special Motion End */

/* Home Aid27 Image Fit Start */
.home-action-card-fit {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.home-action-card-fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.home-action-card-fit:hover img {
  transform: scale(1.045);
}
/* Home Aid27 Image Fit End */

/* Home Topbar Banner Enlarge Start */
.home-topbar .home-brand {
  flex-basis: 580px;
  max-width: 580px;
  transform: translateX(-20px);
}

.home-topbar .home-brand:hover {
  transform: translateX(-20px);
}

.home-topbar .home-brand img {
  width: 580px;
  max-height: 70px;
}

@media screen and (max-width: 1200px) {
  .home-topbar .home-brand {
    flex-basis: 500px;
    max-width: 500px;
  }

  .home-topbar .home-brand img {
    width: 500px;
    max-height: 64px;
  }
}

@media screen and (max-width: 768px) {
  .home-topbar .home-brand {
    max-width: 430px;
    transform: none;
  }

  .home-topbar .home-brand:hover {
    transform: none;
  }

  .home-topbar .home-brand img {
    width: 100%;
    max-height: 62px;
  }
}
/* Home Topbar Banner Enlarge End */

/* Home Hero Full Image Start */
.home-hero-slide {
  background: #fff;
}

.home-hero-slide::before {
  display: none !important;
}

.home-hero-slide img {
  position: relative;
  z-index: 1;
  object-fit: fill !important;
  object-position: center center !important;
  transform: none !important;
}
/* Home Hero Full Image End */

/* Home Hero Clean Ad Start */
.home-hero-shade,
.home-hero-copy {
  display: none !important;
}

.home-hero,
.home-hero-slider,
.home-hero-slider .swiper-container,
.home-hero-slide,
.home-hero-slide img {
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
}
/* Home Hero Clean Ad End */

/* Home Sky Blue Nav Footer Start */
.home-nav {
  background: linear-gradient(90deg, rgba(58, 174, 234, 0.97) 0%, rgba(23, 143, 213, 0.97) 56%, rgba(11, 115, 183, 0.97) 100%);
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.28), 0 12px 28px rgba(23, 143, 213, 0.22);
}

.home-nav-link:hover,
.home-nav-link.cur,
.home-nav-item:hover .home-nav-link,
.home-nav-item:focus-within .home-nav-link {
  background: rgba(255, 255, 255, 0.16);
}

.home-nav-link::after {
  background: #fff;
}

.home-nav-dropdown {
  border-color: rgba(23, 143, 213, 0.14);
  box-shadow: 0 16px 34px rgba(23, 143, 213, 0.18);
}

.home-nav-sub-link:hover {
  color: #1688d3;
  background: #edf9ff;
}

.home-page .footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #3aaeea 0%, #178fd5 56%, #0b73b7 100%);
}

.home-page .footer::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.24), #bfeeff);
}

.home-page .footer .foot-top {
  background: rgba(255, 255, 255, 0.14);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.home-page .footer .foot-top .foot-t-cont .foot-ul-1 li .foot-a-1.cur,
.home-page .footer .foot-top .foot-t-cont .foot-ul-1 li .foot-a-1:hover,
.home-page .footer .foot-bottom .foot-b-m a,
.home-page .footer .foot-bottom .foot-b-r div {
  background: rgba(255, 255, 255, 0.14);
}
/* Home Sky Blue Nav Footer End */

/* Home Ad Carousel And Width Adjust Start */
.home-container,
.home-page .footer .foot-top .foot-t-cont,
.home-page .footer .foot-bottom {
  width: min(1360px, calc(100% - 32px));
}

.home-wide-ad-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(92px, 10.72vw, 150px);
  border: 1px solid rgba(8, 47, 99, 0.08);
  border-radius: 20px;
  background: var(--home-white);
  box-shadow: 0 12px 30px rgba(8, 47, 99, 0.1);
}

.home-wide-ad-slider .swiper-container,
.home-wide-ad-slider .swiper-wrapper,
.home-wide-ad-slider .swiper-slide {
  width: 100%;
  height: 100%;
}

.home-wide-ad-slider .home-wide-ad {
  border-radius: 0;
  box-shadow: none;
}

.home-wide-ad-slider .home-wide-ad img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.home-wide-ad-pagination {
  position: absolute;
  right: 18px;
  bottom: 10px;
  z-index: 6;
  display: flex;
  gap: 7px;
}

.home-wide-ad-pagination .swiper-pagination-switch {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.home-wide-ad-pagination .swiper-active-switch {
  width: 22px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .home-container,
  .home-page .footer .foot-top .foot-t-cont,
  .home-page .footer .foot-bottom {
    width: calc(100% - 20px);
  }

  .home-wide-ad-slider {
    height: clamp(72px, 18vw, 110px);
    border-radius: 14px;
  }
}
/* Home Ad Carousel And Width Adjust End */


/* Homepage Footer Three Column Layout Override Start */
.home-page .footer .footer-layout {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  width: min(1360px, calc(100% - 32px)) !important;
  min-height: 160px;
  padding: 30px 0 !important;
}

.home-page .footer .footer-layout .foot-b-logo {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.home-page .footer .footer-layout .foot-b-logo a {
  display: block;
  width: 240px;
  max-width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  box-sizing: border-box;
}

.home-page .footer .footer-layout .foot-b-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.home-page .footer .footer-layout .foot-b-l {
  flex: 1 1 auto;
  width: auto !important;
  text-align: left;
}

.home-page .footer .footer-layout .footer-cert-list {
  flex: none;
  width: auto !important;
  padding: 8px 0 0 !important;
  text-align: left;
  white-space: normal;
}

.home-page .footer .footer-layout .footer-cert-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px 0 0;
  padding: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
}

.home-page .footer .footer-layout .footer-cert-list .foot-b-m-1 {
  width: 42px !important;
}

.home-page .footer .footer-layout .footer-cert-list .slyhwzafw {
  width: 92px !important;
}

.home-page .footer .footer-layout .foot-b-r {
  flex: 0 0 150px;
  width: 150px !important;
}

.home-page .footer .footer-layout .foot-b-r div {
  width: 100% !important;
  padding: 12px;
  background: rgba(255, 255, 255, 0.14);
}

.home-page .footer .footer-layout .foot-b-r img {
  width: 108px;
  height: 108px;
}

@media screen and (max-width: 768px) {
  .home-page .footer .footer-layout {
    flex-direction: column;
    gap: 18px;
    width: calc(100% - 20px) !important;
    text-align: center;
  }

  .home-page .footer .footer-layout .foot-b-logo {
    flex: 0 0 auto;
    justify-content: center;
    width: 100%;
  }

  .home-page .footer .footer-layout .foot-b-logo a {
    width: 70%;
    max-width: 320px;
  }

  .home-page .footer .footer-layout .foot-b-l,
  .home-page .footer .footer-layout .footer-cert-list {
    width: 100% !important;
    text-align: center;
  }

  .home-page .footer .footer-layout .foot-b-r {
    flex: 0 0 auto;
    width: 150px !important;
  }
}
/* Homepage Footer Three Column Layout Override End */

/* Homepage Footer Logo Size Match Top Start */
.home-page .footer .footer-layout .foot-b-logo {
  flex-basis: 380px !important;
}

.home-page .footer .footer-layout .foot-b-logo a {
  width: auto !important;
  max-width: 380px !important;
  padding: 0 !important;
  background: transparent !important;
}

.home-page .footer .footer-layout .foot-b-logo img {
  width: auto !important;
  max-width: 100% !important;
  max-height: 70px !important;
}

@media screen and (max-width: 768px) {
  .home-page .footer .footer-layout .foot-b-logo a {
    width: auto !important;
    max-width: 320px !important;
  }

  .home-page .footer .footer-layout .foot-b-logo img {
    max-height: 58px !important;
  }
}
/* Homepage Footer Logo Size Match Top End */


/* Home Focus Image Equal Spacing Fix Start */
.home-focus-card .home-focus-slider {
  width: auto !important;
  max-width: none !important;
  margin-right: 26px !important;
  margin-left: 26px !important;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .home-focus-card .home-focus-slider {
    margin-right: 18px !important;
    margin-left: 18px !important;
  }
}
/* Home Focus Image Equal Spacing Fix End */


/* Home News List Count Adjustment Start */
.home-latest-card .home-news-list-large {
  height: 416px;
}

@media screen and (max-width: 768px) {
  .home-latest-card .home-news-list-large {
    height: 390px;
  }
}
/* Home News List Count Adjustment End */


/* Home Disclosure Two Columns Start */
.home-disclosure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.home-disclosure-grid .home-disclosure-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.home-disclosure-grid .home-news-list {
  flex: 1 1 auto;
}

.home-disclosure-grid .home-panel-more {
  align-self: flex-start;
  margin-top: auto;
}

@media screen and (max-width: 1024px) {
  .home-disclosure-grid {
    grid-template-columns: 1fr;
  }
}
/* Home Disclosure Two Columns End */


/* Home Footer Blank Strip Remove Start */
.home-page .footer {
  margin-top: 0 !important;
}

.home-page .footer .foot-top {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}
/* Home Footer Blank Strip Remove End */


/* Home Focus Image Vertical Spacing Compact Start */
.home-focus-card .home-module-head {
  padding-top: 18px !important;
  padding-bottom: 12px !important;
}

.home-focus-card .home-focus-slider {
  margin-top: 0 !important;
  margin-bottom: 18px !important;
}

@media screen and (max-width: 768px) {
  .home-focus-card .home-module-head {
    padding-top: 16px !important;
    padding-bottom: 10px !important;
  }

  .home-focus-card .home-focus-slider {
    margin-bottom: 14px !important;
  }
}
/* Home Focus Image Vertical Spacing Compact End */


/* Home Focus Image Height Increase Start */
.home-focus-card .home-focus-slider {
  height: 460px !important;
}

@media screen and (max-width: 1024px) {
  .home-focus-card .home-focus-slider {
    height: 340px !important;
  }
}

@media screen and (max-width: 768px) {
  .home-focus-card .home-focus-slider {
    height: 300px !important;
  }
}

@media screen and (max-width: 420px) {
  .home-focus-card .home-focus-slider {
    height: 250px !important;
  }
}
/* Home Focus Image Height Increase End */


/* Home Special Image Height Increase Start */
.home-special-section .home-special-slide a {
  height: 280px !important;
}

@media screen and (max-width: 1024px) {
  .home-special-section .home-special-slide a {
    height: 260px !important;
  }
}

@media screen and (max-width: 768px) {
  .home-special-section .home-special-slide a {
    height: 240px !important;
  }
}

@media screen and (max-width: 420px) {
  .home-special-section .home-special-slide a {
    height: 210px !important;
  }
}
/* Home Special Image Height Increase End */


/* Home Special Top Spacing Compact Start */
.home-special-section {
  padding-top: 10px !important;
}

.home-special-section .home-container {
  padding-top: 14px !important;
}

.home-special-section .home-section-title {
  padding-bottom: 10px !important;
}

.home-special-section .home-special-slider {
  padding-top: 0 !important;
}

@media screen and (max-width: 768px) {
  .home-special-section {
    padding-top: 8px !important;
  }

  .home-special-section .home-container {
    padding-top: 12px !important;
  }

  .home-special-section .home-section-title {
    padding-bottom: 8px !important;
  }
}
/* Home Special Top Spacing Compact End */


/* Home Special Top Gap Strong Fix Start */
.home-disclosure-section {
  padding-bottom: 8px !important;
}

.home-special-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.home-special-section .home-container {
  margin-top: 0 !important;
  padding-top: 6px !important;
}

.home-special-section .home-section-title {
  min-height: 0 !important;
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 6px !important;
}

.home-special-section .home-section-title h2::after {
  margin-top: 5px !important;
}

.home-special-section .home-special-slider {
  margin-top: 0 !important;
}
/* Home Special Top Gap Strong Fix End */


/* Home Disclosure Align With Columns Start */
.home-disclosure-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr) !important;
  gap: 26px !important;
}

@media screen and (max-width: 1024px) {
  .home-disclosure-grid {
    grid-template-columns: 1fr !important;
  }
}
/* Home Disclosure Align With Columns End */


/* Home News Combined Module Start */
.home-news-combined-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 0;
  overflow: hidden;
}

.home-news-combined-item {
  min-width: 0;
}

.home-news-combined-item + .home-news-combined-item {
  position: relative;
  border-left: 1px solid rgba(8, 47, 99, 0.12);
  box-shadow: inset 12px 0 24px rgba(8, 47, 99, 0.035);
}

.home-news-combined-card .home-module-head {
  background: linear-gradient(180deg, rgba(8, 47, 99, 0.045), rgba(255, 255, 255, 0));
}

.home-news-combined-card .home-focus-slider {
  margin-right: 26px !important;
  margin-bottom: 22px !important;
  margin-left: 26px !important;
}

.home-news-combined-card .home-news-list-large {
  height: 460px;
}

@media screen and (max-width: 1024px) {
  .home-news-combined-card {
    grid-template-columns: 1fr;
  }

  .home-news-combined-item + .home-news-combined-item {
    border-top: 1px solid rgba(8, 47, 99, 0.12);
    border-left: 0;
    box-shadow: inset 0 12px 24px rgba(8, 47, 99, 0.035);
  }

  .home-news-combined-card .home-news-list-large {
    height: 390px;
  }
}
/* Home News Combined Module End */


/* Home Service Combined Module Start */
.home-service-combined-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 0;
  overflow: hidden;
}

.home-service-combined-item {
  position: relative;
  min-width: 0;
}

.home-service-combined-item + .home-service-combined-item {
  border-left: 1px solid rgba(8, 47, 99, 0.12);
  box-shadow: inset 12px 0 24px rgba(8, 47, 99, 0.028);
}

.home-service-combined-card .home-module-head {
  background: linear-gradient(180deg, rgba(8, 47, 99, 0.045), rgba(255, 255, 255, 0));
}

.home-service-combined-card .home-notice-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none !important;
}

.home-service-combined-card .home-notice-card::before,
.home-service-combined-card .home-notice-card::after {
  display: none !important;
}

.home-service-combined-card .home-notice-card .home-module-head {
  padding: 24px 26px 18px;
}

.home-service-combined-card .home-notice-card .home-news-list {
  padding: 0 26px 22px;
}

.home-ebid-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(31, 111, 191, 0.035), rgba(255, 255, 255, 0));
}

.home-ebid-card .home-module-head {
  flex: 0 0 auto;
}

.home-ebid-link {
  flex: 1 1 auto;
  min-height: 220px;
  margin: 0 26px 26px;
  border: 1px solid rgba(8, 47, 99, 0.08);
  border-radius: 18px;
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  .home-service-combined-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .home-ebid-card {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(8, 47, 99, 0.12);
    border-left: 0 !important;
  }
}

@media screen and (max-width: 768px) {
  .home-service-combined-card {
    grid-template-columns: 1fr;
  }

  .home-service-combined-item + .home-service-combined-item {
    border-top: 1px solid rgba(8, 47, 99, 0.12);
    border-left: 0;
    box-shadow: inset 0 12px 24px rgba(8, 47, 99, 0.028);
  }

  .home-service-combined-card .home-notice-card .home-module-head {
    padding: 20px 18px 14px;
  }

  .home-service-combined-card .home-notice-card .home-news-list {
    padding: 0 18px 18px;
  }

  .home-ebid-link {
    min-height: 170px;
    margin: 0 18px 20px;
  }
}
/* Home Service Combined Module End */


/* Home Disclosure Combined Module Start */
.home-disclosure-combined-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
}

.home-disclosure-combined-item {
  min-width: 0;
}

.home-disclosure-combined-item + .home-disclosure-combined-item {
  border-left: 1px solid rgba(8, 47, 99, 0.12);
  box-shadow: inset 12px 0 24px rgba(8, 47, 99, 0.028);
}

.home-disclosure-combined-card .home-module-head {
  background: linear-gradient(180deg, rgba(8, 47, 99, 0.045), rgba(255, 255, 255, 0));
}

.home-disclosure-combined-card .home-news-list {
  padding-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .home-disclosure-combined-card {
    grid-template-columns: 1fr;
  }

  .home-disclosure-combined-item + .home-disclosure-combined-item {
    border-top: 1px solid rgba(8, 47, 99, 0.12);
    border-left: 0;
    box-shadow: inset 0 12px 24px rgba(8, 47, 99, 0.028);
  }
}
/* Home Disclosure Combined Module End */


/* Home Disclosure Combined Watermark Restore Start */
.home-disclosure-combined-card {
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 252, 247, 0.98);
}

.home-disclosure-combined-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 248, 239, 0.88) 100%),
    url("../images/home-section-watermark.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: center center, right bottom;
  background-size: 100% 100%, auto 92%;
  opacity: 0.86;
  pointer-events: none;
}

.home-disclosure-combined-card > * {
  position: relative;
  z-index: 1;
}
/* Home Disclosure Combined Watermark Restore End */


/* Home Disclosure Combined Watermark Strong Fix Start */
.home-disclosure-section .home-disclosure-combined-card {
  isolation: isolate;
  background-color: rgba(255, 252, 247, 0.98) !important;
}

.home-disclosure-section .home-disclosure-combined-card::before {
  display: block !important;
  z-index: 0 !important;
  opacity: 1 !important;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64) 0%, rgba(255, 248, 239, 0.82) 100%),
    url("../images/home-section-watermark.svg") !important;
  background-repeat: no-repeat, no-repeat !important;
  background-position: center center, right bottom !important;
  background-size: 100% 100%, auto 100% !important;
}

.home-disclosure-section .home-disclosure-combined-card .home-disclosure-card {
  background: transparent !important;
}

.home-disclosure-section .home-disclosure-combined-card .home-module-head {
  background: linear-gradient(180deg, rgba(8, 47, 99, 0.045), rgba(255, 255, 255, 0)) !important;
}
/* Home Disclosure Combined Watermark Strong Fix End */


/* Home Section Gap Uniform Start */
.home-news-section,
.home-columns-section,
.home-disclosure-section,
.home-special-section {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.home-news-section + .home-columns-section,
.home-columns-section + .home-disclosure-section,
.home-disclosure-section + .home-special-section {
  margin-top: 0 !important;
}

@media screen and (max-width: 768px) {
  .home-news-section,
  .home-columns-section,
  .home-disclosure-section,
  .home-special-section {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
}
/* Home Section Gap Uniform End */


/* Home Combined Vertical Divider Remove Start */
.home-news-combined-item + .home-news-combined-item,
.home-service-combined-item + .home-service-combined-item,
.home-disclosure-combined-item + .home-disclosure-combined-item {
  border-left: 0 !important;
  box-shadow: none !important;
}

@media screen and (max-width: 768px) {
  .home-news-combined-item + .home-news-combined-item,
  .home-service-combined-item + .home-service-combined-item,
  .home-disclosure-combined-item + .home-disclosure-combined-item {
    border-top: 0 !important;
    box-shadow: none !important;
  }
}
/* Home Combined Vertical Divider Remove End */


/* Home Headline Ad Gap Uniform Start */
.home-headline-section {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.home-headline-section + .home-news-section {
  margin-top: 0 !important;
}

.home-headline-ad-slider,
.home-wide-ad-slider {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

@media screen and (max-width: 768px) {
  .home-headline-section {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
}
/* Home Headline Ad Gap Uniform End */


/* Home Nav Dropdown Disable Start */
.home-page .home-nav-sub,
.home-page .i-nav-sub,
.home-page .nav-sub,
.home-page .sub-nav,
.home-page .dropdown-menu {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
/* Home Nav Dropdown Disable End */
