/* Feature scrapbook — pinned note cards with washi tape, benefit tags & info chips */

.feat-board {
  /* same warm radial as How It Works (.how-polaroid-bg) */
  background: radial-gradient(circle at 30% 30%, #fff8e7 0%, #fafbfa 70%);
}

.feat-note {
  position: relative;
  border-radius: 5px;
  padding: 1.4rem 1.2rem 1.25rem;
  /* same soft layered shadow as How It Works (.how-polaroid) */
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 12px 28px -8px rgba(17, 24, 39, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.feat-note:hover {
  transform: rotate(0deg) translateY(-4px) !important;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.08),
    0 20px 40px -10px rgba(17, 24, 39, 0.2);
  z-index: 5;
}
/* white cards (same as How It Works) + tilt */
.feat-note { background: #ffffff; }
.feat-note:nth-child(1) { transform: rotate(-1.6deg); }
.feat-note:nth-child(2) { transform: rotate(1.2deg); }
.feat-note:nth-child(3) { transform: rotate(-0.9deg); }
.feat-note:nth-child(4) { transform: rotate(1.5deg); }
.feat-note:nth-child(5) { transform: rotate(-1.3deg); }
.feat-note:nth-child(6) { transform: rotate(1deg); }

/* green washi tape pin */
.feat-washi {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 78px;
  height: 23px;
  transform: translateX(-50%) rotate(-3deg);
  background: repeating-linear-gradient(
    45deg,
    rgba(207, 245, 218, 0.85) 0 7px,
    rgba(180, 235, 200, 0.85) 7px 14px
  );
  border: 1px dashed rgba(52, 199, 89, 0.45);
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
/* washi tape — varied colour + tilt per card, using the page's existing
   accent palette (green eyebrow + amber/orange/coral from the Problem timeline) */
.feat-note:nth-child(2) .feat-washi { /* amber — #FDE68A / #FCD34D */
  background: repeating-linear-gradient(45deg, #fde68a 0 7px, #fcd34d 7px 14px);
  border-color: rgba(180, 121, 31, 0.45);
  transform: translateX(-50%) rotate(3deg);
}
.feat-note:nth-child(3) .feat-washi { /* orange — #FDBA74 / #FB923C */
  background: repeating-linear-gradient(45deg, #fdba74 0 7px, #fb923c 7px 14px);
  border-color: rgba(154, 52, 18, 0.4);
  transform: translateX(-50%) rotate(-5deg);
}
.feat-note:nth-child(4) .feat-washi { /* coral — #FCA5A5 / #FECACA */
  background: repeating-linear-gradient(45deg, #fca5a5 0 7px, #fecaca 7px 14px);
  border-color: rgba(153, 27, 27, 0.35);
  transform: translateX(-50%) rotate(2deg);
}
.feat-note:nth-child(5) .feat-washi { /* green (lighter) — #CFF5DA / #86EFAC */
  background: repeating-linear-gradient(45deg, #cff5da 0 7px, #86efac 7px 14px);
  border-color: rgba(52, 199, 89, 0.45);
  transform: translateX(-50%) rotate(-2deg);
}
.feat-note:nth-child(6) .feat-washi { /* honey amber — #FEF3C7 / #FDE68A */
  background: repeating-linear-gradient(45deg, #fef3c7 0 7px, #fde68a 7px 14px);
  border-color: rgba(180, 121, 31, 0.4);
  transform: translateX(-50%) rotate(4deg);
}

/* handwritten yellow benefit tag */
.feat-tag {
  position: absolute;
  top: 12px;
  right: -7px;
  transform: rotate(5deg);
  background: #ffe680;
  padding: 1px 10px;
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  color: #92400e;
  border-radius: 2px;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.feat-chip {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(52, 199, 89, 0.15);
  color: #24a94b;
  flex-shrink: 0;
}

/* info chip / data pill */
.feat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 11px;
  line-height: 1;
  /* same green token as the eyebrow badge: bg #CFF5DA/30, border #34C759/25 */
  background: rgba(207, 245, 218, 0.35);
  border: 1px solid rgba(52, 199, 89, 0.25);
  color: #157a36;
  border-radius: 99px;
  padding: 0.28rem 0.55rem;
  font-weight: 600;
}

/* highlighted stat — amber accent to stand apart from the green data pills */
.feat-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 11.5px;
  font-weight: 700;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid rgba(252, 211, 77, 0.6);
  border-radius: 99px;
  padding: 0.3rem 0.6rem;
}

/* mini suggestion row */
.feat-sugg {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid rgba(52, 199, 89, 0.18);
  border-radius: 0.6rem;
  padding: 0.4rem 0.55rem;
}
