/*
Theme Name: PGH LGBTQ Charities
Theme URI: https://pghlgbtq.org
Author: Designed for Pittsburgh LGBTQ Charities
Author URI: https://pghlgbtq.org
Description: A warm, intersectional theme for Pittsburgh LGBTQ Charities — built around the progress pride flag, Pittsburgh black and gold restraint, and a people-forward layout for community programs. Custom homepage with editable hero, program sections, and blog feed.
Version: 1.6
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pgh-charities
Tags: nonprofit, custom-menu, custom-logo, featured-images, blog, two-columns, full-width-template
*/

/* ============================================
   PGH LGBTQ Charities Theme — Stylesheet
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 20px;
  line-height: 1.65;
  background: #f5f2ec;
  color: #1a1a1a;
}

a { color: #2d6a2d; }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; }

/* ── TOPBAR ── */
.topbar {
  background: #ede8de;
  border-bottom: 1px solid #ddd6c8;
  padding: 8px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left { font-size: 17px; color: #3a3a3a; }
.topbar-right { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar-right a { font-size: 17px; color: #2d6a2d; text-decoration: none; font-weight: 500; }
.topbar-right a:hover { color: #1a4d1a; text-decoration: underline; }

/* ── HEADER ── */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e8e4dc;
  padding: 24px 32px 0;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.site-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
}
.site-branding .custom-logo,
.site-branding img.site-logo {
  width: 400px;
  max-width: 90vw;
  height: auto;
  object-fit: contain;
}
.site-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  text-decoration: none;
}
.site-description {
  font-size: 17px;
  color: #666;
  letter-spacing: .5px;
  text-align: center;
  margin-top: 4px;
}

/* ── NAV ── */
.main-navigation {
  border-top: 1px solid #eee;
  padding: 10px 0;
}
.main-navigation ul {
  display: flex;
  gap: 2px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
.main-navigation li { position: relative; }
.main-navigation a {
  color: #333;
  font-size: 17px;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  white-space: nowrap;
  display: block;
  transition: background .15s;
}
.main-navigation a:hover { background: #f5f2ec; }
/* Sub-menus */
.main-navigation ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e8e4dc;
  border-radius: 6px;
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  flex-direction: column;
  min-width: 200px;
  padding: 6px;
  z-index: 200;
}
.main-navigation li:hover > ul { display: flex; }
.main-navigation ul ul a { font-size: 16px; }
/* Highlighted menu items via CSS classes added in menu admin */
.main-navigation .menu-item-volunteer a {
  border: 1.5px solid #2d6a2d;
  color: #2d6a2d;
  font-weight: 700;
}
.main-navigation .menu-item-volunteer a:hover { background: #f0f7f0; }
.main-navigation .menu-item-donate a {
  background: #2d6a2d;
  color: #fff;
  font-weight: 700;
}
.main-navigation .menu-item-donate a:hover { background: #3a8a3a; }

/* ── PRIDE BARS ── */
.progress-bar {
  height: 6px;
  background: linear-gradient(to right,
    #000 0%,#000 9%, #613915 9%,#613915 18%,
    #ff0000 18%,#ff0000 27%, #ff8c00 27%,#ff8c00 36%,
    #ffed00 36%,#ffed00 45%, #008026 45%,#008026 54%,
    #004dff 54%,#004dff 63%, #750787 63%,#750787 72%,
    #74d7ee 72%,#74d7ee 81%, #ffafc8 81%,#ffafc8 90%, #fff 90%);
}
.chevron-bar {
  height: 10px;
  background: linear-gradient(to right,
    #000,#613915,#74d7ee,#ffafc8,#fff,#ffafc8,#74d7ee,#613915,#000);
}

/* ── HERO ── */
.hero,
.hero-slide {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #e8e3d8;
  min-height: 380px;
}

/* Slideshow */
.hero-slideshow { position: relative; }
.hero-slide { display: none; }
.hero-slide.is-active { display: grid; }
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.18);
  cursor: pointer;
  padding: 0;
  transition: background .2s;
}
.hero-dot:hover { background: rgba(0,0,0,.35); }
.hero-dot.is-active { background: #2d6a2d; }

.hero-left {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 14px;
}
.hero-title {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-text {
  font-size: 19px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 28px;
}
.hero-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-right {
  background: #f5f2ec;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.hero-right img { border-radius: 10px; width: 100%; object-fit: cover; }
.hero-slideshow-placeholder {
  width: 100%;
  background: #e0dbd0;
  border-radius: 10px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 17px;
  text-align: center;
  border: 1.5px dashed #ccc;
  padding: 24px;
}

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 11px 22px; border-radius: 5px; font-size: 18px; font-weight: 700; text-decoration: none; transition: all .2s; }
.btn-dark { background: #1a1a1a; color: #fff; }
.btn-dark:hover { background: #333; }
.btn-green { background: #2d6a2d; color: #fff; }
.btn-green:hover { background: #3a8a3a; }
.btn-outline { border: 1.5px solid #bbb; color: #444; }
.btn-outline:hover { border-color: #666; }
.btn-white { background: #fff; color: #2d6a2d; }
.btn-white:hover { background: #f0f7f0; }
.btn-cta { background: #2d6a2d; color: #fff; }
.btn-cta:hover { background: #3a8a3a; }

/* ── SECTIONS ── */
.section { padding: 56px 32px; }
.bg-white { background: #fff; }
.bg-cream { background: #f5f2ec; }
.bg-dark { background: #1a1a1a; }
.section-label {
  font-size: 14px;
  color: #aaa;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.section-title.light { color: #fff; }
.section-sub {
  font-size: 19px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}

/* ── PROGRAM CARDS ── */
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.program-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
.program-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e1d8;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.program-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.program-card-top { height: 6px; }
.program-card-body { padding: 20px; }
.program-card-cat { font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; color: #bbb; margin-bottom: 6px; }
.program-card-name { font-size: 20px; font-weight: 700; color: #1a1a1a; margin-bottom: 7px; }
.program-card-desc { font-size: 18px; color: #666; line-height: 1.65; margin-bottom: 14px; }
.program-card-link { font-size: 17px; color: #2d6a2d; font-weight: 700; text-decoration: none; }
.program-card-link:hover { text-decoration: underline; }

/* ── EXPLORE LINKS (compact program row) ── */
.explore-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.explore-link {
  display: block;
  background: #fff;
  border: 1px solid #e5e1d8;
  border-left: 4px solid #2d6a2d;
  border-radius: 8px;
  padding: 20px 22px;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
}
.explore-link:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); transform: translateY(-2px); }
.explore-link-title {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.explore-link-desc {
  display: block;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}
.explore-link-arrow {
  display: inline-block;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #2d6a2d;
}

/* ── INTERSECTIONALITY / MAYPOLE ── */
.intersect { background: #1a1a1a; padding: 56px 32px; }
.intersect-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.intersect p { color: #888; font-size: 19px; line-height: 1.75; margin-top: 14px; }
.intersect .pull {
  color: #ccc;
  font-style: italic;
  font-size: 20px;
  margin-top: 18px;
  border-left: 3px solid #444;
  padding-left: 18px;
}
.maypole-wrap { display: flex; flex-direction: column; align-items: center; }
.maypole-pole { width: 8px; height: 130px; background: linear-gradient(to bottom,#666,#444); border-radius: 4px; }
.maypole-ribbons { display: flex; gap: 5px; justify-content: center; margin-top: -10px; }
.ribbon { width: 5px; border-radius: 3px; transform-origin: top center; }
.ribbon.r1 { height: 90px; background: #ff0000; transform: rotate(-20deg); }
.ribbon.r2 { height: 100px; background: #ff8c00; transform: rotate(-12deg); }
.ribbon.r3 { height: 95px; background: #ffed00; transform: rotate(-4deg); }
.ribbon.r4 { height: 100px; background: #008026; transform: rotate(4deg); }
.ribbon.r5 { height: 90px; background: #004dff; transform: rotate(12deg); }
.ribbon.r6 { height: 85px; background: #750787; transform: rotate(20deg); }
.ribbon.r7 { height: 95px; background: #74d7ee; transform: rotate(-28deg); }
.ribbon.r8 { height: 88px; background: #ffafc8; transform: rotate(28deg); }
.maypole-label { font-size: 16px; color: #555; margin-top: 20px; text-align: center; font-style: italic; line-height: 1.6; }

/* ── VOLUNTEER BAND ── */
.vol-band {
  background: #2d6a2d;
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.vol-band h3 { font-size: 26px; font-weight: 700; color: #fff; }
.vol-band p { font-size: 18px; color: rgba(255,255,255,.75); margin-top: 5px; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e1d8;
  overflow: hidden;
  transition: box-shadow .2s;
}
.blog-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.blog-card-img { height: 160px; overflow: hidden; background: #e5e0d5; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-noimg { height: 160px; background: #e5e0d5; display: flex; align-items: center; justify-content: center; color: #bbb; font-size: 16px; }
.blog-card-body { padding: 18px; }
.blog-card-tag { font-size: 14px; color: #888; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.blog-card-title { font-size: 19px; font-weight: 700; color: #1a1a1a; line-height: 1.4; margin-bottom: 6px; }
.blog-card-title a { color: #1a1a1a; text-decoration: none; }
.blog-card-title a:hover { color: #2d6a2d; }
.blog-card-date { font-size: 15px; color: #bbb; }

/* ── DONATE CTA ── */
.cta-strip {
  background: #f0ece2;
  border-top: 4px solid #2d6a2d;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-strip h3 { font-size: 26px; font-weight: 700; color: #1a1a1a; }
.cta-strip p { font-size: 18px; color: #555; margin-top: 5px; }

/* ── CONTENT (pages/posts) ── */
.content-area { max-width: 800px; margin: 0 auto; padding: 56px 32px; }
.content-area h1, .content-area h2, .content-area h3 { margin: 1.2em 0 .5em; color: #1a1a1a; }
.content-area p { margin-bottom: 1em; }
.entry-title { font-size: 36px; font-weight: 700; margin-bottom: .3em; }
.entry-meta { font-size: 17px; color: #999; margin-bottom: 1.5em; }
.page-hero { background: #ede8de; border-bottom: 4px solid #2d6a2d; padding: 48px 32px; text-align: center; }
.page-hero h1 { color: #1a1a1a; font-size: 36px; }

/* ── FOOTER ── */
.site-footer { background: #ede8de; border-top: 4px solid #2d6a2d; padding: 48px 32px 20px; }
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer-brand-name { color: #1a1a1a; font-weight: 700; font-size: 21px; margin-bottom: 10px; }
.footer-brand p { font-size: 18px; color: #3a3a3a; line-height: 1.7; }
.footer-contact { margin-top: 14px; }
.footer-contact a { display: block; font-size: 18px; color: #2d6a2d; text-decoration: none; margin-bottom: 6px; font-weight: 500; }
.footer-contact a:hover { color: #1a4d1a; text-decoration: underline; }
.footer-widget-area h4,
.footer-col h4 { font-size: 15px; color: #555; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 18px; color: #2d6a2d; text-decoration: none; margin-bottom: 8px; }
.footer-col a:hover { color: #1a4d1a; text-decoration: underline; }
.footer-widget-area ul { list-style: none; }
.footer-widget-area a { color: #2d6a2d; text-decoration: none; font-size: 18px; }
.footer-widget-area a:hover { color: #1a4d1a; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid #d8d1c2;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 16px; color: #555; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero,
  .hero-slide { grid-template-columns: 1fr; }
  .program-grid,
  .program-grid.cols-2 { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .intersect-inner { grid-template-columns: 1fr; }
  .explore-links { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .site-branding .custom-logo,
  .site-branding img.site-logo { width: 280px; }
}
@media (max-width: 560px) {
  .footer-cols { grid-template-columns: 1fr; }
  .section { padding: 40px 20px; }
  .hero-left { padding: 40px 24px; }
  .topbar { justify-content: center; }
}

/* WordPress core required classes */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 17px; color: #888; text-align: center; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute;
}
.sticky, .gallery-caption, .bypostauthor { display: block; }

/* ============ SUE'S LAYOUT — v1.6 ============ */

/* TOP ROW: 3 CTA boxes + blog feed */
.top-row-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  align-items: stretch;
}
.cta-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.cta-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1px solid #e0d9c8;
  border-top: 4px solid #c9a94a;
  border-radius: 8px;
  padding: 22px 16px;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
  min-height: 150px;
}
.cta-box:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.cta-box-donate { border-top-color: #2d6a2d; }
.cta-box-volunteer { border-top-color: #1a4d99; }
.cta-box-title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.cta-box-desc {
  display: block;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
.top-blog {
  background: #fff;
  border: 1px solid #e0d9c8;
  border-radius: 8px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
}
.top-blog-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.top-blog-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.top-blog-item {
  display: block;
  padding: 12px 14px;
  border-left: 3px solid #c9a94a;
  background: #faf8f3;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.top-blog-item:hover { background: #f3efe4; border-left-color: #2d6a2d; }
.top-blog-tag {
  display: block;
  font-size: 11px;
  color: #2d6a2d;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 700;
}
.top-blog-item-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 4px;
}
.top-blog-date {
  display: block;
  font-size: 12px;
  color: #888;
}
.top-blog-more {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #2d6a2d;
  text-decoration: none;
  align-self: flex-start;
}
.top-blog-more:hover { text-decoration: underline; }

/* PANTRY FEATURE */
.pantry-feature .container { display: flex; justify-content: center; }
.pantry-card {
  max-width: 760px;
  text-align: center;
  background: #fff;
  border: 1px solid #e5e1d8;
  border-top: 6px solid;
  border-image: linear-gradient(to right, #ff0000, #ff8c00, #ffed00, #008026, #004dff, #750787) 1;
  border-radius: 8px;
  padding: 40px 40px;
}
.pantry-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
  line-height: 1.25;
}
.pantry-desc {
  font-size: 17px;
  color: #444;
  line-height: 1.65;
  margin-bottom: 18px;
}
.pantry-cta {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #2d6a2d;
  text-decoration: none;
  padding: 8px 18px;
  border: 2px solid #2d6a2d;
  border-radius: 5px;
  margin-bottom: 28px;
  transition: background .2s;
}
.pantry-cta:hover { background: #f0f7f0; }
.pantry-sublinks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 540px;
  margin: 0 auto;
}
.pantry-sublink {
  display: block;
  padding: 12px 14px;
  background: #faf8f3;
  border: 1px solid #e5e1d8;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #2d6a2d;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.pantry-sublink:hover { background: #f0f7f0; border-color: #2d6a2d; }

/* SOCIAL ROW */
.social-row .social-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #2d6a2d;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 8px;
  transition: background .2s, transform .2s;
}
.social-icon:hover {
  background: #f0f7f0;
  transform: translateY(-2px);
  color: #1a4d1a;
}
.social-label { font-size: 13px; font-weight: 700; }

/* PROJECTS SLIDESHOW (bottom) */
.projects-slideshow {
  position: relative;
  background: #fff;
  border: 1px solid #e5e1d8;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 24px;
}
.project-slide { display: none; }
.project-slide.is-active { display: block; }
.project-slide img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.project-caption {
  background: #faf8f3;
  padding: 14px 20px;
  font-size: 14px;
  color: #333;
  text-align: center;
  font-style: italic;
}
.projects-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px 0 18px;
  background: #faf8f3;
}
.projects-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.18);
  cursor: pointer;
  padding: 0;
  transition: background .2s;
}
.projects-dot.is-active { background: #2d6a2d; }
.projects-placeholder {
  margin-top: 20px;
  padding: 40px 24px;
  background: #faf8f3;
  border: 1.5px dashed #c9c2b0;
  border-radius: 8px;
  text-align: center;
  color: #888;
  font-size: 15px;
}

/* RESPONSIVE — Sue's layout */
@media (max-width: 1000px) {
  .top-row-grid { grid-template-columns: 1fr; }
  .social-row .social-inner { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 700px) {
  .cta-boxes { grid-template-columns: 1fr; }
  .pantry-sublinks { grid-template-columns: 1fr; }
  .pantry-card { padding: 28px 22px; }
}
