/* ==========================================================
   GLOBAL FONT: JOST (Google Fonts)
========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/* Hide blinking caret (text insertion cursor) site-wide,
   but still allow text selection and copying */
* {
  caret-color: transparent !important;
}

input, textarea {
  caret-color: auto !important; /* show caret only in real fields */
}

/* Match text selection highlight to your accent color */
::selection {
  background: var(--exhibitio-accent); /* your accent variable */
  color: #fff; /* text color inside highlight */
}

/* Safari-specific */
::-moz-selection {
  background: var(--exhibitio-accent);
  color: #fff;
}

/* ==========================================================
   ROOT VARIABLES
========================================================== */
:root {
  /* ============================
     COLOR SYSTEM
  ============================ */
  --exhibitio-accent:   #503AA8;
  --exhibitio-text:     #7b7e86;
  --exhibitio-heading:  #373e43;
  --exhibitio-muted:    #666;
  --exhibitio-border:   #dfdfdf;
  --exhibitio-meta:     #999;
  --exhibitio-menu:     #222;   /* ✅ new variable for header menus */

  /* ============================
     HEADER & LAYOUT SIZES
  ============================ */
  --header-min-h:       80px;   /* main header height */
  --logo-h:             64px;   /* stable desktop logo height */
  --logo-h-mobile:      48px;   /* stable mobile logo height */
  --topbar-height:      40px;   /* top bar height */
  --search-drop-height: 150px;  /* dropdown height when open */

  /* ============================
     Z-LAYER ORDER (STACKING)
     Highest → Lowest
  ============================ */
  --z-offcanvas: 9999;   /* mobile/offcanvas panel */
  --z-backdrop: 9998;    /* backdrop behind offcanvas */
  --z-header:   1000;    /* site header */
  --z-submenu:  990;     /* dropdown submenu */
  --z-slider:   1;       /* hero slider / main content */
}

/* ==========================================================
   BASE TYPOGRAPHY
========================================================== */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Jost", sans-serif;
  line-height: 1.6;
  color: var(--exhibitio-text);
  background: #fff;
  font-size: 17px;
  font-weight: 300;
}

/* Headings use Jost */
h1, h2, h3, h4, h5, h6,
.page-title,
.blog-title,
.comments-title {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  color: var(--exhibitio-heading, #373e43);
  margin-top: 0;
}

/* Optional softer weights for smaller headings */
h5, h6 {
  font-weight: 500;
}

/* Links */
a {
  color: var(--exhibitio-accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--exhibitio-accent);
  outline-offset: 2px;
}

/* ==========================================================
   TOP BAR VISIBILITY CONTROL
========================================================== */
body.topbar-none .top-bar { 
  display: none !important;
}
body.topbar-desktop .top-bar { 
  display: block; 
}
@media (max-width: 767px) {
  body.topbar-desktop .top-bar { 
    display: none !important; 
  }
}
body.topbar-mobile .top-bar { 
  display: block; 
}
@media (min-width: 768px) {
  body.topbar-mobile .top-bar { 
    display: none !important; 
  }
}


.top-bar { position: relative;
  z-index: 1000; background:#111; color:#fff; font-size:.9rem; }
.top-bar .topbar-widget { padding:6px 0; }
.top-bar a { color:#fff; text-decoration:none; }
.top-bar a:hover { text-decoration:underline; }
.top-bar .top-bar-inner {
  display:flex; gap:16px; align-items:center; justify-content:space-between;
}
.top-bar .widget_nav_menu ul,
.top-bar .menu,
.top-bar .menu > ul {
  display:flex; gap:16px; margin:0; padding:0; list-style:none;
}
.top-bar .widget_nav_menu li { list-style:none; }
.top-bar .widget_nav_menu a { color:#fff; text-decoration:none; }
.top-bar .widget_nav_menu a:hover { text-decoration:underline; }


/* ============================
   LAYOUT HELPERS
============================ */
.container { max-width: 1200px; margin: 0 auto; padding: 10px; padding-top: 0px;  }
.container-full { width: 100%; padding: 10px; padding-top: 0px; }

/* ============================
   HEADER (3-zone grid with centered nav)
============================ */
.site-header {
  position: relative;
   z-index: var(--z-header);
  overflow: visible;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--exhibitio-border, #dfdfdf);
  min-height: var(--header-min-h);
  transition: background-color .2s ease, box-shadow .2s ease;

}

.site-header.is-sticky {
  position: sticky;
  top: 0;
}
.admin-bar .site-header.is-sticky { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-header.is-sticky { top: 46px; }
}

.site-header.is-sticky-shadow { box-shadow: 0 6px 30px rgba(0,0,0,.08); }

.site-header.is-transparent {
  background-color: transparent;
  color: #fff;
  border-bottom-color: transparent;
}

.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  min-height: var(--header-min-h);
  gap: 20px;
}

.header-left,
.header-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-center {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;

}

.header-left  { justify-content: flex-start; }
.header-right { justify-content: flex-end; }

.site-branding {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================
   BRANDING / LOGO
============================ */
.site-branding {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 64px;
}

.site-branding .custom-logo-link img,
.header-logo img,
.site-logo img,
.logo-img {
  height: auto;
  max-height: 64px;
  width: auto;
  transition: opacity .2s ease, transform .2s ease;
}

.logo-default,
.logo-sticky,
.logo-transparent { display: none; }
.logo-default { display: inline-block; }

.site-header.is-transparent .logo-default { display: none; }
.site-header.is-transparent .logo-transparent { display: inline-block; }

.site-header.is-sticky .logo-default,
.site-header.is-sticky .logo-transparent { display: none; }
.site-header.is-sticky .logo-sticky { display: inline-block; }

.site-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--exhibitio-accent);
}
.site-title:hover { text-decoration: underline; }
.site-description { margin: 0; font-size: .9rem; color: var(--exhibitio-muted); }




/* ============================
   HEADER MENUS (left + right + center)
============================ */
.header-left .menu,
.header-center .menu,
.header-right .menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", sans-serif;  
  color: var(--exhibitio-menu, #222);  /* ✅ use theme variable */
}

/* Apply relative ONLY to non-mega-menu items */
.header-left .menu > li:not(.has-mega),
.header-center .menu > li:not(.has-mega),
.header-right .menu > li:not(.has-mega) {
  position: relative;
}

.header-left .menu a,
.header-center .menu a,
.header-right .menu a {
  display: inline-block;
  padding: 6px 8px;
  border-radius: 6px;
  color: inherit;
  text-decoration: none;
  transition: color .2s ease, background-color .15s ease;
}

.header-left .menu a:hover,
.header-center .menu a:hover,
.header-right .menu a:hover {
  color: var(--exhibitio-accent);
}

.header-left .menu .current-menu-item > a,
.header-center .menu .current-menu-item > a,
.header-right .menu .current-menu-item > a {
  color: var(--exhibitio-accent);

}




/* ============================
   CONTENT / SIDEBAR (optional)
============================ */
.cards { display:grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap:24px; }
.card { border:1px solid #e8e8e8; border-radius:12px; overflow:hidden; background:#fff; }
.card .thumb { aspect-ratio: 4 / 3; background:#f0f0f0; display:block; }
.card .inner { padding:16px; }
.pagination { margin:32px 0; }

.content-with-sidebar { display:grid; grid-template-columns: 1fr 320px; gap:24px; }
.sidebar { padding:24px;  background:#fff; margin-top: 30px; }
.sidebar .widget { margin-bottom:24px; }
.widget-title { margin:0 0 8px; font-size:1rem; }


/* ============================
   SEARCH ICON + DROPDOWN
============================ */
.header-search-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-search {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: 16px;
}

.header-search-toggle {
  background: none;
  padding: 6px 10px;
  cursor: pointer;
  color: var(--exhibitio-accent);
  font-size: 1.2em;
  border: none;
  position: relative;
  z-index: var(--z-header); /* keep icon above dropdown */
}

/* ============================
   SEARCH DROPDOWN BELOW TOP BAR
============================ */
.search-bar-dropdown {
  position: absolute;
  top: 30px; /* ⬅️ sits below the top bar */
  left: 0;
  right: 0;
  background: #000;
  padding: 20px 30px;
  z-index: calc(var(--z-header) - 1); /* ⬅️ behind header */
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s ease, opacity 0.4s ease;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
}

/* Slide down to reveal below header */
.search-bar-dropdown.show {
  transform: translateY(var(--search-drop-height));
  opacity: 1;
  pointer-events: auto;
}


.search-bar-dropdown .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.search-bar-dropdown form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}


.search-bar-dropdown input[type="search"] {
  flex: 1;
  padding: 12px 16px;
  font-size: 1rem;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 0;
}

.search-bar-dropdown input[type="search"]:focus {
  outline: none;
  box-shadow: none;
}

.search-bar-dropdown input::placeholder {
  color: #aaa;
}

.search-bar-dropdown button {
  background: #f5c100;
  color: #000;
  border: none;
  padding: 12px 28px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 0;
  margin-right: 60px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Add the arrow */
.search-bar-dropdown button::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  opacity: 0;
  transition: all 0.3s ease;
  font-weight: 800;
}

/* Hover effect */
.search-bar-dropdown button:hover {
  background: #ffd633;
  padding-right: 42px; /* make space for arrow */
}

.search-bar-dropdown button:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}



/* ============================
   FOOTER
============================ */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text-color);
  padding: 20px 20px;
  text-align: center;
}

.footer-grid {
  display: grid;
  /* Automatically fit 1–4 columns, all filling evenly */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.footer-col {
  color: var(--footer-text-color);
  min-width: 0; /* Fix flex overflow when text is long */
}

.footer-col h1,
.footer-col h2,
.footer-col h3,
.footer-col h4,
.footer-col h5,
.footer-col h6 {
  color: var(--footer-title-color);
  margin-bottom: 10px;
}
.footer-title{
    font-size: 22px;
    
}
.footer-copy {
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--footer-text-color);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr; /* Stack all columns on mobile */
  }
}

/* ============================
   ACCESSIBILITY & MOTION
============================ */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ============================
   SPECIAL BUTTON
============================ */
.menu-button-link {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  background-color: var(--exhibitio-accent);
  color: #fff !important;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 400;                            /* ✅ slightly bolder for buttons */
  letter-spacing: 0.5px;
  display: inline-block;
  border-radius: 0;
  position: relative;
  z-index: 1;
  margin-left: 20px;
  text-decoration: none !important;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Animated overlay effect */
.menu-button-link::before {
  content: '';
  position: absolute;
  top: 0; 
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #373e43;
  z-index: -1;
  transition: width 0.4s ease;
}

.menu-button-link:hover::before {
  width: 100%;
}

.menu-button-link:hover {
  color: #fff !important;
  text-decoration: none;
}

/* ============================
   BURGER TOGGLE
============================ */
.offcanvas-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.3s ease;
  position: relative;
  z-index: 1001; /* above header content */
}

/* bars */
.offcanvas-toggle .burger-bar {
  width: 24px;
  height: 2px;
  background: #3f3f3f;
  border-radius: 1px;
  margin: 3.5px 0; /* evenly space bars */
  transition:
  transform 0.3s ease,
  opacity 0.3s ease;
}

/* Animate to X */
.offcanvas-toggle.is-active .burger-bar:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.offcanvas-toggle.is-active .burger-bar:nth-child(2) {
  opacity: 0;
}
.offcanvas-toggle.is-active .burger-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* ============================
   RESPONSIVE – Mobile (≤ 900px)
   Hide left & right header menus only
============================ */
@media (max-width: 900px) {
  .nav-left,
  .nav-right,
  .header-left .menu,
  .header-right .menu {
    display: none !important;
  }

  .header-search-wrapper {
    display: flex !important;
  }

  /* Layout fix: logo centered, search right */
  .header-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
  }

  .header-left {
    justify-content: flex-start;
  }

  .header-center {
    justify-content: center;
  }

  .header-right {
    display: none;;
  }

  /* Logo shrink on mobile */
  .header-logo img,
  .logo-img {
    max-height: var(--logo-h-mobile);
  }

}
/* ============================
   NORMAL & MEGA DROPDOWNS (Unified Behavior)
============================ */
.menu .sub-menu {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(var(--header-min-h, 66px));
  min-width: 220px;
  background: #fff;
  padding: 12px 0;
  margin: 0;
  list-style: none;
  border: 1px solid #e9e9f1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  z-index: var(--z-submenu, 990);
  margin-top: -13px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition:
  clip-path 0.5s ease,
  opacity 0.4s ease,
  transform 0.4s ease;
}

.menu .sub-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  clip-path: inset(0 0 0% 0);
  transform: translateY(var(--header-min-h, 66px));
}

/* Submenu links */
.menu .sub-menu li a {
  display: block;
  padding: 8px 12px;
  white-space: nowrap;
  border-radius: 6px;
  color: var(--exhibitio-menu);
  text-decoration: none;
  transition: background 0.2s ease;
}
.menu .sub-menu li a:hover {
  background: #fff;
}

/* Submenu animation */
.menu .sub-menu li {
  opacity: 0;
  transform: translateY(-10px);
}
.menu .sub-menu.is-open li {
  animation: slideIn 0.3s ease forwards;
}

/* Optional staggered delay */
.menu .sub-menu.is-open li:nth-child(1) { animation-delay: 0.05s; }
.menu .sub-menu.is-open li:nth-child(2) { animation-delay: 0.1s; }
.menu .sub-menu.is-open li:nth-child(3) { animation-delay: 0.15s; }

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================
   MEGA MENU (Exhibitio)
============================ */

/* Mega menu wrapper */
.menu > li.has-mega {
  position: static;
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #fff;
  padding: 35px 0px 20px 0px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  pointer-events: none;
  border-top: 1px solid var(--exhibitio-border, #dfdfdf);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition:
    opacity .3s ease,
    transform .3s ease,
    visibility .3s ease;
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.mega-left {
  flex: 0 0 260px;
}
.mega-parent-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.mega-image img {
  width: 260px;
  display: block;
  border-radius: 6px;
  height: 180px;
}

/* ============================
   MEGA COLUMNS
============================ */

/* Add vertical line to each column except the first */
.mega-col {
  position: relative;
  padding-left: 20px; /* space for line */
}

.mega-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; /* line at the left edge */
  width: 1px;
  height: 100%;
  background: var(--exhibitio-border, #dfdfdf);
}

/* Remove line for the very first column */
.mega-col:first-child::before {
  display: none;
}

.mega-columns {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: nowrap; /* keep columns on one row */
  gap: 20px;
}

.mega-cols-2 .mega-col {
  flex: 0 0 calc((100% - 20px) / 2); /* 2 cols minus 1 gap */
}

.mega-cols-3 .mega-col {
  flex: 0 0 calc((100% - 40px) / 3); /* 3 cols minus 2 gaps */
}

.mega-title {
  font-size: 15px !important;

  margin: 0 0 12px;
  padding: 0 20px;
  color: var(--exhibitio-text, #111);
}
.mega-title:hover {
  color: var(--exhibitio-accent);
}

/* ============================
   LINKS
============================ */

.mega-link-item a {
  display: block;
  padding: 6px 10px;
  text-decoration: none;
  color: var(--exhibitio-text);
}

/* Hover state */
.mega-link-item a:hover {
  color: var(--exhibitio-accent);
}

/* Current page state */
.mega-link-item.current-menu-item > a,
.mega-link-item.current_page_item > a,
.mega-links li.current-menu-item > a,
.mega-links li.current_page_item > a {
  color: var(--exhibitio-accent) !important;
  font-weight: 600;
}

/* ============================
   RESET LISTS
============================ */

.mega-links,
.mega-links li {
  list-style: none;       /* no bullets */
  margin: 0;
  padding: 0;
}

.mega-link-item {
  list-style-type: none;
}

/* Force all links inside mega menu to remain clickable */
.mega-menu * {
  pointer-events: auto;
}

/* ============================
   Widget Social Icons 
============================ */
.exhibitio-social-icons {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.exhibitio-social-icons li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover styles */
.exhibitio-social-icons li a:hover {
  color: var(--icon-hover-color, #000);
  background-color: var(--icon-bg-hover, transparent);
  text-decoration: none;
}

/* Circle shape */
.exhibitio-social-icons.circle li a {
  border-radius: 50%;
}

/* Square shape */
.exhibitio-social-icons.square li a {
  border-radius: 5px;
}

/* No shape (default) */
.exhibitio-social-icons.none li a {
  border-radius: 0;
}
.exhibitio-social-icons li a i {
  display: inline-block;
  width: 100%;
  text-align: center;
}

/* ============================
   Top Bar Navigation Menu
============================ */
.top-bar .widget_nav_menu a,
.top-bar .menu a {
  color: #a8a8a8;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar .widget_nav_menu a:hover,
.top-bar .menu a:hover {
  color: var(--exhibitio-accent, #c00); /* fallback to red if accent not defined */
  text-decoration: none;
}

/* ==========================================================
   BLOG PAGE — Exhibitio Theme
   ========================================================== */

/* ------------------------------
   GENERAL PAGE STRUCTURE
------------------------------- */
.blog-page.with-sidebar .container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-page.with-sidebar .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

/* Main Content (Posts) */
.blog-page.with-sidebar .col-lg-8 {
  flex: 0 0 68%;
  max-width: 68%;
}

/* Sidebar */
.blog-page.with-sidebar .col-lg-4 {
  flex: 0 0 32%;
  max-width: 32%;
}

/* Prevent float conflicts from older themes */
#secondary,
.sidebar,
.widget-area {
  float: none !important;
  clear: none !important;
}

/* Responsive: stack columns vertically */
@media (max-width: 900px) {
  .blog-page.with-sidebar .row {
    flex-direction: column;
    gap: 60px;
  }

  .blog-page.with-sidebar .col-lg-8,
  .blog-page.with-sidebar .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ------------------------------
   POST GRID STYLE
------------------------------- */
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.blog-card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  margin-top: 30px;
  border: 1px solid var(--exhibitio-border, #dfdfdf);
}


.blog-thumb img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  margin-bottom: 10px;
}

.blog-content {
  padding: 20px;
}

.blog-title {
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 20px;
}

.blog-title a {
  text-decoration: none;
  color: var(--exhibitio-heading, #222);
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--exhibitio-accent, #c19f5f);
}


/* ==========================================================
   BLOG META — SIMPLE INLINE TEXT LINKS (NO ICONS)
   ========================================================== */

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--exhibitio-meta, #999);
}
.blog-meta .date{
color: var(--exhibitio-heading, #222);
}
.blog-meta .author {
color: var(--exhibitio-heading, #222);
}
.blog-meta .category {
color: var(--exhibitio-heading, #222);
}
.blog-meta .comments {
color: var(--exhibitio-heading, #222);
}
.blog-meta span {
  position: relative;
}

.blog-meta span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--exhibitio-border, #ddd);
  margin-left: 18px;
  vertical-align: middle;
}

.blog-meta a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-meta a:hover {
  color: var(--exhibitio-accent, #c19f5f);
}
/* ==========================================================
   BLOG EXCERPT STYLE
   ========================================================== */

.blog-excerpt a {
  color: var(--exhibitio-accent, #c19f5f);
  text-decoration: none;
}

.blog-excerpt a:hover {
  text-decoration: underline;
}

/* ==========================================================
   READ MORE LINK WITH SLIDING UNDERLINE EFFECT
   ========================================================== */

.read-more {
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  padding-bottom: 3px; /* gives space for the animated line */
  color: var(--exhibitio-heading, #c19f5f);
  text-decoration: none; /* ✅ prevents the default underline */
  line-height: 1.2; /* ✅ slightly taller to avoid descender clipping */
  transition: color 0.3s ease;
}

.read-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; /* ✅ align exactly at the bottom */
  width: 0%;
  height: 2px;
  background-color: var(--exhibitio-accent, #c19f5f);
  transition: width 0.3s ease;
}

.read-more:hover {
  color: var(--exhibitio-accent, #c19f5f);
  text-decoration: none; /* ✅ ensures no native underline appears */
}

.read-more:hover::after {
  width: 100%;
}


/* ------------------------------
   PAGINATION
------------------------------- */
.pagination {
  text-align: center;
  margin-top: 60px;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 4px;
  background: #f8f8f8;
  border-radius: 5px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background: var(--accent-color, #c19f5f);
  color: #fff;
}

.pagination .current {
  background: var(--accent-color, #c19f5f);
  color: #fff;
}

/* ------------------------------
   SIDEBAR STYLING
------------------------------- */
.sidebar,
#secondary,
.widget-area {
  padding: 0 15px;
}

.widget {
  margin-bottom: 40px;
  background: #fff;
  padding: 25px 20px;
  border: 1px solid var(--exhibitio-border, #dfdfdf);
}

.widget-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--exhibitio-heading, #222);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--exhibitio-accent, #c19f5f);
  display: inline-block;
  padding-bottom: 4px;
}

/* ==========================================================
   CATEGORY WIDGET — with right arrow icon
   ========================================================== */
.widget_categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget_categories ul li {
  position: relative;
  border: 1px solid var(--exhibitio-border, #dfdfdf);
  border-radius: 4px;
  margin-bottom: 12px;
  background: #fff;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.2s ease;
}

.widget_categories ul li a {
  display: block;
  padding: 10px 38px 10px 14px; /* leave room for the arrow */
  text-decoration: none;
  color: #555;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Arrow icon */
.widget_categories ul li::after {
  content: "\f061"; /* Font Awesome arrow-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  color: var(--exhibitio-heading, #c19f5f);
  font-size: 0.9rem;
  opacity: 0.6;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    color 0.3s ease;
}

/* Hover state */
.widget_categories ul li:hover {
  background-color: var(--exhibitio-accent, #c19f5f);
  border-color: var(--exhibitio-accent, #c19f5f);
  transform: translateY(-2px);
}

.widget_categories ul li:hover a {
  color: #fff;
}

.widget_categories ul li:hover::after {
  color: #fff;
  opacity: 1;
  transform: translateY(-50%) translateX(4px); /* slide arrow slightly right */
}

/* Active (current category) */
.widget_categories ul li.current-cat,
.widget_categories ul li.current-cat-parent {
  background-color: var(--exhibitio-accent, #c19f5f);
  border-color: var(--exhibitio-accent, #c19f5f);
}

.widget_categories ul li.current-cat a,
.widget_categories ul li.current-cat-parent a {
  color: #fff;
  font-weight: 600;
}

.widget_categories ul li.current-cat::after,
.widget_categories ul li.current-cat-parent::after {
  color: #fff;
  opacity: 1;
}

/* Responsive */
@media (max-width: 600px) {
  .widget_categories ul li a {
    padding: 8px 32px 8px 12px;
    font-size: 0.9rem;
  }
  .widget_categories ul li::after {
    right: 10px;
  }
}



/* ------------------------------
   RESPONSIVE TWEAKS
------------------------------- */
@media (max-width: 600px) {
  .blog-thumb img {
    height: 180px;
  }

  .blog-content {
    padding: 16px;
  }

  .blog-title {
    font-size: 1.2rem;
  }
}

/* ==========================================================
   SIDEBAR SEARCH WIDGET (Custom Exhibitio Style)
   ========================================================== */
.widget_search {
  background: #fff;
  padding: 25px 20px;
}

.widget_search .widget-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--exhibitio-heading, #222);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--exhibitio-accent, #c19f5f);
  display: inline-block;
  padding-bottom: 4px;
}
/* ==========================================================
   SIDEBAR SEARCH WIDGET — RESPONSIVE FIX
   ========================================================== */
.widget_search .search-form {
  display: flex;
  align-items: center;
  position: relative;
}

/* Search input */
.widget_search .search-field {
  flex: 1;
  height: 44px;
  padding: 0 50px 0 16px; /* leave space for button */
  border: 1px solid #ddd;
  font-size: 15px;
  outline: none;
  color: #333;
  background: #f9f9f9;
  transition: all 0.3s ease;
  min-width: 0; /* important for flex shrinkage */
  box-sizing: border-box;
}

.widget_search .search-field:focus {
  border-color: var(--exhibitio-accent, #c19f5f);
  background: #fff;
  box-shadow: 0 0 0 2px rgba(193,159,95,0.15);
}

/* Search button */
.widget_search .search-submit {
  position: absolute;
  top: 40%;
  right: 6px;
  transform: translateY(-50%);
  background: var(--exhibitio-accent, #503AA8);
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.widget_search .search-submit:hover {
  background: #000;
}

.widget_search .search-submit i {
  font-size: 16px;
}

/* ----------------------------------------------------------
   RESPONSIVE FIXES
   ---------------------------------------------------------- */

/* On smaller sidebars or screens */
@media (max-width: 900px) {
  .widget_search .search-field {
    height: 42px;
    padding-right: 46px; /* slightly smaller padding */
    font-size: 14px;
  }
  .widget_search .search-submit {
    width: 32px;
    height: 32px;
    right: 5px;
  }
}

/* On very narrow mobile (prevent overlap entirely) */
@media (max-width: 600px) {
  .widget_search .search-field {
    padding-right: 42px; /* tighter space */
    font-size: 13px;
  }
  .widget_search .search-submit {
    width: 28px;
    height: 28px;
    right: 4px;
  }
  .widget_search .search-submit i {
    font-size: 13px;
  }
}

/* ==========================================================
   RECENT POSTS WIDGET (with thumbnail + date + title)
   ========================================================== */
.widget_recent_posts_custom {
  background: #fff;
  padding: 25px 20px;
  border: 1px solid var(--exhibitio-border, #dfdfdf);
  margin-bottom: 30px;
}

.widget_recent_posts_custom .widget-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--exhibitio-heading, #222);
  margin-bottom: 18px;
  border-bottom: 2px solid var(--exhibitio-accent, #c19f5f);
  display: inline-block;
  padding-bottom: 4px;
}

.widget_recent_posts_custom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget_recent_posts_custom li.rp-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

.widget_recent_posts_custom li.rp-item:last-child {
  margin-bottom: 0;
}

/* Thumbnail */
.widget_recent_posts_custom .rp-thumb-wrap {
  flex: 0 0 70px;
  display: block;
  border-radius: 6px;
  overflow: hidden;
}

.widget_recent_posts_custom .rp-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.widget_recent_posts_custom .rp-thumb-placeholder {
  width: 70px;
  height: 70px;
  background: #ddd;
  border-radius: 6px;
}

/* Info Section */
.widget_recent_posts_custom .rp-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.widget_recent_posts_custom .rp-date {
  font-size: 0.9rem;
  color: var(--exhibitio-meta, #999);
  margin-bottom: 3px;
  display: block;
  font-weight: 300;
}

.widget_recent_posts_custom .rp-title {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--exhibitio-heading, #222);
  text-decoration: none;
  transition: color 0.3s ease;
}

.widget_recent_posts_custom .rp-title:hover {
  color: var(--exhibitio-accent, #c19f5f);
}

/* Responsive */
@media (max-width: 600px) {
  .widget_recent_posts_custom li.rp-item {
    gap: 10px;
  }
  .widget_recent_posts_custom .rp-thumb,
  .widget_recent_posts_custom .rp-thumb-placeholder {
    width: 60px;
    height: 60px;
  }
  .widget_recent_posts_custom .rp-title {
    font-size: 0.9rem;
  }
}
/* ==========================================================
   TAG CLOUD STYLING — Exhibitio Theme
   ========================================================== */
.tagcloud a {
  display: inline-block;
  border: 1px solid var(--exhibitio-border, #dfdfdf);
  font-size: 13px !important;
  text-transform: uppercase;
  height: 40px;
  line-height: 40px;
  padding: 0 21px;
  margin-right: 5px;
  margin-bottom: 10px;
  color: var(--exhibitio-text, #333);
  background-color: #fff;
  border-radius: 0;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.2s ease;
}

/* Hover & Focus States */
.tagcloud a:hover,
.tagcloud a:focus {
  background-color: var(--exhibitio-accent, #503AA8);
  color: #fff;
  border-color: var(--exhibitio-accent, #503AA8);
  transform: translateY(-2px);
}

/* Optional subtle shadow on hover */
.tagcloud a:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .tagcloud a {
    height: 36px;
    line-height: 36px;
    padding: 0 16px;
    font-size: 12px !important;
  }
}
/* ==========================================================
   SINGLE POST — FULL WIDTH FEATURED IMAGE STYLE
   ========================================================== */

.single-blog-article.fullwidth-feature {
  margin: 0;
  padding: 0;
}

/* Fullwidth featured image */
.single-blog-article.fullwidth-feature .single-featured-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  max-height: 600px;
}

.single-blog-article.fullwidth-feature .single-featured-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

/* White card-style content area */
.single-blog-article.fullwidth-feature .single-inner {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  margin: -100px auto 80px; /* pulls content upward under image */
  position: relative;
  z-index: 5;
  max-width: 900px;
  padding: 40px;
}

.single-blog-article.fullwidth-feature .blog-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--exhibitio-heading, #222);
}

.single-blog-article.fullwidth-feature .blog-meta {
  font-size: 0.9rem;
  color: var(--exhibitio-meta, #999);
  margin-bottom: 25px;
}

.single-blog-article.fullwidth-feature .blog-meta i {
  margin-right: 6px;
  color: var(--exhibitio-accent, #c19f5f);
}

.single-blog-article.fullwidth-feature .entry-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

.single-blog-article.fullwidth-feature .entry-content img {
  max-width: 100%;
  border-radius: 10px;
  margin: 25px 0;
}

/* ============================
   POST TAGS STYLE (All Caps)
============================ */
.post-tags {
  margin-top: 25px;
  font-size: 0.8rem;
}

.post-tags a {
  display: inline-block;
  margin: 0 8px 8px 0;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--exhibitio-border, #e7e7e7);
  color: var(--exhibitio-text, #222);
  text-decoration: none;
  text-transform: uppercase; /* 👈 Makes all tags uppercase */
  letter-spacing: 0.5px;     /* optional: improves readability */
  font-weight: 400;          /* optional: adds slight boldness */
  transition: all 0.3s ease;
}

.post-tags a:hover {
  background: var(--exhibitio-accent, #503AA8);
  border-color: var(--exhibitio-accent, #503AA8);
  color: #fff;
}



/* Hover/scroll polish */
.single-blog-article.fullwidth-feature .single-featured-image img {
  transition: transform 6s ease, filter 0.5s ease;
}

.single-blog-article.fullwidth-feature .single-featured-image:hover img {
  transform: scale(1.05);
  filter: brightness(0.95);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .single-blog-article.fullwidth-feature .single-featured-image img {
    height: 450px;
  }
  .single-blog-article.fullwidth-feature .single-inner {
    margin: -70px auto 60px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .single-blog-article.fullwidth-feature .single-featured-image img {
    height: 350px;
  }
  .single-blog-article.fullwidth-feature .single-inner {
    margin: -50px auto 50px;
    padding: 25px;
  }
  .single-blog-article.fullwidth-feature .blog-title {
    font-size: 1.6rem;
  }
}
/* ==========================================================
   SINGLE POST — NAVIGATION & COMMENTS (MATCH BLOG CARD)
   ========================================================== */
.post-navigation {
  margin: 40px auto 60px;
  max-width: 900px;
  padding: 0 15px;
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--exhibitio-border, #e7e7e7);
}

.post-navigation .nav-previous:hover,
.post-navigation .nav-next:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.post-navigation .nav-label {
  display: block;
  font-size: 0.85rem;
  color: var(--exhibitio-accent, #c19f5f);
  margin-bottom: 5px;
}

.post-navigation .nav-title a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--exhibitio-heading, #222);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-navigation .nav-title a:hover {
  color: var(--exhibitio-accent, #c19f5f);
}

/* Comments */
.comments-area {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  margin: 0 auto 80px;
  max-width: 900px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.comments-area h2,
.comments-area h3 {
  color: var(--exhibitio-heading, #222);
}

.comment-body {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--exhibitio-border, #e7e7e7);
}

.comment-meta a {
  color: var(--exhibitio-accent, #c19f5f);
  font-weight: 500;
}

.comment-reply-link {
  color: var(--exhibitio-accent, #c19f5f);
  font-weight: 600;
  text-decoration: none;
}

.comment-reply-link:hover {
  text-decoration: underline;
}

/* Comment form */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  background: #fafafa;
  transition: border-color 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--exhibitio-accent, #c19f5f);
  outline: none;
  background: #fff;
}

.comment-form input[type="submit"] {
  background: var(--exhibitio-accent, #c19f5f);
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.comment-form input[type="submit"]:hover {
  background: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .post-navigation .nav-links {
    flex-direction: column;
  }
  .comments-area {
    padding: 25px;
  }
}
/* ==========================================================
   RELATED POSTS GRID LAYOUT
========================================================== */

.related-posts {
  margin-top: 60px;
  padding-top: 40px;
}

.related-title {
  font-family: "Jost", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  color: var(--exhibitio-heading, #222);
}

/* Grid Layout */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Related Post Cards */
.related-card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Image */
.related-card .blog-thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* Content */
.related-card .blog-content {
  padding: 20px;
}

.related-card .blog-title {
  font-size: 1.1rem;
  margin: 10px 0;
  line-height: 1.4;
}

.related-card .blog-title a {
  text-decoration: none;
  color: var(--exhibitio-heading, #222);
  transition: color 0.3s ease;
}

.related-card .blog-title a:hover {
  color: var(--exhibitio-accent, #503AA8);
}

.related-card .blog-meta {
  font-size: 0.85rem;
  color: var(--exhibitio-meta, #777);
  margin-bottom: 8px;
}

/* Read More */
.related-card .read-more {
  display: inline-block;
  color: var(--exhibitio-accent, #503AA8);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 10px;
}

.related-card .read-more:hover {
  text-decoration: underline;
}

/* =======================
   Responsive Adjustments
======================= */
@media (max-width: 992px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   COMMENTS STYLING — Exhibitio Theme
   ========================================================== */
/* Comments */
.comments-area {
  background: #fff;
  padding: 20px;
  margin: 0 auto 20px;
  max-width: 900px;
  box-shadow:none;
  clear: both;
  display: block;
  width: 100%;
}

.comments-area h2,
.comments-area h3 {
  color: var(--exhibitio-heading, #222);
  margin-bottom: 40px;
}

.comment-body {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--exhibitio-border, #e7e7e7);
}

.comment-meta a {
  color: var(--exhibitio-accent, #c19f5f);
  font-weight: 500;
}

.comment-reply-link {
  color: var(--exhibitio-accent, #c19f5f);
  font-weight: 600;
  text-decoration: none;
}

.comment-reply-link:hover {
  text-decoration: underline;
}

/* Comment form */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  background: #fafafa;
  transition: border-color 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--exhibitio-accent, #c19f5f);
  outline: none;
  background: #fff;
}

.comment-form input[type="submit"] {
  background: var(--exhibitio-accent, #c19f5f);
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.comment-form input[type="submit"]:hover {
  background: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .post-navigation .nav-links {
    flex-direction: column;
  }
  .comments-area {
    padding: 25px;
  }
}

/* ==========================================================
   COMMENT LIST CLEANUP — REMOVE BULLETS BEFORE AVATAR
========================================================== */
.comment-list,
.comment-list ul,
.comment-list ol {
  list-style: none !important;
  margin: 0;
  padding: 0;
}
.comment-list .children {
  margin-left: 70px;
  border-left: 2px solid var(--exhibitio-border, #ddd);
  padding-left: 20px;
}

.comment-list .reply a {
  color: var(--exhibitio-accent, #503AA8);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.comment-list .reply a:hover {
  color: #000;
}

/* Each comment item */
.comment-list li {
  list-style-type: none !important;
  margin: 0;
  padding: 0;
}

.comment-list .stacked-comment {
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.comment-avatar img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  object-fit: cover;
  margin-right: 30px;
}

.comment-main {
  flex: 1;
}

.comment-meta-stacked {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.9rem;
  color: var(--exhibitio-meta, #777);
  margin-bottom: 8px;
}

.comment-meta-stacked i {
  color: var(--exhibitio-accent, #503AA8);
  margin-right: 6px;
}

.comment-author {
  font-weight: 500;
  color: var(--exhibitio-heading, #222);
  font-size: 1.5rem;
  
}

.comment-text {
  color: var(--exhibitio-text, #555);
  line-height: 1.6;
  font-weight: 300;
  font-size: 17px;
}

.comment-awaiting-moderation {
  background: #fff5e0;
  border-left: 4px solid var(--exhibitio-accent, #503AA8);
  padding: 8px 14px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #555;
}

.comment-list .reply {
  margin-top: 8px;
}

.comment-list .reply a {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--exhibitio-accent, #503AA8);
  text-decoration: none;
}

.comment-list .reply a:hover {
  color: #000;
}

/* Nested Replies Indent */
.comment-list .children {
  margin-left: 70px;
  margin-top: 20px;
  border-left: none;
  padding-left: 20px;
}

/* Reply Form Styling */
#respond,
#respond-wrapper {
  clear: both;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}

/* Prevent Sidebar Drop */
.site-main .row::after {
  content: "";
  display: block;
  clear: both;
}

/* Responsive */
@media (max-width: 700px) {
  .comment-body {
    flex-direction: column;
  }
  .comment-avatar img {
    width: 50px;
    height: 50px;
  }
  .comment-list .children {
    margin-left: 30px;
    padding-left: 10px;
  }
}
