/* Start custom CSS for html, class: .elementor-element-dbc233a */.flag-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 30px 30px;
  max-width: 1100px;
  margin: 40px auto 0 auto;
  font-family: 'Roboto', Arial, sans-serif;
}

.flag-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  color: #fff;
  text-decoration: none;
  font-size: 13px;

  transition: transform 0.2s ease, opacity 0.2s ease;
}

.flag-links a span {
  line-height: 1.2;
  min-height: 32px;
}

/* IMAGE */
.flag-links a img {
  width: 100%;
  max-width: 90px;
  height: 45px;
  object-fit: cover;
  margin-bottom: 8px;
  border-radius: 6px;

  aspect-ratio: 16 / 10;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* HOVER */
.flag-links a:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.flag-links a:hover img {
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.flag-links a:hover span {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .flag-links {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 20px;
  }

  .flag-links a img {
    height: 38px;
  }

  .flag-links a {
    font-size: 12px;
  }
}/* End custom CSS */