/* Radio portals styles for lyt-online.html */
.radio-portals {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
  justify-content: center;
  width: 100%;
}

.radio-portal {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.radio-portal:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.portal-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.radio-portal span {
  font-weight: 600;
  color: var(--dark-color);
}

@media (max-width: 768px) {
  .radio-portals {
    gap: 1rem;
  }
  
  .radio-portal {
    width: 120px;
    padding: 1rem;
  }
  
  .portal-logo {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .radio-portals {
    flex-direction: column;
    align-items: center;
  }
  
  .radio-portal {
    width: 80%;
  }
}