.page-blog {
  max-width: 100%;
  overflow-x: hidden;
  color: #F3F8FF;
  background-color: #FFFFFF;
}

/* Hero Banner */
.page-blog__hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  width: 100%;
}

.page-blog__hero-inner img {
  width: 100%;
  height: auto;
  aspect-ratio: 17 / 5;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.page-blog__hero-content {
  text-align: center;
  padding: 20px 0 0;
}

.page-blog__hero-content h1 {
  margin: 0 0 8px;
  color: #08162B;
  font-weight: 700;
  line-height: 1.2;
}

.page-blog__hero-content p {
  max-width: 80%;
  margin: 0 auto 16px;
  color: #333333;
  font-size: 1rem;
  line-height: 1.5;
}

.page-blog__hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.page-blog__btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog__btn--primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
}

.page-blog__btn--secondary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
  border: 1px solid #F2C14E;
}

/* Articles */
.page-blog__wrapper {
  background-color: #113B7A;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog__section-title {
  font-size: 1.75rem;
  color: #F3F8FF;
  text-align: center;
  margin-bottom: 24px;
}

.page-blog__card {
  width: 100%;
  max-width: 800px;
  background-color: #10233F;
  border: 1px solid #244D84;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.page-blog__card img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.page-blog__card-body {
  padding: 20px;
}

.page-blog__date {
  font-size: 0.85rem;
  color: #F2C14E;
}

.page-blog__card h3 {
  margin: 8px 0;
  font-size: 1.25rem;
}

.page-blog__card h3 a {
  color: #F3F8FF;
  text-decoration: none;
}

.page-blog__card h3 a:hover {
  text-decoration: underline;
}

.page-blog__card-body p {
  color: #AFC4E8;
  font-size: 0.9rem;
  line-height: 1.6;
}

.page-blog__read-more {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 6px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
  font-size: 0.9rem;
  text-decoration: none;
}

/* Guide */
.page-blog__guide {
  background-color: #FFFFFF;
  padding: 24px 16px;
}

.page-blog__guide-title {
  text-align: center;
  color: #113B7A;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.page-blog__guide-intro {
  text-align: center;
  max-width: 90%;
  margin: 0 auto 16px;
  color: #333333;
}

.page-blog__guide-list {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 0;
  list-style-type: none;
}

.page-blog__guide-item {
  background-color: #F3F8FF;
  border: 1px solid #244D84;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  color: #333333;
}

.page-blog__guide-item a {
  color: #1D5FD1;
  font-weight: bold;
}

/* Media Queries */
@media (max-width: 768px) {
  .page-blog {
    overflow-x: hidden;
  }

  .page-blog__hero-inner {
    padding: 10px 12px 0;
  }

  .page-blog__hero-inner img {
    aspect-ratio: 2 / 1;
    border-radius: 8px;
  }

  .page-blog__hero-content {
    padding-top: 12px;
  }

  .page-blog__hero-content p {
    max-width: 98%;
    font-size: 0.95rem;
  }

  .page-blog__hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .page-blog__btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
  }

  .page-blog__wrapper {
    padding: 24px 12px;
  }

  .page-blog__card {
    margin-bottom: 20px;
  }

  .page-blog__card-body {
    padding: 16px;
  }

  .page-blog__card-body p {
    font-size: 0.85rem;
  }

  .page-blog img {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-blog__guide {
    padding: 16px 12px;
    overflow: hidden;
  }

  .page-blog__guide-item {
    padding: 12px;
  }
}