.postcard-container {
    display: flex;
    flex-direction: column;
    padding: 0 var(--container-space);
    background-color: var(--wp--preset--color--sable);
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
}
.postcard-image-container{
    display: flex;
    position: relative;
    height: 250px;
    width: 100%;
}
.postcard-photo{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    border: solid 5px var(--wp--preset--color--blanc);
    border-radius: 10px;
    transform: rotate(5deg);
    opacity: 0;
}
.postcard-stamp{
    position: absolute;
    width: 111px;
    height: 109px;
    right: 20px;
    bottom: -45px;
    object-fit: cover;
    opacity: 0;
    scale: 2;
}
.postcard-text-mobile{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.postcard-text-desktop{
    display: none;
}
.curve{
    transform: translateY(8px);
}
.postcard-container .btn-pass-wrapper{
    transform: translateY(25%);
}
.postcard-text-desktop{
    display: none;
}
@media (min-width: 821px) {
    .postcard-text-mobile{
        display: none;
    }
    .curve{
        transform: translateY(10px);
    }
    .postcard-container {
        flex-direction: row-reverse;
        padding: 4rem var(--container-space);
        position: relative;
    }
    .postcard-text-desktop{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40%;
    }
    .postcard-image-container{
        height: auto;
        width: 40%;
        max-width: 400px;
        aspect-ratio: 1.6/1.2;
    }
    .postcard-container{
        gap: 15%;
    }
    .postcard-container .btn-pass-wrapper{
        display: flex;
        position: absolute;
        width: fit-content;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 50%);
        padding-top: 0;
    }
}