/*
Theme Name: Growbiz
Theme URI: https://growbiz.online
Author: Growbiz Marketing Agency
Author URI: https://growbiz.online
Description: Official Growbiz theme — matches growbiz.online exactly. Same fonts, colors, nav, footer, cursor.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: growbiz
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@400;600;700;800;900&display=swap');

/* ══ VARS ══ */
:root {
  --o: #ff5500;
  --r: #cc2200;
  --y: #ffbb00;
  --g: #16a34a;
  --dk: #111111;
  --dk2: #1a0800;
  --mu: #7a6055;
  --cream: #fff8f3;
  --w: #ffffff;
}

/* ══ RESET ══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: #fff; color: var(--dk); overflow-x: hidden; cursor: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ══ SCROLLBAR ══ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--o); border-radius: 4px; }

/* ══ CURSOR ══ */
#CUR {
  position: fixed; top: 0; left: 0;
  width: 14px; height: 14px;
  background: var(--o); border-radius: 50%;
  pointer-events: none; z-index: 999999;
  box-shadow: 0 0 20px rgba(255,85,0,.7);
  transform: translate(-200px, -200px);
}
#RING {
  position: fixed; top: 0; left: 0;
  width: 44px; height: 44px;
  border: 2.5px solid rgba(255,85,0,.55);
  border-radius: 50%;
  pointer-events: none; z-index: 999998;
  transform: translate(-200px, -200px);
  transition: width .2s, height .2s, border-color .2s;
}
body.on-link #CUR { background: rgba(255,85,0,.35); width: 20px; height: 20px; margin: -3px; }
body.on-link #RING { width: 54px; height: 54px; border-color: var(--o); margin: -5px; }

/* ══ NAV ══ */
#GB-NAV {
  position: fixed; top: 0; left: 0; right: 0; height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: #fff;
  border-bottom: 2.5px solid rgba(255,85,0,.12);
  z-index: 9999;
  transition: box-shadow .3s, border-color .3s;
}
#GB-NAV.sticky { box-shadow: 0 4px 36px rgba(255,85,0,.12); border-color: rgba(255,85,0,.4); }
.gb-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem; letter-spacing: 4px;
  color: #111; text-decoration: none;
}
.gb-logo span { color: var(--o); }
.gb-nav-links { display: flex; gap: 24px; align-items: center; }
.gb-nav-links a {
  font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .6px;
  color: #111; position: relative; padding: 4px 0; transition: color .2s;
}
.gb-nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2.5px; background: var(--o); transition: width .25s;
}
.gb-nav-links a:hover { color: var(--o); }
.gb-nav-links a:hover::after { width: 100%; }
.gb-nav-cta {
  background: var(--o) !important; color: #fff !important;
  padding: 11px 22px !important; border-radius: 7px !important;
  box-shadow: 0 4px 18px rgba(255,85,0,.35) !important;
}
.gb-nav-cta::after { display: none !important; }
.gb-nav-cta:hover { background: var(--r) !important; transform: translateY(-2px) !important; }
.gb-hbg {
  display: none; flex-direction: column; gap: 5px;
  cursor: none; padding: 4px; background: none; border: none;
}
.gb-hbg span { width: 26px; height: 2.5px; background: var(--o); display: block; border-radius: 2px; }
#GB-MOB {
  display: none; position: fixed; top: 80px; left: 0; right: 0;
  background: #fff; z-index: 9998;
  border-bottom: 3px solid var(--o); padding: 20px 5%;
}
#GB-MOB.open { display: block; }
#GB-MOB a {
  display: block; padding: 13px 0; font-size: 1rem; font-weight: 800;
  text-transform: uppercase; border-bottom: 1px solid rgba(255,85,0,.08);
  color: #111; transition: color .2s;
}
#GB-MOB a:hover { color: var(--o); }

/* ══ MAIN CONTENT WRAPPER ══ */
#gb-main { padding-top: 80px; min-height: 60vh; }

/* ══ BLOG HERO ══ */
.gb-blog-hero {
  padding: 80px 5% 60px;
  background: linear-gradient(135deg, var(--cream), rgba(255,85,0,.05));
  border-bottom: 3px solid rgba(255,85,0,.1);
  text-align: center;
}
.gb-blog-hero .tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  color: var(--o); background: rgba(255,85,0,.08);
  border: 1.5px solid rgba(255,85,0,.2);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}
.gb-blog-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 8rem);
  line-height: .9; letter-spacing: 1px; margin-bottom: 16px;
}
.gb-blog-hero h1 span { color: var(--o); }
.gb-blog-hero p { color: var(--mu); font-size: 1.05rem; font-weight: 600; max-width: 500px; margin: 0 auto; line-height: 1.75; }

/* ══ BLOG GRID (listing page) ══ */
.gb-blog-section { padding: 80px 5%; }
.gb-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  max-width: 1240px; margin: 0 auto;
}
.gb-post-card {
  border-radius: 16px; overflow: hidden;
  border: 2px solid rgba(255,85,0,.1);
  background: #fff;
  transition: transform .35s, box-shadow .35s, border-color .35s;
  cursor: none;
}
.gb-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(255,85,0,.15);
  border-color: var(--o);
}
.gb-post-thumb {
  position: relative; height: 220px; overflow: hidden;
}
.gb-post-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.gb-post-card:hover .gb-post-thumb img { transform: scale(1.08); }
.gb-post-thumb-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--o), var(--r));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.gb-post-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--o); color: #fff;
  font-size: .62rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.gb-post-body { padding: 28px; }
.gb-post-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--mu); margin-bottom: 12px;
}
.gb-post-meta .sep { width: 4px; height: 4px; background: var(--mu); border-radius: 50%; }
.gb-post-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 1px;
  color: var(--dk); margin-bottom: 10px; line-height: 1;
  transition: color .2s;
}
.gb-post-card:hover .gb-post-title { color: var(--o); }
.gb-post-excerpt {
  color: var(--mu); font-size: .9rem; line-height: 1.7;
  font-weight: 600; margin-bottom: 20px;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.gb-read-more {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 1.5px;
  color: var(--o); transition: gap .2s;
}
.gb-read-more:hover { gap: 12px; }

/* ══ PAGINATION ══ */
.gb-pagination {
  display: flex; justify-content: center; gap: 10px;
  padding: 0 5% 80px; flex-wrap: wrap;
}
.gb-pagination a, .gb-pagination span {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 1px;
  padding: 10px 20px; border-radius: 7px;
  border: 2px solid rgba(255,85,0,.2); color: var(--o);
  transition: all .25s;
}
.gb-pagination a:hover, .gb-pagination .current {
  background: var(--o); color: #fff; border-color: var(--o);
}

/* ══ SINGLE POST ══ */
.gb-post-hero {
  position: relative; height: 60vh; min-height: 420px; overflow: hidden;
}
.gb-post-hero img { width: 100%; height: 100%; object-fit: cover; }
.gb-post-hero-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--o), var(--dk2));
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
}
.gb-post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 52px 8%;
}
.gb-post-hero-cat {
  display: inline-block; background: var(--o); color: #fff;
  font-size: .65rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px; width: fit-content;
}
.gb-post-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  line-height: .92; letter-spacing: 1px; color: #fff;
  max-width: 900px; margin-bottom: 18px;
}
.gb-post-hero-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .5px; flex-wrap: wrap;
}
.gb-post-hero-meta span { color: rgba(255,255,255,.4); }

/* ══ SINGLE POST CONTENT ══ */
.gb-article-wrap {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 52px; max-width: 1240px; margin: 0 auto;
  padding: 72px 5%;
}
.gb-article-content { min-width: 0; }
.gb-article-content p {
  font-size: 1.05rem; line-height: 1.85; color: #333;
  font-weight: 500; margin-bottom: 22px;
}
.gb-article-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem; letter-spacing: 1px;
  color: var(--dk); margin: 40px 0 16px; line-height: 1;
}
.gb-article-content h2::before {
  content: ''; display: block; width: 40px; height: 4px;
  background: var(--o); border-radius: 2px; margin-bottom: 10px;
}
.gb-article-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 1px;
  color: var(--o); margin: 28px 0 12px;
}
.gb-article-content h4 {
  font-size: 1rem; font-weight: 900; color: var(--dk);
  margin: 22px 0 10px; text-transform: uppercase; letter-spacing: .5px;
}
.gb-article-content ul, .gb-article-content ol {
  padding-left: 24px; margin-bottom: 22px;
}
.gb-article-content ul li { list-style: disc; }
.gb-article-content ol li { list-style: decimal; }
.gb-article-content li {
  font-size: 1rem; line-height: 1.8; color: #333;
  font-weight: 500; margin-bottom: 6px;
}
.gb-article-content a { color: var(--o); font-weight: 700; border-bottom: 1.5px solid rgba(255,85,0,.3); }
.gb-article-content a:hover { border-color: var(--o); }
.gb-article-content blockquote {
  border-left: 4px solid var(--o); background: var(--cream);
  padding: 24px 28px; margin: 28px 0; border-radius: 0 10px 10px 0;
}
.gb-article-content blockquote p {
  font-size: 1.1rem; font-style: italic; color: var(--dk); font-weight: 700; margin: 0;
}

/* ══ ARTICLE IMAGES — excludes author box ══ */
.gb-article-content img:not(.gb-author-photo) {
  width: 100%; border-radius: 12px; margin: 28px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

/* ══ AUTHOR PHOTO — locked size, never stretches ══ */
.gb-author-photo {
  width: 80px !important;
  height: 80px !important;
  min-width: 80px !important;
  max-width: 80px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center top !important;
  border: 3px solid var(--o) !important;
  flex-shrink: 0 !important;
  display: block !important;
  margin: 0 !important;
  box-shadow: none !important;
}

.gb-article-content code {
  background: var(--cream); color: var(--r);
  padding: 2px 8px; border-radius: 4px;
  font-size: .88em; font-weight: 700;
}
.gb-article-content pre {
  background: var(--dk2); color: rgba(255,255,255,.85);
  padding: 24px; border-radius: 10px; margin: 22px 0;
  overflow-x: auto; font-size: .88rem; line-height: 1.7;
}
.gb-article-content strong { color: var(--dk); font-weight: 900; }
.gb-article-content hr {
  border: none; height: 2px;
  background: linear-gradient(90deg, var(--o), transparent);
  margin: 36px 0;
}

/* ══ SIDEBAR ══ */
.gb-sidebar { position: sticky; top: 100px; align-self: start; }
.gb-sidebar-box {
  background: var(--cream); border: 2px solid rgba(255,85,0,.12);
  border-radius: 14px; padding: 28px; margin-bottom: 22px;
}
.gb-sidebar-box h4 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
  letter-spacing: 1.5px; color: var(--o); margin-bottom: 16px;
}
.gb-sidebar-cta {
  background: var(--o); border-radius: 14px; padding: 28px; text-align: center;
  margin-bottom: 22px;
}
.gb-sidebar-cta h4 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem;
  letter-spacing: 1px; color: #fff; margin-bottom: 10px;
}
.gb-sidebar-cta p { color: rgba(255,255,255,.8); font-size: .88rem; font-weight: 600; line-height: 1.6; margin-bottom: 18px; }
.gb-sidebar-cta a {
  display: block; background: #fff; color: var(--o);
  font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 1.5px;
  padding: 13px 20px; border-radius: 7px; transition: .25s;
}
.gb-sidebar-cta a:hover { background: var(--cream); transform: translateY(-2px); }
.gb-recent-post {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid rgba(255,85,0,.08);
}
.gb-recent-post:last-child { border-bottom: none; }
.gb-recent-post img {
  width: 60px; height: 60px; border-radius: 8px; object-fit: cover; flex-shrink: 0;
}
.gb-recent-post-title {
  font-size: .82rem; font-weight: 800; color: var(--dk);
  line-height: 1.4; transition: color .2s;
}
.gb-recent-post a:hover .gb-recent-post-title { color: var(--o); }
.gb-recent-post-date { font-size: .7rem; color: var(--mu); font-weight: 600; margin-top: 4px; }
.gb-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.gb-tag-cloud a {
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
  color: var(--o); border: 1.5px solid rgba(255,85,0,.25);
  padding: 5px 12px; border-radius: 100px; transition: all .2s;
}
.gb-tag-cloud a:hover { background: var(--o); color: #fff; }

/* ══ AUTHOR BOX ══ */
.gb-author-box {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--cream); border: 2px solid rgba(255,85,0,.12);
  border-radius: 16px; padding: 32px;
  margin-top: 52px;
}
.gb-author-avatar {
  width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0;
  border: 3px solid var(--o); object-fit: cover;
}
.gb-author-avatar-placeholder {
  width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--o), var(--r));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 900; color: #fff;
  border: 3px solid var(--o);
}
.gb-author-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
  letter-spacing: 1px; color: var(--dk); margin-bottom: 4px;
}
.gb-author-role { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--o); margin-bottom: 10px; }
.gb-author-bio { font-size: .9rem; line-height: 1.7; color: var(--mu); font-weight: 600; }

/* ══ RELATED POSTS ══ */
.gb-related { padding: 0 5% 80px; max-width: 1240px; margin: 0 auto; }
.gb-related h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
  letter-spacing: 2px; color: var(--dk); margin-bottom: 28px;
}
.gb-related h3 span { color: var(--o); }

/* ══ POST SHARE ══ */
.gb-share {
  display: flex; align-items: center; gap: 12px;
  padding: 24px 0; border-top: 2px solid rgba(255,85,0,.1);
  border-bottom: 2px solid rgba(255,85,0,.1);
  margin: 36px 0; flex-wrap: wrap;
}
.gb-share strong {
  font-size: .72rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--mu);
}
.gb-share a {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .78rem; font-weight: 800; padding: 8px 16px;
  border-radius: 7px; transition: .2s; border: none;
}
.gb-share-wa { background: #25D366; color: #fff !important; }
.gb-share-wa:hover { background: #1da851; transform: translateY(-2px); }
.gb-share-li { background: #0077B5; color: #fff !important; }
.gb-share-li:hover { background: #005582; transform: translateY(-2px); }
.gb-share-fb { background: #1877F2; color: #fff !important; }
.gb-share-fb:hover { background: #1260cc; transform: translateY(-2px); }

/* ══ MARQUEE ══ */
.gb-mq { overflow: hidden; background: var(--o); padding: 12px 0; }
.gb-mq-t { display: flex; width: max-content; animation: gbmq 24s linear infinite; }
.gb-mq-i { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 3px; color: #fff; white-space: nowrap; padding: 0 32px; display: flex; align-items: center; gap: 12px; }
.gb-mq-i .dot { width: 5px; height: 5px; background: #fff; border-radius: 50%; opacity: .5; }
@keyframes gbmq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══ CTA STRIP ══ */
.gb-cta-strip {
  background: var(--dk2); padding: 80px 5%; text-align: center;
}
.gb-cta-strip h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 6rem);
  line-height: .92; color: #fff; margin-bottom: 14px; letter-spacing: 1px;
}
.gb-cta-strip h2 span { color: var(--o); }
.gb-cta-strip p { color: rgba(255,255,255,.5); font-size: 1rem; font-weight: 600; margin-bottom: 32px; }
.gb-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.gb-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 2px;
  padding: 15px 38px; border-radius: 7px; cursor: none; transition: all .25s; border: none;
}
.gb-btn-o { background: var(--o); color: #fff; box-shadow: 0 6px 24px rgba(255,85,0,.35); }
.gb-btn-o:hover { background: var(--r); transform: translateY(-3px); }
.gb-btn-wh { background: #fff; color: var(--o); box-shadow: 0 4px 18px rgba(0,0,0,.12); }
.gb-btn-wh:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,.2); }

/* ══ INFO BAR ══ */
.gb-ibar {
  background: rgba(255,85,0,.05);
  border-top: 2px solid rgba(255,85,0,.1);
  border-bottom: 2px solid rgba(255,85,0,.1);
  padding: 24px 5%;
}
.gb-ibar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; max-width: 1240px; margin: 0 auto;
}
.gb-if { display: flex; align-items: center; gap: 10px; }
.gb-if strong { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--o); display: block; line-height: 1; }
.gb-if span { font-size: .68rem; text-transform: uppercase; letter-spacing: 1px; color: var(--mu); font-weight: 800; }

/* ══ FOOTER ══ */
.gb-footer { padding: 72px 5% 32px; background: var(--dk2); border-top: 3px solid rgba(255,85,0,.25); }
.gb-fg4 { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 52px; }
.gb-fl-logo { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; letter-spacing: 4px; color: #fff; }
.gb-fl-logo span { color: var(--o); }
.gb-fl-p { color: rgba(255,255,255,.4); font-size: .87rem; line-height: 1.75; margin: 14px 0 22px; max-width: 280px; font-weight: 500; }
.gb-fc h4 { font-size: .76rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.gb-fl li { margin-bottom: 10px; }
.gb-fl a { color: rgba(255,255,255,.4); font-size: .87rem; font-weight: 500; transition: color .2s; }
.gb-fl a:hover { color: var(--o); }
.gb-soc { display: flex; gap: 10px; margin-top: 20px; }
.gb-sl {
  width: 44px; height: 44px; background: rgba(255,85,0,.07);
  border: 2px solid rgba(255,85,0,.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: .25s; cursor: none;
  text-decoration: none;
}
.gb-sl:hover { background: var(--o); border-color: var(--o); transform: translateY(-3px); }
.gb-fbot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid rgba(255,85,0,.1);
  flex-wrap: wrap; gap: 12px;
}
.gb-fbot p { color: rgba(255,255,255,.3); font-size: .8rem; font-weight: 500; }
.gb-fbot a { color: var(--o); }

/* ══ REVEAL ANIMATIONS ══ */
.gb-rv { opacity: 0; transform: translateY(32px); transition: opacity .75s ease, transform .75s ease; }
.gb-rv.vs { opacity: 1; transform: translateY(0); }

/* ══ RESPONSIVE ══ */
@media(max-width: 1100px) {
  .gb-article-wrap { grid-template-columns: 1fr; }
  .gb-sidebar { position: static; }
  .gb-fg4 { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  .gb-nav-links { display: none; }
  .gb-hbg { display: flex; }
  .gb-blog-grid { grid-template-columns: 1fr; }
  .gb-fg4 { grid-template-columns: 1fr; }
  .gb-author-box { flex-direction: column; }
  .gb-ibar-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media(max-width: 520px) {
  .gb-post-hero h1 { font-size: 2.2rem; }
  .gb-cta-strip h2 { font-size: 2.5rem; }
}