.jewellery {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
}

.jewellery-container {
    display: flex;
    gap: 2rem;
    width: 100%;
}

.jewellery-container-image {
    flex: 1;
    width: 50%;
}

.jewellery-container-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jewellery-container-section-subtitle {
    color: #6F6E6C;
    font-weight: 400;
    text-align: start;
    font-size: 1.3rem;
    line-height: 1.4rem;
}

.jewellery-container-section-btn {
    margin-top: 1rem;
}

.jewellery-images {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.jewellery-images img {
    flex: 1;
}

@media (max-width: 1020px) {
    .jewellery {
        align-items: center;
    }

    .jewellery-container {
        flex-direction: column-reverse;
        align-items: center;
    }

    .jewellery-container h2 {
        text-align: center;
    }

    .jewellery-container p {
        text-align: center;
    }

    .jewellery-images {
        display: none;
    }

    .jewellery-container-image {
        width: 100%;
    }

    .jewellery-container-section-btn {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

}