.xi0-all-countries .all_title_box {
  margin-top: 26px;
}

.xi0-all-countries {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 100%;
}

.xi0-all-country-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 34px;
}

.xi0-all-country-card {
  align-items: center;
  background: #ffffff;
  border: 1px solid #e1eaf6;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(25, 45, 74, 0.06);
  color: #1f2c3d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 162px;
  padding: 18px 12px;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.xi0-all-country-card:hover {
  border-color: #cedaeb;
  box-shadow: 0 14px 24px rgba(25, 45, 74, 0.1);
  transform: translateY(-2px);
}

.xi0-all-country-flag {
  border-radius: 10px;
  height: 46px;
  object-fit: cover;
  width: 70px;
}

.xi0-all-country-name {
  color: #1c3248;
  font-family: Poppins-Medium;
  font-size: 17px;
  line-height: 1.25;
  margin-top: 14px;
}

.xi0-all-country-count {
  color: #5c7088;
  font-size: 14px;
  line-height: 1.35;
  margin-top: 6px;
}

@media only screen and (max-width: 920px) {
  .xi0-all-country-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 760px) {
  .xi0-all-country-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 640px) {
  .xi0-all-country-grid {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }

  .xi0-all-country-card {
    border-radius: 12px;
    min-height: 128px;
    padding: 12px 8px;
  }

  .xi0-all-country-flag {
    border-radius: 8px;
    height: 32px;
    width: 50px;
  }

  .xi0-all-country-name {
    font-size: 14px;
    margin-top: 8px;
  }

  .xi0-all-country-count {
    font-size: 12px;
    margin-top: 4px;
  }
}
