/* ---------------------------------------------------------------
   Golf Mates Club — components
   Built on tokens.css. Extracted progressively from the approved
   homepage so every page shares one source of truth.
   --------------------------------------------------------------- */

.gm-videos{background:var(--ink);color:var(--white);padding:48px 0 80px;min-height:60vh}
.gm-videos .wrap{max-width:var(--maxw);margin:0 auto;padding:0 20px}

/* Page head */
.gm-vhead{margin-bottom:28px}
.gm-vhead .eyebrow{color:var(--green);font-weight:700;letter-spacing:.14em;
  text-transform:uppercase;font-size:12px;margin:0 0 6px}
.gm-vhead h1{font-family:var(--font);font-size:clamp(30px,4.4vw,46px);
  line-height:1.05;margin:0 0 6px;font-weight:800}
.gm-vcount{color:var(--muted);margin:0;font-size:14px}

/* Filter chips */
.gm-filters{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 28px;padding-bottom:4px}
.gm-chip{display:inline-flex;align-items:center;gap:7px;padding:8px 14px;
  border-radius:999px;border:1px solid var(--line);background:var(--raised);
  color:var(--muted);font-size:13px;font-weight:600;text-decoration:none;
  transition:border-color .18s,color .18s,background .18s}
.gm-chip:hover{color:var(--white);border-color:var(--line-2);background:var(--raised-2)}
.gm-chip.is-on{background:var(--green);border-color:var(--green);color:#08140B}
.gm-chip-n{opacity:.65;font-size:11px}

/* Grid */
.gm-grid{display:grid;gap:22px;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr))}
.gm-card{background:var(--raised);border:1px solid var(--line);
  border-radius:var(--r);overflow:hidden;
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}
.gm-card:hover{transform:translateY(-3px);border-color:var(--line-2);
  box-shadow:0 12px 30px rgba(0,0,0,.45)}
.gm-card-link{display:block;color:inherit;text-decoration:none}

/* Thumbnail */
.gm-thumb{position:relative;aspect-ratio:16/9;overflow:hidden;background:var(--ink-2)}
.gm-thumb-img{width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .35s ease}
.gm-card:hover .gm-thumb-img{transform:scale(1.045)}
.gm-thumb-fallback{width:100%;height:100%;
  background:linear-gradient(135deg,var(--raised-2),var(--ink-2))}
.gm-play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  width:46px;height:46px;border-radius:50%;display:grid;place-items:center;
  background:rgba(11,11,10,.62);border:1px solid var(--line-2);color:var(--white);
  backdrop-filter:blur(3px);transition:background .2s,transform .2s}
.gm-card:hover .gm-play{background:var(--green);color:#08140B;
  transform:translate(-50%,-50%) scale(1.08)}
.gm-cat{position:absolute;left:10px;top:10px;padding:4px 9px;border-radius:999px;
  background:rgba(11,11,10,.78);border:1px solid var(--line-2);
  font-size:11px;font-weight:700;letter-spacing:.03em;color:var(--cream)}

/* Card body */
.gm-card-body{padding:14px 15px 16px}
.gm-card-title{font-size:15px;line-height:1.32;margin:0 0 4px;font-weight:700;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.gm-card-sub{margin:0 0 9px;font-size:12.5px;color:var(--muted);line-height:1.4;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.gm-card-meta{display:flex;align-items:center;justify-content:space-between;
  gap:10px;margin:0;font-size:11.5px;color:var(--muted-2)}
.gm-comments{display:inline-flex;align-items:center;gap:5px}

/* Pagination */
.gm-pager{display:flex;flex-wrap:wrap;gap:7px;justify-content:center;margin-top:40px}
.gm-pager .page-numbers{min-width:38px;height:38px;padding:0 11px;
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:10px;border:1px solid var(--line);background:var(--raised);
  color:var(--muted);text-decoration:none;font-size:13px;font-weight:600}
.gm-pager .page-numbers:hover{color:var(--white);border-color:var(--line-2)}
.gm-pager .page-numbers.current{background:var(--green);border-color:var(--green);color:#08140B}

.gm-empty{color:var(--muted);padding:40px 0;text-align:center}

@media (max-width:640px){
  .gm-grid{grid-template-columns:repeat(auto-fill,minmax(158px,1fr));gap:14px}
  .gm-card-body{padding:11px 12px 13px}
  .gm-card-title{font-size:13.5px}
  .gm-card-sub{display:none}
  .gm-videos{padding:32px 0 56px}
}

/* --- Single video ------------------------------------------------ */
.gm-single{background:var(--ink);color:var(--white);padding:28px 0 80px}
.gm-single .wrap{max-width:900px;margin:0 auto;padding:0 20px}
.gm-back{display:inline-block;margin-bottom:16px;color:var(--muted);
  text-decoration:none;font-size:13px;font-weight:600}
.gm-back:hover{color:var(--green)}
.gm-player{position:relative;aspect-ratio:16/9;border-radius:var(--r);
  overflow:hidden;background:#000;border:1px solid var(--line)}
.gm-player iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
.gm-player-fallback{width:100%;height:100%;object-fit:cover;display:block;
  background:linear-gradient(135deg,var(--raised-2),var(--ink-2))}
.gm-shead{padding:20px 0 4px}
.gm-scats{display:flex;gap:7px;flex-wrap:wrap;margin:0 0 10px}
.gm-chip.is-sm{padding:5px 11px;font-size:12px}
.gm-shead h1{font-size:clamp(21px,3vw,30px);line-height:1.2;margin:0 0 6px;font-weight:800}
.gm-ssub{color:var(--cream);margin:0 0 8px;font-size:15px;line-height:1.45}
.gm-smeta{color:var(--muted-2);font-size:12.5px;margin:0}
.gm-sbody{color:var(--muted);line-height:1.6;font-size:15px;
  padding:14px 0;border-top:1px solid var(--line);margin-top:16px}

/* --- Comments ----------------------------------------------------- */
.gm-comments-wrap{margin-top:34px;padding-top:26px;border-top:1px solid var(--line)}
.gm-c-title{font-size:18px;font-weight:800;margin:0 0 18px}

.gm-cform{background:var(--raised);border:1px solid var(--line);
  border-radius:var(--r);padding:16px;margin-bottom:26px}
.gm-cform .comment-reply-title{font-size:14px;font-weight:700;margin:0 0 10px;color:var(--white)}
.gm-cfield{margin:0 0 10px}
.gm-cform textarea{width:100%;background:var(--ink-2);color:var(--white);
  border:1px solid var(--line-2);border-radius:12px;padding:12px 13px;
  font-family:var(--font);font-size:14.5px;line-height:1.5;resize:vertical;min-height:76px}
.gm-cform textarea:focus{outline:none;border-color:var(--green);
  box-shadow:0 0 0 3px var(--green-glow)}
.gm-cform textarea::placeholder{color:var(--muted-2)}
.gm-btn{display:inline-flex;align-items:center;justify-content:center;
  padding:10px 18px;border-radius:999px;font-weight:700;font-size:14px;
  border:0;cursor:pointer;text-decoration:none;font-family:var(--font)}
.gm-btn-green{background:var(--green);color:#08140B}
.gm-btn-green:hover{background:var(--green-deep);color:#fff}
.gm-cform .form-submit{margin:0}
.gm-c-login{margin-bottom:24px}

.gm-thread{list-style:none;margin:0;padding:0}
.gm-thread-child{margin:12px 0 0;padding-left:16px;border-left:2px solid var(--line)}
.gm-comment{display:flex;gap:11px;padding:14px 0;border-top:1px solid var(--line)}
.gm-thread>.gm-comment:first-child{border-top:0}
.gm-thread-child .gm-comment{border-top:0;padding:10px 0 0}
.gm-c-avatar img{width:38px;height:38px;border-radius:50%;display:block;
  border:1px solid var(--line-2)}
.gm-c-main{flex:1;min-width:0}
.gm-c-head{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin:0 0 4px}
.gm-c-author{font-weight:700;font-size:13.5px;color:var(--white)}
.gm-c-badge{font-size:10px;font-weight:800;letter-spacing:.05em;text-transform:uppercase;
  background:var(--green);color:#08140B;padding:2px 7px;border-radius:999px}
.gm-c-date{font-size:11.5px;color:var(--muted-2)}
.gm-c-text{font-size:14.5px;line-height:1.55;color:var(--cream)}
.gm-c-text p{margin:0 0 8px}
.gm-c-text p:last-child{margin:0}
.gm-c-actions{margin:6px 0 0}
.gm-reply-link{font-size:12px;font-weight:700;color:var(--muted);text-decoration:none}
.gm-reply-link:hover{color:var(--green)}
.gm-comment.is-staff>.gm-c-main>.gm-c-text{border-left:2px solid var(--green);
  padding-left:10px}

@media (max-width:640px){
  .gm-single{padding:16px 0 56px}
  .gm-player{border-radius:12px}
  .gm-thread-child{padding-left:11px}
  .gm-c-avatar img{width:32px;height:32px}
}

/* --- Notice Board ------------------------------------------------- */
.gm-notices{background:var(--ink);color:var(--white);padding:48px 0 80px;min-height:60vh}
.gm-notices .wrap{max-width:var(--maxw);margin:0 auto;padding:0 20px}
.gm-noticelist{display:flex;flex-direction:column;gap:16px}
.gm-notice{display:grid;grid-template-columns:260px 1fr;gap:0;
  background:var(--raised);border:1px solid var(--line);border-radius:var(--r);
  overflow:hidden;transition:border-color .2s,transform .2s,box-shadow .2s}
.gm-notice:hover{border-color:var(--line-2);transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(0,0,0,.4)}
.gm-notice.no-img{grid-template-columns:1fr}
.gm-notice-img{display:block;position:relative;overflow:hidden;background:var(--ink-2)}
.gm-notice-img img{width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .35s ease}
.gm-notice:hover .gm-notice-img img{transform:scale(1.04)}
.gm-notice-body{padding:18px 20px}
.gm-notice-date{color:var(--green);font-size:11.5px;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;margin:0 0 6px}
.gm-notice-title{font-size:18px;line-height:1.25;margin:0 0 8px;font-weight:800}
.gm-notice-title a{color:var(--white);text-decoration:none}
.gm-notice-title a:hover{color:var(--green)}
.gm-notice-ex{color:var(--muted);font-size:14px;line-height:1.5;margin-bottom:12px}
.gm-notice-meta{display:flex;align-items:center;gap:16px;margin:0;
  font-size:12.5px;color:var(--muted-2);flex-wrap:wrap}
.gm-notice-more{color:var(--green);font-weight:700;text-decoration:none}
.gm-notice-more:hover{text-decoration:underline}
.gm-notice-hero{border-radius:var(--r);overflow:hidden;margin:14px 0 4px;
  border:1px solid var(--line)}
.gm-notice-hero img{width:100%;height:auto;display:block}
.gm-single-notice .gm-notice-content{border-top:0;font-size:15.5px;color:var(--cream)}
.gm-single-notice .gm-notice-content a{color:var(--green)}

@media (max-width:720px){
  .gm-notice{grid-template-columns:1fr}
  .gm-notice-img{aspect-ratio:16/9}
  .gm-notice-body{padding:14px 16px}
  .gm-notices{padding:32px 0 56px}
}

/* --- Club House Chat (bbPress) ------------------------------------ */
#bbpress-forums{background:transparent;color:var(--white);font-family:var(--font)}
.gm-forumwrap{background:var(--ink);color:var(--white);padding:44px 0 80px;min-height:60vh}
.gm-forumwrap .wrap{max-width:var(--maxw);margin:0 auto;padding:0 20px}

.gm-topics{display:flex;flex-direction:column;gap:10px;margin-bottom:26px}
.gm-topic{display:flex;align-items:center;gap:13px;background:var(--raised);
  border:1px solid var(--line);border-radius:14px;padding:13px 16px;
  transition:border-color .2s,transform .2s,box-shadow .2s}
.gm-topic:hover{border-color:var(--line-2);transform:translateY(-2px);
  box-shadow:0 10px 26px rgba(0,0,0,.4)}
.gm-topic.is-pinned{border-color:var(--gold)}
.gm-topic-avatar img{border-radius:50%;display:block;border:1px solid var(--line-2)}
.gm-topic-main{flex:1;min-width:0}
.gm-topic-title{font-size:16px;line-height:1.3;margin:0 0 3px;font-weight:700}
.gm-topic-title a{color:var(--white);text-decoration:none}
.gm-topic-title a:hover{color:var(--green)}
.gm-pin{color:var(--gold);margin-right:5px}
.gm-topic-meta{margin:0;font-size:12.5px;color:var(--muted-2);
  display:flex;gap:7px;flex-wrap:wrap;align-items:center}
.gm-topic-meta strong{color:var(--muted);font-weight:700}
.gm-dot{opacity:.5}
.gm-topic-count{flex:none;text-align:center;min-width:62px;padding:6px 8px;
  background:var(--ink-2);border:1px solid var(--line);border-radius:11px}
.gm-topic-n{display:block;font-size:17px;font-weight:800;color:var(--green);line-height:1.1}
.gm-topic-l{display:block;font-size:10.5px;color:var(--muted-2);
  text-transform:uppercase;letter-spacing:.05em}

/* Single topic */
.gm-topic-single{max-width:900px;margin:0 auto}
.gm-tshead{padding:6px 0 16px;border-bottom:1px solid var(--line);margin-bottom:18px}
.gm-tshead h1{font-size:clamp(21px,3vw,29px);line-height:1.2;margin:0 0 7px;font-weight:800}
.gm-topic-actions{display:flex;gap:9px;flex-wrap:wrap;margin-top:13px}
.gm-topic-actions a{display:inline-flex;align-items:center;gap:6px;
  padding:8px 15px;border-radius:999px;border:1px solid var(--line-2);
  background:var(--raised);color:var(--cream);font-size:13px;font-weight:700;
  text-decoration:none;transition:background .18s,border-color .18s,color .18s}
.gm-topic-actions a:hover{background:var(--green);border-color:var(--green);color:#08140B}
.gm-topic-actions a.is-subscribed,.gm-topic-actions a.is-favorite{
  background:var(--green);border-color:var(--green);color:#08140B}

.gm-replies{list-style:none;margin:0;padding:0}
.gm-reply{display:flex;gap:11px;padding:15px 0;border-top:1px solid var(--line)}
.gm-replies>.gm-reply:first-child{border-top:0}
.gm-reply .gm-c-text img{max-width:100%;height:auto;border-radius:10px}
.gm-reply.is-staff .gm-c-text{border-left:2px solid var(--green);padding-left:10px}

/* bbPress form, brought into the dark theme */
#bbpress-forums #new-post{background:var(--raised);border:1px solid var(--line);
  border-radius:var(--r);padding:16px;margin-top:24px}
#bbpress-forums #new-post fieldset{border:0;padding:0;margin:0}
#bbpress-forums legend{font-size:15px;font-weight:800;color:var(--white);padding:0 0 10px}
#bbpress-forums textarea,#bbpress-forums input[type=text]{width:100%;
  background:var(--ink-2);color:var(--white);border:1px solid var(--line-2);
  border-radius:12px;padding:11px 13px;font-family:var(--font);font-size:14.5px}
#bbpress-forums textarea:focus,#bbpress-forums input[type=text]:focus{
  outline:none;border-color:var(--green);box-shadow:0 0 0 3px var(--green-glow)}
#bbpress-forums button,#bbpress-forums input[type=submit]{
  background:var(--green);color:#08140B;border:0;border-radius:999px;
  padding:10px 20px;font-weight:800;font-size:14px;cursor:pointer;font-family:var(--font)}
#bbpress-forums button:hover,#bbpress-forums input[type=submit]:hover{background:var(--green-deep);color:#fff}
#bbpress-forums .bbp-template-notice{background:var(--raised-2);border:1px solid var(--line-2);
  border-radius:12px;padding:11px 14px;color:var(--cream);font-size:13.5px;margin:14px 0}
#bbpress-forums div.bbp-the-content-wrapper{background:transparent}
#bbpress-forums .quicktags-toolbar{background:var(--raised-2);border-color:var(--line-2)}
.bbp-pagination{display:flex;gap:7px;flex-wrap:wrap;margin-top:22px;
  justify-content:center;align-items:center}
.bbp-pagination .page-numbers{min-width:36px;height:36px;padding:0 10px;
  display:inline-flex;align-items:center;justify-content:center;border-radius:10px;
  border:1px solid var(--line);background:var(--raised);color:var(--muted);
  text-decoration:none;font-size:13px;font-weight:600}
.bbp-pagination .page-numbers.current{background:var(--green);border-color:var(--green);color:#08140B}
.bbp-pagination-count{color:var(--muted-2);font-size:12.5px;width:100%;text-align:center}

@media (max-width:640px){
  .gm-topic{padding:11px 13px;gap:10px}
  .gm-topic-title{font-size:14.5px}
  .gm-topic-count{min-width:54px}
  .gm-forumwrap{padding:28px 0 56px}
}

/* --- Trips, Partners, Shop ---------------------------------------- */
.gm-trips-page,.gm-partners-page,.gm-shop-page{background:var(--ink);color:var(--white);
  padding:48px 0 80px;min-height:60vh}
.gm-trips-page .wrap,.gm-partners-page .wrap,.gm-shop-page .wrap{
  max-width:var(--maxw);margin:0 auto;padding:0 20px}

.gm-triplist{display:grid;gap:20px;grid-template-columns:repeat(auto-fill,minmax(300px,1fr))}
.gm-trip-card{background:var(--raised);border:1px solid var(--line);
  border-radius:var(--r);overflow:hidden;transition:transform .2s,border-color .2s,box-shadow .2s}
.gm-trip-card:hover{transform:translateY(-3px);border-color:var(--line-2);
  box-shadow:0 12px 30px rgba(0,0,0,.45)}
.gm-trip-img{display:block;position:relative;aspect-ratio:16/9;overflow:hidden;background:var(--ink-2)}
.gm-trip-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s}
.gm-trip-card:hover .gm-trip-img img{transform:scale(1.045)}
.gm-trip-price{position:absolute;right:10px;bottom:10px;background:var(--green);
  color:#08140B;font-weight:800;font-size:13px;padding:5px 11px;border-radius:999px}
.gm-trip-body{padding:15px 17px 17px}
.gm-trip-body h2{font-size:16.5px;line-height:1.3;margin:0 0 6px;font-weight:800}
.gm-trip-body h2 a{color:var(--white);text-decoration:none}
.gm-trip-body h2 a:hover{color:var(--green)}
.gm-trip-meta{color:var(--cream);font-size:13px;margin:0 0 3px}
.gm-trip-date{color:var(--muted-2);font-size:12.5px;margin:0 0 10px}

.gm-partnergrid{display:grid;gap:16px;grid-template-columns:repeat(auto-fill,minmax(190px,1fr))}
.gm-partner{display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:12px;padding:24px 18px;background:var(--raised);border:1px solid var(--line);
  border-radius:var(--r);text-decoration:none;transition:border-color .2s,transform .2s,background .2s}
.gm-partner:hover{border-color:var(--green);transform:translateY(-2px);background:var(--raised-2)}
.gm-partner img{max-width:100%;height:64px;width:auto;object-fit:contain;display:block}
.gm-partner-name{color:var(--muted);font-size:13px;font-weight:700;text-align:center}
.gm-partner:hover .gm-partner-name{color:var(--white)}

@media (max-width:640px){
  .gm-triplist{grid-template-columns:1fr}
  .gm-partnergrid{grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:12px}
  .gm-partner{padding:18px 12px}
  .gm-partner img{height:48px}
  .gm-trips-page,.gm-partners-page,.gm-shop-page{padding:32px 0 56px}
}

/* --- Astra layout reset for our templates -------------------------
   Astra prints '.site-content .ast-container{display:flex}' inline, which
   makes our sections flex items. Reset it on pages we own, and let the dark
   background run the full width of the viewport rather than the content box. */
.gmc-dark .site-content .ast-container{display:block;padding-left:0;padding-right:0;max-width:100%}
.gmc-dark #content,.gmc-dark .site-content{background:var(--ink)}
.gmc-dark #content > .ast-container > article,
.gmc-dark .entry-content{margin:0;padding:0}

/* Astra sets its own heading colour, which renders our titles near-invisible
   on the dark background. Let headings inherit from our sections instead. */
.gmc-dark h1,.gmc-dark h2,.gmc-dark h3,.gmc-dark h4,.gmc-dark h5{color:inherit}
.gmc-dark .gm-vhead h1,.gmc-dark .gm-shead h1,.gmc-dark .gm-tshead h1{color:var(--white)}
.gmc-dark .gm-card-title,.gmc-dark .gm-notice-title a,.gmc-dark .gm-topic-title a,
.gmc-dark .gm-trip-body h2 a{color:var(--white)}
.gmc-dark .entry-title{display:none}

/* --- bbPress: forum index + wrapper ------------------------------- */
.gmc-dark #bbpress-forums{background:transparent;padding:44px 20px 80px;
  max-width:var(--maxw);margin:0 auto}
.gmc-dark #bbpress-forums a{color:var(--green)}
.gmc-dark .bbp-breadcrumb{color:var(--muted-2);font-size:12.5px;margin-bottom:16px}
.gmc-dark .bbp-breadcrumb a{color:var(--muted)}
.gmc-dark #bbpress-forums .bbp-forums,
.gmc-dark #bbpress-forums .bbp-topics{background:var(--raised);
  border:1px solid var(--line);border-radius:var(--r);overflow:hidden}
.gmc-dark #bbpress-forums li.bbp-header{background:var(--raised-2);
  color:var(--muted);font-size:12px;text-transform:uppercase;
  letter-spacing:.06em;font-weight:800;border-bottom:1px solid var(--line);padding:11px 16px}
.gmc-dark #bbpress-forums li.bbp-footer{display:none}
.gmc-dark #bbpress-forums li.bbp-body ul.forum,
.gmc-dark #bbpress-forums li.bbp-body ul.topic{padding:15px 16px;
  border-bottom:1px solid var(--line);color:var(--muted)}
.gmc-dark #bbpress-forums li.bbp-body ul.forum:last-child{border-bottom:0}
.gmc-dark .bbp-forum-title,.gmc-dark .bbp-forum-info a{font-size:16px;font-weight:800}
.gmc-dark .bbp-forum-content{color:var(--muted);font-size:13.5px}
.gmc-dark #bbpress-forums .bbp-forum-freshness a,
.gmc-dark #bbpress-forums .bbp-topic-freshness a{color:var(--muted)}
.gmc-dark #bbpress-forums div.bbp-search-form{margin-bottom:14px}
.gmc-dark #bbpress-forums input[type=submit]{background:var(--green);color:#08140B;
  border:0;border-radius:999px;padding:9px 18px;font-weight:800;cursor:pointer}
.gmc-dark .bbp-template-notice{background:var(--raised-2);border:1px solid var(--line-2);
  border-radius:12px;padding:12px 15px;color:var(--cream);font-size:13.5px}
.gmc-dark .bbp-template-notice a{color:var(--green)}

/* bbPress single topic/reply pages sit inside Astra's article wrapper */
.gmc-dark .gm-topic-single{padding:34px 20px 70px}
.gmc-dark .gm-forumwrap{background:var(--ink)}

/* --- Forum page ---------------------------------------------------- */
.gmc-dark .gm-forum-single{max-width:var(--maxw);margin:0 auto;padding:40px 20px 80px}
.gm-fhead{margin-bottom:24px}
.gm-fhead .eyebrow{color:var(--green);font-weight:700;letter-spacing:.14em;
  text-transform:uppercase;font-size:12px;margin:0 0 6px}
.gm-fhead h1{font-size:clamp(26px,4vw,40px);line-height:1.08;margin:0 0 8px;
  font-weight:800;color:var(--white)}
.gm-fmeta{margin:0;color:var(--muted-2);font-size:13.5px;display:flex;
  gap:8px;flex-wrap:wrap;align-items:center}
.gm-fcta{margin:16px 0 0}

/* Topic titles read as headings, not links */
.gmc-dark .gm-topic-title a{color:var(--white);text-decoration:none;font-weight:800}
.gmc-dark .gm-topic-title a:hover{color:var(--green);text-decoration:none}
.gmc-dark #bbpress-forums .gm-topic-title a{text-decoration:none}

/* Astra's single-post furniture has no place on a forum */
.gmc-dark .ast-article-single{background:transparent;border:0;padding:0;margin:0;box-shadow:none}
.gmc-dark .bbp-breadcrumb,
.gmc-dark .ast-single-post-order,
.gmc-dark .ast-post-nav,
.gmc-dark #bbpress-forums .entry-title,
.gmc-dark .ast-article-single > .entry-header{display:none}
.gmc-dark .site-content .entry-meta,
.gmc-dark .site-content .posted-by{display:none}

/* Pagination sits under the topics, once */
.gmc-dark .bbp-pagination{justify-content:center}
.gmc-dark .bbp-pagination .page-numbers{color:var(--muted)}
.gmc-dark .bbp-pagination .page-numbers.current,
.gmc-dark .bbp-pagination span.current{background:var(--green);border-color:var(--green);
  color:#08140B;font-weight:800}
.gmc-dark .bbp-pagination-count{color:var(--muted-2)}

/* --- Single golf trip ---------------------------------------------- */
.gm-trip-single{background:var(--ink);color:var(--white)}
.gm-trip-single .wrap{max-width:1000px;margin:0 auto;padding:0 20px}
.gm-trip-hero{background:var(--ink-2) center/cover no-repeat;padding:54px 0 40px;
  border-bottom:1px solid var(--line)}
.gm-trip-hero .gm-back{display:inline-block;margin-bottom:18px;color:var(--cream);
  text-decoration:none;font-size:13px;font-weight:700}
.gm-trip-hero .gm-back:hover{color:var(--green)}
.gm-trip-hero h1{font-size:clamp(28px,4.6vw,46px);line-height:1.06;margin:0 0 8px;
  font-weight:800;color:var(--white);max-width:18ch}
.gm-trip-loc{margin:0;color:var(--cream);font-size:15px;font-weight:600}

.gm-trip-body{padding:32px 20px 80px}
.gm-trip-facts{display:grid;gap:12px;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
  margin-bottom:22px}
.gm-fact{background:var(--raised);border:1px solid var(--line);border-radius:14px;
  padding:14px 16px}
.gm-fact-k{display:block;font-size:11px;letter-spacing:.12em;text-transform:uppercase;
  color:var(--muted-2);font-weight:800;margin-bottom:4px}
.gm-fact-v{display:block;color:var(--white);font-size:15px;font-weight:700;line-height:1.35}
.gm-fact-price{color:var(--green);font-size:22px}

.gm-trip-book{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin:0 0 30px}
.gm-trip-booknote{color:var(--muted-2);font-size:13px}

.gm-trip-cols{display:grid;gap:26px;grid-template-columns:1.6fr 1fr;align-items:start}
.gm-trip-block{margin-bottom:22px}
.gm-trip-block h2{font-size:17px;font-weight:800;margin:0 0 10px;color:var(--white)}
.gm-trip-card{background:var(--raised);border:1px solid var(--line);
  border-radius:var(--r);padding:18px 20px}
.gm-trip-copy{color:var(--cream);font-size:15px;line-height:1.62}
.gm-trip-copy p{margin:0 0 10px}
.gm-trip-copy p:last-child{margin:0}
.gm-trip-copy ul{margin:0 0 10px;padding-left:20px}
.gm-trip-copy li{margin-bottom:7px}
.gm-trip-copy a{color:var(--green)}
.gm-trip-copy img{max-width:100%;height:auto;border-radius:12px}
.gm-trip-copy strong{color:var(--white)}

@media (max-width:820px){
  .gm-trip-cols{grid-template-columns:1fr}
  .gm-trip-hero{padding:34px 0 28px}
  .gm-trip-body{padding:24px 20px 60px}
}

/* Hero: the 1px border and a gradient that stopped short of full opacity
   both showed as a light seam along the bottom of the photo. */
.gm-trip-single .gm-trip-hero{border-bottom:0;padding-bottom:54px}
.gm-trip-single .gm-trip-body{padding-top:44px}
@media (max-width:820px){
  .gm-trip-single .gm-trip-hero{padding-bottom:34px}
  .gm-trip-single .gm-trip-body{padding-top:30px}
}

/* Shop products are shot square (five of six are 1000x1000), so the 16:9
   card crop was cutting roughly 44% off the height. Match the source. */
.gm-shop-page .gm-thumb{aspect-ratio:1/1}
.gm-shop-page .gm-thumb-img{object-fit:cover;object-position:center}
.gm-shop-page .gm-grid{grid-template-columns:repeat(auto-fill,minmax(210px,1fr))}
@media (max-width:640px){
  .gm-shop-page .gm-grid{grid-template-columns:repeat(auto-fill,minmax(150px,1fr))}
}

/* Notice images range from 0.71 portrait to a 4.00 banner, so without a fixed
   ratio every card took the height of its own image. Pin the frame and crop. */
.gm-notice{grid-template-columns:280px 1fr;align-items:stretch}
.gm-notice-img{aspect-ratio:16/10;height:100%;min-height:100%}
.gm-notice-img img{width:100%;height:100%;object-fit:cover;object-position:center}
.gm-notice-body{display:flex;flex-direction:column;justify-content:center}
@media (max-width:720px){
  .gm-notice{grid-template-columns:1fr}
  .gm-notice-img{aspect-ratio:16/9;height:auto;min-height:0}
}

/* Notice heroes are promo graphics with text baked in and range from a 4:1
   banner to a 1240x1748 portrait poster. Cropping would cut the wording, so
   cap the height and fit the whole image inside a consistent frame. */
.gm-notice-hero{display:flex;align-items:center;justify-content:center;
  background:var(--ink-2);max-height:520px;padding:0}
.gm-notice-hero img{width:auto;height:auto;max-width:100%;max-height:520px;
  object-fit:contain;display:block;margin:0 auto}
@media (max-width:720px){
  .gm-notice-hero,.gm-notice-hero img{max-height:340px}
}

/* Partners: logos are supplied on white or transparent backgrounds, so a dark
   card hid the darker marks (Shot Scope was near-invisible). White cards,
   three across on desktop, stacked on mobile. */
.gm-partnergrid{grid-template-columns:repeat(3,1fr);gap:20px}
.gm-partner{background:#fff;border:1px solid rgba(0,0,0,.10);
  padding:30px 22px;min-height:180px;gap:16px}
.gm-partner:hover{background:#fff;border-color:var(--green);
  box-shadow:0 10px 26px rgba(0,0,0,.45)}
.gm-partner img{height:78px;max-width:82%;object-fit:contain}
.gm-partner-name{color:#1A1813;font-size:14px;font-weight:800}
.gm-partner:hover .gm-partner-name{color:#0B0B0A}
@media (max-width:900px){
  .gm-partnergrid{grid-template-columns:repeat(2,1fr);gap:16px}
}
@media (max-width:600px){
  .gm-partnergrid{grid-template-columns:1fr}
  .gm-partner{min-height:150px;padding:24px 18px}
  .gm-partner img{height:64px}
}

/* --- Feedback & Support -------------------------------------------
   The form is an Elementor Pro form with consent and reCAPTCHA wired up,
   so it is restyled in place rather than rebuilt. Elementor writes
   per-element rules, hence the targeted !important on colours.
   ------------------------------------------------------------------ */
.gmc-support .site-content .ast-container{max-width:820px;margin:0 auto;padding:48px 20px 80px}

/* Headings and intro copy were authored dark for a light page */
.gmc-support .elementor-widget-heading .elementor-heading-title{color:var(--white)!important;
  font-weight:800;letter-spacing:-.01em}
.gmc-support .elementor-widget-text-editor,
.gmc-support .elementor-widget-text-editor p{color:var(--muted)!important;
  font-size:15px;line-height:1.6}
.gmc-support .elementor-widget-text-editor a{color:var(--green)!important;font-weight:700}

/* The form sits in a card so it reads as one object */
.gmc-support .elementor-widget-form{background:var(--raised);border:1px solid var(--line);
  border-radius:var(--r);padding:26px 24px}

.gmc-support .elementor-field-group > label,
.gmc-support .elementor-field-label{color:var(--muted)!important;font-size:12.5px;
  font-weight:700;letter-spacing:.04em;text-transform:uppercase;margin-bottom:6px}

.gmc-support .elementor-field-textual,
.gmc-support input[type=text],.gmc-support input[type=email],
.gmc-support input[type=tel],.gmc-support textarea{
  background:var(--ink-2)!important;color:var(--white)!important;
  border:1px solid var(--line-2)!important;border-radius:12px!important;
  padding:12px 14px!important;font-family:var(--font)!important;font-size:15px!important;
  box-shadow:none!important}
.gmc-support .elementor-field-textual:focus,
.gmc-support textarea:focus{outline:none!important;border-color:var(--green)!important;
  box-shadow:0 0 0 3px var(--green-glow)!important}
.gmc-support .elementor-field-textual::placeholder,
.gmc-support textarea::placeholder{color:var(--muted-2)!important;opacity:1}
.gmc-support textarea{min-height:140px;resize:vertical}

/* Consent checkbox */
.gmc-support .elementor-field-type-acceptance .elementor-field-option label,
.gmc-support .elementor-field-subgroup label{color:var(--muted)!important;
  font-size:13.5px;text-transform:none;letter-spacing:0;font-weight:500;line-height:1.5}
.gmc-support input[type=checkbox]{accent-color:var(--green);width:17px;height:17px;
  margin-right:9px;vertical-align:-3px}

/* Send button was black on black */
.gmc-support .elementor-button,
.gmc-support button[type=submit]{background-color:var(--green)!important;
  color:#fff!important;border:0!important;border-radius:999px!important;
  font-weight:800!important;font-size:15px!important;padding:13px 30px!important;
  letter-spacing:.01em;cursor:pointer;transition:background-color .18s}
.gmc-support .elementor-button:hover,
.gmc-support button[type=submit]:hover{background-color:var(--green-deep)!important;color:#fff!important}
.gmc-support .elementor-field-type-submit{justify-content:flex-start}

/* Validation and success messages */
.gmc-support .elementor-message{border-radius:10px;padding:10px 13px;font-size:13.5px}
.gmc-support .elementor-message-success{background:rgba(47,191,81,.12);color:var(--green)!important}
.gmc-support .elementor-message-danger{background:rgba(255,90,54,.12);color:var(--flag)!important}

/* reCAPTCHA badge floats bottom-right over the footer */
.gmc-support .grecaptcha-badge{opacity:.35;transition:opacity .2s}
.gmc-support .grecaptcha-badge:hover{opacity:1}

@media (max-width:640px){
  .gmc-support .site-content .ast-container{padding:30px 18px 60px}
  .gmc-support .elementor-widget-form{padding:20px 17px}
}

/* --- Subscribe / membership ---------------------------------------- */
.gm-subscribe{background:var(--ink);color:var(--white);padding:52px 0 84px;min-height:60vh}
.gm-subscribe .wrap{max-width:1020px;margin:0 auto;padding:0 20px}
.gm-sub-head{text-align:center;margin-bottom:32px}
.gm-sub-head .eyebrow{color:var(--green);font-weight:700;letter-spacing:.14em;
  text-transform:uppercase;font-size:12px;margin:0 0 8px}
.gm-sub-head h1{font-size:clamp(30px,4.6vw,46px);line-height:1.06;margin:0 0 10px;
  font-weight:800;color:var(--white)}
.gm-sub-lede{color:var(--muted);font-size:16px;margin:0 auto;max-width:52ch;line-height:1.55}

.gm-sub-already{display:flex;align-items:center;gap:16px;flex-wrap:wrap;justify-content:center;
  background:var(--raised);border:1px solid var(--green);border-radius:var(--r);
  padding:16px 20px;margin-bottom:26px}
.gm-sub-already p{margin:0;color:var(--cream);font-size:14.5px}

.gm-plans{display:grid;gap:18px;grid-template-columns:repeat(2,1fr);margin-bottom:44px}
.gm-plan{position:relative;background:var(--raised);border:1px solid var(--line);
  border-radius:var(--r);padding:28px 26px;display:flex;flex-direction:column;text-align:center}
.gm-plan.is-feature{border-color:var(--green);
  background:linear-gradient(180deg,rgba(47,191,81,.09),var(--raised))}
.gm-plan-flag{position:absolute;top:-12px;left:50%;transform:translateX(-50%);
  background:var(--green);color:#fff;font-size:11.5px;font-weight:800;
  letter-spacing:.06em;text-transform:uppercase;padding:5px 14px;border-radius:999px;
  white-space:nowrap}
.gm-plan h2{font-size:16px;font-weight:700;margin:0 0 12px;color:var(--cream)}
.gm-plan-price{margin:0 0 4px;display:flex;flex-direction:column;gap:2px}
.gm-plan-amount{font-size:44px;font-weight:800;letter-spacing:-.03em;line-height:1;color:var(--white)}
.gm-plan-per{color:var(--muted);font-size:13.5px;font-weight:600}
.gm-plan-note{color:var(--muted-2);font-size:13px;margin:8px 0 20px}
.gm-plan .gm-btn{width:100%;margin-top:auto;justify-content:center}
.gm-btn-ghost{background:transparent;border:1px solid var(--line-2);color:var(--white)}
.gm-btn-ghost:hover{border-color:var(--green);background:rgba(47,191,81,.10)}

.gm-sub-benefits h2{font-size:20px;font-weight:800;margin:0 0 18px;text-align:center;color:var(--white)}
.gm-benefit-grid{list-style:none;margin:0;padding:0;display:grid;gap:14px;
  grid-template-columns:repeat(2,1fr)}
.gm-benefit{display:flex;gap:11px;align-items:flex-start;background:var(--raised);
  border:1px solid var(--line);border-radius:14px;padding:14px 16px}
.gm-benefit-tick{flex:none;margin-top:1px;line-height:0}
.gm-benefit-text strong{display:block;color:var(--white);font-size:14.5px;font-weight:700;margin-bottom:2px}
.gm-benefit-text span{color:var(--muted);font-size:13.5px;line-height:1.45}

.gm-sub-smallprint{margin:30px auto 0;text-align:center;color:var(--muted-2);
  font-size:12.5px;max-width:46ch;line-height:1.5}

@media (max-width:760px){
  .gm-plans,.gm-benefit-grid{grid-template-columns:1fr}
  .gm-subscribe{padding:34px 0 60px}
  .gm-plan-amount{font-size:38px}
}

/* --- Vimeo hero background ----------------------------------------
   An iframe cannot object-fit like a video element, so the player is
   oversized to whichever axis overflows and centred. 177.78vh = 16/9 of
   the height; 56.25vw = 9/16 of the width. Whichever is larger wins, so
   the frame always covers with no letterboxing at any window shape. */
.hero-vimeo{position:absolute;inset:0;overflow:hidden;pointer-events:none;z-index:0}
.hero-vimeo iframe{position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:100vw;height:56.25vw;
  min-height:100%;min-width:177.78vh;
  border:0;pointer-events:none}
/* Vimeo shows its own dark backdrop before the player is ready, which
   matches the theme, but set it explicitly so there is never a flash. */
.hero-bg .hero-vimeo{background:var(--ink)}

/* Hero copy sat hard left in a 1180px wrap; centre the block on the page. */
.hero-inner{margin-left:auto;margin-right:auto}

/* Threaded forum replies: indent children the same way video comments nest. */
.gm-replies ul.bbp-threaded-replies,
.gm-replies .bbp-threaded-replies{list-style:none;margin:10px 0 0;
  padding-left:18px;border-left:2px solid var(--line)}
.gm-replies .bbp-threaded-replies .gm-reply{padding:12px 0 0;border-top:0}
.gm-reply .gm-c-actions{margin:8px 0 0}
.gm-reply .gm-c-actions a{font-size:12.5px;font-weight:700;color:var(--muted);text-decoration:none}
.gm-reply .gm-c-actions a:hover{color:var(--green)}
#bbpress-forums .bbp-cancel-reply-to{margin-left:10px;font-size:12.5px}
#bbpress-forums .bbp-cancel-reply-to a{color:var(--flag)}

/* Topic titles were rendering green: the generic bbPress link rule uses an
   ID (#bbpress-forums) so it outranked the class-only title rule. Match the
   specificity and use a light neutral, which reads far better at this size. */
.gmc-dark #bbpress-forums .gm-topic-title a{color:var(--cream);text-decoration:none;font-weight:800}
.gmc-dark #bbpress-forums .gm-topic-title a:hover{color:var(--green)}
.gmc-dark #bbpress-forums .gm-topic-meta strong{color:var(--muted)}
/* Keep the reply-count badge green, it is the useful signal on the row. */
.gmc-dark #bbpress-forums .gm-topic-n{color:var(--green)}

/* FAQ answers now carry step-by-step instructions. */
.qa .ans ol{margin:8px 0 12px;padding-left:22px}
.qa .ans ol li{margin-bottom:7px;line-height:1.5}
.qa .ans p strong{color:var(--white)}
.qa .ans .qa-note{color:var(--muted-2);font-size:.9rem;border-left:2px solid var(--line-2);
  padding-left:11px;margin-top:10px}
.qa .ans .qa-video a{color:var(--green);font-weight:700;text-decoration:none}
.qa .ans .qa-video a:hover{text-decoration:underline}

/* --- Contact Liam --------------------------------------------------- */
.gm-contact{background:var(--ink);color:var(--white);padding:56px 0 84px;min-height:60vh}
.gm-contact .wrap{max-width:1080px;margin:0 auto;padding:0 20px}
.gm-contact-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:44px;align-items:center}
.gm-contact-copy .eyebrow{color:var(--green);font-weight:700;letter-spacing:.14em;
  text-transform:uppercase;font-size:12px;margin:0 0 8px}
.gm-contact-copy h1{font-size:clamp(30px,4.4vw,46px);line-height:1.05;margin:0 0 14px;
  font-weight:800;color:var(--white)}
.gm-contact-lede{color:var(--cream);font-size:17px;line-height:1.55;margin:0 0 8px;max-width:44ch}
.gm-contact-sub{color:var(--muted);font-size:14.5px;margin:0 0 26px}

.gm-contact-actions{display:flex;flex-direction:column;gap:12px;margin-bottom:22px}
.gm-contact-card{display:flex;align-items:center;gap:15px;padding:17px 19px;
  background:var(--raised);border:1px solid var(--line);border-radius:var(--r);
  text-decoration:none;transition:border-color .18s,transform .18s,background .18s}
.gm-contact-card:hover{border-color:var(--green);transform:translateY(-2px);
  background:var(--raised-2)}
.gm-contact-ic{flex:none;width:48px;height:48px;border-radius:14px;display:grid;
  place-items:center;background:var(--ink-2);color:var(--green)}
.gm-contact-card.is-whatsapp:hover .gm-contact-ic{background:var(--green);color:#08140B}
.gm-contact-card.is-email:hover .gm-contact-ic{background:var(--green);color:#08140B}
.gm-contact-text strong{display:block;color:var(--white);font-size:16px;font-weight:800;
  margin-bottom:3px}
.gm-contact-text span{color:var(--muted);font-size:13.5px;line-height:1.4}
.gm-contact-note{color:var(--muted-2);font-size:13.5px;margin:0;line-height:1.5}
.gm-contact-note a{color:var(--green);font-weight:700}

.gm-contact-photo{position:relative}
.gm-contact-photo img{width:100%;height:auto;display:block;border-radius:var(--r);
  border:1px solid var(--line-2)}
.gm-contact-photo::after{content:"";position:absolute;inset:0;border-radius:var(--r);
  box-shadow:inset 0 -60px 90px -40px rgba(11,11,10,.85);pointer-events:none}

@media (max-width:860px){
  .gm-contact-grid{grid-template-columns:1fr;gap:28px}
  .gm-contact-photo{order:-1;max-width:380px}
  .gm-contact{padding:34px 0 62px}
}

/* --- Membership section, now on the cream background ---------------
   The stat band and the pricing block are one section. The pricing cards
   were built for the dark page, so they need re-tuning for cream: white
   cards, dark text, green kept as the accent.
   ------------------------------------------------------------------ */
.statband#pricing{padding:74px 0 84px}
.statband .sechead{margin-top:58px}
.statband .sechead .eyebrow{color:var(--green-deep)}
.statband .sechead h2{color:var(--cream-ink)}
.statband .sechead p{color:#57544a}

/* Billing toggle */
.statband .toggle{background:rgba(11,11,10,.06);border:1px solid rgba(11,11,10,.12)}
.statband .toggle button{color:#57544a}
.statband .toggle button.on{background:var(--green);color:#fff}
.statband .toggle .save{background:rgba(47,191,81,.18);color:var(--green-deep)}

/* Plan cards */
.statband .pcard{background:#fff;border:1px solid rgba(11,11,10,.10);
  box-shadow:0 10px 30px rgba(11,11,10,.06);text-align:left}
.statband .pcard.feat{border-color:var(--green);
  background:linear-gradient(180deg,rgba(47,191,81,.06),#fff);
  box-shadow:0 14px 38px rgba(30,143,59,.14)}
.statband .pcard h4{color:var(--cream-ink)}
.statband .pcard .price{color:var(--cream-ink)}
.statband .pcard .price span,
.statband .pcard .sub{color:#6d695e}
.statband .pcard .pop{background:var(--green);color:#fff}
.statband .pcard ul li{color:#3a372f}
.statband .pcard .note{color:#7a7669}
.statband .pcard .btn-ghost{background:transparent;border:1px solid rgba(11,11,10,.22);
  color:var(--cream-ink)!important}
.statband .pcard .btn-ghost:hover{border-color:var(--green);
  background:rgba(47,191,81,.08);color:var(--cream-ink)!important}
.statband .pcard .btn-green{color:#fff!important}

/* The stat row now sits mid-section rather than at the end */
.statband .statrow{margin-bottom:6px}

/* Stat row now opens the section, so it needs its own top spacing. */
.statband#pricing{padding-top:56px}
.statband .statrow{margin-top:0}

/* Stat row now closes the section, under the plan cards. */
.statband .statrow{margin-top:44px;margin-bottom:0}
.statband#pricing{padding-top:64px;padding-bottom:74px}

/* Perks: four boxes in a 2x2, with matching top and bottom padding. */
#perks{padding-top:72px;padding-bottom:72px}
#perks .perks{grid-template-columns:repeat(2,1fr);gap:20px}
@media (max-width:760px){
  #perks .perks{grid-template-columns:1fr}
  #perks{padding-top:48px;padding-bottom:48px}
}

/* --- Club House Chat on the cream theme ----------------------------
   The forum keeps the dark header and footer but runs on the light
   background used by the membership section. Everything below overrides
   the dark forum styling; the layout itself is unchanged.
   ------------------------------------------------------------------ */
.gmc-light,
.gmc-light #page,
.gmc-light #content,
.gmc-light .site-content,
.gmc-light .site-content .ast-container{background:var(--cream)}

.gmc-light #bbpress-forums{color:var(--cream-ink)}
.gmc-light .gm-fhead .eyebrow{color:var(--green-deep)}
.gmc-light .gm-fhead h1{color:var(--cream-ink)}
.gmc-light .gm-fmeta,
.gmc-light .gm-topic-meta{color:#6d695e}
.gmc-light .gm-topic-meta strong{color:#3a372f}

/* Topic cards */
.gmc-light .gm-topic{background:#fff;border-color:rgba(11,11,10,.10);
  box-shadow:0 4px 14px rgba(11,11,10,.05)}
.gmc-light .gm-topic:hover{border-color:var(--green);
  box-shadow:0 10px 26px rgba(11,11,10,.10)}
.gmc-light #bbpress-forums .gm-topic-title a{color:var(--cream-ink)}
.gmc-light #bbpress-forums .gm-topic-title a:hover{color:var(--green-deep)}
.gmc-light .gm-topic-avatar img{border-color:rgba(11,11,10,.12)}
.gmc-light .gm-topic-count{background:#f4f0e4;border-color:rgba(11,11,10,.10)}
.gmc-light #bbpress-forums .gm-topic-n{color:var(--green-deep)}
.gmc-light .gm-topic-l{color:#7a7669}
.gmc-light .gm-topic.is-pinned{border-color:#c9a227}
.gmc-light .gm-pin{color:#c9a227}

/* Single topic and replies */
.gmc-light .gm-tshead{border-bottom-color:rgba(11,11,10,.12)}
.gmc-light .gm-tshead h1{color:var(--cream-ink)}
.gmc-light .gm-back{color:#57544a}
.gmc-light .gm-back:hover{color:var(--green-deep)}
.gmc-light .gm-reply{border-top-color:rgba(11,11,10,.10)}
.gmc-light .gm-c-author{color:var(--cream-ink)}
.gmc-light .gm-c-date{color:#7a7669}
.gmc-light .gm-c-text{color:#2f2c26}
.gmc-light .gm-c-avatar img{border-color:rgba(11,11,10,.12)}
.gmc-light .gm-reply.is-staff .gm-c-text{border-left-color:var(--green)}
.gmc-light .gm-c-badge{background:var(--green);color:#fff}
.gmc-light .gm-reply .gm-c-actions a{color:#6d695e}
.gmc-light .gm-reply .gm-c-actions a:hover{color:var(--green-deep)}
.gmc-light .gm-replies .bbp-threaded-replies{border-left-color:rgba(11,11,10,.14)}

/* Subscribe / save buttons */
.gmc-light .gm-topic-actions a{background:#fff;border-color:rgba(11,11,10,.16);
  color:var(--cream-ink)}
.gmc-light .gm-topic-actions a:hover{background:var(--green);border-color:var(--green);color:#fff}

/* Forms */
.gmc-light #bbpress-forums #new-post{background:#fff;border-color:rgba(11,11,10,.10)}
.gmc-light #bbpress-forums legend{color:var(--cream-ink)}
.gmc-light #bbpress-forums textarea,
.gmc-light #bbpress-forums input[type=text]{background:#fbf9f2;color:var(--cream-ink);
  border-color:rgba(11,11,10,.16)}
.gmc-light #bbpress-forums ::placeholder{color:#8d8879}
.gmc-light #bbpress-forums .quicktags-toolbar{background:#f4f0e4;border-color:rgba(11,11,10,.12)}
.gmc-light #bbpress-forums .bbp-template-notice{background:#fff;
  border-color:rgba(11,11,10,.12);color:#3a372f}
.gmc-light #bbpress-forums button,
.gmc-light #bbpress-forums input[type=submit]{color:#fff}

/* Pagination */
.gmc-light .bbp-pagination .page-numbers{background:#fff;
  border-color:rgba(11,11,10,.12);color:#57544a}
.gmc-light .bbp-pagination .page-numbers:hover{color:var(--cream-ink);
  border-color:var(--green)}
.gmc-light .bbp-pagination .page-numbers.current,
.gmc-light .bbp-pagination span.current{background:var(--green);
  border-color:var(--green);color:#fff}
.gmc-light .bbp-pagination-count{color:#7a7669}
.gmc-light .gm-empty{color:#6d695e}
