.carousel-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

button.carousel-prev,
button.carousel-next,
button.carousel-prev:focus,
button.carousel-next:focus,
button.carousel-prev:active,
button.carousel-next:active {
    width: 36px;
    height: 36px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 16px 16px;
    position: relative;
    border: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* ensure no padding throws off centering */
}

button.carousel-prev {
    background-image: url("../icons/chevron-arrow-left-white.svg");
}

button.carousel-next {
    background-image: url("../icons/chevron-arrow-right-white.svg");
}

button.carousel-prev:hover,
button.carousel-next:hover {
    background-color: var(--primary-color);
}

/* Read more button */
.elementor .read-more {
    background-color: var(--e-global-color-secondary);
    font-family: var(--primary-font);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    fill: var(--e-global-color-79e1ad0);
    color: var(--e-global-color-79e1ad0);
    border-radius: 32px 32px 32px 32px;
    padding: 14px 50px 14px 50px;
    transition: all 0.3s ease;
    max-width: fit-content;
}

.read-more:hover {
    background-color: var(--e-global-color-primary);
    color: var(--e-global-color-79e1ad0);
}