/* Phase 1 (DR-003): one product block at the end of a guide.
 *
 * Scoped entirely under .agro-gp so it cannot touch the theme. Sits between
 * the article body and the "Recommended Articles:" block, in the same column,
 * and inherits the theme's font rather than setting one.
 */
.agro-gp {
  margin: 2.5em 0 1.5em;
  padding: 1.25em 1.25em 1.35em;
  border: 1px solid #dfe3e1;
  border-radius: 8px;
  background: #f7faf8;
  display: flex;
  gap: 1.25em;
  align-items: flex-start;
}

.agro-gp-img {
  flex: 0 0 110px;
  margin: 0;
}

.agro-gp-img img {
  width: 110px;
  height: auto;
  display: block;
  border-radius: 6px;
}

.agro-gp-body { flex: 1 1 auto; min-width: 0; }

.agro-gp-kicker {
  display: block;
  font-size: 0.75em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5d6b63;
  margin-bottom: 0.35em;
}

.agro-gp h3.agro-gp-title {
  margin: 0 0 0.4em;
  font-size: 1.15em;
  line-height: 1.3;
}

.agro-gp-title a { color: inherit; text-decoration: none; }
.agro-gp-title a:hover { text-decoration: underline; }

.agro-gp p.agro-gp-text {
  margin: 0 0 0.9em;
  font-size: 0.95em;
  line-height: 1.55;
}

.agro-gp-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75em;
}

.agro-gp-price {
  font-weight: 700;
  font-size: 1.05em;
  white-space: nowrap;
}

.agro-gp-btn {
  appearance: none;
  border: 0;
  border-radius: 5px;
  padding: 0.6em 1.15em;
  font: inherit;
  font-weight: 600;
  font-size: 0.95em;
  line-height: 1.2;
  color: #fff;
  background: #3f8f5b;
  cursor: pointer;
}

.agro-gp-btn:hover { background: #35774c; }

.agro-gp-link {
  font-size: 0.9em;
  white-space: nowrap;
}

/* Phones: stack, and let the image sit above the copy. */
@media (max-width: 600px) {
  .agro-gp { flex-direction: column; gap: 0.9em; }
  .agro-gp-img { flex: 0 0 auto; }
  .agro-gp-img img { width: 90px; }
}
