.livingstone-module {
    min-height: 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    position:relative;
}

.livingstone-name h3 {
    position: absolute;
    z-index: 1;
    font-family: var(--feature-font);
    text-transform: uppercase;
    padding: var(--grid-gap);
}

.livingstone-specs {
    display: flex;
    gap: 35px;
    padding-right: 50px;
    padding-top: var(--grid-gap);
}

.livingstone-slideshow {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.livingstone-slideshow .livingstone-slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.livingstone-slideshow .livingstone-slide.active {
    left: 0;
    opacity: 1;
}

.livingstone-dots {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.livingstone-dot {
    width: 30px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.livingstone-dot.active {
    background-color: #fff;
}

.livingstone-footer {
    background-color: var(--color-module-footer);
    color: var(--color-dark);
    display: flex;
    align-items: flex-start;
    text-align: center;
    padding: var(--grid-gap);
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: calc(var(--grid-gap) * 1.5);
}

@media (max-width: 768px) {
    .livingstone-footer {
        flex-direction: column;
    }
    .livingstone-foot-content {
        text-align: left;
        margin-bottom: var(--grid-gap);
    }
}

.livingstone-foot-content {
    text-align: left;
    margin-bottom: 0;
}
.livingstone-foot-content p{margin-bottom: calc(var(--grid-gap) * 0.5);}

.livingstone-links {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
}

.livingstone-link {
    color: var(--color-dark) !important;
}