/* Banner Separator */
.banner-separator {
    width: 100%;
    height: 300px; /* Fixed height as requested */
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0; /* Placeholder color */
}

.banner-separator img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area, cropping if necessary */
    object-position: center;
    display: block;
}

.banner-separator::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* 80% Transparency (20% Opacity) Mask */
    pointer-events: none;
}
