.page-blog {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

.page-blog__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
  padding-bottom: 60px;
  text-align: center;
  background-color: #0D0E12;
  overflow: hidden;
}

.page-blog__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.page-blog__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-blog__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 80px;
}

.page-blog__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #FFF3E6;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-blog__intro-text {
  font-size: 1.15rem;
  color: #FFF3E6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-blog__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-blog__latest-articles {
  padding: 80px 0;
  background-color: #17191F; /* Card BG */
  color: #FFF3E6;
}

.page-blog__section-title {
  font-size: 2.5rem;
  color: #FFF3E6;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
}

.page-blog__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #FF8C1A;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog__article-card {
  background-color: #0D0E12; /* Background */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #FFF3E6;
}

.page-blog__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog__article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-blog__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog__card-title {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.page-blog__card-title a {
  color: #FFF3E6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog__card-title a:hover {
  color: #FF8C1A;
}

.page-blog__card-excerpt {
  font-size: 1rem;
  color: #FFF3E6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-blog__article-date {
  font-size: 0.9rem;
  color: #FFA53A;
  display: block;
  margin-top: auto;
}

.page-blog__view-all-button-container {
  text-align: center;
}

.page-blog__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  color: #FF8C1A;
  border: 2px solid #FF8C1A;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-blog__btn-secondary:hover {
  background-color: #FF8C1A;
  color: #ffffff;
}

.page-blog__main-content {
  padding: 80px 0;
  background-color: #0D0E12;
  color: #FFF3E6;
}

.page-blog__article-body {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog__article-body h2 {
  font-size: 2.2rem;
  color: #FFF3E6;
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 700;
  text-align: left;
}

.page-blog__article-body h2::after {
  margin-left: 0;
}

.page-blog__article-body h3.page-blog__sub-title {
  font-size: 1.8rem;
  color: #FFA53A;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog__article-body p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #FFF3E6;
}

.page-blog__article-body ul,
.page-blog__article-body ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-blog__article-body li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #FFF3E6;
}

.page-blog__article-body img.page-blog__article-figure {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog__cta-section {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
  color: #FFF3E6;
}

.page-blog__cta-section p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.page-blog__faq-section {
  padding: 80px 0;
  background-color: #17191F;
  color: #FFF3E6;
}

details.page-blog__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #A84F0C;
  overflow: hidden;
  background: #0D0E12; /* Background */
  color: #FFF3E6;
}

details.page-blog__faq-item summary.page-blog__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-blog__faq-item summary.page-blog__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog__faq-item summary.page-blog__faq-question:hover {
  background: rgba(255, 140, 26, 0.1);
}

.page-blog__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF3E6;
}

.page-blog__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFA53A;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-blog__faq-item .page-blog__faq-answer {
  padding: 0 20px 20px;
  background: #0D0E12; /* Background */
  border-radius: 0 0 5px 5px;
  color: #FFF3E6;
}

/* General button responsive styles */
.page-blog__btn-primary,
.page-blog__btn-secondary,
.page-blog a[class*="button"],
.page-blog a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

/* Button container responsive styles */
.page-blog__cta-buttons,
.page-blog__button-group,
.page-blog__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* --- Media Queries --- */

@media (max-width: 1024px) {
  .page-blog__hero-content {
    padding-top: 60px;
  }

  .page-blog__main-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
  }

  .page-blog__intro-text {
    font-size: 1.05rem;
  }

  .page-blog__section-title {
    font-size: 2.2rem;
  }

  .page-blog__articles-grid {
    gap: 20px;
  }

  .page-blog__article-card img {
    height: 200px;
  }

  .page-blog__card-title {
    font-size: 1.3rem;
  }

  .page-blog__article-body h2 {
    font-size: 2rem;
  }

  .page-blog__article-body h3.page-blog__sub-title {
    font-size: 1.6rem;
  }

  .page-blog__cta-section p {
    font-size: 1.2rem;
  }

  .page-blog__faq-qtext {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-blog__container {
    padding: 0 15px;
  }

  /* HERO 主图区域 */
  .page-blog__hero-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
  }
  .page-blog__hero-image img {
    object-fit: contain !important; /* Prevent cropping */
    aspect-ratio: unset !important;
    height: auto !important;
    position: relative;
    opacity: 0.5; /* Adjust opacity for better text readability */
  }
  .page-blog__hero-content {
    padding-top: 40px;
  }
  .page-blog__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-blog__intro-text {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  /* 产品展示图区域 - Not directly applicable to blog, but general rule */
  /* If such a grid existed on a blog, it would be handled like this: */
  /* .page-blog__products-grid { grid-template-columns: repeat(2, 1fr); overflow-x: hidden; } */

  /* 装饰主标题 + 长文 SEO 区 */
  .page-blog__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .page-blog__section-title::after {
    width: 60px;
  }
  .page-blog__article-body {
    max-width: 100% !important;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .page-blog__article-body h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .page-blog__article-body h2::after {
    margin-left: auto;
    margin-right: auto;
  }
  .page-blog__article-body h3.page-blog__sub-title {
    font-size: 1.4rem;
    text-align: center;
  }
  .page-blog__article-body p,
  .page-blog__article-body li {
    font-size: 1rem;
  }
  .page-blog__article-body img.page-blog__article-figure {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  /* 通用图片与容器 */
  .page-blog img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-blog__latest-articles,
  .page-blog__main-content,
  .page-blog__faq-section {
    padding: 40px 0;
  }
  .page-blog__articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog__article-card img {
    
  }
  .page-blog__card-content {
    padding: 15px;
  }
  .page-blog__card-title {
    font-size: 1.2rem;
  }
  .page-blog__card-excerpt {
    font-size: 0.9rem;
  }

  /* 按钮与按钮容器 */
  .page-blog__btn-primary,
  .page-blog__btn-secondary,
  .page-blog a[class*="button"],
  .page-blog a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
  }
  .page-blog__cta-section {
    padding: 30px 20px;
  }
  .page-blog__cta-section p {
    font-size: 1.1rem;
  }
  .page-blog__view-all-button-container {
    padding: 0 15px;
  }
  .page-blog__cta-buttons,
  .page-blog__button-group,
  .page-blog__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important; /* Ensure buttons wrap */
    gap: 10px;
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
  }

  /* FAQ */
  details.page-blog__faq-item summary.page-blog__faq-question {
    padding: 15px;
  }
  .page-blog__faq-qtext {
    font-size: 1rem;
  }
  details.page-blog__faq-item .page-blog__faq-answer {
    padding: 0 15px 15px;
  }
}