/* ==========================================================================
   What's for Dinner Challenge — Frontend Styles
   ========================================================================== */

:root {
  --wfd-primary:       #e85d26;
  --wfd-primary-dark:  #c94e1e;
  --wfd-secondary:     #2c3e50;
  --wfd-accent:        #f9b234;
  --wfd-bg-light:      #fdf8f3;
  --wfd-bg-section:    #fff9f5;
  --wfd-border:        #e8ddd4;
  --wfd-text:          #2c3e50;
  --wfd-text-muted:    #6b7280;
  --wfd-radius:        12px;
  --wfd-shadow:        0 4px 20px rgba(0,0,0,0.08);
  --wfd-shadow-hover:  0 8px 30px rgba(0,0,0,0.14);
  --wfd-font:          inherit;
}

/* ==========================================================================
   Shared layout
   ========================================================================== */
.wfd-section {
  padding: 64px 20px;
}
.wfd-section--alt {
  background: var(--wfd-bg-light);
}
.wfd-container {
  max-width: 960px;
  margin: 0 auto;
}
.wfd-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--wfd-secondary);
  text-align: center;
  margin: 0 0 12px;
}
.wfd-section-subtitle {
  text-align: center;
  color: var(--wfd-text-muted);
  font-size: 19px;
  margin: 0 0 40px;
}

/* ==========================================================================
   Global body text — 19px across all plugin sections
   ========================================================================== */
.wfd-step__desc,
.wfd-prize-card__desc,
.wfd-faq-question,
.wfd-faq-answer,
.wfd-faq-answer p,
.wfd-ebook-callout__body p,
.wfd-leaderboard__title,
.wfd-form-row label,
.wfd-form-row input[type="text"],
.wfd-form-row input[type="email"],
.wfd-form-row input[type="url"] {
  font-size: 19px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.wfd-hero {
  background: linear-gradient(135deg, #e85d26 0%, #c94e1e 50%, #a33e17 100%);
  color: #fff;
  text-align: center;
  padding: 80px 24px 72px;
}
.wfd-hero__eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 6px 18px;
  margin-bottom: 20px;
}
.wfd-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
  color: #fff;
}
.wfd-hero__dates {
  font-size: 1.2rem;
  opacity: .9;
  margin: 0 0 36px;
}
.wfd-hero__cta {
  display: inline-block;
  background: var(--wfd-accent);
  color: #1a1a1a !important;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 99px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.wfd-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  color: #1a1a1a !important;
}

/* ==========================================================================
   Prizes
   ========================================================================== */
.wfd-prizes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.wfd-prize-card {
  background: #fff;
  border: 2px solid var(--wfd-border);
  border-radius: var(--wfd-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--wfd-shadow);
  transition: box-shadow .2s, transform .2s;
}
.wfd-prize-card:hover {
  box-shadow: var(--wfd-shadow-hover);
  transform: translateY(-3px);
}
.wfd-prize-card__icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
}
.wfd-prize-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wfd-secondary);
  margin: 0 0 8px;
}
.wfd-prize-card__desc {
  color: var(--wfd-text-muted);
  font-size: 19px;
  margin: 0;
}
.wfd-prize-card--featured {
  border-color: var(--wfd-primary);
  background: #fff9f5;
}
.wfd-prize-card--featured .wfd-prize-card__name {
  color: var(--wfd-primary);
}

/* ==========================================================================
   How To Participate
   ========================================================================== */
.wfd-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: steps;
}
.wfd-step {
  text-align: center;
  position: relative;
}
.wfd-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wfd-primary);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.wfd-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--wfd-secondary);
  margin: 0 0 8px;
}
.wfd-step__desc {
  color: var(--wfd-text-muted);
  font-size: .95rem;
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   Important Dates
   ========================================================================== */
.wfd-dates__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.wfd-date-item {
  background: #fff;
  border-left: 4px solid var(--wfd-primary);
  border-radius: 0 var(--wfd-radius) var(--wfd-radius) 0;
  padding: 20px 28px;
  min-width: 200px;
  box-shadow: var(--wfd-shadow);
}
.wfd-date-item__label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wfd-primary);
  margin: 0 0 4px;
}
.wfd-date-item__date {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wfd-secondary);
  margin: 0;
}

/* ==========================================================================
   Madison's Picks
   ========================================================================== */
.wfd-picks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.wfd-recipe-card {
  border-radius: var(--wfd-radius);
  overflow: hidden;
  box-shadow: var(--wfd-shadow);
  background: #fff;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.wfd-recipe-card:hover {
  box-shadow: var(--wfd-shadow-hover);
  transform: translateY(-4px);
  color: inherit;
  text-decoration: none;
}
.wfd-recipe-card__img-wrap {
  position: relative;
  width: 100%;
  padding-top: 66%;
  overflow: hidden;
  background: #f0e8e0;
}
.wfd-recipe-card__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.wfd-recipe-card:hover .wfd-recipe-card__img-wrap img {
  transform: scale(1.04);
}
.wfd-recipe-card__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.wfd-recipe-card__body {
  padding: 18px 20px;
}
.wfd-recipe-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--wfd-secondary);
  margin: 0 0 8px;
  line-height: 1.3;
}
.wfd-recipe-card__link {
  font-size: .85rem;
  color: var(--wfd-primary);
  font-weight: 600;
}

/* ==========================================================================
   Leaderboard
   ========================================================================== */
.wfd-leaderboard {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wfd-leaderboard__list {
  list-style: none !important;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 590px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wfd-leaderboard__item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: var(--wfd-radius);
  box-shadow: var(--wfd-shadow);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.wfd-leaderboard__item:hover {
  box-shadow: var(--wfd-shadow-hover);
  transform: translateX(3px);
}
.wfd-leaderboard__rank {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--wfd-primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}
/* Rank colors are applied inline via PHP cycling through 3 brand colors */
.wfd-leaderboard__card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  padding: 12px 16px 12px 0;
}
.wfd-leaderboard__thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.wfd-leaderboard__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--wfd-secondary);
  margin: 0 0 6px;
}
.wfd-leaderboard__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.wfd-stars { color: var(--wfd-accent); font-size: .95rem; }
.wfd-leaderboard__count {
  font-size: .85rem;
  font-weight: 600;
  color: var(--wfd-primary);
  background: #fff1eb;
  padding: 2px 10px;
  border-radius: 99px;
}
.wfd-leaderboard__empty {
  text-align: center;
  color: var(--wfd-text-muted);
  font-style: italic;
  padding: 32px 0;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.wfd-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wfd-faq-item {
  background: #fff;
  border: 1px solid var(--wfd-border);
  border-radius: var(--wfd-radius);
  overflow: hidden;
}
.wfd-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--wfd-secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .15s;
  font-family: var(--wfd-font);
}
.wfd-faq-question:hover {
  background: #fff5f0;
}
/* Active/open state — coral brand colour, never pink */
.wfd-faq-question.is-open {
  background: #fff5f0 !important;
  color: var(--wfd-primary);
}
/* Override any theme focus styles that might introduce pink */
.wfd-faq-question:focus,
.wfd-faq-question:focus-visible {
  outline: 2px solid var(--wfd-primary);
  outline-offset: -2px;
  background: #fff5f0;
}
.wfd-faq-question__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--wfd-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: transform .25s;
  font-style: normal;
}
.wfd-faq-question.is-open .wfd-faq-question__icon {
  transform: rotate(45deg);
  background: var(--wfd-primary-dark);
}
.wfd-faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--wfd-text-muted);
  font-size: .97rem;
  line-height: 1.7;
}
.wfd-faq-answer p { margin: 0; }

/* ==========================================================================
   Submission Form
   ========================================================================== */
.wfd-form-section {
  background: linear-gradient(135deg, #fff9f5 0%, #fdf3ea 100%);
}
.wfd-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--wfd-radius);
  box-shadow: var(--wfd-shadow);
  padding: 40px 40px;
}
@media (max-width: 600px) {
  .wfd-form-wrap { padding: 28px 20px; }
}
.wfd-form-row {
  margin-bottom: 22px;
}
.wfd-form-row label {
  display: block;
  font-weight: 700;
  color: var(--wfd-secondary);
  margin-bottom: 6px;
  font-size: .95rem;
}
.wfd-form-row .required { color: var(--wfd-primary); }
.wfd-form-row .optional { color: var(--wfd-text-muted); font-size: .85rem; font-weight: 400; }
.wfd-form-row input[type="text"],
.wfd-form-row input[type="email"],
.wfd-form-row input[type="url"] {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--wfd-border);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--wfd-text);
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
  font-family: var(--wfd-font);
}
.wfd-form-row input:focus {
  outline: none;
  border-color: var(--wfd-primary);
  box-shadow: 0 0 0 3px rgba(232, 93, 38, .15);
}
.wfd-form-row input[type="file"] {
  font-size: .9rem;
  color: var(--wfd-text-muted);
}
.wfd-form-row--checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  cursor: pointer;
  line-height: 1.5;
}
.wfd-form-row--checkbox input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--wfd-primary);
}
/* Last name initial — full width like other fields, centred text */
.wfd-input--initial {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.wfd-field-hint {
  font-size: .82rem;
  color: var(--wfd-text-muted);
  margin: 5px 0 0;
}

/* Buttons */
.wfd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 99px;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 36px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
  font-family: var(--wfd-font);
}
.wfd-btn--primary {
  background: var(--wfd-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,93,38,.35);
  width: 100%;
}
.wfd-btn--primary:hover {
  background: var(--wfd-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(232,93,38,.45);
}
.wfd-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

/* Notices */
.wfd-notice {
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .95rem;
  margin-bottom: 20px;
}
.wfd-notice--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

/* Confirmation */
.wfd-confirmation {
  text-align: center;
  padding: 32px 16px;
}
.wfd-confirmation__icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}
.wfd-confirmation h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--wfd-secondary);
  margin: 0 0 12px;
}
.wfd-confirmation p {
  color: var(--wfd-text-muted);
  line-height: 1.7;
  margin: 0 0 10px;
}

/* Spinner inside submit button */
.wfd-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: wfd-spin .7s linear infinite;
}
@keyframes wfd-spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   Dates inline (inside prizes section)
   ========================================================================== */
.wfd-dates__inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 36px;
  list-style: none !important; /* hard override for Kadence theme defaults */
  padding: 0;
}
/* Extra insurance against Kadence ul/li bullet injection */
.wfd-dates__inline li,
.wfd-dates__inline::before,
.wfd-dates__inline li::before,
.wfd-dates__inline li::marker {
  content: none !important;
  list-style: none !important;
}
.wfd-date-pill {
  background: #fff;
  border: 1.5px solid var(--wfd-border);
  border-radius: 99px;
  padding: 8px 20px;
  font-size: .9rem;
  color: var(--wfd-secondary);
  white-space: nowrap;
}
.wfd-date-pill strong {
  color: var(--wfd-primary);
}

/* Prize ebook card — highlighted differently from the raffle prizes */
.wfd-prize-card--ebook {
  border-color: var(--wfd-accent);
  background: #fffdf0;
  grid-column: 1 / -1; /* span full width on small grids */
}
@media (min-width: 700px) {
  .wfd-prize-card--ebook { grid-column: auto; }
}
.wfd-prize-card--ebook .wfd-prize-card__name {
  color: #8a6d00;
}

/* Ebook delivery note */
.wfd-ebook-note {
  margin: 32px auto 0;
  max-width: 720px;
  background: #fff9f5;
  border: 1px solid #f0d9cc;
  border-left: 4px solid var(--wfd-primary);
  border-radius: 0 8px 8px 0;
  padding: 14px 20px;
  font-size: .92rem;
  color: var(--wfd-text-muted);
  line-height: 1.6;
}
.wfd-ebook-note strong {
  color: var(--wfd-secondary);
}

/* ==========================================================================
   Prizes section — all text centred
   ========================================================================== */
.wfd-section--centered { text-align: center; }
.wfd-prizes__grid--two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   How To Participate — ebook callout block
   ========================================================================== */
.wfd-ebook-callout {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fffdf0;
  border: 1.5px solid var(--wfd-accent);
  border-radius: var(--wfd-radius);
  padding: 28px;
  margin-top: 40px;
  box-shadow: var(--wfd-shadow);
}
/* Row: image (50%) + body text side by side */
.wfd-ebook-callout__main {
  display: flex;
  align-items: center;
  gap: 24px;
}
.wfd-ebook-callout__img-wrap {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
}
.wfd-ebook-callout__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.wfd-ebook-callout__body {
  flex: 1;
  min-width: 0;
}
.wfd-ebook-callout__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--wfd-secondary);
  margin: 0 0 10px;
  line-height: 1.2;
}
.wfd-ebook-callout__body p {
  margin: 0;
  color: var(--wfd-text-muted);
  font-size: .97rem;
  line-height: 1.65;
}
/* Note sits full-width below the image+text row */
.wfd-ebook-callout__note {
  background: #fff9f5;
  border-left: 3px solid var(--wfd-primary);
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  font-size: .9rem !important;
  margin: 0;
  color: var(--wfd-text-muted);
  line-height: 1.6;
}
.wfd-ebook-callout__note strong { color: var(--wfd-secondary); }
@media (max-width: 600px) {
  .wfd-ebook-callout__main { flex-direction: column; }
  .wfd-ebook-callout__img-wrap { flex: none; width: 60%; }
}

/* ==========================================================================
   What You Can Win — Everyone Wins card (teal treatment)
   ========================================================================== */
.wfd-prize-card--bonus {
  border-color: #A8C9C4;
  background: #eef6f5;
}
.wfd-prize-card--bonus .wfd-prize-card__name {
  color: #2c6b63;
}

/* ==========================================================================
   Points Breakdown — two-column table
   ========================================================================== */
.wfd-points-table {
  background: #fff;
  border: 1.5px solid var(--wfd-border);
  border-radius: var(--wfd-radius);
  overflow: hidden;
  box-shadow: var(--wfd-shadow);
}
.wfd-points-table__row {
  display: grid;
  grid-template-columns: 1fr 160px;
  border-bottom: 1px solid var(--wfd-border);
}
.wfd-points-table__row:last-child { border-bottom: none; }
.wfd-points-table__row span {
  padding: 16px 24px;
  display: flex;
  align-items: center;
}
.wfd-points-table__row--header {
  background: var(--wfd-primary);
}
.wfd-points-table__row--header span {
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.wfd-points-table__row:not(.wfd-points-table__row--header) span:first-child {
  color: var(--wfd-secondary);
  font-size: 19px;
}
.wfd-points-table__row:not(.wfd-points-table__row--header) span:last-child {
  font-weight: 800;
  font-size: 19px;
  color: var(--wfd-primary);
  background: #fff1eb;
  border-left: 1px solid var(--wfd-border);
  white-space: nowrap;
  justify-content: center;
}

/* ==========================================================================
   Madison's Picks — header with circular photo
   ========================================================================== */
.wfd-picks__header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}
/* Prevent "Madison's Picks" from wrapping at mid-range widths */
.wfd-picks__header .wfd-section-title {
  white-space: nowrap;
}
.wfd-madison-photo {
  width: 168px;
  height: 168px;
  border: 2px solid var(--wfd-primary);
  border-radius: 100% !important;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

/* Mobile: stack photo + heading vertically, single-column card grid */
@media (max-width: 600px) {
  .wfd-picks__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  .wfd-picks__header .wfd-section-title,
  .wfd-picks__header .wfd-section-subtitle {
    text-align: center !important;
  }
  .wfd-picks__header .wfd-section-title {
    white-space: normal; /* allow wrap once stacked — plenty of room */
  }
  .wfd-madison-photo {
    width: 120px;
    height: 120px;
  }
  .wfd-picks__grid {
    grid-template-columns: 1fr;
  }
  .wfd-recipe-card__img-wrap {
    padding-top: 50%; /* slightly shorter image area on mobile */
  }
}

/* ==========================================================================
   Leaderboard preview badge
   ========================================================================== */
.wfd-leaderboard__preview-badge {
  display: block;
  width: fit-content;
  margin: 0 auto 24px;
  background: var(--wfd-accent);
  color: #1a1a1a;
  font-size: .85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 99px;
  text-align: center;
}

/* ==========================================================================
   Photo Gallery
   ========================================================================== */
.wfd-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .wfd-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .wfd-gallery__grid { grid-template-columns: 1fr; }
}
.wfd-gallery__item {
  background: #fff;
  border-radius: var(--wfd-radius);
  overflow: hidden;
  box-shadow: var(--wfd-shadow);
  transition: box-shadow .2s, transform .2s;
}
.wfd-gallery__item:hover {
  box-shadow: var(--wfd-shadow-hover);
  transform: translateY(-3px);
}
.wfd-gallery__img-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f0e8e0;
}
.wfd-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.wfd-gallery__item:hover .wfd-gallery__img { transform: scale(1.04); }
.wfd-gallery__meta {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wfd-gallery__name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--wfd-secondary);
}
.wfd-gallery__recipe {
  font-size: .82rem;
  color: var(--wfd-primary);
  text-decoration: none;
  font-weight: 600;
}
.wfd-gallery__recipe:hover { text-decoration: underline; }
.wfd-gallery__empty {
  text-align: center;
  color: var(--wfd-text-muted);
  font-style: italic;
  padding: 32px 0;
}

/* ==========================================================================
   FTC Compliance Note
   ========================================================================== */
.wfd-ftc-note {
  margin-top: 36px;
  padding: 16px 20px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: .82rem;
  color: var(--wfd-text-muted);
  line-height: 1.65;
}
.wfd-ftc-note__heading {
  font-size: .82rem;
  font-weight: 700;
  color: var(--wfd-secondary);
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.wfd-ftc-note p {
  margin: 0;
}

/* ==========================================================================
   Responsive tweaks
   ========================================================================== */
@media (max-width: 700px) {
  .wfd-section { padding: 48px 16px; }
  .wfd-leaderboard__card { flex-wrap: wrap; }
  .wfd-picks__grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}
