
/*** The blog area ***/
.blog-post {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.blog-image {
  flex: 1 1 300px;
  max-width: 300px;
}

.blog-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.blog-content {
  flex: 2 1 400px;
  min-width: 250px;
}

.blog-meta {
  font-style: italic;
  font-size: 0.9em;
  margin-top: 15px;
}

.blog-content h2 {
  font-family: 'Monda', sans-serif;
  color: #103d5f;
  font-weight: bold;
  font-size: 1.8125em;
  margin-bottom: 10px;
  line-height: 1.45;
}

.blog-content h4 {
  font-family: 'Arial', sans-serif;
  color: #103d5f;
  font-weight: bold;
  font-size: 1.125em;
  margin-bottom: 12px;
}

.blog-content p {
  font-family: 'Georgia', serif;
  color: #555555;
  font-size: 0.925em;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .blog-post {
    flex-direction: column;
  }

  .blog-image,
  .blog-content {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .blog-content {
    margin-top: 15px;
  }
}
/*** End of Blog Area ***/

/*** The catrgories details area ***/
.cat-details {
  background: #fff;
  border: 1px solid #e2e2e2;
  padding: 1.4rem;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  max-width: 100%;
  margin: 0 auto;
  font-family: "Inter", system-ui, sans-serif;
}

.ca-details_header h1 {
  margin-top: 0.25rem;
  font-size: 1.45rem;
  letter-spacing: 0.03em;
}

.cat-details_tagline {
  margin: 0;
  color: #555;
  font-size: 0.8125rem;
}

.cat-error-banner {
  margin: 2rem auto;
  padding: 1rem 1.5rem;
  max-width: 640px;
  background: linear-gradient(135deg, #fff4f3, #fdecea);
  color: #e74c3c;
  border: 1px solid #f5c0c0;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.cat-error-banner .banner-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #120a1d;
  color: #fff;
  font-size: 1.2rem;
  line-height: 42px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

.cat-error-banner .banner-cta {
  background: #120a1d;
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  border: 2px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cat-error-banner .banner-cta:hover {
  transform: translateY(-1px);
  opacity: 0.9;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.cat-details_body p {
  line-height: 1.5;
  color: #2a2a2a;
  font-size: 0.9rem;
  margin-top: 1rem;
  font-family: "Inter", system-ui, sans-serif;
}
/*** End of categories details Area ***/