/* Base container */
.blog-intrested-items-node-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
}

/* Title styling */
.blog-intrested-items-title {
  font-size: 36px;
  margin-bottom: 1rem;
  color: #005a9b;
  font-weight: 500;
  line-height: 1.4;
}

/* Image styling */
.blog-intrested-items-image {
  margin-bottom: 1.5rem;
}

/* Body content */
.blog-intrested-items-body {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #333;
}

/* View block wrapper */
.blog-intrested-items-view-wrapper {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #ccc;
  padding-bottom: 50px;
}

/* Layout container for entire blog section */
.blogs-entire-page {
  max-width: 1440px;
  width: 95%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  box-sizing: border-box;
  hyphens: none;
  word-break: normal;
}

/* Paragraph spacing inside blog content */
.blogs-entire-page p {
  margin-block-start: 10px;
  margin-block-end: 10px;
}

/* Left content area */
.blogs-left-content {
  width: 70%;
  box-sizing: border-box;
}

.blogs-left-content p,
.blogs-left-content li {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* Right sidebar content */
.blog-right-content {
  width: 30%;
  box-sizing: border-box;
}

/* Optional: fix image rendering */
.wp-block-image figure {
  margin: 0;
  background: none;
}

.wp-block-image figure img {
  border-radius: 20px;
}

/* Related items title */
.blog-interested-title {
  text-align: center;
  font-size: 16px;
  color: #0099D9;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  margin-block: 0;
}

/* Highlighted card section */
.blog-highlight-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 30px;
  background: white;
  border: 1px solid #e1e3e8;
  border-radius: 32px;
  margin: 30px 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  gap: 20px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.blog-highlight-logo {
  flex-shrink: 0;
}

.blog-highlight-logo img {
  width: 120px;
  height: auto;
}

.blog-highlight-text {
  font-size: 24px;
  font-weight: 600;
  color: #2a2e35;
  flex: 1;
  min-width: 200px;
}

@media (max-width: 768px) {
  .blogs-entire-page {
    flex-direction: column;
    gap: 30px;
  }

  .blogs-left-content,
  .blog-right-content {
    width: 100%;
  }

  .blog-right-content {
    order: 2;
  }

  .blogs-left-content {
    order: 1;
  }

  .blog-highlight-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .blog-highlight-text {
    font-size: 20px;
    margin-top: 10px;
  }

  .blog-highlight-logo img {
    width: 60px;
  }
}
