/* Where your <destination> eSIM works — real country list for regional bundles. */
.smyk-cov {
  padding: clamp(20px, 2.5vw, 32px) 0 clamp(48px, 6vw, 72px);
  background: #fff;
}

.smyk-cov__header {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}
.smyk-cov__heading {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 800;
  color: #222222;
  line-height: 1.15;
  margin: 0 0 12px;
}
.smyk-cov__subtitle {
  font-size: 1rem;
  color: #717171;
  line-height: 1.6;
  margin: 0;
}

/* The list is the point of the section, so it stays open — no accordion.
   Auto-fill keeps 3 countries and 123 countries both looking deliberate. */
.smyk-cov__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px 16px;
}
@media (max-width: 600px) {
  .smyk-cov__list { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}

.smyk-cov__item {
  position: relative;
  padding: 10px 12px 10px 34px;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  background: #fafafa;
  font-size: 0.9375rem;
  color: #222222;
  line-height: 1.35;
}
.smyk-cov__item::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px #10b981;
}

.smyk-cov__note {
  margin: 24px 0 0;
  font-size: 0.875rem;
  color: #717171;
  line-height: 1.6;
  text-align: center;
}

@media (prefers-contrast: more) {
  .smyk-cov__item { border-color: #767676; background: #fff; }
}
