.lqa-container-f1481b26 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Mobile first gap */
    margin: 40px 0 50px 0;
    background: transparent;
    width: 100%;
    flex-wrap: wrap; 
}

.lqa-item-wrapper-f1481b26 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lqa-button-f1481b26 {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(12, 12, 12, 0.85);
    border: 1px solid #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.lqa-button-f1481b26::after {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.lqa-button-f1481b26:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.4);
}

.lqa-button-f1481b26:hover::after {
    opacity: 1;
}

.lqa-button-f1481b26 i {
    color: #D4AF37;
    font-size: 24px;
    transition: all 0.3s ease;
}

.lqa-button-f1481b26 svg {
    fill: #D4AF37;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.lqa-button-f1481b26:hover i,
.lqa-button-f1481b26:hover svg {
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.6));
}

.lqa-label-f1481b26 {
    color: #F5D98B;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

/* Desktop spacing adjustment */
@media (min-width: 768px) {
    .lqa-container-f1481b26 {
        gap: 40px;
    }
}
