.molecule-social-links-group{
    display: flex;
    gap: 16px;
    animation-delay: 1.2s;
    margin: 20px 0px;

    a{
        border-radius: 9999px;
        border: black solid 2px;
        height: 16px;
        width: 16px;
        padding: 10px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        transition: 0.2s;

        span{
            display: inline-flex;
            justify-content: center;
            align-items: center;
            svg{
                stroke-width: 2px;
                color: black;
            }
        }
    }
    a:hover{
        background-color: black;
    }

    a:hover span svg{
        color: white;
    }
}

.feature-card{
    display: flex;
    align-items: center;
    margin: 20px 0px;
    gap: 20px;
    p{
        font-size: 16px;
        margin: 0px;
        line-height: 22px;
    }
    .atom-icon{
        aspect-ratio: 1 / 1;
    }
}

.m-card-stack {
    position: relative;
    width: 100%;
    /* The height should match your card's height or be responsive */
    aspect-ratio: 4 / 3; 
    max-width: 600px;
    margin: 0 auto;
}

.m-card-stack__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Ensure cards are opaque so you don't see the one beneath early */
    background-color: #fff; 
    border-radius: 12px; /* Match your atom design */
    overflow: hidden;
    
    /* Optional: subtle shadow to separate cards */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}