.seo-popular-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.seo-popular-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 1.25rem 1.1rem;
  border: 1px solid #e8eef5;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: inherit;
}
a.seo-popular-card:hover {
  border-color: #667eea;
  color: inherit;
}
.seo-popular-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  font-weight: 700;
}
.seo-popular-card p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: #60697b;
}
.seo-popular-card .seo-card-cta {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: #605dba;
}
.seo-popular-card.is-static .seo-card-cta {
  color: #60697b;
  font-weight: 500;
}
.seo-landing {
  overflow-x: hidden;
}
.seo-landing h1 {
  font-weight: 700;
  line-height: 1.2;
  word-break: break-word;
}
.seo-crumb {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.seo-crumb a { color: #605dba; }
.seo-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
}
.seo-cta-row .btn {
  min-height: 44px;
  padding: 0.7rem 1.25rem;
  font-weight: 600;
}
.seo-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
}
.seo-stat-box {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid #e8eef5;
}
.seo-stat-box strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.2;
}
.seo-stat-box span {
  font-size: 0.85rem;
  color: #60697b;
}
.seo-country-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.seo-country-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
  align-items: center;
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 10px;
  padding: 0.75rem 1rem;
}
.seo-country-row .name { font-weight: 600; }
.seo-country-row .meta {
  font-size: 0.85rem;
  color: #60697b;
}
.seo-bar {
  height: 8px;
  border-radius: 99px;
  background: #e9eef5;
  overflow: hidden;
  margin-top: 0.4rem;
}
.seo-bar > i {
  display: block;
  height: 100%;
  background: #605dba;
}
.seo-related a { font-weight: 600; }
.seo-country-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.seo-country-chips li {
  font-size: 0.85rem;
  padding: 0.35rem 0.65rem;
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 999px;
}
@media (max-width: 991px) {
  .seo-popular-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .seo-stat-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .seo-popular-grid {
    grid-template-columns: 1fr;
  }
  .seo-country-row {
    grid-template-columns: 1fr;
  }
}
