/* Lábléc widgetek (template-parts/footer/footer-widgets.php) */

.footer-widgets-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-widgets-row,
.footer-widgets-col {
    box-sizing: border-box;
    display: flex;
}

.footer-widgets-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 70%;
    margin: 0 auto;
}

.footer-widgets-col {
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
}


@media screen and (max-width: 980px) {
    .footer-widgets-col {
        flex: initial;
        width: 100%;
    }
}