/*
Theme Name: GBM International V2
Theme URI: http://gbmi.co.za/themetest
Author: John Peter Crause
Author URI: http://johncrause.com
Description: The official GBM International website theme. A custom theme for all GBM websites, including schools and personal websites.
Version: 2.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-header, custom-menu
Text Domain: gbminternationalv2

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* =====================================================================
   GBM International V2 — MARK: Stylesheet INDEX
   ---------------------------------------------------------------------
   MARK: Base Styles and Sizing
   MARK: Typography
   MARK: Header and Navbar
    ---Slim Action Strip
   MARK: Page Layout
   MARK: Footer
   MARK: Links
   MARK: Breadcrumbs
   MARK: Buttons
   MARK: Forms
   MARK: Cards
   MARK: Content Components
   MARK: Utilities
   MARK: Images + Media
   MARK: Sidebar
   MARK: Sidebar Widgets
   MARK: Single Post
   MARK: Dashboard
   MARK: Comments
   MARK: Shortcode
   MARK: Maintenance
   MARK: EXPERIMENTAL

   (Variant/Profile styles live in assets/stylesheets/*.css)
   (Per-site overrides live in themesettings.css)
===================================================================== */

/* =====================================================================
   MARK: Base Styles and Sizing
===================================================================== */

:root {
  /* Standard colors */
  --gbm-color-orange: #fe7018;
  --gbm-color-blue: #1076b9;
  --gbm-color-red: #f41612;
  --gbm-color-green: #0bdb5b;
  --gbm-color-beige: #913809;

  /* Main Colors */
  --gbm-site-primary: var(--gbm-color-blue);
  --gbm-site-secondary: var(--gbm-color-orange);

  --gbm-body-bg: #f1f3f5;
  --gbm-header-bg: #fff;
  --gbm-header-accent: var(--gbm-site-primary);

  --gbm-border-color: #ddd;
  --gbm-shadow: 0 12px 24px rgba(18, 32, 38, 0.08);

  /* Footer colors: */
  --footer-bg-main: #333;
  --footer-title-color: #fff;
  --footer-text-color: rgba(255,255,255,0.80);
  --footer-link-color: rgba(255,255,255,0.86);
  --footer-bg-bottom: var(--gbm-site-primary);

  /* NAV Type scale - rem size x 16 to get px size*/
  --gbm-text-nav-sm: 0.9rem;  /* ~14.4px */
  --gbm-text-nav: 1.1rem;     /* ~17.6px */
  --gbm-text-nav: 1.2rem;     /* ~19.2px */

  /* Text Type scale - rem size x 16 to get px size*/
  --gbm-text-xs: 0.75rem;     /* ~12px */
  --gbm-text-sm: 0.875rem;    /* ~14px */
  --gbm-text: 1.1rem;         /* ~17.6px */
  --gbm-text-lg: 1.25rem;     /* ~20px */
  --gbm-text-xl: 2rem;        /* ~32px */
  --gbm-text-2xl: 2.5rem;     /* ~40px */

  --gbm-h1: clamp(2.1rem, 3.2vw, 3.0rem);
  --gbm-h2: clamp(1.7rem, 2.4vw, 2.25rem);
  --gbm-h3: clamp(1.35rem, 1.8vw, 1.75rem);
  --gbm-h4: clamp(1.15rem, 1.4vw, 1.35rem);

  /* Spacing rhythm */
  --gbm-space-xs: 0.5rem;
  --gbm-space-sm: 0.75rem;
  --gbm-space-md: 1rem;
  --gbm-space-lg: 1.5rem;
  --gbm-space-xl: 2.25rem;
  --gbm-space-xxl: 3rem;

  /* Post Grid Rules */
  --gbm-card-cols-desktop: 1;
  --gbm-card-cols-tablet: 2;
  --gbm-card-cols-mobile: 1;
}

/* Site background (shows at the sides) */
body {
  background: var(--gbm-body-bg);
  font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111;              /* base text color */
  line-height: 1.65;        /* comfortable reading rhythm */
}

/* Base text */
p,
li {
  font-size: var(--gbm-text-lg);
  /* margin: 0 0 var(--gbm-space-md); */
}

/* .navbar p,
.navbar li {
  font-size: var(--gbm-text-nav);
} */

.navbar .nav-link {
  font-size: var(--gbm-text-nav);
}

/* Headings: consistent rhythm */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin: var(--gbm-space-xl) 0 var(--gbm-space-md);
}

h1 { font-size: var(--gbm-h1); color: var(--gbm-color-blue) }
h2 { font-size: var(--gbm-h2); color: #2e899e; }
h3 { font-size: var(--gbm-h3); color: var(--gbm-color-beige)}
h4 { font-size: var(--gbm-h4); color: #2e899e; }

/* Tweak heading spacing when a heading is the first thing in a section */
.gbm-page-header h1:first-child,
.gbm-page-header h2:first-child,
.gbm-page-header h3:first-child,
.gbm-page-header h4:first-child {
  margin-top: 0;
}

/* =====================================================================
   MARK: Typography
===================================================================== */


/* =====================================================================
   MARK: Header and Navbar
   - Dropdown toggle button styling
   - Desktop underline behaviour
   - Mobile collapse spacing + dropdown stacking
===================================================================== */

.gbm-site-header {
  background-color: var(--gbm-header-bg);
}

/* Navbar dropdown arrow button (desktop + general) */
.gbm-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* spacing around the arrow */
  margin-left: -0.15rem;
  margin-right: 0.45rem; /* keeps a little space before the next nav item */
  padding: 0.15rem 0.35rem;

  /* subtle separation from the parent text, so it feels "attached" */
  border-left: 1px solid rgba(0, 0, 0, 0.10);

  /* keep it visually light */
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;

  line-height: 1;
  opacity: 0.85;
}

.gbm-nav-toggle:hover {
  opacity: 1;
}

.gbm-nav-toggle:focus {
  outline: none;
}

.gbm-nav-toggle:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.35);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Desktop: make it obvious the arrow belongs to the parent item */
@media (min-width: 992px) {

  /* All nav items share underline behaviour */
  .navbar-nav .nav-item {
    position: relative;
    display: flex;
    align-items: center;
  }

  .navbar-nav .nav-link {
    display: inline-flex;
    align-items: center;
    position: relative;
  }

  /* Hover underline for ALL nav links */
  .navbar-nav .nav-item:hover::after,
  .navbar-nav .nav-item:focus-within::after {
    content: "";
    position: absolute;
    left: 0.25rem;
    right: 0.25rem;
    bottom: 0.1rem;
    height: 2px;
    background: rgba(0, 0, 0, 0.14);
    border-radius: 2px;
    pointer-events: none;
  }

  /* Permanent underline for active page */
  .navbar-nav .current-menu-item::after,
  .navbar-nav .current-menu-parent::after,
  .navbar-nav .current-menu-ancestor::after,
  .navbar-nav .current_page_item::after,
  .navbar-nav .current_page_parent::after,
  .navbar-nav .current_page_ancestor::after {
    content: "";
    position: absolute;
    left: 0.25rem;
    right: 0.25rem;
    bottom: 0.1rem;
    height: 2px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 2px;
    pointer-events: none;
  }
}

@media (max-width: 991px) {

  .navbar-collapse .navbar-nav {
    text-align: left;
    padding: 1rem;
  }

  .navbar-collapse .navbar-nav .nav-link {
    padding: 0.8rem 0;
  }

  /* Mobile: indicate the current/active page in the collapsed menu */
  .navbar-collapse .navbar-nav .current-menu-item > .nav-link,
  .navbar-collapse .navbar-nav .current-menu-parent > .nav-link,
  .navbar-collapse .navbar-nav .current-menu-ancestor > .nav-link,
  .navbar-collapse .navbar-nav .current_page_item > .nav-link,
  .navbar-collapse .navbar-nav .current_page_parent > .nav-link,
  .navbar-collapse .navbar-nav .current_page_ancestor > .nav-link {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.2em;
  }

  /* Parent dropdown link: keep it on the same row as the arrow */
  .navbar-collapse .navbar-nav .nav-link.dropdown-toggle {
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.6rem; /* adjust this to change space between text and arrow */
    flex: 1 1 auto;
  }

  .navbar-collapse .navbar-nav .dropdown-toggle::after {
    margin-left: 0;           /* gap controls spacing instead */
    vertical-align: middle;
    transform: translateY(0);
  }

  /* Make dropdown items wrap: row 1 = link + arrow, row 2 = submenu */
  .navbar-collapse .navbar-nav .nav-item.dropdown {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
  }

  /* Split toggle arrow button sits to the right of the link */
  .navbar-collapse .navbar-nav .nav-item.dropdown > .dropdown-toggle-split {
    flex: 0 0 auto;
    margin-left: 0.6rem; /* space between link and arrow button */
  }

  /* Submenu: stack below parent + indent (works with .dropdown-menu or .sub-menu)
     - Hidden by default
     - Shown when Bootstrap adds .show OR when a custom JS toggles .gbm-open
  */
  .navbar-collapse .navbar-nav .nav-item.dropdown > .dropdown-menu,
  .navbar-collapse .navbar-nav .nav-item.dropdown > .sub-menu {
    flex: 0 0 100%;
    width: 100%;
    order: 3;

    position: static !important;
    float: none !important;

    /* prevent popover-style positioning */
    transform: none !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;

    margin-top: 0.25rem;
    padding-top: 0.25rem;
    padding-left: 1.25rem; /* indent */

    background: transparent;
    border: none;
    box-shadow: none;

    display: none;
  }

  .navbar-collapse .navbar-nav .nav-item.dropdown.show > .dropdown-menu,
  .navbar-collapse .navbar-nav .nav-item.dropdown.show > .sub-menu,
  .navbar-collapse .navbar-nav .nav-item.dropdown.gbm-open > .dropdown-menu,
  .navbar-collapse .navbar-nav .nav-item.dropdown.gbm-open > .sub-menu {
    display: block;
  }
}

/* ------------------------------------------------------------
   ---Slim Action Strip
------------------------------------------------------------ */

.gbm-action-strip {
  background: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: var(--gbm-text-nav);
  margin-top: 0px;
  padding: 0.5rem;
}

/* .gbm-action-strip {
  position: relative;
  z-index: 5;

  margin-top: -0px;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);

  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);

  font-size: 1.25rem;
  border-radius: 0px; 
} */

.gbm-action-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 40px;
  padding: 0.2rem 0.1rem;
}

.gbm-action-strip__link {
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
  font-weight: 500;
}

.gbm-action-strip__link:hover {
  text-decoration: underline;
}

.gbm-action-strip__link--donate {
  color: #b02a37; /* donate emphasis */
  font-weight: 700;
}

.gbm-action-strip__sep {
  color: rgba(0, 0, 0, 0.35);
  font-size: 1em;
}

/* Mobile adjustments */
@media (max-width: 575px) {
  .gbm-action-strip__inner {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
}

/* =====================================================================
   MARK: Page Layout
===================================================================== */

/* Hero = Page Title Section */
.gbm-layout-full .gbm-page-hero {
  background: #ffffff;
  padding-top: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.gbm-page-hero {
  background: #ffffff;
  padding-top: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

/* Body = Page Content */
.gbm-layout-full .gbm-page-body {
  background: #ffffff;
}

/* =====================================================================
   MARK: Footer
===================================================================== */
/* Footer layout + typography. */

.gbm-site-footer {
  /* margin-top: 5rem; */
  border-top: solid 5px var(--gbm-site-primary);
}

.gbm-site-footer__main {
  padding: 3rem 0;
  background: var(--footer-bg-main);
  color: var(--footer-text-color);
}

.gbm-site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  /* grid-template-columns: repeat(3, minmax(0, 1fr)); */
  gap: 2rem;
  margin: 0 1rem;
}

.gbm-footer-title {
  font-size: 1rem;
  margin: 0 0 0.75rem;
  color: var(--footer-title-color);
}

.gbm-footer-text,
.gbm-site-footer__main p,
.gbm-site-footer__main li {
  color: var(--footer-text-color);
}

.gbm-site-footer__main a {
  color: var(--footer-link-color);
  text-decoration: none;
}

.gbm-site-footer__main a:hover {
  text-decoration: underline;
}

.gbm-site-footer__bottom {
  background: var(--footer-bg-bottom);
  color: var(--footer-text-color);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.gbm-site-footer__bottom-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gbm-site-footer__bottom a {
  color: var(--footer-link-color);
  text-decoration: none;
}

.gbm-site-footer__bottom a:hover {
  text-decoration: underline;
}

.gbm-footer-menu {
  list-style: none;
  margin: 0;
  margin-top: 1rem;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  text-align: center;
}

.gbm-footer-menu li {
  margin: 0;
  padding: 0;
}

/* Social Media Icons */

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: block;

  /* If icons are black on dark footer, make them visible */
  filter: brightness(0) invert(1);
}

/* Tablet and up: 2-3 columns */
@media (min-width: 768px) {
  .gbm-footer-menu {
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 0.5rem;
    margin-top: 0;
  }
}

@media (min-width: 991px) {
  .gbm-site-footer__grid {
    /* grid-template-columns: 1fr; */
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .gbm-site-footer__bottom-inner {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}

/* Desktop: sizing */
@media (min-width: 1024px) {
  /* .gbm-footer-menu {
    grid-template-columns: repeat(3, 1fr);
  } */
}

/* @media (max-width: 991px) {
  .gbm-site-footer__grid {
    grid-template-columns: 1fr;
  }

  .gbm-site-footer__bottom-inner {
    flex-direction: column;
    justify-content: center;
    padding: 0.75rem 0;
    text-align: center;
  }
  .gbm-footer-menu {
    text-align: center;
    display: block;
  }
} */

/* =====================================================================
   MARK: Links
===================================================================== */

/* Links (simple default) */
a {
  color: inherit;
  text-decoration: underline;
  /* text-underline-offset: 0.15em; */
}

a:hover {
  text-decoration-thickness: 2px;
}

/* Small screens: slightly tighter spacing */
@media (max-width: 480px) {
  h1, h2, h3, h4 {
    margin: var(--gbm-space-lg) 0 var(--gbm-space-sm);
  }
}

/* =====================================================================
   MARK: Breadcrumbs
===================================================================== */

/* -------------------
---Site Brand Crumb 
--------------------*/
.brand-crumb {
  display: flex;
  align-items: center;
  min-width: 0; /* critical for ellipsis in flex layouts */
  max-width: 100%;
  gap: .4rem;
}
.brand-crumb__item {
  display: inline-flex;
  align-items:center;
  min-width: 0;
  text-decoration: none;
}
.brand-crumb__parent {
  flex: 0 0 auto;
}
.brand-crumb__current {
  flex: 1 1 auto;
  min-width: 0;
  margin-right: 1rem;
}
.brand-crumb__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.2rem;
}
.brand-crumb__sep {
  flex: 0 0 auto;
  opacity: .6;
}
.brand-crumb .brand-crumb__parent {
  font-weight: 500;
  line-height: 1;
  opacity: .8;
}
.brand-crumb .brand-crumb__parent:hover {
  color: var(--gbm-color-blue);
  opacity: 1;
}
.brand-crumb .brand-crumb__current {
  font-weight: 600;
  line-height: 1;
}
.brand-crumb .brand-crumb__current:hover {
  color: var(--gbm-site-primary);
}
/* =====================================================================
   MARK: Buttons
===================================================================== */
/* Base button normalization can go here; component styles usually live in variants. */


/* =====================================================================
   MARK: Forms
===================================================================== */
/* Form inputs, labels, validation states. */

/* Contact Form */
/* ============ */

.gbm-contact-us__header {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--gbm-site-primary);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.gbm-contact-us-form{
  padding: 2rem;
  background-color: #fafbfb;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
}

.gbm-contact-us-details,
.gbm-contact-us-form {
  margin: 3rem 0 1rem;
}

/* Donation Form */
/* ============ */

.gbm-donation__header {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--gbm-site-primary);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.gbm-love-gift-form {
  padding: 2rem;
  background-color: #fafbfb;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
}

.gbm-donation-details,
.gbm-donation-form {
  margin: 3rem 0 1rem;
}


/* =====================================================================
   MARK: Cards
===================================================================== */
/* Core card structure + layout (variant polish lives in modern.css) */

.gbm-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Card Grid Layout */
.gbm-card-grid {
  display: grid;
  grid-template-columns: repeat(var(--gbm-card-cols-desktop), minmax(0, 1fr));
  gap: 2rem;
  margin-top: var(--gbm-space-lg);
}

@media (max-width: 991px) {
  .gbm-card-grid {
    grid-template-columns: repeat(var(--gbm-card-cols-tablet), minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .gbm-card-grid {
    grid-template-columns: repeat(var(--gbm-card-cols-mobile), minmax(0, 1fr));
  }
}

/* Card base (keep readable even in basic variant) */
.gbm-card--post {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;

  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Image Block */
.gbm-card__image {
  display: block;
  text-decoration: none;
}

/* Ensure the thumbnail fills nicely */
.gbm-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Card Body + Typography */
.gbm-card__body {
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1 1 auto;
}

.gbm-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.gbm-card__meta--category {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom: 0.25rem;
}

/* Category link styling (clickable, still subtle) */
.gbm-card__meta--category a {
  color: inherit;
  text-decoration: none;
}

.gbm-card__meta--category a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.gbm-card__title {
  margin: 0;
  line-height: 1.2;
  font-size: 1.35rem;
}

/* Keep the theme link rules from underlining everything inside the title */
.gbm-card__title a {
  text-decoration: none;
}

.gbm-card__title a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.gbm-card__excerpt {
  color: rgba(0,0,0,0.72);
  font-size: 1rem;
}

/* Prevent global li/p styles from making the excerpt huge */
.gbm-card__excerpt p {
  font-size: 1rem;
  margin: 0;
}

/* Footer row (date + read more) */
.gbm-card__footer {
  margin-top: auto; /* pushes footer to bottom */
  padding-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  border-top: 1px solid rgba(0,0,0,0.06);
}

.gbm-card__date {
  font-size: 0.92rem;
  color: rgba(0,0,0,0.55);
}

.gbm-card__readmore {
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.gbm-card__readmore:hover {
  text-decoration: underline;
}

/* No-image cards: keep the top looking intentional */
.gbm-card--post.gbm-card--noimage .gbm-card__body {
  padding-top: 1.5rem;
}

.gbm-card--post.gbm-card--noimage .gbm-card__header {
  padding-top: 0.25rem;
}

.gbm-card--post.gbm-card--noimage .gbm-card__title {
  margin-top: 0;
}

/* General Cards */
/* ------------- */
.dash-login-hero-card {
   background: #fff;
   border: 1px solid var(--dash-border-color);
   border-radius: 8px;
   padding: 2rem;
   margin: 2rem auto;
   box-shadow: 0 4px 12px rgba(27, 110, 102, 0.1);
   text-align: center;
}
 
.gbm-ad-card {
   background: #fff;
   border: 1px solid var(--dash-border-color);
   border-radius: 8px;
   padding: 2rem;
   margin: 2rem auto;
   box-shadow: 0 4px 12px rgba(27, 110, 102, 0.1);
}

/* =====================================================================
   MARK: Content Components
===================================================================== */

/* Account / Avatar UI
   ------------------------------------------------------------ */

/* Avatar trigger link behaves like a clean icon button */
.gbm-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Remove the default focus outline on click */
.gbm-avatar:focus {
  outline: none;
  box-shadow: none;
}

/* Keep an accessible focus style for keyboard users */
.gbm-avatar:focus-visible {
  outline: 2px solid rgba(0,0,0,0.35);
  outline-offset: 3px;
  border-radius: 999px;
}

.gbm-avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bs-primary, #0d6efd);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  flex: 0 0 36px;
  transition: transform 0.15s ease;
  outline: none;
  box-shadow: none;
  opacity: 0.90;
}

.gbm-avatar-circle:hover {
  transform: scale(1.11);
  opacity: 1.00;
}

/* Member level coloring
   ------------------------------------------------------------ */

/* Default member */
.gbm-avatar-circle.level-1 {
  background-color: #0d6efd;
}

/* Partner Bronze */
.gbm-avatar-circle.level-2 {
  background-color: #dc3545;
}

/* Partner Silver */
.gbm-avatar-circle.level-3 {
  background-color: #198754;
}

/* Partner Gold */
.gbm-avatar-circle.level-4 {
  background-color: gold;
}

/* Platinum Partner */
.gbm-avatar-circle.level-5,
.gbm-avatar-circle.level-6,
.gbm-avatar-circle.level-7,
.gbm-avatar-circle.level-8 {
  background-color: #0dcaf0;
}

/* Admin */
.gbm-avatar-circle.level-9 {
  border: 2px solid gold;
}

/* =====================================================================
   MARK: Utilities
===================================================================== */
/* Small helper classes that don't belong elsewhere. Keep minimal. */


/* =====================================================================
   MARK: Images + Media
===================================================================== */
/* Styling for images and media players. */

/* Force navbar logo sizing */
.gbm-nav-icon .custom-logo {
  height: 36px;
  width: auto;
  max-height: 36px;
  margin-right: 0.5rem;
}

.navbar-brand .site-title {
  font-weight: 600;
  line-height: 1;
}

/* -------------- */
/* Love Gift Page */
/* -------------- */

.gbm-love-gift__img-group{
  display:flex;
  gap:12px;
  align-items:center;
  /* justify-content:center; */
  flex-wrap:wrap;
}

.gbm-love-gift__img{ 
  flex:0 1 160px;
  width:160px;
  height:200px;
  object-fit:cover;
  border-radius:10px;
}

/* .gbm-love-gift__img{
  flex:1 1 150px;
  max-width:200px;
  width:100%;
  height:auto;
  display:block;
  border-radius:10px;
} */

/* =====================================================================
   MARK: Sidebar
===================================================================== */

/* Sidebar wrapper */
.gbm-sidebar {
  padding-left: var(--gbm-space-md);
  padding-top: var(--gbm-space-lg);
}

/* Stack widgets cleanly */
.gbm-sidebar .widget {
  margin-bottom: var(--gbm-space-md);
}

/* Widget container */
.gbm-sidebar .widget {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 1.25rem;
}

/* Widget titles */
.gbm-sidebar .widget-title {
  font-size: 1rem;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

/* Widget text */
.gbm-sidebar p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

/* Widget lists */
.gbm-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gbm-sidebar li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* Widget links */
.gbm-sidebar a {
  text-decoration: none;
}

.gbm-sidebar a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .gbm-sidebar {
    padding-left: 0;
    margin-top: var(--gbm-space-md);
  }
}

/* =====================================================================
   MARK: Sidebar Widgets
===================================================================== */

/* Generic list widgets */
.gbm-sidebar .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gbm-sidebar .widget li {
  margin: 0.35rem 0;
  padding: 0;
}

/* Add subtle separators for long lists (optional, nice) */
.gbm-sidebar .widget li + li {
  padding-top: 0.35rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Links in widgets */
.gbm-sidebar .widget a {
  text-decoration: none;
}

.gbm-sidebar .widget a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  /* text-decoration-color: var(--gbm-site-primary); */
}

/* ------------------------------------------------------
   Search Form
------------------------------------------------------ */

.gbm-searchform {
  display: flex;
  flex-wrap: wrap; /* let items wrap instead of overlapping */
  gap: 0.5rem;
  align-items: center;
}

.gbm-searchform__input {
  flex: 1;
  min-width: 0; /* allow flex item to shrink */
  box-sizing: border-box;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 0.375rem;
  background: #fff;
  font-size: 1rem;
  transition: box-shadow 150ms ease, border-color 150ms ease;
}

.gbm-searchform__input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}

.gbm-searchform__button {
  flex: 0 0 auto; /* keep button its intrinsic size */
  padding: 0.55rem 0.9rem;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 120ms ease, transform 80ms ease;
}

.gbm-searchform__button:hover {
  background: #1e40af;
}

.gbm-searchform__button:active {
  transform: translateY(1px);
}

@media (max-width:520px) {
  .gbm-searchform {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }
  .gbm-searchform__input,
  .gbm-searchform__button {
    width: 100%;
  }
  .gbm-searchform__button {
    padding: 0.6rem;
  }
}

/* ------------------------------------------------------
   Categories / Archives / Meta / Pages Widgets
------------------------------------------------------ */
.gbm-sidebar .widget_categories li,
.gbm-sidebar .widget_archive li,
.gbm-sidebar .widget_meta li,
.gbm-sidebar .widget_pages li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

/* Count bubble (only affects categories/archive widgets that output counts) */
.gbm-sidebar .widget_categories li .count,
.gbm-sidebar .widget_archive li .count {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.55);
}

/* ------------------------------------------------------
   Recent Posts Widget
------------------------------------------------------ */
.gbm-sidebar .widget_recent_entries li {
  border-top: none; /* prevent double borders if you prefer */
}

.gbm-sidebar .widget_recent_entries a {
  display: inline-block;
  font-weight: 600;
  line-height: 1.25;
}

.gbm-sidebar .widget_recent_entries .post-date {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: rgba(0,0,0,0.55);
}

/* ------------------------------------------------------
   Recent Comments Widget
------------------------------------------------------ */
.gbm-sidebar .widget_recent_comments li {
  color: rgba(0,0,0,0.75);
  line-height: 1.3;
}

.gbm-sidebar .widget_recent_comments a {
  font-weight: 600;
}

/* ------------------------------------------------------
   Tag Cloud Widget
------------------------------------------------------ */
.gbm-sidebar .tagcloud,
.gbm-sidebar .wp-block-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gbm-sidebar .tagcloud a,
.gbm-sidebar .wp-block-tag-cloud a {
  display: inline-block;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  background: rgba(0,0,0,0.03);
  font-size: 0.9rem !important; /* overrides WP’s inline font sizes */
  line-height: 1;
  text-decoration: none;
}

.gbm-sidebar .tagcloud a:hover,
.gbm-sidebar .wp-block-tag-cloud a:hover {
  background: rgba(0,0,0,0.06);
}

/* ------------------------------------------------------
   Nav Menu Widget
------------------------------------------------------ */
.gbm-sidebar .widget_nav_menu ul {
  margin: 0;
  padding: 0;
}

.gbm-sidebar .widget_nav_menu li {
  border-top: none;
}

.gbm-sidebar .widget_nav_menu a {
  display: block;
  padding: 0.45rem 0.2rem;
  border-radius: 8px;
}

.gbm-sidebar .widget_nav_menu a:hover {
  background: rgba(0,0,0,0.04);
  text-decoration: none;
}

/* ------------------------------------------------------
   Calendar Widget (optional)
------------------------------------------------------ */
.gbm-sidebar .widget_calendar table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.gbm-sidebar .widget_calendar caption {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gbm-sidebar .widget_calendar th,
.gbm-sidebar .widget_calendar td {
  padding: 0.35rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.08);
}

.gbm-sidebar .widget_calendar a {
  font-weight: 700;
}

/* =====================================================================
   MARK: Single Post
===================================================================== */

/* Article shell */
.gbm-article {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 2rem;
  margin-top: var(--gbm-space-md);
  margin-bottom: var(--gbm-space-md);
}

/* Header */
.gbm-article__header {
  margin-bottom: 1.75rem;
}

.gbm-article__meta--category {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom: 0.5rem;
}

.gbm-article__meta--category a {
  text-decoration: none;
  color: inherit;
}

.gbm-article__meta--category a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

/* Title */
.gbm-article__title {
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

/* Date / byline */
.gbm-article__meta--byline {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.6);
}

/* Featured image */
.gbm-article__featured {
  margin: 2rem 0;
}

.gbm-article__featured img {
  width: 100%;
  height: auto;
  display: block;
}

/* Article content typography */
.gbm-article__content {
  line-height: 1.7;
}

.gbm-article__content p {
  margin-bottom: 1.25rem;
}

.gbm-article__content h2,
.gbm-article__content h3,
.gbm-article__content h4 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.gbm-article__content ul,
.gbm-article__content ol {
  margin: 1.25rem 0 1.25rem 1.25rem;
}

.gbm-article__content li {
  margin-bottom: 0.5rem;
}

/* Footer */
.gbm-article__footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* Tags */
.gbm-article__tags {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.gbm-article__tags-label {
  margin-right: 0.5rem;
  color: rgba(0,0,0,0.6);
}

.gbm-article__tags a {
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.25rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
}

.gbm-article__tags a:hover {
  background: rgba(0,0,0,0.05);
}

/* Prev / Next navigation */
.gbm-article__nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.gbm-article__nav a {
  text-decoration: none;
  font-weight: 600;
}

.gbm-article__nav a:hover {
  text-decoration: underline;
}

/* Mobile spacing */
@media (max-width: 767px) {
  .gbm-article {
    padding: 1.5rem;
  }

  .gbm-article__nav {
    flex-direction: column;
  }
}

/* Pagination: container + layout */

.gbm-pagination-card {
  display: flex;
  margin: var(--gbm-space-xl) 0 var(--gbm-space-xl);
  padding: 1rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}
.gbm-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  /* justify-content: center; */
  flex-wrap: wrap;
  align-items: center;
}

.gbm-pagination li {
  margin: 0;
}

/* Links and current item */
.gbm-pagination a,
.gbm-pagination span.page-numbers,
.gbm-pagination li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  color: #111;
  text-decoration: none;
  min-width: 2.1rem;
  box-sizing: border-box;
  transition: background .12s ease, color .12s ease, transform .06s ease;
}

.gbm-pagination a:hover,
.gbm-pagination a:focus {
  background: #2563eb;
  color: #fff;
  /* background: rgba(37,99,235,0.06); */
  outline: none;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.06);
}

/* Active/current page */
.gbm-pagination .current,
.gbm-pagination li.current,
.gbm-pagination li .current {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
  font-weight: 600;
  pointer-events: none;
}

/* Prev/Next emphasis */
.gbm-pagination li.prev a,
.gbm-pagination li.next a,
.gbm-pagination a.prev,
.gbm-pagination a.next {
  padding: 0.35rem 0.6rem;
  font-weight: 600;
}

/* Small screens: bigger tap targets, allow wrapping */
@media (max-width: 520px) {
  .gbm-pagination ul { gap: 0.35rem; }
  .gbm-pagination a,
  .gbm-pagination span.page-numbers,
  .gbm-pagination li a {
    padding: 0.5rem 0.6rem;
    min-width: 2.6rem;
  }
}

/* =========================================================
   MARK: Dashboard
========================================================= */

.gbm-dashboard {
  padding: 0;
  margin: 0;
}

/* Header */
.gbm-dashboard__header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.gbm-dashboard__title {
  margin: 0 0 0.25rem;
}

.gbm-dashboard__subtitle {
  margin: 0;
  opacity: 0.75;
}

/* Layout */
.gbm-dashboard__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 70vh;
}

/* ---------------------------------
   ---Left Sidebar
--------------------------------- */

.gbm-dashboard__sidebar {
  background: #1e1f23;
  color: #e8e9ec;
  padding: 1.5rem 1rem;
}

.gbm-dashbox__title {
  margin: 0 0 var(--gbm-space-md);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* Sidebar navigation */
.gbm-dashnav {
  display: grid;
  gap: 0.25rem;
}

.gbm-dashnav__link {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  color: #e8e9ec;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.gbm-dashnav__link:hover {
  background: rgba(255,255,255,0.08);
}

.gbm-dashnav__link.is-active {
  background: rgba(255,255,255,0.14);
  font-weight: 600;
}

/* ---------------------------------
   ---Right Content Area
--------------------------------- */

.gbm-dashboard__main {
  background: #f6f7f9;
  padding: 2rem;
}

/* Panels */
.gbm-dashpanel {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.gbm-dashpanel + .gbm-dashpanel {
  margin-top: var(--gbm-space-md);
}

.gbm-dashpanel__title {
  margin: 0 0 0.75rem;
}

.gbm-dashpanel p {
  line-height: 1.25rem;
}

/* ---------------------------------
   --Mobile
--------------------------------- */

@media (max-width: 991px) {
  .gbm-dashboard__layout {
    grid-template-columns: 1fr;
  }

  .gbm-dashboard__sidebar {
    padding: 1rem;
  }

  .gbm-dashboard__main {
    padding: 1.25rem;
  }
}

/* ---------------------------------
   ---Dashboard Member Block
--------------------------------- */

.gbm-dashmember {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0.85rem;
  margin-bottom: 1rem;

  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.gbm-dashmember__avatar .gbm-avatar-circle {
  width: 42px;
  height: 42px;
  font-size: 0.9rem;
  flex: 0 0 42px;
}

.gbm-dashmember__name {
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  word-break: break-word;
}

.gbm-dashmember__sub {
  margin-top: 0.15rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ---------------------------------
   ---Dashboard Sidebar Actions
--------------------------------- */

.gbm-dashactions {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.gbm-dashactions__link {
  flex: 1 1 auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;

  padding: 0.55rem 0.75rem;
  border-radius: 10px;

  color: #e8e9ec;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  transition: background 0.15s ease, transform 0.15s ease;
}

.gbm-dashactions__link:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}

.gbm-dashactions__link:focus-visible {
  outline: 2px solid rgba(255,255,255,0.35);
  outline-offset: 2px;
}

.gbm-dashactions__link--danger {
  background: rgba(220, 53, 69, 0.18);
  border-color: rgba(220, 53, 69, 0.25);
}

.gbm-dashactions__link--danger:hover {
  background: rgba(220, 53, 69, 0.28);
}

/* ---------------------------------
   ---Dashboard Service Panels
--------------------------------- */

.gbm-dashboard-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: var(--gbm-space-md);
}

@media (max-width: 991px) {
  .gbm-dashboard-services {
    grid-template-columns: 1fr;
  }
}

/* Panel shell */
.gbm-dash-service {
  display: flex;
  flex-direction: column;
  min-height: 170px;

  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
  overflow: hidden; /* allows footer border + rounded corners */
}

.gbm-dash-service__footer {
  background: #333;
  border-top: 1px solid #333;
}

/* Body */
.gbm-dash-service__body,
.gbm-dash-service > :not(.gbm-dash-service__footer) {
  padding: 1.25rem 1.25rem 1rem;
}

.gbm-dash-service__title,
.gbm-dash-service h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  line-height: 1.45;
}

.gbm-dash-service__desc,
.gbm-dash-service p {
  margin: 0;
  opacity: 0.8;
  /* line-height: 1.45; */
}

.gbm-dash-service__footer-desc {
  margin: 0;
  opacity: 0.8;
  line-height: 1.45;
  font-size: 12pt;
  color: #777;
}

/* Footer */
.gbm-dash-service__footer {
  margin-top: auto; /* pushes footer to bottom */
  padding: 0.85rem 1.25rem;

  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;

  border-top: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.02);
}

/* Action button */
.gbm-dash-service__action,
.gbm-dash-service a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;

  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(0,0,0,0.04);
}

/* Fancies */
.gbm-dash-service a:hover {
  background: rgba(0,0,0,0.06);
}

/* Subtle hover lift for the whole card */
/* .gbm-dash-service:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
} */

/* =========================================================
   MARK: Comments
========================================================= */
/* Comment Form */

.gbm-comment-form {
  display: block;
  padding: 2rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin: var(--gbm-space-lg) 0 var(--gbm-space-lg);
}

.gbm-comment-form > * {
  width: 100%;
}

.gbm-comment-form .comment-form {
  width: 100%;
}

.gbm-comment-form .comment-form-comment {
  margin: 0;
}

.gbm-comment-form .comment-form-comment textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 1rem;
}

.gbm-comment-form input#author,
.gbm-comment-form input#email {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 1rem;
}

/* Comment Blocks */
.comments-area {
  margin-top: var(--gbm-space-xxl);
}

.comment-list,
.comment-list .children {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment-list .children {
  margin-top: var(--gbm-space-md);
  margin-left: clamp(0.85rem, 2.4vw, 2rem);
  /* margin: 0.75rem 0 0 1rem; */
  padding-left: var(--gbm-space-md);
  border-left: 2px solid rgba(0, 0, 0, 0.12);
}

/* Card shell */
.comment-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.comment-card__avatar img,
.comment-card__avatar .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
}

.comment-card-item {
  margin-bottom: var(--gbm-space-lg);
}

/* Header/meta */
.comment-card__body {
  min-width: 0;
}

.comment-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.8rem;
  margin-bottom: var(--gbm-space-sm);
}

.comment-card__author {
  font-size: var(--gbm-text);
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}

.comment-card__author a {
  text-decoration: none;
}

.comment-card__author a:hover,
.comment-card__author a:focus-visible {
  text-decoration: underline;
}

.comment-card__permalink {
  color: #666;
  text-decoration: none;
}

.comment-card__permalink:hover,
.comment-card__permalink:focus-visible {
  color: #111;
  text-decoration: underline;
}

/* Moderation state */
.comment-card__moderation-note {
  margin: 0 0 var(--gbm-space-sm);
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(254, 112, 24, 0.35);
  background: rgba(254, 112, 24, 0.10);
  border-radius: 8px;
  color: #5a3007;
  font-size: 0.95rem;
} 

/* Content */
.comment-card__content {
  color: #111;
  line-height: 1.5;
}

.comment-card__actions {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.comment-card__content a {
  color: var(--gbm-site-primary);
}

.comment-card__reply-link a,
.comment-card__edit-link a {
  color: var(--gbm-site-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

.comment-card__reply-link a:hover,
.comment-card__reply-link a:focus-visible,
.comment-card__edit-link a:hover,
.comment-card__edit-link a:focus-visible {
  color: var(--gbm-site-secondary);
  text-decoration: underline;
}

.comment-card-item.bypostauthor > .comment-card {
  border-color: rgba(16, 118, 185, 0.35);
  box-shadow: 0 0 0 2px rgba(16, 118, 185, 0.10), 0 10px 28px rgba(0, 0, 0, 0.06);
}

/* Actions */

.comment-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.9rem;
  margin-top: var(--gbm-space-md);
}

@media (max-width: 640px) {
  .comment-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: var(--gbm-space-sm);
    padding: var(--gbm-space-md);
  }

  .comment-card__avatar img,
  .comment-card__avatar .avatar {
    width: 44px;
    height: 44px;
  }

  .comment-list .children {
    margin-left: 0.7rem;
    padding-left: 0.7rem;
  }
}

/* =========================================================
   MARK: Shortcode
========================================================= */

/* =========================================================
   MARK: MAINTENANCE
========================================================= */

.students-table {
  width: 100%;
  border-collapse: collapse;
}
.students-table th,
.students-table td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.maint-header {
  display: flex;
  
  background: #fff;
  border: 1px solid var(--gbm-border-color);
  border-radius: 8px;
  padding: 0.5rem;
  margin: 1rem;
  box-shadow: 0 2px 4px var(--gbm-shadow);

  flex-direction: column;
  align-items: center;
  text-align: center;
}

.maint-header p {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.25rem 0;
  color: var(--gbm-site-primary);
}

.maint-big {
  display: flex;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.5rem;
}

.maint-big a > img {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
}

.maint-dash-panel {
  margin: 1rem;
  border: 1px solid var(--gbm-border-color);
  border-radius: 8px;
  background: #fff;
  padding: 1.5rem;
}

.maint-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1rem;
}

.maint-options-panel {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gbm-border-color);
  border-radius: 8px;
  background: #fff;
  padding: 1.5rem;
}

.maint-options-panel h2 {
  padding-bottom: 0.5rem;
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.maint-options-panel p {
  font-size: 1rem;
  margin: 0 0 1rem;
  color: rgba(0, 0, 0, 0.627);
}

.maint-options-panel a {
  margin-top: auto;
}


/* =========================================================
   MARK: EXPERIMENTAL
========================================================= */

/* EXPERIMENTAL */

.gbm-full-bleed__ad {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
  padding: 2rem 0;
  background: #f5f5f5;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.gbm-full-bleed__wrapper .gbm-full-bleed__grey,
.gbm-full-bleed__wrapper .gbm-full-bleed__white {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
  padding: 2rem 0;
}

.gbm-full-bleed__wrapper .gbm-full-bleed__grey { 
  background: #f5f5f5; 
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}
.gbm-full-bleed__wrapper .gbm-full-bleed__white { 
  background: #ffffff; 
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.gbm-full-bleed__image {
  border-radius: 15px;
}
