.f1stores {
  max-width: 1180px;
  margin: 0 auto 4rem;
}

.f1stores__intro {
  max-width: 760px;
  margin-bottom: 1.5rem;
  color: #53657d;
  font-size: 1.125rem;
  line-height: 1.6;
}

.f1stores__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.f1stores__card {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid #d5e5ee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 127, 145, .08);
}

.f1stores__card.is-current {
  border-color: var(--f1-store-accent);
  box-shadow: 0 18px 42px rgba(15, 127, 145, .14);
}

.f1stores__head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.f1stores__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 30px;
  border-radius: 6px;
  overflow: hidden;
}

.f1stores__flag img {
  display: block;
  width: 42px;
  height: 30px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(16, 24, 40, .08);
}

.f1stores__head h2 {
  margin: 0 0 .25rem;
  color: #101828;
  font-size: 1.45rem;
  line-height: 1.2;
}

.f1stores__domain {
  color: #0f7f91;
  font-weight: 700;
  text-decoration: none;
}

.f1stores__domain:hover {
  text-decoration: underline;
}

.f1stores__meta {
  display: grid;
  gap: .7rem;
  margin: 0;
}

.f1stores__meta div {
  padding: .85rem 1rem;
  border: 1px solid #dbe9f1;
  border-radius: 12px;
  background: #f8fbfd;
}

.f1stores__meta dt {
  margin-bottom: .25rem;
  color: #64748b;
  font-size: .9rem;
  font-weight: 800;
}

.f1stores__meta dd {
  margin: 0;
  color: #172033;
  font-weight: 750;
}

.f1stores__meta dd span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin: .2rem .35rem .2rem 0;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: #eaf7fa;
  color: #0f7f91;
  font-size: .9rem;
}

.f1stores__meta dd span img {
  display: block;
  width: 18px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(16, 24, 40, .08);
}

.f1stores__button {
  align-self: flex-start;
  margin-top: auto;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: #0f7f91;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(15, 127, 145, .18);
}

.f1stores__button:hover,
.f1stores__button:focus {
  color: #fff;
  background: #0b6d7c;
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .f1stores {
    margin-bottom: 2.5rem;
  }

  .f1stores__grid {
    grid-template-columns: 1fr;
  }

  .f1stores__card {
    padding: 1rem;
    border-radius: 14px;
  }
}
