/* ================= BLOG PAGE ONLY ================= */

.blog-content {
  padding: 70px 0;
}

.blog-content .blog-row {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.blog-content .blog-img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.blog-content .blogh4 {
  font-size: 22px;
  font-weight: 700;
  color: #774007;
  margin-bottom: 10px;
}

.blog-content .blog-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.blog-content .read-more-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 22px;
  background: #c8903c;
  color: #fff;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
}

.blog-content .read-more-btn:hover {
  background: #a8742c;
}

/* ================= BLOG DETAIL PAGE ================= */

/* Main content spacing */
.content {
  padding: 40px 0 70px;
}

/* Page main title (Urinary Incontinence) */
.sub-banner h2 {
  font-size: 34px;
  font-weight: 700;
  color: #7a3e00; /* same brown tone */
  margin-bottom: 25px;
  margin-top: 20px;
}

/* Paragraph styling (same font everywhere) */
.content p,
.content li {
  font-size: 15.5px;
  line-height: 1.8;
  color: #333;
  font-family: "Open Sans", Arial, sans-serif;
}

/* Section headings (Causes, Symptoms, etc.) */
.content h4 {
  font-size: 22px;
  font-weight: 700;
  color: #c8903c;
  margin-top: 35px; /* 👈 GAP ABOVE */
  margin-bottom: 12px; /* 👈 GAP BELOW */
}

/* Lists spacing */
.content ul {
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 20px;
}

.content ul li {
  margin-bottom: 8px;
}

/* First paragraph spacing */
.content > .container > p:first-of-type {
  margin-top: 10px;
  margin-bottom: 25px;
}

/* Improve readability on large screens */
@media (min-width: 992px) {
  .content .container {
    max-width: 920px;
  }
}