/* Blog y entradas: composición editorial inspirada en revistas de jardinería. */
.ebc-card-grid--blog,
.ebc-card-grid--search {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ebc-card--post .ebc-card__media {
  aspect-ratio: 16 / 9;
}

.ebc-card--post .ebc-card__title {
  font-size: clamp(1.28rem, 2.3vw, 1.55rem);
}

.ebc-card--post .ebc-card__body {
  padding: 21px 22px 19px;
}

.ebc-single--post .ebc-single-header {
  padding-top: 38px;
}

.ebc-single--post .ebc-entry-content > p:first-of-type {
  color: #3f4f45;
  font-size: 1.08rem;
}

.ebc-single--post .ebc-featured-image {
  border-bottom: 5px solid var(--ebc-sage);
}

.ebc-comments {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--ebc-line);
}

.ebc-comments > h2 {
  font-size: 1.45rem;
}

.ebc-comment-list {
  padding: 0;
  margin: 0 0 34px;
  list-style: none;
}

.ebc-comment-list .comment {
  padding: 18px 0;
  border-bottom: 1px solid var(--ebc-line);
}

.ebc-comment-list .children {
  margin-left: 28px;
}

.ebc-comment-list .comment-meta {
  font-size: 0.78rem;
}

.ebc-comment-list .comment-content {
  margin-top: 10px;
}

.comment-respond {
  padding: 24px;
  border: 1px solid var(--ebc-line);
  background: #f8f8f4;
}

.comment-respond label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.82rem;
  font-weight: 700;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--ebc-line);
  background: #fff;
}

.comment-respond input[type="submit"] {
  min-height: 44px;
  padding: 9px 17px;
  border: 1px solid var(--ebc-forest);
  border-radius: 3px;
  color: #fff;
  background: var(--ebc-forest);
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 700px) {
  .ebc-card-grid--blog,
  .ebc-card-grid--search {
    grid-template-columns: 1fr;
  }

  .comment-respond {
    padding: 18px;
  }
}

