.news-list .news-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-red);
  display: inline-block;
  margin-right: 8px;
  flex-shrink: 0;
}

.banner-section {
  padding: var(--spacing-lg) 0;
}

@media (min-width: 992px) {
  .banner-section .row {
    flex-wrap: nowrap;
  }
  .banner-section .banner-left {
    flex: 0 0 560px;
    max-width: 560px;
  }
  .banner-section .banner-right {
    flex: 1 1 0;
    max-width: none;
    width: 0;
  }
  .banner-swiper {
    aspect-ratio: unset;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media (max-width: 991.98px) {
  .banner-section .banner-left,
  .banner-section .banner-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.banner-left {
  position: relative;
  overflow: hidden;
}

.banner-swiper {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
}

.banner-swiper .swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.banner-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.banner-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.swiper-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--text-white);
  font-size: var(--font-size-sm);
}

.swiper-title p {
  margin: 0;
  max-width: 85%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.banner-swiper .swiper-pagination {
  position: absolute;
  right: 15px;
  bottom: 30px;
  text-align: right;
  z-index: 10;
}

.banner-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 4px;
  display: inline-block;
  cursor: pointer;
}

.banner-swiper .swiper-pagination-bullet-active {
  background: var(--text-white);
}

.banner-right {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
}

.news-tab-header {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #e8e8e8;
  background: var(--bg-white);
}

.news-tab {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: var(--font-size-lg);
  color: var(--text-gray);
  font-weight: bold;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.news-tab::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--primary-red);
  opacity: 0;
  transition: opacity 0.2s;
}

.news-tab.active::after {
  opacity: 1;
}

.news-tab:hover {
  color: var(--primary-red);
}

.news-tab-panel {
  min-height: 285px;
  flex: 1;
  padding: var(--spacing-sm);
  overflow: hidden;
}

.news-tab-panel .news-list li {
  display: flex;
  align-items: center;
  padding: 6px 0;
}

.news-tab-panel .news-list li:last-child {
  border-bottom: none;
}

.news-tab-panel .news-list li a {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-two-col {
  padding: var(--spacing-md) 0 var(--spacing-lg);
  overflow: hidden;
}

.main-col-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.main-col-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-block {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.block-title-tabs {
  margin-bottom: var(--spacing-md);
}

.block-title-tabs .tabs-header {
  display: flex;
  align-items: center;
  min-width: 0;
}

.titlebar {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: var(--spacing-md);
  color: var(--primary-red);
}

.titlebar::before {
  content: '';
  flex: 0 1 170px;
  max-width: 18%;
  min-width: 0;
  height: 8px;
  margin-right: 22px;
  border-top: 2px solid var(--primary-red);
  border-bottom: 2px solid #d8d8d8;
}

.block-title.titlebar {
  border-bottom: none;
}

.block-title-tabs .titlebar {
  margin-bottom: 0;
}

.main-two-col .titlebar::before {
  display: none;
}

.service-section .titlebar,
.guide-section .titlebar,
.special-section .titlebar {
  justify-content: center;
}

.service-section .titlebar::before,
.guide-section .titlebar::before,
.special-section .titlebar::before {
  flex: 1 1 0;
  max-width: none;
}

.service-section .titlebar-line,
.guide-section .titlebar-line,
.special-section .titlebar-line {
  flex: 1 1 0;
}

.titlebar-icon {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-right: 12px;
}

.titlebar-icon::before,
.titlebar-icon::after {
  content: '';
  position: absolute;
  display: block;
}

.titlebar-icon::before {
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--primary-red);
}

.titlebar-icon::after {
  right: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  background: #ffd66b;
}

.titlebar-text,
.block-title-tabs .tab-item {
  flex: 0 0 auto;
  padding: 0;
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: var(--primary-red);
  font-size: clamp(24px, 1.8vw, 26px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.2s;
}

.titlebar-slash {
  flex: 0 0 auto;
  margin: 0 14px;
  color: var(--primary-red);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.08em;
  transform: skewX(-12deg);
}

.titlebar-line {
  flex: 1 1 auto;
  min-width: 80px;
  height: 8px;
  border-top: 2px solid var(--primary-red);
  border-bottom: 2px solid #d8d8d8;
}

.block-title-tabs .tab-item.active {
  background: transparent;
  color: var(--primary-red-dark);
}

.block-title-tabs .tab-item:hover,
.block-title:hover .titlebar-text,
.block-title:hover .titlebar-slash {
  color: var(--primary-red-dark);
}

.block-title:hover .titlebar-line {
  border-top-color: var(--primary-red-dark);
}

.block-tab-content {
  flex: 1;
  overflow: hidden;
}

.block-tab-panel {
  height: 100%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .titlebar::before {
    flex-basis: 48px;
    max-width: 10%;
    margin-right: 12px;
  }

  .titlebar-icon {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }

  .titlebar-icon::before {
    width: 16px;
    height: 16px;
  }

  .titlebar-icon::after {
    width: 12px;
    height: 12px;
  }

  .titlebar-text,
  .block-title-tabs .tab-item {
    font-size: 18px;
    letter-spacing: 0.02em;
  }

  .titlebar-slash {
    margin: 0 8px;
    font-size: 16px;
  }

  .titlebar-line {
    min-width: 24px;
  }
}

@media (max-width: 480px) {
  .titlebar::before {
    display: none;
  }

  .titlebar-icon {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }

  .titlebar-icon::before {
    width: 13px;
    height: 13px;
  }

  .titlebar-icon::after {
    width: 10px;
    height: 10px;
  }

  .titlebar-text,
  .block-title-tabs .tab-item {
    font-size: 16px;
  }

  .titlebar-slash {
    margin: 0 6px;
    font-size: 15px;
  }

  .titlebar-line {
    min-width: 0;
  }
}

.news-block .news-list {
  min-height: 240px;
}

.news-block .news-list li {
  display: flex;
  align-items: center;
  padding: 6px 0;
}

.news-block .news-list li:last-child {
  border-bottom: none;
}

.news-block .news-list li a {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .main-two-col-row {
    flex-wrap: nowrap;
  }

  .main-col-left {
    flex: 1 1 auto;
    width: 0;
  }

  .main-col-right {
    flex: 0 0 350px;
  }
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-sm);
}

.dept-item {
  position: relative;
  display: block;
  aspect-ratio: 320 / 252;
  border: 1px solid #eeeeee;
  overflow: hidden;
  transition: border-color 0.2s;
  background: #fef7f6;
}

.dept-item:hover {
  border-color: var(--primary-red);
}

.dept-item .dept-icon {
  width: 100%;
  height: 100%;
}

.dept-item .dept-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.dept-item span {
  position: absolute;
  right: 10px;
  bottom: 7px;
  max-width: calc(100% - 20px);
  font-size: var(--font-size-base);
  color: var(--text-dark);
  line-height: 1.4;
  text-align: right;
}

.dept-item:hover span {
  color: var(--primary-red);
}

.policy-banner {
  margin-top: var(--spacing-md);
  border: 2px dashed var(--primary-red);
  padding: 3px;
}

.policy-banner img {
  width: 100%;
  display: block;
}

.service-section {
  padding: var(--spacing-xl) 0;
  background: var(--bg-white);
  overflow: hidden;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--spacing-md);
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  padding: var(--spacing-lg) var(--spacing-sm);
  text-align: center;
  background: #fef7f6;
}

.service-item .service-icon-circle {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.service-item .service-icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-item span {
  font-size: var(--font-size-md);
  color: var(--text-dark);
  line-height: 1.4;
}

.service-item:hover span {
  color: var(--primary-red);
}

.guide-section {
  padding: var(--spacing-xl) 0;
  background: #fdf4f3;
  overflow: hidden;
}

.guide-swiper-wrap {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
}

.swiper-ctrl-button {
  width: 36px;
  height: 320px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
}

.swiper-ctrl-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.guide-swiper-wrap .swiper-ctrl-button.swiper-button-lock {
  display: flex;
  visibility: hidden;
}

.guide-swiper-wrap .swiper-pagination.swiper-pagination-lock {
  display: flex;
  visibility: hidden;
}

.guide-swiper {
  flex: 1;
  overflow: hidden;
}

.guide-swiper .swiper-container {
  width: 100%;
  overflow: hidden;
}

.guide-swiper .swiper-wrapper {
  width: 100%;
}

.guide-swiper .swiper-slide {
  width: 100%;
}

.guide-swiper .swiper-slide .row+.row {
  margin-top: 20px;
}

.guide-card {
  position: relative;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  transition: all 0.2s;
  aspect-ratio: 186 / 125;
  overflow: hidden;
  margin-bottom: 15px;
  width: 100%;
  background-image: url('../images/banshi-border.png');
}

.guide-card:hover {
  opacity: 0.9;
}

.guide-card-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}

.guide-card-icon {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-left: 10px;
}

.guide-card-icon img {
  width: 38%;
  height: auto;
  object-fit: contain;
  margin-bottom: 8%;
}

.guide-card-name {
  font-size: var(--font-size-md);
  font-weight: bold;
  color: var(--primary-red);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.guide-card-body {
  flex: 1;
  padding: 15% 6% 0 7%;
  overflow: hidden;
}

.guide-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-card-body ul li {
  font-size: var(--font-size-base);
  color: var(--text-gray);
  line-height: 2;
  position: relative;
  padding-left: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.guide-card-body ul li::before {
  content: '▶';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-red);
  font-size: 10px;
  line-height: 1;
}

.guide-swiper .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  position: static;
}

.guide-swiper .swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: #e0e0e0;
  opacity: 1;
  margin: 0 4px;
}

.guide-swiper .swiper-pagination-bullet-active {
  background: var(--primary-red);
}

.special-section {
  padding: var(--spacing-xl) 0;
  overflow: hidden;
}

.special-item {
  display: block;
  overflow: hidden;
}

.special-item img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.special-item:hover img {
  transform: scale(1.05);
}

.special-item span {
  display: block;
  text-align: center;
  font-size: 16px;
  color: #333;
  margin-top: 12px;
  line-height: 1.5;
}

.special-item:hover span {
  color: #c41230;
}

.staff-style-section {
  padding: var(--spacing-xl) 0;
  overflow: hidden;
}

.staff-style-section .titlebar {
  justify-content: center;
}

.staff-style-section .titlebar::before {
  flex: 1 1 0;
  max-width: none;
}

.staff-style-section .titlebar-line {
  flex: 1 1 0;
}

.marquee-wrap {
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 8px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-wrap:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.staff-style-item {
  flex-shrink: 0;
  width: calc(20% - 8px);
  max-width: 280px;
}

.staff-style-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  max-width: 100%;
}

.staff-style-item:hover img {
  opacity: 0.85;
}

@media (max-width: 1200px) {
  .staff-style-item {
    width: calc(20% - 8px);
  }
}

@media (max-width: 991px) {
  .staff-style-item {
    width: calc(25% - 8px);
  }
}

@media (max-width: 767px) {
  .staff-style-item {
    width: calc(33.333% - 8px);
  }
}

@media (max-width: 575px) {
  .staff-style-item {
    width: calc(50% - 8px);
  }
}

@media (max-width: 480px) {
  .staff-style-item {
    width: calc(50% - 8px);
  }
}

@media (max-width: 767px) {
  .service-item .service-icon-circle {
    width: 44px;
    height: 44px;
  }

  .service-item .service-icon-circle img {
    width: 100%;
    height: 100%;
  }

  .guide-card-name {
    font-size: var(--font-size-base);
  }

  .guide-card-body ul li {
    font-size: var(--font-size-sm);
  }
}

@media (max-width: 660px) {
  .swiper-ctrl-button {
    display: none;
  }

  .news-tab {
    font-size: var(--font-size-base);
    padding: 10px 4px;
  }

  .special-item img {
    height: auto;
  }

  .staff-style-item img {
    aspect-ratio: auto;
    height: auto;
  }

  .service-item .service-icon-circle {
    width: 40px;
    height: 40px;
  }

  .service-item .service-icon-circle img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 575px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .service-item span {
    font-size: var(--font-size-sm);
  }
}
