/* === ASTRA LEFT SIDEBAR LAYOUT FIX === */
body.ast-left-sidebar .site-content > .ast-container {
  display: flex;
  flex-direction: row;
  gap: 2em;
  padding-left: 1em !important;
  padding-right: 1em !important;
  padding-top: 1em !important;
}

.ast-site-identity {
  margin-left: -1em !important;
  padding-left: 0 !important;
}

body.ast-left-sidebar .site-content > .ast-container > #secondary {
  flex: 0 0 260px !important;
  align-self: flex-start !important;
  height: auto !important;
  border-right: 1px solid #ddd !important;
  padding-right: 2em !important;
  margin-right: 0 !important;
  margin-top: 3.6em !important;
}

body.ast-left-sidebar .site-content > .ast-container > #primary {
  flex: 1 1 auto !important;
  padding-left: 2em !important;
  border-left: none !important;
  max-width: 100%;
}

body.ast-left-sidebar #primary .site-main h1.page-title {
  margin-bottom: 0.8em !important;
  padding-bottom: 0 !important;
}

body.ast-left-sidebar #primary .site-main h1.page-title + * {
  margin-top: -20px !important;
  padding-top: 0 !important;
}

/* Remove spacing above the main wrapper */
body.ast-left-sidebar .site-content,
body.ast-left-sidebar .content-area.primary {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* === GRID WRAPPER === */
body.ast-left-sidebar .cbt-grid-wrapper {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.cbt-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5em;
}

/* === PAGINATION === */
ul.page-numbers {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  margin: 40px 0;
  padding: 0;
  list-style: none;
}

.page-numbers li {
  display: inline-block;
}

.page-numbers li a,
.page-numbers li span {
  padding: 10px 14px;
  background: #f0f0f0;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}

.page-numbers li span.current {
  background: #0073aa;
  color: white;
}

/* === SUBTITLE UNDER MAIN TITLE === */
.cbt-subtitle {
  font-size: 15px;
  margin-top: -5px;
  margin-bottom: 1.0em;
  color: #444;
  text-align: left;
  padding-left: 2em;
}

/* === TAGS PAGE LAYOUT FIX === */
body.page-template-page-tags.cbt-has-sidebar .site-content > .ast-container {
  display: flex;
  flex-direction: row;
  gap: 2em;
  padding-left: 1em !important;
  padding-right: 1em !important;
}

body.page-template-page-tags.cbt-has-sidebar .site-content > .ast-container > #secondary {
  flex: 0 0 260px !important;
  align-self: flex-start !important;
  border-right: 1px solid #ddd !important;
  padding-right: 2em !important;
  margin-right: 0 !important;
}

body.page-template-page-tags.cbt-has-sidebar .site-content > .ast-container > #primary {
  flex: 1 1 auto !important;
  padding-left: 2em !important;
  max-width: 100%;
}

/* Force consistent horizontal padding across all .ast-container layouts */
body.ast-left-sidebar .ast-container {
  padding-left: 2em !important;
  padding-right: 2em !important;
}

/* ⭐ Star Icon Global Style */
.cbt-star {
  font-size: 1.1em; /* Uniform star size */
  color: #f4b400 !important;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  margin-right: 0.25em; /* Consistent spacing */
}

/* 🧱 Title Layout – universal */
h1.page-title {
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-size: 2em !important;
  font-weight: 500 !important;
  line-height: 1.2;
  margin-top: 0 !important;
  margin-bottom: 0.6em !important;
}

/* ✅ Normalize TAGS and CATEGORIES spacing */
body.page-template-page-tags .entry-header,
body.page-template-page-tags .ast-article-inner,
body.category .entry-header,
body.category .ast-article-inner {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* Country list layout */
.cbt-country-list {
  margin-top: 24px;
}

.cbt-country-list h2 {
  margin-top: 24px;
  font-size: 1.2rem;
  color: #f60076;
  font-weight: 600;
}

.cbt-country-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

/* Remove default <li> background/padding */
.cbt-country-group li {
  padding: 0;
  background: none;
}

/* Full button effect on the <a> */
.cbt-country-list .cbt-country-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #f6f6f6;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Hover on full pill button */
.cbt-country-list .cbt-country-item:hover {
  background: #e4e4e4;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Flag image */
.cbt-country-list .cbt-country-item img.country-flag {
  width: 18px;
  height: 12px;
  transition: transform 0.2s ease;
}

/* Slight zoom on hover */
.cbt-country-list .cbt-country-item:hover img.country-flag {
  transform: scale(1.1);
}
