.home-news-section {
    padding: 7.5rem 0 2.5rem;
    background-color: #0e0e0e;
    background-image: url("../assets/img/header-bg.jpg");
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
}

.home-news-section .home-news-frame {
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
}

.home-news-carousel .carousel-inner {
    overflow: hidden;
    border-radius: 0.65rem;
    background: #161616;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.35);
}

.home-news-slide {
    background: #161616;
}

.home-news-link {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
}

.home-news-link:hover,
.home-news-link:focus-visible {
    color: #fff;
}

.home-news-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.home-news-link:hover .home-news-image,
.home-news-link:focus-visible .home-news-image {
    transform: scale(1.025);
}

.home-news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.02) 38%,
        rgba(0, 0, 0, 0.9) 100%
    );
}
.home-news-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: clamp(0.75rem, 2vw, 1.75rem) clamp(4.5rem, 9vw, 7rem);
    text-align: left;
    background: rgba(0, 0, 0, 0.5);
}

.home-news-title {
    color: #d6832c;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3.5rem);
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.75);
}

.home-news-subtitle {
    max-width: 850px;
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    line-height: 1.4;
    text-shadow: 0 0.15rem 0.75rem rgba(0, 0, 0, 0.9);
}

.home-news-carousel .carousel-control-prev,
.home-news-carousel .carousel-control-next {
    width: 8%;
    opacity: 0.8;
}

.home-news-carousel .carousel-control-prev:hover,
.home-news-carousel .carousel-control-next:hover {
    opacity: 1;
}

.home-news-carousel .carousel-indicators {
    position: static;
    gap: 0.4rem;
    margin: 1rem 0 0;
}

.home-news-carousel .carousel-indicators [data-bs-target] {
    width: 2.5rem;
    height: 0.25rem;
    margin: 0;
    border: 0;
    background-color: #fff;
    opacity: 0.35;
}

.home-news-carousel .carousel-indicators .active {
    background-color: #d6832c;
    opacity: 1;
}

.home-news-status {
    display: grid;
    min-height: 260px;
    place-items: center;
    padding: 2rem;
    color: #bbb;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 767.98px) {
    .home-news-section {
        padding: 6.75rem 0 1.5rem;
    }

    .home-news-section .container {
        max-width: none;
        padding-right: 0.75rem;
        padding-left: 0.75rem;
    }

    .home-news-section .home-news-frame {
        width: 100%;
    }

    .home-news-carousel .carousel-inner {
        border-radius: 0.5rem;
    }

    .home-news-link {
        aspect-ratio: auto;
        overflow: visible;
        background: #161616;
    }

    .home-news-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .home-news-overlay {
        display: none;
    }
	
	.home-news-carousel .carousel-inner,
    .home-news-slide,
    .home-news-link {
        background: transparent;
    }

    .home-news-caption {
        position: static;
        min-height: 126px;
        gap: 0.35rem;
        padding: 1.1rem 1.25rem 1.35rem;
        background: rgba(0, 0, 0, 0.5);
    }

    .home-news-title {
        font-size: 2rem;
        text-shadow: none;
    }

    .home-news-subtitle {
        display: -webkit-box;
        overflow: hidden;
        font-size: 0.95rem;
        line-height: 1.4;
        text-shadow: none;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .home-news-carousel .carousel-control-prev,
    .home-news-carousel .carousel-control-next {
        top: 0;
        bottom: auto;
        width: 3rem;
        height: calc((100vw - 1.5rem) * 0.5625);
    }

    .home-news-carousel .carousel-indicators [data-bs-target] {
        width: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-news-image {
        transition: none;
    }
}
