:root { --co-gap: 20px; }
.country-wrap { margin: 18px 0 40px; }
.country-head { padding: 14px 0 10px; border-bottom:1px solid var(--bwtv-color-border, #e6e6e6); }
.country-title { font-family: var(--bwtv-font); font-weight:900; margin:0; font-size: 28px; }
.country-desc { color:#000; margin-top:8px; }

.country-layout { display:grid; grid-template-columns: 1fr 320px; gap: var(--co-gap); align-items:start; margin-top: 18px; }
.country-main { min-width:0; }
.country-aside { min-width:0; }

.country-list { list-style:none; margin:0; padding:0; display:grid; gap: 16px; }
.co-item { display:grid; grid-template-columns: 220px 1fr; gap:14px; align-items:start; border-bottom:1px solid var(--bwtv-color-border, #e6e6e6); padding-bottom:14px; }
.co-thumb { display:block; position:relative; border-radius:8px; overflow:hidden; background:#eee; aspect-ratio: 16 / 9; color: transparent; font-size: 0; }
.co-thumb.no-img { background:#efefef; }
.co-img { width:100%; height:100%; object-fit:cover; display:block; }
.co-title { font-size:20px; margin:0 0 6px; font-weight:900; }
.co-title a { color:#000; text-decoration:none; }
.co-title a:hover { color: var(--bwtv-color-primary, #fcc600); text-decoration: underline; }
.co-meta { font-size:12px; color: var(--bwtv-color-muted, #6d6d6d); margin-bottom:6px; }
.co-excerpt { color:#000; }
.co-empty { color: var(--bwtv-color-muted, #6d6d6d); padding: 20px 4px; }

.co-pagi { margin-top: 24px; border-top: 1px solid #eee; padding-top: 20px; }
.co-pagi-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.co-pagi-links { display: flex; gap: 6px; flex-wrap: wrap; }
.co-pagi-links .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 6px;
  border: 1px solid #e6e6e6;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border-radius: 3px;
  background: #fff;
  transition: all 0.2s;
}
.co-pagi-links .page-numbers.current {
  background: #000;
  color: #fff;
  border-color: #000;
}
.co-pagi-links .page-numbers:hover:not(.current):not(.dots) {
  background: #f5f5f5;
  border-color: #ccc;
}
.co-pagi-links .page-numbers.dots {
  border: none;
  background: transparent;
  min-width: auto;
}
.co-pagi-count {
  color: #888;
  font-size: 13px;
  margin-left: auto;
}

@media (max-width: 1024px) {
  .country-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .co-item { grid-template-columns: 130px 1fr; }
}

/* =====================================================
   Author archive — hero card (E-E-A-T friendly)
   ===================================================== */
.author-wrap .author-hero { margin: 8px 0 28px; }
.author-wrap .author-hero-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--bwtv-color-border, #e6e6e6);
  border-radius: 14px;
  padding: 26px 28px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, .04);
  position: relative;
  overflow: hidden;
}
.author-wrap .author-hero-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bwtv-color-primary, #fcc600) 0%, #111 100%);
}
.author-wrap .author-hero-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: #f3f4f6;
  border: 4px solid #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, .12);
  flex-shrink: 0;
}
.author-wrap .author-hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-wrap .author-hero-body { min-width: 0; }
.author-wrap .author-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  padding: 5px 12px;
  background: #fff8e1;
  color: #8a6d00;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.author-wrap .author-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bwtv-color-primary, #fcc600);
  box-shadow: 0 0 0 3px rgba(252, 198, 0, .25);
}
.author-wrap .author-name {
  font-family: var(--bwtv-font);
  font-weight: 900;
  margin: 0 0 4px;
  font-size: 32px;
  line-height: 1.15;
  color: #111827;
}
.author-wrap .author-role {
  margin: 0 0 14px;
  color: #4b5563;
  font-size: 15px;
  font-weight: 600;
}
.author-wrap .author-bio {
  color: #1f2937;
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0 0 14px;
  max-width: 760px;
}
.author-wrap .author-bio p { margin: 0 0 10px; }
.author-wrap .author-bio p:last-child { margin-bottom: 0; }
.author-wrap .author-tags {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.author-wrap .author-tag {
  background: #f3f4f6;
  color: #111827;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}
.author-wrap .author-stats {
  display: flex;
  gap: 28px;
  margin: 6px 0 18px;
  padding: 14px 0;
  border-top: 1px solid var(--bwtv-color-border, #e6e6e6);
  border-bottom: 1px solid var(--bwtv-color-border, #e6e6e6);
}
.author-wrap .author-stat {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.author-wrap .author-stat-value {
  font-size: 22px;
  font-weight: 900;
  color: #111827;
}
.author-wrap .author-stat-label {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 4px;
  font-weight: 600;
}
.author-wrap .author-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.author-wrap .author-socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.author-wrap .author-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #111827;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.author-wrap .author-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.author-wrap .author-social:hover {
  background: #111827;
  color: #fff;
  transform: translateY(-1px);
}
.author-wrap .author-social--twitter:hover { background: #000; color: #fff; }
.author-wrap .author-social--facebook:hover { background: #1877f2; color: #fff; }
.author-wrap .author-social--instagram:hover { background: #d6249f; color: #fff; }
.author-wrap .author-social--linkedin:hover { background: #0a66c2; color: #fff; }
.author-wrap .author-social--youtube:hover { background: #ff0000; color: #fff; }
.author-wrap .author-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111827;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
}
.author-wrap .author-cta:hover {
  background: var(--bwtv-color-primary, #fcc600);
  color: #111827;
  transform: translateY(-1px);
}
.author-wrap .author-trust {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 13px;
}
.author-wrap .author-trust li { display: inline-flex; align-items: center; }
.author-wrap .author-trust li + li::before {
  content: "·";
  color: #9ca3af;
  margin-right: 16px;
}
.author-wrap .author-trust a {
  color: #4b5563;
  text-decoration: none;
}
.author-wrap .author-trust a:hover {
  color: #111827;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .author-wrap .author-hero-card {
    grid-template-columns: 140px 1fr;
    gap: 22px;
    padding: 22px;
  }
  .author-wrap .author-hero-avatar { width: 130px; height: 130px; }
  .author-wrap .author-name { font-size: 26px; }
}
@media (max-width: 640px) {
  .author-wrap .author-hero-card {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 20px;
    gap: 16px;
  }
  .author-wrap .author-hero-avatar {
    width: 110px;
    height: 110px;
  }
  .author-wrap .author-name { font-size: 22px; }
  .author-wrap .author-stats { gap: 18px; }
  .author-wrap .author-stat-value { font-size: 18px; }
  .author-wrap .author-trust li + li::before { margin-right: 10px; }
}
