/* Container */
.supported-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 10px 50px;
  padding-top: 0;
  background-color: transparent;
}

/* White box */
.supported-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  /* background-color: #ffffff4a; */
  padding: 15px;
  padding-top: 2px;
  border-radius: 0 0 8px 8px;
  /* box-shadow: 0 0 4px rgba(0,0,0,0.1); */
  text-align: center;
}

/* External link arrow */
.external-link {
  position: absolute;
  top: 8px;
  right: 10px;
  text-decoration: none;
  font-size: 10px;
  color: #fff;
  font-weight: bold;
  transition: color 0.2s ease;
  padding: 0 5px;
  border-radius: 3px;
  background-color: #6767673e;
  border: 1px solid #fff;
}

.external-link:hover {
  color: #fff;
  transform: scale(1.2);
}

/* Logos section */
.supported-logos {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: nowrap;
}

.support-logo {
  /* width: 70px; */
  width: 100%;
  height: 70px;
  box-shadow: 0 0 4px rgba(0,0,0,0.3);
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

/* Responsive Design */

/* Mobile */
@media (max-width: 768px) {
  .supported-container {
    justify-content: center;
    padding: 15px;
    padding-top: 0;
  }

  .supported-box {
    width: 100%;
    max-width: 350px;
  }

  .support-logo {
    /* width: 60px; */
    height: 60px;
  }
}

/* Desktop */
@media (min-width: 769px) {
  .supported-box {
    max-width: 400px;
  }
}
