/* FLAGS ROW INSIDE HERO */

.hero-flags {
  display: flex;
  align-items: center;
}

/* Flag circles */
.hero-flag {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.16);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlap */
.hero-flag + .hero-flag {
  margin-left: -10px;
}

/* Image fills the circle */
.hero-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 999px;
}

/* Apple-style flag circle polish */
.flag,
.flag-circle,
.country-flag,
.flags img {
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.25);
  box-shadow:
    inset 0 0 0 0.5px rgba(255,255,255,0.25),
    0 6px 16px rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.02);
}

.flag:hover,
.flags img:hover {
  box-shadow:
    inset 0 0 0 0.5px rgba(255,255,255,0.35),
    0 10px 24px rgba(0,0,0,0.28);
}
