/* ===== ABOUT / RÓLUNK SZEKCIÓ ===== */
.about-section {
    position: relative; /* fontos, hogy a ::before a szülőhöz igazodjon */
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2rem;
 
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    filter: blur(6px);

}