/* ============================================================
   climateclub.css — ALL sections have unique class prefixes
   so no section's styles bleed into another.
   ============================================================ */

/* ── BASE RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Droid Serif'; background: #f5f5f5; color: #333; line-height: 1.6; margin: 0; padding: 0; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }

/* ── GLOBAL TYPOGRAPHY (h1/h2/p overrides) ───────────────────── */
h1 { font-size: 3rem !important; }
h2 { font-size: 1.5rem !important; }
p  { font-size: 17px !important; }

/* =============================================================
   1. HERO SECTION  (.cc-hero-*)
   ============================================================= */
.cc-hero {
    position: relative;
    min-height: 64vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}
.cc-hero__overlay { position: absolute; inset: 0; }
.cc-hero__content { position: relative; max-width: 900px; z-index: 2; }
.cc-hero__content h1 { font-size: 3rem !important; font-weight: 700; margin-bottom: 20px; }
.cc-hero__content p  { font-size: 20px !important; line-height: 1.6; margin-bottom: 40px; opacity: .95; }

.cc-hero__icons { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.cc-hero__icon-box { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cc-hero__icon-circle {
    width: 80px; height: 80px; border-radius: 50%;
    background: rgba(255,255,255,.15); backdrop-filter: blur(2px);
    display: flex; align-items: center; justify-content: center;
    transition: .3s ease;
}
.cc-hero__icon-circle:hover { background: rgba(255,255,255,.25); transform: translateY(-5px); }
.cc-hero__icon-circle svg { width: 32px; height: 32px; fill: #fff; }
.cc-hero__icon-circle img { width: 36px; height: 36px; object-fit: contain; }
.cc-hero__icon-box span { font-size: 16px; font-weight: 500; }

@media (max-width: 992px) { .cc-hero__content h1 { font-size: 38px !important; } .cc-hero__content p { font-size: 18px !important; } }
@media (max-width: 768px) {
    .cc-hero { min-height: 80vh; padding: 40px 20px; }
    .cc-hero__content h1 { font-size: 30px !important; }
    .cc-hero__content p  { font-size: 16px !important; }
    .cc-hero__icons { gap: 25px; }
    .cc-hero__icon-circle { width: 65px; height: 65px; }
}

/* =============================================================
   2. EVERYDAY ACTION & DIY  (.diy-*)
   ============================================================= */
.diy-section { background: #fff; padding: 60px 20px; }
.diy-container { max-width: 1200px; margin: auto; }

.diy-header { display: flex; align-items: center; gap: 15px; margin-bottom: 40px; }
.diy-icon-box {
    width: 42px; height: 42px; background: #3bb54a; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.diy-icon-box img { width: 22px; height: 22px; }
.diy-title { font-size: 2rem !important; font-weight: 700; color: #111; margin: 0; }

.diy-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; }

.diy-card {
    background: linear-gradient(86deg, #EFF6FF, #FAF5FF);
    padding: 30px; border-radius: 12px; transition: .3s ease;
    display: flex; flex-direction: column;
}
.diy-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,.08); }
.diy-card h3 { font-size: 20px !important; margin-bottom: 15px; color: #111; }
.diy-card p  { font-size: 15px !important; color: #444; line-height: 1.6; margin-bottom: 15px; }

.diy-tags { margin-top: auto; padding-top: 15px; }
.diy-tag {
    display: inline-block; background: #dcd2ef; color: #333;
    padding: 6px 12px; border-radius: 8px; font-size: 13px !important;
    margin-right: 8px; margin-bottom: 8px;
}
.diy-small-text { font-size: 14px !important; margin-top: 10px; }
.diy-small-text a { color: #1a73e8; font-weight: 500; }
.diy-small-text a:hover { text-decoration: underline; }

@media (max-width: 992px) { .diy-cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) {
    .diy-cards { grid-template-columns: 1fr; }
    .diy-card  { padding: 22px; }
    .diy-title { font-size: 24px !important; }
}

/* =============================================================
   3. FEATURED RESOURCE BANNER  (.fr-*)
   ============================================================= */
.fr-section {
    position: relative; min-height: 280px;
    display: flex; align-items: center;
    padding: 60px 80px;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    border-radius: 14px; overflow: hidden; margin: 30px;
}
.fr-overlay { position: absolute; inset: 0; z-index: 1; }
.fr-container { position: relative; z-index: 2; width: 100%; display: flex; justify-content: space-between; align-items: center; }
.fr-left { max-width: 600px; }
.fr-badge {
    display: inline-block; background: #ffe600; color: #000;
    font-size: 14px !important; font-weight: 600;
    padding: 6px 14px; border-radius: 6px; margin-bottom: 18px;
}
.fr-title  { font-size: 34px !important; font-weight: 600; color: #fff; margin-bottom: 8px; }
.fr-author { font-size: 15px !important; color: #e0e0e0; }
.fr-link   { color: #fff; font-size: 18px !important; font-weight: 500; display: flex; align-items: center; gap: 8px; transition: .3s ease; }
.fr-link:hover { opacity: .8; }
.fr-arrow  { font-size: 22px; }

@media (max-width: 992px) { .fr-section { padding: 50px 40px; } .fr-title { font-size: 28px !important; } }
@media (max-width: 768px) {
    .fr-section { padding: 40px 25px; min-height: auto; }
    .fr-container { flex-direction: column; align-items: flex-start; gap: 25px; }
    .fr-title { font-size: 24px !important; }
    .fr-link  { font-size: 16px !important; }
}

/* =============================================================
   4. MYTH-BUSTING  (.mb-*)
   ============================================================= */
.mb-section { background: #f4f6f5; padding: 40px 20px; }
.mb-container { max-width: 1200px; margin: 0 auto; }

.mb-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.mb-icon {
    width: 45px; height: 45px; background: #3fa64a;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px; color: #fff; font-size: 22px;
}
.mb-title { font-size: 2rem !important; font-weight: 700; color: #111; }

.mb-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }

.mb-col { background: #fff; border-radius: 10px; padding: 20px; }
.mb-col-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mb-col h3 { font-size: 20px !important; font-weight: 600; color: #222;   }
.mb-badge { background: #ffd84d; padding: 6px 1px; border-radius: 50px; font-size: 13px !important; font-weight: 600; }

.mb-card { border-radius: 4px; padding: 22px; margin-bottom: 20px; position: relative; box-shadow: 0 4px 12px rgba(0,0,0,.05); }
.mb-card h4 { font-size: 14px !important; font-weight: 700; margin-bottom: 8px; }
.mb-card p  { font-size: 15px !important; line-height: 1.6; margin: 0; }

.mb-claim  { background: #f5eaea; border-left: 5px solid #e3342f; }
.mb-claim h4 { color: #e3342f; }
.mb-reality { background: #e8f3ec; border-left: 5px solid #1f9d55; }
.mb-reality h4 { color: #1f9d55; }
.mb-reality a  { color: #1f9d55; font-weight: 600; text-decoration: underline; }

@media (max-width: 1024px) { .mb-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 768px) {
    .mb-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .mb-title  { font-size: 26px !important; }
    .mb-grid   { grid-template-columns: 1fr; gap: 25px; }
    .mb-col-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .mb-card   { padding: 18px; }
}

/* =============================================================
   5. VOX POPULI  (.vox-*)
   ============================================================= */
.vox-section { background: #f5f6f8; padding: 0px 20px; }
.vox-container { max-width: 1200px; margin: 0 auto; }

.vox-header { display: flex; align-items: center; margin-bottom: 20px; }
.vox-quote-icon {
    background: #34a853; color: #fff; font-size: 38px;
    width: 45px; height: 45px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-right: 15px; line-height: 1;
}
.vox-title { font-size: 2rem !important; font-weight: 700; color: #111; }

.vox-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 25px; }

.vox-card {
    background: #fff; padding: 25px; border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
    display: flex; flex-direction: column; justify-content: space-between;
    transition: .3s ease;
}
.vox-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }

.vox-user { display: flex; align-items: center; margin-bottom: 15px; }
.vox-avatar {
    width: 45px; height: 45px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; margin-right: 12px; font-size: 14px !important;
}
.vox-user h4   { margin: 0; font-size: 16px !important; font-weight: 600; }
.vox-user span { font-size: 13px !important; color: #777; }
.vox-text      { font-size: 14px !important; color: #444; line-height: 1.6; margin-bottom: 20px; }
.vox-footer    { display: flex; justify-content: space-between; align-items: center; font-size: 13px !important; color: #777; }
.vox-actions   { display: flex; gap: 10px; }

.vox-green     { background: #d9f2e3; color: #1b7a43; }
.vox-purple    { background: #ece2ff; color: #6b3fd4; }
.vox-pink      { background: #ffe4ec; color: #c2185b; }
.vox-yellow    { background: #fff3cd; color: #b8860b; }
.vox-blue      { background: #dbe9ff; color: #1e4db7; }
.vox-lightblue { background: #e1f0ff; color: #1677ff; }
.vox-mint      { background: #d4f5ea; color: #0d7a5f; }
.vox-lavender  { background: #f1e6ff; color: #7b3fe4; }

@media (max-width: 1200px) { .vox-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 992px)  { .vox-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .vox-grid { grid-template-columns: 1fr; } .vox-title { font-size: 26px !important; } .vox-card { padding: 20px; } }

/* =============================================================
   6. TOOLS & CHECKLISTS  (.tc-*)
   ============================================================= */
.tc-section { background: #f5f5f5; padding: 40px 20px; }
.tc-container { max-width: 1200px; margin: 0 auto; }

.tc-title-wrap { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.tc-icon-box {
    width: 42px; height: 42px; background: #2e7d32;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px; font-size: 20px; color: #fff;
}
.tc-main-title { font-size: 2rem !important; font-weight: 700; color: #111; margin: 0; }

.tc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.tc-card {
    display: flex; gap: 20px; align-items: flex-start;
    background: #fff; border-radius: 10px; padding: 20px;
}
.tc-icon {
    width: 60px; height: 60px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; flex-shrink: 0;
}
.tc-icon--blue   { background: #dbeef5; color: #007c91; }
.tc-icon--orange { background: #f3e4dc; color: #c75b12; }

.tc-card-title { font-size: 22px !important; font-weight: 700; margin: 0 0 8px; color: #111; }
.tc-card-title a { color: inherit; }
.tc-card-desc  { font-size: 16px !important; color: #444; line-height: 1.6; }
.tc-card-desc a { color: #111; font-weight: 600; text-decoration: underline; }

@media (max-width: 768px) { .tc-grid { grid-template-columns: 1fr; gap: 20px; } .tc-main-title { font-size: 26px !important; } }
@media (max-width: 480px) { .tc-main-title { font-size: 22px !important; } .tc-card-title { font-size: 18px !important; } .tc-card-desc { font-size: 14px !important; } }

/* =============================================================
   7. MAIN PAGE WRAPPER & CONTENT GRID  (.pg-*)
   ============================================================= */
.pg-wrapper { max-width: 1480px; margin: 0 auto; padding: 2rem; background: #fff; }
.pg-grid    { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }

@media (max-width: 768px) { .pg-wrapper { padding: 1rem; } .pg-grid { grid-template-columns: 1fr; } }

/* =============================================================
   8. SECTION HEADERS inside main grid  (.sh-*)
   ============================================================= */
.sh-block { margin-bottom: 24px; }
.sh-block h2 { font-size:2rem; font-weight: 900; color: #0a0e27; margin-bottom: 4px; letter-spacing: -.02em; line-height: 1.1; }
.sh-block p  { font-size: clamp(.9rem,2vw,1.05rem) !important; color: #64748b; }

/* =============================================================
   9. TOP STORIES GRID  (.ts-*)
   ============================================================= */
.ts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 3rem; }

.ts-card {
    background: transparent; border-radius: 12px;
    overflow: hidden; transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
}
.ts-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.15); }

.ts-img-wrap { position: relative; width: 100%; overflow: hidden; border-radius: 8px; }
.ts-img-wrap img { width: 100%; height: 280px; object-fit: contain; display: block; transition: transform .5s ease; }
.ts-card:hover .ts-img-wrap img { transform: scale(1.06); }

.ts-tags {
    position: absolute; top: 12px; left: 12px;
    display: flex; gap: 8px; flex-wrap: wrap; z-index: 2;
}
.ts-tag {
    background: #fff; color: #111; padding: 3px 10px;
    border-radius: 4px; font-size: 13px !important; font-weight: 500;
    border: 1px solid #ddd;
}

.ts-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 14px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.85) 100%);
    display: flex; flex-direction: column; gap: 5px;
}
.ts-location { display: flex; align-items: center; gap: 5px; color: #fff; font-size: 13px !important; font-weight: 500; }
.ts-location i { font-size: 11px; }
.ts-name   { color: #fff; font-size: 18px !important; font-weight: 700; margin: 0; line-height: 1.3; }
.ts-desc   { color: #fff; font-size: 14px !important; margin: 0; line-height: 1.4; }
.ts-link   { color: #fff; font-size: 14px !important; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; margin-top: 4px; transition: gap .3s; }
.ts-link:hover { gap: 9px; }

@media (max-width: 992px) { .ts-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px) { .ts-grid { grid-template-columns: 1fr; } }

/* =============================================================
   10. FUTURE MAKERS GRID  (.fm-*)
   ============================================================= */
/* Combined 3-section row */
.combined-sections-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: start;
}
.combined-col { display: flex; flex-direction: column; }
.combined-col .sh-block { margin-bottom: 1rem; }
.combined-col .fm-card,
.combined-col .btc-card,
.combined-col .np-card { width: 100%; }
@media (max-width: 992px) { .combined-sections-row { grid-template-columns: 1fr; } }

.fm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 3rem; }

.fm-card {
    background: linear-gradient(120deg, #9bd6e559, transparent);
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
    transition: transform .3s, box-shadow .3s;
    padding: 11px;
}
.fm-card:hover { transform: translateY(-5px); box-shadow: 0 6px 16px rgba(0,0,0,.12); }

.fm-img-wrap { position: relative; width: 100%; overflow: hidden; border-radius: 9px; }
.fm-img-wrap img { width: 100%; height: 220px; object-fit: cover; display: block; border-radius: 9px; }
.fm-location {
    position: absolute; bottom: 12px; right: 12px;
    color: #fff; padding: 5px 10px; border-radius: 20px;
    font-size: 13px !important; display: flex; align-items: center; gap: 5px;
}
.fm-location i { font-size: 11px; }

.fm-body { padding: 14px 10px 10px; }
.fm-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.fm-tag {
    background: #fff; color: #111; padding: 2px 9px;
    border-radius: 4px; font-size: 13px !important;
    border: 1px solid #ddd;
}
.fm-card h4   { font-size: 16px !important; font-weight: 700; color: #111; margin-bottom: 6px; }
.fm-card p    { font-size: 14px !important; color: #475569; line-height: 1.5; margin-bottom: 10px; }
.fm-read-more { display: inline-flex; align-items: center; gap: 5px; color: #475569; font-size: 14px !important; font-weight: 600; transition: gap .3s; }
.fm-read-more:hover { gap: 8px; }

@media (max-width: 992px) { .fm-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .fm-grid { grid-template-columns: 1fr; } }

/* =============================================================
   11. BE THE CHANGE  (.btc-*)
   ============================================================= */
.btc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 3rem; }

.btc-card { background: transparent; border-radius: 12px; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; position: relative; }
.btc-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.15); }

.btc-img-wrap { position: relative; width: 100%; overflow: hidden; border-radius: 8px; }
.btc-img-wrap img { width: 100%; height: 340px; object-fit: cover; display: block; transition: transform .5s ease; }
.btc-card:hover .btc-img-wrap img { transform: scale(1.06); }

.btc-tags { position: absolute; top: 12px; left: 12px; display: flex; gap: 8px; flex-wrap: wrap; z-index: 2; }
.btc-tag {
    background: #fff; color: #111; padding: 3px 10px;
    border-radius: 4px; font-size: 13px !important; font-weight: 500;
    border: 1px solid #ddd;
}

.btc-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 14px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.85) 100%);
    display: flex; flex-direction: column; gap: 5px;
}
.btc-location { display: flex; align-items: center; gap: 5px; color: #fff; font-size: 13px !important; font-weight: 500; }
.btc-location i { font-size: 11px; }
.btc-name   { color: #fff; font-size: 18px !important; font-weight: 700; margin: 0; line-height: 1.3; }
.btc-desc   { color: #fff; font-size: 14px !important; margin: 0; line-height: 1.4; }
.btc-link   { color: #fff; font-size: 14px !important; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; margin-top: 4px; transition: gap .3s; }
.btc-link:hover { gap: 9px; }

@media (max-width: 992px) { .btc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .btc-grid { grid-template-columns: 1fr; } }

/* =============================================================
   12. NET POSITIVE  (.np-*)
   ============================================================= */
.np-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: stretch;   /* all columns same height */
}

.np-card {
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;           /* fill the row height */
    transition: transform .3s ease, box-shadow .3s ease;
    padding: 18px;
    color: #fff;
}
.np-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,.15); }

.np-card--blue  { background: linear-gradient(135deg, #0066cc 0%, #004999 100%); }
.np-card--green { background: linear-gradient(135deg, #3AAF2A 0%, #007904 100%); }
.np-card--olive { background: linear-gradient(135deg, #8F8400 0%, #797b00 100%); }

.np-card h4 { font-size: 20px !important; color: #fff; margin: 0 0 12px; line-height: 1.3; }

.np-tags { display: flex; gap: 10px; margin-bottom: 16px; }
.np-tag {
    background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
    color: #fff; padding: 2px 2px; border-radius: 6px;
    font-size: 13px !important; font-weight: 500;
    border: 1px solid rgba(255,255,255,.3);
}

/* Fixed height image so all cards have the same image area */
.np-img-wrap { position: relative; width: 100%; overflow: hidden; border-radius: 8px; flex-shrink: 0; }
.np-img-wrap img { width: 100%; height: 240px; object-fit: cover; display: block; }

.np-img-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 14px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.85) 100%);
    display: flex; flex-direction: column; gap: 5px;
}
.np-img-location { display: flex; align-items: center; gap: 5px; color: #fff; font-size: 13px !important; font-weight: 500; }
.np-img-location i { font-size: 11px; }
.np-img-desc { color: #fff; font-size: 14px !important; font-weight: 500; line-height: 1.4; margin: 0; }

/* Footer pinned to bottom */
.np-card-footer { margin-top: auto; padding-top: 14px; }
.np-read-more {
    display: inline-flex; align-items: center; gap: 8px;
    color: #fff; font-size: 16px !important; transition: gap .3s ease;
}
.np-read-more:hover { gap: 12px; }
.np-read-more i { font-size: 14px; transition: transform .3s ease; }
.np-read-more:hover i { transform: translateX(3px); }

@media (max-width: 1024px) { .np-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 600px)  { .np-grid { grid-template-columns: 1fr; } .np-card h4 { font-size: 22px !important; } }

/* =============================================================
   13. LOAD MORE  (.lm-*)
   ============================================================= */
.lm-container { display: flex; justify-content: center; margin: 2rem 0; }
.lm-btn {
    padding: 12px 35px; background: #4caf50; color: #fff;
    border: none; border-radius: 6px; font-size: .95rem !important;
    font-weight: 600; cursor: pointer; transition: background .3s;
}
.lm-btn:hover { background: #45a049; }

/* =============================================================
   14. SIDEBAR  (.sb-*)
   ============================================================= */
.sb-sidebar { position: sticky; top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.sb-header  { margin-bottom: .5rem; }
.sb-title   { font-size: 1.75rem !important; font-weight: 900; color: #0a0e27; margin-bottom: 4px; line-height: 1.2; }
.sb-subtitle { font-size: .9rem !important; color: #64748b; line-height: 1.5; }
.sb-sidebar-ad { width: 100%; height: auto; display: block; border-radius: 12px; }

/* Shared promo card shell */
.sb-card {
    border-radius: 5px; padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    transition: transform .3s ease, box-shadow .3s ease;
}
.sb-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,.18); }
.sb-card-img { width: 100%; border-radius: 8px; margin-bottom: 1rem; object-fit: cover; }

/* Green Pages card */
.sb-card--green { background: linear-gradient(135deg, #3d9b5f 0%, #41AD49 100%); color: #fff; }
.sb-card--green h3 { font-size: 1.3rem !important; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.sb-card--green p  { font-size: .9rem !important; color: rgba(255,255,255,.95); margin-bottom: .75rem; }

.sb-search-white {
    width: 100%; padding: .65rem 1rem;
    border: 1px solid rgba(255,255,255,.35); border-radius: 6px;
    background: #fff; color: #0a0e27; font-size: .9rem !important;
    margin-bottom: .75rem; outline: none;
}
.sb-search-white::placeholder { color: #94a3b8; }
.sb-search-label { color: rgba(255,255,255,.9); font-size: .8rem !important; margin-bottom: .5rem; font-weight: 600; display: block; }
.sb-categories { display: flex; flex-wrap: wrap; gap: .4rem; }
.sb-cat-tag {
    display: inline-block; padding: .35rem .75rem;
    background: rgba(255,255,255,.2); border-radius: 16px;
    font-size: .7rem !important; color: #fff;
    border: 1px solid rgba(255,255,255,.3); font-weight: 600;
    transition: background .2s;
}
.sb-cat-tag:hover { background: rgba(255,255,255,.32); }

/* Career Catalysts card */
.sb-card--yellow {
    background: #F2C71D; border-left: 4px solid #fbc02d;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sb-yellow-left { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.sb-card--yellow h3 { font-size: 1.4rem !important; font-weight: 700; color: #1a202c; margin: 0; }
.sb-card--yellow p  { font-size: .9rem !important; color: #1a202c; margin: 0; }
.sb-view-all {
    display: inline-flex; align-items: center; gap: 6px;
    color: #1a202c; font-weight: 700; font-size: .9rem !important; transition: gap .3s;
}
.sb-view-all:hover { gap: 10px; }
.sb-yellow-img { width: 100%; height: 160px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
/* .sb-yellow-img img { width: 100%; height: 100%; object-fit: cover; display: block; } */

/* Carbon Dating card */
.sb-card--carbon { background: linear-gradient(45deg, #004FA1, #023870); color: #fff; }
.sb-card--carbon h3 { font-size: 1.3rem !important; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.sb-card--carbon p  { font-size: .9rem !important; color: rgba(255,255,255,.9); margin-bottom: .75rem; }
.sb-event-label { color: rgba(255,255,255,.9); font-size: .82rem !important; font-weight: 600; display: block; margin-top: .75rem; margin-bottom: .5rem; }
.sb-carbon-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: #fff; font-weight: 700; font-size: .9rem !important; transition: gap .3s;
}
.sb-carbon-link:hover { gap: 10px; }

/* Quiz card */
.sb-card--quiz { background:linear-gradient(135deg, #014994  0%, #41AD49 100%) }
.sb-quiz-img { width: 100%; border-radius: 8px; margin-bottom: 1rem; overflow: hidden; }
.sb-quiz-img img { width: 100%; height: 150px; object-fit: cover; }
.sb-card--quiz h3 { font-size: 1.2rem !important; font-weight: 700; color: white; margin-bottom: .4rem; }
.sb-card--quiz p  { font-size: .9rem !important; color: white; margin-bottom: .75rem; }
.sb-quiz-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: white; font-weight: 600; font-size: .9rem !important; transition: gap .3s;
}
.sb-quiz-link:hover { gap: 10px; }

@media (max-width: 768px) {
    .sb-sidebar { position: static; }
    .sb-card--yellow { flex-direction: column; }
    .sb-yellow-img { width: 100%; height: 180px; }
}

/* =============================================================
   15. INFO SECTIONS (bottom full-width)  (.info-*)
   ============================================================= */
.info-sections {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 25px; margin: 30px auto; width: 96%; max-width: 1400px;
}
.info-card { padding: 30px; border-radius: 10px; color: #fff; }
.info-card h3 { font-size: 1.4rem !important; margin-bottom: 15px; line-height: 1.3; font-weight: 600; }
.info-card p  { font-size: .95rem !important; margin-bottom: 20px; line-height: 1.6; }
.info-card--blue  { background: linear-gradient(45deg, #004FA1, #023870); }
.info-card--green { background: linear-gradient(45deg, #3AAF2A, #007904); }
.info-btn, .info-btn-alt {
    padding: 10px 25px; border: 2px solid #fff; background: #fff;
    color: #1a202c; border-radius: 6px; font-size: .95rem !important;
    font-weight: 600; cursor: pointer; transition: all .3s;
}
.info-btn:hover     { color: #1565c0; }
.info-btn-alt:hover { color: #43a047; }
@media (max-width: 576px) { .info-sections { grid-template-columns: 1fr; } }

/* =============================================================
   16. NEWSLETTER  (.nl-*)
   ============================================================= */
.nl-section {
    background: linear-gradient(90deg, #0d5cb6 0%, #45b876 100%);
    padding: 30px; border-radius: 8px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 30px; align-items: center;
    width: 95%; margin: 40px auto;
}
.nl-left  { display: flex; flex-direction: column; gap: 10px; }
.nl-title { font-size: 24px !important; margin: 0; font-weight: bold; color: #fff; }
.nl-text  { font-size: 14px !important; margin: 0; opacity: .95; line-height: 1.5; color: #fff; }
.nl-right { display: flex; justify-content: flex-end; }
.nl-form  { display: flex; gap: 0; width: 100%; background: #fff; padding: 4px; border-radius: 5px; }
.nl-email {
    flex: 1; padding: 12px 16px; border: none;
    border-radius: 4px; font-size: 14px !important; outline: none;
}
.nl-btn {
    padding: 12px 24px; background: #2abf60; color: #fff;
    border: none; border-radius: 4px; font-weight: 600;
    cursor: pointer; transition: background .3s; white-space: nowrap;
    font-size: 14px !important;
}
.nl-btn:hover { background: #0f4028; }

@media (max-width: 768px) { .nl-section { grid-template-columns: 1fr; gap: 20px; width: 95%; } .nl-title { font-size: 20px !important; } }
@media (max-width: 480px) { .nl-section { padding: 20px; } .nl-form { flex-direction: column; } .nl-btn { width: 100%; } }

/* =============================================================
   17. MOBILE CLEANUP (page-level)
   ============================================================= */
@media (max-width: 768px) {
    .climateclub-main {
        overflow-x: clip;
    }

    .cc-hero {
        min-height: 62vh;
        padding: 32px 16px;
    }

    .cc-hero__content p br {
        display: none;
    }

    .diy-section,
    .mb-section,
    .vox-section,
    .tc-section {
        padding: 28px 14px;
    }

    .diy-header,
    .mb-header,
    .tc-title-wrap,
    .vox-header {
        margin-bottom: 14px;
    }

    .fr-section {
        margin: 14px;
        padding: 28px 16px;
        border-radius: 10px;
    }

    .pg-wrapper {
        padding: 14px;
    }

    .pg-grid {
        gap: 20px;
    }

    .sh-block {
        margin-bottom: 14px;
    }

    .sh-block h2 {
        font-size: 1.7rem !important;
        line-height: 1.2;
    }

    .sh-block p {
        font-size: 0.95rem !important;
    }

    .ts-grid,
    .fm-grid,
    .btc-grid,
    .np-grid {
        margin-bottom: 1.6rem;
    }

    .ts-img-wrap img,
    .btc-img-wrap img {
        height: 240px;
    }

    .np-img-wrap img {
        height: 210px;
    }

    .ts-tag,
    .btc-tag,
    .fm-tag,
    .np-tag {
        font-size: 12px !important;
    }

    .np-tags {
        flex-wrap: wrap;
    }

    .tc-card {
        flex-direction: column;
        gap: 14px;
    }

    .tc-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
        border-radius: 12px;
    }

    .sb-header {
        margin-bottom: 0;
    }

    .sb-title {
        font-size: 1.5rem !important;
    }

    .sb-card {
        padding: 1rem;
    }

    .sb-card--yellow {
        gap: 10px;
    }

    .sb-yellow-img {
        height: auto;
    }

    .info-sections {
        width: 100%;
        gap: 14px;
        padding: 0 14px;
        margin: 20px auto;
    }

    .info-card {
        padding: 20px;
    }

    .nl-section {
        width: 100%;
        margin: 20px 0 0;
        border-radius: 0;
    }

    .nl-right {
        justify-content: stretch;
    }
}

@media (max-width: 480px) {
    .cc-hero__content h1 {
        font-size: 1.9rem !important;
    }

    .cc-hero__content p {
        font-size: 15px !important;
        margin-bottom: 24px;
    }

    .cc-hero__icon-circle {
        width: 58px;
        height: 58px;
    }

    .cc-hero__icon-box span {
        font-size: 14px;
    }

    .diy-title,
    .mb-title,
    .vox-title,
    .tc-main-title {
        font-size: 1.45rem !important;
    }

    .sh-block h2 {
        font-size: 1.45rem !important;
    }

    .ts-img-wrap img,
    .btc-img-wrap img {
        height: 200px;
    }

    .np-card {
        padding: 14px;
    }

    .np-card h4 {
        font-size: 1.1rem !important;
    }

    .mb-card,
    .vox-card,
    .tc-card,
    .info-card {
        padding: 16px;
    }
}