.reference {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    img {
        width: 100%;
        height: 40vh;
        object-fit: cover;
        object-position: 0% 60%;
    }
}

.reference-content {
    width: 60%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin: 40px 0;
    gap: 80px;

    h1 {
        font-family: Cinzel;
        font-size: 52px;
        font-weight: 100;
        color: gray;
    }
}

.image-slider {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;

    img {
        width: 100%;
        height: 50vh;
        object-fit: cover;
        object-position: 0% 60%;
        border-radius: 12px;
        -webkit-box-shadow: 0px 3px 4px 2px rgba(0, 0, 0, 0.5);
        box-shadow: 0px 3px 4px 2px rgba(0, 0, 0, 0.5);
    }

    p {
        font-family: Inter;
        font-size: 18px;
        font-weight: 100;
        text-align: center;
    }
}

.slider-arrows {
    display: flex;
    align-items: center;
    gap: 80px;

    button {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
    }

    svg {
        cursor: pointer;
        transition: transform 0.25s ease-in-out;

        &:hover {
            transform: scale(1.1);
        }
    }

    #image_counter {
        font-family: Inter;
        font-size: 24px;
        font-weight: 100;
    }
}

@media (max-width: 1000px) {
    .reference-content {
        width: 90%;
    }

    .slider-wrapper img {
        height: 30vh;
        object-fit: cover;
        object-position: top;
    }

    .slider-arrows {
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .reference-content h1 {
        font-size: 32px;
    }
}