.fv-header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 18px 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #edf0ea;
  position: relative;
}

.fv-header-back {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f3f6ef;
  color: #182219;
}

.fv-header h1 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #152017;
}

.fv-hero {
  margin: 16px;
  padding: 20px 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(143, 216, 156, 0.22), transparent 30%),
    linear-gradient(135deg, #f8fcf5 0%, #eef7ea 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fv-hero strong {
  display: block;
  font-size: 18px;
  color: #133517;
  margin-bottom: 6px;
}

.fv-hero p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #647064;
}

.fv-hero span {
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: #2a6931;
  font-size: 12px;
  font-weight: 800;
}

.fv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0 16px 20px;
}

.fv-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(25, 49, 28, 0.06);
}

.fv-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f4f7ef;
}

.fv-card-body {
  padding: 14px;
}

.fv-tag {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #edf7ee;
  color: #2a6931;
  font-size: 11px;
  font-weight: 700;
}

.fv-card-body h3 {
  margin: 10px 0 6px;
  font-size: 14px;
  color: #111;
}

.fv-card-body p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #7a837a;
  min-height: 38px;
}

.fv-card-body strong {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  color: #2a6931;
}

body {
  background: #f5f7f1;
}
