.postcard-container {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.postcard-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 50px;
    text-transform: capitalize;
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1;
}

.postcard-photos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.postcard-photos-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.postcard-photos-heading > div {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    width: 50%;
    padding: 25px 40px;
    font-family: var(--font-title);
    color: #000;
}

.postcard-photos-images {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.postcard-photos-images-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -40px;
}

.postcard-photos-image span {
    display: none;
}

.postcard-photos-image-wrap {
    position: relative;
}

.postcard-photos-image-wrap canvas {
    display: block;
    width: 100%;
    height: auto;
}

.postcard-photos-image {
    width: 50%;
    padding: 0 40px;
}

.postcard-photos-image-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.postcard-photos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 5px;
    background: #000;
}

.postcard-photos-description strong.headings {
    font-size: 20px;
}

@media screen and (max-width: 991px) {
    .postcard-photos-heading {
        display: none;
    }
    
    .postcard-photos::before {
        display: none;
    }
    
    .postcard-photos-images-row {
        margin: 0;
        flex-direction: column;
        gap: 40px;
    }
    
    .postcard-photos-image {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0;
    }
    
    .postcard-photos-image span {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        text-align: center;
        font-size: 35px;
        font-weight: 700;
        padding: 0;
        font-family: var(--font-title);
        color: #000;
    }
    
    .postcard-photos-image:nth-child(even) span {
        justify-content: flex-end;
    }
}
