section > figure.article-image > figcaption {
    font-size: 10px;
    line-height: 1.3;
    color: #555;
}

/* Section styling */
article section {
    margin-bottom: 40px;   /* space between sections */
    padding: 20px 0;
    border-bottom: 1px solid #eee; /* subtle separation */
}

/* Section headings */
article section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

article section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-top: 25px;
    margin-bottom: 10px;
}

.entry-title p.text-truncate {
    white-space: normal;      /* Allow text to wrap to the next line */
    overflow: visible;        /* Remove the ellipsis effect */
    text-overflow: clip;      /* Stop showing ... */
}

.product-link {
  color: #2f6f4e; /* calm, natural green */
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 111, 78, 0.35);
  transition: all 0.25s ease;
}

.product-link:hover,
.product-link:focus {
  color: #1f5138;
  border-bottom-color: #1f5138;
  background-color: rgba(47, 111, 78, 0.08);
  border-radius: 3px;
  padding: 0 2px;
}

.product-link:visited {
  color: #355f4a;
}