/* ================================================================
   GLENSHIEL NEWSFEED — plugin stylesheet
   Built from glenshiel-newsfeed-page.html (.gn-) and
   glenshiel-newsfeed-post.html (.gp-). Edit those, then paste the
   <style> blocks back in here.
   ================================================================ */

/* ================================================================
   NEWSFEED — scoped to .gn-page
   ================================================================ */
.gn-page {
  --brown:     #6b4a35;
  --brown-dk:  #54371f;
  --bronze:    #8a5a37;
  --deep:      #54402e;
  --tan:       #b99a77;
  --stone:     #d4c8b5;
  --sage:      #4c826f;
  --coral:     #f48986;
  --coral-dk:  #e0716e;
  --yellow:    #f8dc90;
  --sky:       #a4d9ff;
  --band:      #efe8dc;
  --cream:     #f9f6f0;
  --card:      #ffffff;
  --ink:       #2a2a2a;
  --muted:     #5b5651;
  --line:      #e8e1d5;
  --line-2:    #d9cfc2;

  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  text-align: left;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.gn-page { --gn-header-h: 0px; padding-top: var(--gn-header-h); }
.gn-page *, .gn-page *::before, .gn-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
.gn-page img { max-width: 100%; height: auto; }
.gn-page ul, .gn-page ol { list-style: none; }
.gn-page a { text-decoration: none; color: inherit; }
.gn-page input, .gn-page button { font-family: inherit; -webkit-appearance: none; appearance: none; border-radius: 0; }

/* ---- type ---- */
.gn-eyebrow {
  font-weight: 700; font-size: 12px; letter-spacing: .35em;
  text-transform: uppercase; margin: 0 0 16px; color: var(--bronze);
}
.gn-page .gn-heading {
  font-family: 'Libre Baskerville', Georgia, serif !important;
  font-weight: 400 !important;
  line-height: 1.14; letter-spacing: -0.01em; margin: 0; color: var(--deep);
}
.gn-page .gn-heading--xl { font-size: clamp(38px, 4.6vw, 62px); }
.gn-page .gn-heading--lg { font-size: clamp(28px, 3.2vw, 42px); }
.gn-page .gn-heading--md { font-size: clamp(21px, 2.1vw, 28px); }
.gn-body { font-size: 17px; line-height: 1.9; color: var(--muted); }
.gn-body--sm { font-size: 15px; line-height: 1.8; }
.gn-wrap { max-width: 1240px; margin: 0 auto; }

.gn-btn {
  display: inline-block; font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; text-decoration: none !important;
  padding: 17px 34px; border: 2px solid var(--brown);
  background: var(--brown); color: #fff !important; cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.gn-btn:hover { background: var(--brown-dk); border-color: var(--brown-dk); }
.gn-btn--ghost { background: transparent; color: var(--brown) !important; }
.gn-btn--ghost:hover { background: var(--brown); color: #fff !important; }

/* ================================================================
   1. HERO
   ================================================================ */
.gn-hero {
  position: relative; height: calc(44vh - var(--gn-header-h));
  min-height: 300px; max-height: 440px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
@supports (height: 44svh) { .gn-hero { height: calc(44svh - var(--gn-header-h)); } }
.gn-page .gn-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.gn-hero__tint { position: absolute; inset: 0; background: var(--deep); opacity: .50; }
.gn-hero__grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(40,30,22,.50) 0%, rgba(84,64,46,.14) 40%, rgba(48,36,26,.62) 100%);
}
.gn-hero__content {
  position: relative; z-index: 2; text-align: center; color: #fff;
  padding: 0 24px; max-width: 820px; text-shadow: 0 4px 30px rgba(30,22,16,.45);
}
.gn-hero .gn-heading { color: #fff; }
.gn-hero .gn-eyebrow { color: var(--stone); }
.gn-hero__sub { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.9); margin-top: 18px; }

/* ================================================================
   2. CATEGORY PILLS
   ================================================================ */
.gn-filter { background: #fff; border-bottom: 1px solid var(--line); padding: 24px 24px; }
.gn-pills {
  max-width: 1240px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.gn-pill {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; padding: 11px 18px; line-height: 1.2;
  border: 1px solid var(--line-2); background: #fff; color: var(--deep);
  transition: background .18s, border-color .18s, color .18s;
}
.gn-pill:hover { border-color: var(--brown); color: var(--brown); }
.gn-pill.is-active { background: var(--brown); border-color: var(--brown); color: #fff; }
.gn-pill:focus-visible { outline: 2px solid var(--brown); outline-offset: 2px; }

/* ================================================================
   3. LISTING
   ================================================================ */
.gn-list { padding: 48px 24px 90px; }
.gn-count {
  max-width: 1240px; margin: 0 auto 18px; font-size: 11.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--tan);
}
.gn-grid {
  max-width: 1240px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px;
}
.gn-card {
  background: var(--card); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.gn-card:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(60,45,32,.08); }
.gn-card__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--band); }
.gn-page .gn-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.gn-card:hover .gn-card__img { transform: scale(1.03); }
.gn-card__body { padding: 22px 24px 20px; display: flex; flex-direction: column; flex: 1; }

/* category chip — the one piece of colour on the card. Each category
   has its own tint so a fair post reads fair, an estate post estate. */
.gn-chip {
  align-self: flex-start; font-size: 9.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; padding: 5px 9px; line-height: 1.3;
  background: var(--band); color: var(--bronze); margin-bottom: 14px;
}
.gn-chip--fair    { background: #fdf0ef; color: var(--coral-dk); }
.gn-chip--vendors { background: #fdf0ef; color: var(--coral-dk); }
.gn-chip--food    { background: #fbf3d9; color: #8a6a12; }
.gn-chip--venue   { background: #e9f2ee; color: var(--sage); }
.gn-chip--estate  { background: var(--band); color: var(--bronze); }
.gn-chip--stjohn  { background: #eaf4fd; color: #2f6a94; }

.gn-page .gn-card__title {
  font-family: 'Libre Baskerville', Georgia, serif !important; font-weight: 400 !important;
  font-size: 21px; line-height: 1.3; color: var(--deep); margin: 0 0 12px;
}
.gn-card__title a:hover { color: var(--brown); }
.gn-card__excerpt { font-size: 15px; line-height: 1.75; color: var(--muted); }
.gn-card__foot {
  margin-top: auto; padding-top: 18px; margin-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.gn-card__date { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--tan); }
.gn-card__more {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brown); display: inline-flex; align-items: center; gap: 6px;
}
.gn-card__more svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform .2s; }
.gn-card__more:hover svg { transform: translateX(3px); }
.gn-card.is-hidden { display: none; }
.gn-empty { text-align: center; padding: 60px 24px; color: var(--muted); }
.gn-empty[hidden] { display: none; }

/* pagination */
.gn-pager {
  max-width: 1240px; margin: 52px auto 0;
  display: flex; justify-content: center; align-items: center; gap: 6px; flex-wrap: wrap;
}
.gn-pager .nav-links { display: contents; }
.gn-pager .page-numbers {
  font-size: 13.5px; font-weight: 500; min-width: 42px; padding: 11px 13px; text-align: center;
  border: 1px solid var(--line-2); background: #fff; color: var(--muted);
  transition: background .18s, border-color .18s, color .18s;
}
.gn-pager a.page-numbers:hover { border-color: var(--brown); color: var(--brown); }
.gn-pager .page-numbers.current { background: var(--brown); border-color: var(--brown); color: #fff; }
.gn-pager .page-numbers.dots { border: none; background: transparent; color: var(--tan); min-width: 0; }
.gn-pager .page-numbers.prev, .gn-pager .page-numbers.next { letter-spacing: .12em; text-transform: uppercase; font-size: 11px; font-weight: 700; }
.gn-pager:empty { display: none; }

/* ================================================================
   4. SUBSCRIBE STRIP
   ================================================================ */
.gn-subscribe { background: var(--band); border-top: 1px solid var(--line-2); padding: 46px 24px; }
.gn-subscribe__inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.gn-subscribe__text { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.gn-page .gn-subscribe__title {
  font-family: 'Libre Baskerville', Georgia, serif !important; font-weight: 400 !important;
  font-size: 24px; color: var(--deep); margin: 0;
}
.gn-subscribe__sub { font-size: 14px; color: var(--muted); }
.gn-subscribe__form { display: flex; gap: 10px; flex-wrap: wrap; }
.gn-subscribe__form input {
  font-size: 14px; padding: 14px 16px; border: 1px solid var(--line-2); background: #fff;
  color: var(--ink); min-width: 200px;
}
.gn-subscribe__form input:focus { outline: none; border-color: var(--brown); box-shadow: 0 0 0 3px rgba(107,74,53,.14); }
.gn-subscribe__form .gn-btn { padding: 14px 26px; }

/* ================================================================
   MOBILE
   ================================================================ */
@media (max-width: 1000px) {
  .gn-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .gn-hero { height: calc(38svh - var(--gn-header-h)); min-height: 250px; }
  .gn-filter { padding: 16px 18px; }
  .gn-pills { gap: 8px; }
  .gn-pill { font-size: 10.5px; padding: 10px 14px; }
  .gn-list { padding: 36px 22px 64px; }
  .gn-grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .gn-subscribe { padding: 40px 22px; }
  .gn-subscribe__inner { flex-direction: column; align-items: stretch; }
  .gn-subscribe__form { flex-direction: column; }
  .gn-subscribe__form input { min-width: 0; width: 100%; }
  .gn-subscribe__form .gn-btn { width: 100%; text-align: center; }
}
@media (max-width: 380px) {
  .gn-list, .gn-subscribe { padding-left: 18px; padding-right: 18px; }
}


/* ================================================================
   SINGLE POST — scoped to .gp-page
   ================================================================ */
.gp-page {
  --brown:     #6b4a35;
  --brown-dk:  #54371f;
  --bronze:    #8a5a37;
  --deep:      #54402e;
  --tan:       #b99a77;
  --stone:     #d4c8b5;
  --sage:      #4c826f;
  --coral:     #f48986;
  --coral-dk:  #e0716e;
  --band:      #efe8dc;
  --cream:     #f9f6f0;
  --card:      #ffffff;
  --ink:       #2a2a2a;
  --muted:     #5b5651;
  --line:      #e8e1d5;
  --line-2:    #d9cfc2;

  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  text-align: left;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.gp-page { --gp-header-h: 0px; padding-top: var(--gp-header-h); }
.gp-page *, .gp-page *::before, .gp-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
.gp-page img { max-width: 100%; height: auto; }
.gp-page ul, .gp-page ol { list-style: none; }
.gp-page a { text-decoration: none; color: inherit; }

.gp-page .gp-serif {
  font-family: 'Libre Baskerville', Georgia, serif !important;
  font-weight: 400 !important; color: var(--deep); margin: 0;
}
.gp-wrap { max-width: 1140px; margin: 0 auto; }

.gp-chip {
  display: inline-block; font-size: 9.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; padding: 5px 9px; line-height: 1.3;
  background: var(--band); color: var(--bronze);
}
.gp-chip--fair, .gp-chip--vendors { background: #fdf0ef; color: var(--coral-dk); }
.gp-chip--food   { background: #fbf3d9; color: #8a6a12; }
.gp-chip--venue  { background: #e9f2ee; color: var(--sage); }
.gp-chip--estate { background: var(--band); color: var(--bronze); }
.gp-chip--stjohn { background: #eaf4fd; color: #2f6a94; }

.gp-btn {
  display: inline-block; font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; text-decoration: none !important;
  padding: 16px 32px; border: 2px solid var(--brown);
  background: var(--brown); color: #fff !important; cursor: pointer;
  transition: background .2s, border-color .2s;
}
.gp-btn:hover { background: var(--brown-dk); border-color: var(--brown-dk); }

/* ================================================================
   1. IMAGE BAND
   ================================================================ */
.gp-hero { position: relative; height: calc(48vh - var(--gp-header-h)); min-height: 300px; max-height: 520px; overflow: hidden; }
@supports (height: 48svh) { .gp-hero { height: calc(48svh - var(--gp-header-h)); } }
.gp-page .gp-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.gp-hero__grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(40,30,22,.18) 0%, rgba(40,30,22,0) 50%); }

/* ================================================================
   2. TITLE BLOCK
   ================================================================ */
.gp-head { text-align: center; padding: 56px 24px 40px; }
.gp-head__inner { max-width: 820px; margin: 0 auto; }
.gp-page .gp-title { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.2; letter-spacing: -0.01em; }
.gp-meta {
  margin-top: 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 22px;
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--tan);
}
.gp-meta a:hover { color: var(--brown); }
.gp-head__rule { width: 54px; height: 2px; background: var(--tan); margin: 30px auto 0; }

/* ================================================================
   3. BODY + SIDEBAR
   ================================================================ */
.gp-main { padding: 20px 24px 80px; }
.gp-main__grid {
  max-width: 1140px; margin: 0 auto; display: grid;
  grid-template-columns: minmax(0, 1fr) 300px; gap: 72px; align-items: start;
}

/* reading column — styles apply to the_content() output */
.gp-content { max-width: 720px; font-size: 17px; line-height: 1.9; color: var(--muted); }
.gp-content > * + * { margin-top: 22px; }
.gp-content p.gp-lead { font-size: 20px; line-height: 1.75; color: var(--deep); font-family: 'Libre Baskerville', Georgia, serif; }
.gp-content h2 {
  font-family: 'Libre Baskerville', Georgia, serif !important; font-weight: 400 !important;
  font-size: 27px; line-height: 1.3; color: var(--deep); margin-top: 44px;
}
.gp-content h3 {
  font-family: 'Archivo', sans-serif !important; font-weight: 700 !important;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--bronze); margin-top: 36px;
}
.gp-content a { color: var(--brown); border-bottom: 1px solid var(--line-2); }
.gp-content a:hover { color: var(--bronze); border-color: var(--bronze); }
.gp-content strong { color: var(--ink); font-weight: 600; }
.gp-content ul, .gp-content ol { padding-left: 4px; }
.gp-content li { position: relative; padding-left: 24px; }
.gp-content li + li { margin-top: 8px; }
.gp-content ul li::before { content: ''; position: absolute; left: 4px; top: 13px; width: 7px; height: 7px; background: var(--tan); }
.gp-content ol { counter-reset: gp; }
.gp-content ol li::before { counter-increment: gp; content: counter(gp) '.'; position: absolute; left: 0; top: 0; font-weight: 700; color: var(--bronze); }
.gp-content figure { margin-top: 36px; }
.gp-content figure img { width: 100%; display: block; }
.gp-content figcaption { font-size: 13px; color: var(--tan); margin-top: 10px; font-style: italic; }
.gp-content blockquote {
  margin-top: 36px; padding: 6px 0 6px 26px; border-left: 3px solid var(--coral);
  font-family: 'Libre Baskerville', Georgia, serif; font-size: 21px; line-height: 1.6; color: var(--deep);
}
.gp-content blockquote cite { display: block; margin-top: 12px; font-family: 'Archivo', sans-serif; font-style: normal; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--tan); }

/* classic-editor output inside the_content() */
.gp-content img { height: auto; }
.gp-content img.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.gp-content img.alignleft { float: left; margin: 6px 24px 12px 0; max-width: 50%; }
.gp-content img.alignright { float: right; margin: 6px 0 12px 24px; max-width: 50%; }
.gp-content .wp-caption { max-width: 100%; margin-top: 36px; }
.gp-content .wp-caption img { width: 100%; display: block; }
.gp-content .wp-caption-text { font-size: 13px; color: var(--tan); margin-top: 10px; font-style: italic; }
.gp-content iframe { max-width: 100%; }
.gp-content table { width: 100%; border-collapse: collapse; font-size: 15px; }
.gp-content th, .gp-content td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.gp-content th { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--tan); }
.gp-content::after { content: ''; display: table; clear: both; }

/* fact box — for the details a reader actually wants */
.gp-facts { background: #fff; border: 1px solid var(--line); padding: 26px 28px; margin-top: 36px; }
.gp-facts__row { display: flex; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.gp-facts__row:last-child { border-bottom: none; }
.gp-facts__k { flex: 0 0 120px; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--tan); padding-top: 3px; }
.gp-facts__v { color: var(--ink); }

/* CTA inside the article */
.gp-cta {
  margin-top: 44px; background: var(--band); border-top: 1px solid var(--line-2);
  padding: 34px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.gp-page .gp-cta__title { font-size: 22px; }
.gp-cta__sub { font-size: 14px; color: var(--muted); margin-top: 6px; }

.gp-tags { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.gp-tags__label { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--tan); margin-right: 6px; }
.gp-tag { font-size: 12px; padding: 6px 12px; border: 1px solid var(--line-2); color: var(--muted); background: #fff; }
.gp-tag:hover { border-color: var(--brown); color: var(--brown); }

/* sidebar */
.gp-side { position: sticky; top: 24px; }
.gp-side__block + .gp-side__block { margin-top: 40px; }
.gp-side__title { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--bronze); padding-bottom: 12px; border-bottom: 2px solid var(--deep); margin-bottom: 4px; }
.gp-side__cats li { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; color: var(--ink); }
.gp-side__cats li:hover { color: var(--brown); }
.gp-side__cats li.is-current { color: var(--brown); font-weight: 600; }
.gp-side__cats span { font-size: 11px; color: var(--tan); letter-spacing: .08em; }
.gp-side__recent li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.gp-side__recent .gp-chip { margin-bottom: 8px; }
.gp-side__recent a.gp-side__link { display: block; font-family: 'Libre Baskerville', Georgia, serif; font-size: 15px; line-height: 1.5; color: var(--deep); }
.gp-side__recent a.gp-side__link:hover { color: var(--brown); }
.gp-side__recent time { display: block; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--tan); margin-top: 6px; }

/* ================================================================
   4. MORE IN CATEGORY
   ================================================================ */
.gp-more { background: #fff; border-top: 1px solid var(--line); padding: 64px 24px 80px; }
.gp-more__head { max-width: 1140px; margin: 0 auto 28px; display: flex; justify-content: space-between; align-items: baseline; gap: 20px; flex-wrap: wrap; }
.gp-page .gp-more__title { font-size: 26px; }
.gp-more__all { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--brown); }
.gp-more__grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.gp-mini { display: block; }
.gp-mini__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--band); margin-bottom: 14px; }
.gp-page .gp-mini__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.gp-mini:hover .gp-mini__img { transform: scale(1.03); }
.gp-mini .gp-chip { margin-bottom: 10px; }
.gp-page .gp-mini__title { font-family: 'Libre Baskerville', Georgia, serif !important; font-weight: 400 !important; font-size: 16.5px; line-height: 1.45; color: var(--deep); }
.gp-mini:hover .gp-mini__title { color: var(--brown); }
.gp-mini time { display: block; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--tan); margin-top: 8px; }

/* ================================================================
   MOBILE
   ================================================================ */
@media (max-width: 1000px) {
  .gp-main__grid { grid-template-columns: minmax(0, 1fr); gap: 56px; }
  .gp-side { position: static; }
  .gp-content { max-width: none; }
  .gp-more__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .gp-hero { height: calc(36svh - var(--gp-header-h)); min-height: 220px; }
  .gp-head { padding: 40px 22px 30px; }
  .gp-main { padding: 10px 22px 60px; }
  .gp-content { font-size: 16.5px; }
  .gp-content p.gp-lead { font-size: 18px; }
  .gp-facts__row { flex-direction: column; gap: 4px; }
  .gp-facts__k { flex: none; }
  .gp-cta { padding: 28px 24px; }
  .gp-cta .gp-btn { width: 100%; text-align: center; }
  .gp-more { padding: 52px 22px 64px; }
  .gp-more__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
}
@media (max-width: 380px) {
  .gp-head, .gp-main, .gp-more { padding-left: 18px; padding-right: 18px; }
}

/* wpautop can leave an empty paragraph around raw HTML blocks */
.gp-content p:empty { display: none; }
