/* style/blog-article-9.css */
.page-blog-article-9 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  direction: ltr;
}

.page-blog-article-9__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-blog-article-9__hero {
  background: linear-gradient(135deg, #007bff, #ffc107);
  color: #fff;
  padding: 60px 0;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-blog-article-9__title {
  font-size: 2.5em; /* H1 */
  margin-bottom: 15px;
  color: #fff;
  line-height: 1.2;
}

.page-blog-article-9__meta {
  font-size: 0.9em;
  opacity: 0.8;
  margin-bottom: 20px;
}

.page-blog-article-9__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-article-9__article-content {
  padding: 30px 0;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-article-9__article-body p {
  margin-bottom: 1.5em;
  font-size: 1.1em;
  color: #444;
}

.page-blog-article-9__article-body ul,
.page-blog-article-9__article-body ol {
  margin-bottom: 1.5em;
  padding-left: 25px;
  font-size: 1.1em;
  color: #444;
}

.page-blog-article-9__article-body li {
  margin-bottom: 0.5em;
}

.page-blog-article-9__heading-2 {
  font-size: 2em; /* H2 */
  color: #007bff;
  margin-top: 35px;
  margin-bottom: 20px;
  border-bottom: 2px solid #ffc107;
  padding-bottom: 10px;
  line-height: 1.3;
}

.page-blog-article-9__heading-3 {
  font-size: 1.5em; /* H3 */
  color: #007bff;
  margin-top: 25px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-blog-article-9__heading-4 {
  font-size: 1.25em; /* H4 */
  color: #007bff;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-blog-article-9__highlight {
  color: #007bff;
  font-weight: bold;
}

.page-blog-article-9__image-in-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-blog-article-9__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
  font-size: 1em;
  text-align: center;
}

.page-blog-article-9__button--primary {
  background-color: #007bff;
  color: #fff;
  border: 1px solid #007bff;
}

.page-blog-article-9__button--primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-blog-article-9__button--secondary {
  background-color: #ffc107;
  color: #333;
  border: 1px solid #ffc107;
  margin-left: 15px;
}

.page-blog-article-9__button--secondary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-blog-article-9__action-buttons {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 50px;
}

.page-blog-article-9__related-articles {
  padding: 40px 0;
  background-color: #f0f8ff;
  border-top: 1px solid #e0e0e0;
}

.page-blog-article-9__related-articles .page-blog-article-9__heading-2 {
  text-align: center;
  margin-bottom: 30px;
  color: #007bff;
  border-bottom: none;
}

.page-blog-article-9__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-blog-article-9__article-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-article-9__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-blog-article-9__article-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.page-blog-article-9__article-card .page-blog-article-9__heading-3 {
  font-size: 1.2em;
  margin: 15px;
  color: #007bff;
}

.page-blog-article-9__article-card-link {
  text-decoration: none;
  color: inherit;
}

.page-blog-article-9__article-card-link:hover {
  color: #0056b3;
}

.page-blog-article-9__article-card-excerpt {
  font-size: 0.9em;
  color: #666;
  padding: 0 15px 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-blog-article-9__title {
    font-size: 2em;
  }

  .page-blog-article-9__heading-2 {
    font-size: 1.7em;
  }

  .page-blog-article-9__heading-3 {
    font-size: 1.3em;
  }

  .page-blog-article-9__article-body p,
  .page-blog-article-9__article-body ul,
  .page-blog-article-9__article-body ol {
    font-size: 1em;
  }

  .page-blog-article-9__button {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }

  .page-blog-article-9__button--secondary {
    margin-left: 0;
  }

  .page-blog-article-9__action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}