.sp-automotive-banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
    margin: 0;
}

.sp-automotive-banner-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.sp-automotive-banner-picture {
    display: block;
    width: 100%;
}

.sp-automotive-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.sp-automotive-banner-link:hover .sp-automotive-banner-img {
    transform: scale(1.015);
}

.sp-automotive-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    padding: 20px;
    box-sizing: border-box;
}

.sp-automotive-banner-text {
    color: #ffffff;
    font-family: sans-serif;
    text-align: center;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    font-size: clamp(1.2rem, 4vw, 2.5rem); 
    line-height: 1.3;
}