/* ===== Brand Variables ===== */
:root {
  --brand-gold: #b48530;
  --brand-gold-light: #d4a853;
  --brand-green: #1a3622;
  --brand-green-light: #2c5a39;
  --brand-gray: #f8f9fa;
}

/* ===== Typography ===== */
body {
  font-family: 'Noto Sans TC', 'Inter', ui-sans-serif, system-ui, sans-serif;
  color: #333;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
.font-serif {
  font-family: 'Noto Serif TC', ui-serif, Georgia, serif;
}

/* ===== Navbar ===== */
#navbar {
  /* position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1050;
  transition: all 0.3s ease;
  padding: 1.5rem 0; */
}

#navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.10);
  padding: 1rem 0;
}

.nav-brand-text {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  text-decoration: none;
}

#navbar:not(.scrolled) .nav-brand-text {
  color: #fff;
}

#navbar.scrolled .nav-brand-text {
  color: var(--brand-green);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s;
  flex-shrink: 0;
}

#navbar:not(.scrolled) .nav-logo-icon {
  background: #fff;
  color: var(--brand-green);
}

#navbar.scrolled .nav-logo-icon {
  background: var(--brand-green);
  color: #fff;
}

.nav-link-item {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.25rem 0;
}

#navbar:not(.scrolled) .nav-link-item {
  color: rgba(255, 255, 255, 0.9);
}

#navbar.scrolled .nav-link-item {
  color: #555;
}

.nav-link-item:hover,
.nav-link-item.active {
  color: var(--brand-gold) !important;
}

.btn-contact-nav {
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

#navbar:not(.scrolled) .btn-contact-nav {
  background: #fff;
  color: var(--brand-green);
}

#navbar:not(.scrolled) .btn-contact-nav:hover {
  background: rgba(255, 255, 255, 0.9);
}

#navbar.scrolled .btn-contact-nav {
  background: var(--brand-gold);
  color: #fff;
}

#navbar.scrolled .btn-contact-nav:hover {
  background: var(--brand-gold-light);
}

.btn-hamburger {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
  padding: 0.25rem;
}

#navbar:not(.scrolled) .btn-hamburger {
  color: #fff;
}

#navbar.scrolled .btn-hamburger {
  color: #333;
}

/* Mobile menu */
#mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  padding: 0.75rem 1.25rem 1rem;
  flex-direction: column;
  gap: 0;
}

#mobile-menu.open {
  display: flex;
}

#mobile-menu a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s;
}

#mobile-menu a:last-child {
  border-bottom: none;
}

#mobile-menu a:hover {
  color: var(--brand-gold);
}

.btn-mobile-contact {
  background: var(--brand-gold) !important;
  color: #fff !important;
  text-align: center;
  border-radius: 100px;
  padding: 0.75rem 1.5rem !important;
  margin-top: 0.5rem;
  border: none !important;
}

/* ===== Sections ===== */
.py-section {
  padding: 6rem 0;
}

.py-section-sm {
  padding: 4rem 0;
}

/* ===== Brand helpers ===== */
.bg-brand-green {
  background-color: var(--brand-green) !important;
}

.bg-brand-gold {
  background-color: var(--brand-gold) !important;
}

.bg-brand-gray {
  background-color: var(--brand-gray) !important;
}

.text-brand-gold {
  color: var(--brand-gold) !important;
}

.text-brand-gold-light {
  color: var(--brand-gold-light) !important;
}

.text-brand-green {
  color: var(--brand-green) !important;
}

/* ===== Hero (homepage) ===== */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.30);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 15rem;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  background: rgba(180, 133, 48, 0.2);
  border: 1px solid rgba(180, 133, 48, 0.5);
  color: var(--brand-gold-light);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ===== Buttons ===== */
.btn-brand-gold {
  background: var(--brand-gold);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.btn-brand-gold:hover {
  background: var(--brand-gold-light);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-white {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-outline-white:hover {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}

/* Arrow hover animation */
.arrow-animate {
  transition: transform 0.2s;
}

.btn-brand-gold:hover .arrow-animate {
  transform: translateX(4px);
}

/* ===== Section Labels ===== */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-gold);
  display: block;
  margin-bottom: 0.4rem;
}

.section-label-light {
  color: var(--brand-gold-light) !important;
}

/* ===== Service Cards ===== */
.card-service {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
}

.card-service:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.card-service:hover .card-icon {
  transform: scale(1.1);
}

/* ===== Product Excellence ===== */
.product-img-wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.product-img-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.product-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: #fff;
  font-style: italic;
  font-size: 1.2rem;
}

/* ===== WhyChooseUs ===== */
.advantage-item {
  padding-left: 1.5rem;
  border-left: 2px solid rgba(180, 133, 48, 0.3);
  transition: border-color 0.3s;
}

.advantage-item:hover {
  border-left-color: var(--brand-gold);
}

/* ===== OneStop ===== */
.one-stop-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.10);
}

.one-stop-left {
  background: var(--brand-gold);
  color: #fff;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===== Process ===== */
.process-step-num {
  font-family: 'Noto Serif TC', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 1rem;
  line-height: 1;
}

.process-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-gold);
  margin-right: 0.5rem;
}

.process-line {
  position: absolute;
  top: 3rem;
  left: 2.5rem;
  right: 2.5rem;
  height: 2px;
  background: #f0f0f0;
  z-index: 0;
}

/* ===== TrustSafety ===== */
.trust-section {
  padding: 5rem 0;
  background: #111827;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.trust-bg {
  position: absolute;
  inset: 0;
}

.trust-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.cert-badge {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: inline-block;
}

/* ===== Footer CTA ===== */
.footer-cta-section {
  background: var(--brand-gold);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.footer-cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(40px);
}

.footer-cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  filter: blur(40px);
}

.btn-cta-white {
  background: #fff;
  color: var(--brand-gold);
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-cta-white:hover {
  background: #f9f9f9;
  color: var(--brand-gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline {
  background: transparent;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 100px;
  border: 2px solid #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ===== Footer ===== */
footer {
  background: #111827;
  color: #9ca3af;
  padding: 3rem 0;
  border-top: 1px solid #1f2937;
}

footer .footer-title {
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

footer a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--brand-gold);
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  margin-top: 3rem;
  padding-top: 2rem;
  font-size: 0.875rem;
}

/* ===== Scroll Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: none;
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* ===== OEM Cards ===== */
.oem-card {
  border-radius: 1.5rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s;
}

.oem-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.oem-img {
  height: 320px;
  position: relative;
  overflow: hidden;
}

.oem-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.oem-card:hover .oem-img img {
  transform: scale(1.05);
}

.oem-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.oem-card:hover .oem-img-overlay {
  opacity: 0.8;
}

.oem-card-body {
  padding: 2rem;
  position: relative;
}

.oem-gold-bar {
  position: absolute;
  top: 0;
  left: 2rem;
  transform: translateY(-50%);
  width: 3rem;
  height: 4px;
  background: var(--brand-gold);
}

/* ===== CustomizedProduction Step Circles ===== */
.step-circle {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--brand-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: border-color 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step-circle:hover,
.step-col:hover .step-circle {
  border-color: var(--brand-gold);
}

.step-circle span {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-green);
  transition: color 0.3s;
}

.step-col:hover .step-circle span {
  color: var(--brand-gold);
}

/* ===== News ===== */
.news-tab-btn {
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #6b7280;
  font-family: inherit;
  font-size: 0.95rem;
}

.news-tab-btn:hover {
  background: rgba(180, 133, 48, 0.08);
  color: var(--brand-gold);
  border-color: rgba(180, 133, 48, 0.2);
}

.news-tab-btn.active {
  background: var(--brand-green);
  color: #fff;
  border-color: var(--brand-green);
  box-shadow: 0 4px 12px rgba(26, 54, 34, 0.3);
}

.exhibition-card {
  transition: box-shadow 0.3s;
}

.exhibition-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.exhibition-card .ex-img {
  height: 200px;
  overflow: hidden;
}

.exhibition-card .ex-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.exhibition-card:hover .ex-img img {
  transform: scale(1.05);
}

.other-news-card {
  transition: box-shadow 0.3s, transform 0.3s;
}

.other-news-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.other-news-card:hover .news-title {
  color: var(--brand-gold);
}

.news-title {
  transition: color 0.2s;
}

/* ===== Sustainability ===== */
.sustain-img-wrap {
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  aspect-ratio: 16/9;
}

@media (min-width: 992px) {
  .sustain-img-wrap {
    aspect-ratio: 1/1;
    max-height: 500px;
  }
}

.sustain-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sustain-cta-section {
  background: var(--brand-green);
  padding: 6rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* ===== ESG Pillars ===== */
.esg-card {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid;
  transition: box-shadow 0.3s;
  height: 100%;
}

.esg-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.esg-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid;
}

.esg-body {
  padding: 2rem;
  background: #fff;
}

.esg-body .text-secondary {
  position: relative;
}

.esg-body .text-secondary::after {
  content: '';
  display: block;
  width: 1px;
  height: 90%;
  background: #ddd;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}


/* ===== About ===== */
.about-hero {
  background: #0f172a;
  padding-top: 8rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.90), rgba(15, 23, 42, 0.40));
}

.about-hero-content {
  position: relative;
  z-index: 1;
}

.mission-card {
  background: #f8fafc;
  border-radius: 1.5rem;
  padding: 3rem;
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.3s;
  height: 100%;
}

.mission-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.vision-card {
  background: var(--brand-gold);
  border-radius: 1.5rem;
  padding: 3rem;
  color: #fff;
  box-shadow: 0 8px 30px rgba(180, 133, 48, 0.30);
  transition: box-shadow 0.3s;
  height: 100%;
}

.vision-card:hover {
  box-shadow: 0 12px 40px rgba(180, 133, 48, 0.40);
}

.strength-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
  height: 100%;
}

.strength-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px);
}

.biz-value-card {
  background: #0f172a;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.biz-value-img {
  position: relative;
  min-height: 400px;
}

.biz-value-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.biz-value-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0f172a, transparent);
}

/* ===== Contact ===== */
.form-control,
.form-select {
  border-radius: 0.75rem;
  border-color: #e5e7eb;
  background: #f9fafb;
  padding: 0.75rem 1rem;
}

.form-control:focus,
.form-select:focus {
  background: #fff;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(180, 133, 48, 0.15);
}

.form-check-option {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.form-check-option:hover {
  background: var(--brand-gray);
}

.upload-area {
  border: 2px dashed #d1d5db;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
}

.upload-area:hover {
  background: #f9fafb;
}

.map-placeholder {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9，可依需求改 */
  overflow: hidden;
  border-radius: 12px;
  /* 可選 */
}

.map-placeholder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .py-section {
    padding: 4rem 0;
  }

  .product-img-wrapper img {
    height: 400px;
  }

  .oem-img {
    height: 240px;
  }

  .one-stop-left {
    padding: 2rem;
  }
}

@media (max-width: 767.98px) {
  .py-section {
    padding: 3rem 0;
  }

  .hero-section {
    min-height: 100svh;
  }

  .footer-cta-section {
    padding: 4rem 0;
  }
}

/* ---- Customized ----*/
.section-index-text {
  background: url(../img/index/img2.png) no-repeat center center/ cover scroll;
  padding: 200px 0 350px;
}

.section-index-text p {
  color: #fff;
  font-size: 1.05rem;
  font-family: 'Noto Sans TC';
  line-height: 1.9;
}

/* --Start sitemap--------------- */
.section-sitemap {
}


.section-sitemap h2 a {
    font-size: 18px;
    color: #666;
    position: relative;
    margin-bottom: 15px;
    margin-top: 5px;
    padding-left: 10px;
    font-weight: 500;
    display: block;
    border-left: 3px solid #aaa;
}

.section-sitemap h2 a:hover {
    color: #717071;
}

.section-sitemap a {
    color: #888;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    display: block;
}

    .section-sitemap a + a {
        margin-top: 15px;
    }

    .section-sitemap a:hover {
        color: #717071;
    }
/* END sitemap ------------------------------ */
.section-news{}
.section-news a{
   color: #333;
}
.section-news-detail .content-item {
    padding: 30px 0;
}
    .section-news-detail .title-item {
    border-bottom: 1px solid rgb(108, 117, 125);
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.section-news-detail .creator-item {
    border-top: 1px solid rgb(108, 117, 125);
    padding-top: 20px;
    margin-top: 10px;
}

    .section-news-detail .creator-item .creator-icon-item .title {
        margin-left: 20px;
        transition: all 0.2s ease-in-out;
    }

    .section-news-detail .creator-item .creator-icon-item a {
        color: #787878;
        font-weight: bolder;
        margin-left: 20px;
        transition: all 0.2s ease-in-out;
    }

        .section-news-detail .creator-item .creator-icon-item a:hover .title {
            color: #004989;
        }

    .section-news-detail .creator-item .pic-item {
        position: relative;
        width: 90px;
        padding-bottom: 90px;
        overflow: hidden;
        border: 1px solid #ccc;
        border-radius: 100%;
    }

        .section-news-detail .creator-item .pic-item img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1);
        }

    .section-news-detail .creator-item .creator-icon-item a {
        position: relative;
    }

        .section-news-detail .creator-item .creator-icon-item a + a {
            margin-left: 10px;
        }


    .section-news-detail .creator-item .creator-icon-item img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        transition: all 0.2s ease-in-out;
    }

        .section-news-detail .creator-item .creator-icon-item img:nth-of-type(2) {
            visibility: hidden;
            opacity: 0;
        }

        .section-news-detail .creator-item .creator-icon-item img:nth-of-type(1) {
            visibility: visible;
            opacity: 1;
        }

    .section-news-detail .creator-item .creator-icon-item a:hover {
        color: #E0002E;
    }

        .section-news-detail .creator-item .creator-icon-item a:hover img:nth-of-type(2) {
            visibility: visible;
            opacity: 1;
        }

        .section-news-detail .creator-item .creator-icon-item a:hover img:nth-of-type(1) {
            visibility: hidden;
            opacity: 0;
        }

    .section-news-detail .creator-item .text-item {
        padding: 10px 0;
        background: transparent;
    }

        .section-news-detail .creator-item .text-item .content {
            padding: 15px 0;
        }

        .section-news-detail .creator-item .text-item p {
            font-size: 15px;
            color: #666;
        }


.section-news-detail .ck-content h1,
.section-news-detail .ck-content h2,
.section-news-detail .ck-content h3,
.section-news-detail .ck-content h4,
.section-news-detail .ck-content h5,
.section-news-detail .ck-content h6 {
    padding-top: 55px;
    margin-top: -55px;
}

@media (min-width: 1200px) {
    .section-news-detail .ck-content h1,
    .section-news-detail .ck-content h2,
    .section-news-detail .ck-content h3,
    .section-news-detail .ck-content h4,
    .section-news-detail .ck-content h5,
    .section-news-detail .ck-content h6 {
        padding-top: 90px;
        margin-top: -90px;
    }
    }

    .section-news-detail .toc-box {
        position: static;
        top: 100px;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 8px;
}
        .section-news-detail .toc-box p {
            font-weight: bolder;
            font-size: 20px;
        }

        .section-news-detail .toc-box ul {
            list-style: none;
            padding-left: 0;
        }

        .section-news-detail .toc-box li {
            margin-bottom: 8px;
        }

        .section-news-detail .toc-box a {
            text-decoration: none;
            color: #333;
            transition: all 0.2s ease-in-out;
        }

            .section-news-detail .toc-box a:hover {
                color: #0d6efd;
            }
    /* --End content--------------- */
    .ck-content .media {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        max-width: 100%;
    }

        .ck-content .media iframe,
        .ck-content .media object,
        .ck-content .media embed {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

    .ck-content .image.image_resized {
        display: inline-block;
    }
    /* --End content--------------- */
    .ck-content img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    @media (min-width: 992px) {
        .ck-content img {
            width: auto;
        }
    }
    /* End news ------------------------------ */
