/* [admax_social] — közösségi ikonsor (Simple Icons inline SVG). */

.social {
    display: flex;
    gap: 10px;
}

.social__item {
    width: 38px;
    height: 38px;
    border: 1px solid #2c4a45;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9fb6ae;
    transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.social__item:hover {
    color: #a7ebdd;
    border-color: #2c8b74;
}

.social__item svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* [admax_social sor] — pill-sor ikonnal + felirattal (csak felvitt URL-ekkel). */
.am-soc-row {
    display: flex;
    gap: 9px;
    flex-direction: row;
    flex-wrap: wrap;
}

.am-soc {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid #dbeae3;
    background: #fff;
    color: #16332E;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 13px;
    padding: 11px 18px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.am-soc:hover {
    transform: translateY(-4px);
    background: #1E3A38;
    color: #fff;
    border-color: #1E3A38;
}

.am-soc svg {
    display: block;
    fill: currentColor;
    width: 15px;
    max-width: 15px;
    height: auto;
}

@media (max-width: 767px) {
    .am-soc-row {
        flex-wrap: wrap;
    }

    .am-soc {
        gap: 5px;
        font-size: 12px;
        padding: 8px 15px;
    }
}
