.title-area.inverse {
    display: none;
}

div#content {
    padding: 0 !important;
}

.alignfull {
    height: unset !important;
    margin: 3rem 0;
        width: 100vw;
}
.hero-publication {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: var(--ut-blue);
    color: white;
}

.hero-publication,
.hero-publication * {
    box-sizing: border-box;
}

.carousel {
    overflow: hidden;
    width: 100%;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 60vh; 
    min-height: 450px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #000;
}

.slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity: 0.85;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to bottom, 
        rgba(0,0,0,0.5) 0%, 
        rgba(30,30,30,0.5) 100%
    );
}

.carousel-slide.left .slide-overlay {
    background: linear-gradient(180deg, rgb(0 0 0 / 80%) 0%, rgb(40 40 40 / 50%) 100%);
}

.carousel-slide.right .slide-overlay {
    background: linear-gradient(270deg, rgb(0 0 0 / 50%) 0%, rgb(40 40 40 / 50%) 100%);
}

.slide-content {
    position: relative;
    z-index: 10;
    max-width: 1400px; 
    width: 100%;      
    margin: 0 auto;   
    padding: 0 80px;  
    display: flex;
    align-items: center;
    box-sizing: border-box; 
}

.slide-image-bg,
.slide-overlay {
    width: 100vw;
    height: 100%;
}

.carousel-slide.left .slide-content { justify-content: flex-start; }
.carousel-slide.right .slide-content { justify-content: flex-end; }
.carousel-slide.center .slide-content { justify-content: center; }

.hero-text {
    max-width: 650px;
    width: 100%;
}

.hero-text h2 {
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero-text p {
    font-size: clamp(1.2rem, 2vw, 2rem); 
    font-weight: 300;
    line-height: 1.3;
}

.carousel-slide.center .hero-text { text-align: center;  }
.carousel-slide.left .hero-text { text-align: left;  }
.carousel-slide.right .hero-text { text-align: right;  }

.btn-outline {
    display: inline-block;
    padding: 10px 35px;
    background-color: #FFFFFF;
    color: #2D3741;
    text-decoration: none;
    font-weight: bold;
    border: 3px solid #FF8200; 
    border-radius: 12px;
    margin-top: 2rem;
    transition: all 0.2s ease-in-out;
}

.btn-outline:hover {
    background-color: #2D3741; 
    color: #FFFFFF;
    border: 3px solid #FF8200; 
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #FF8200; 
    font-size: 4rem;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    color: white;
    background: transparent;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FF8200;
    width: 25px;
    border-radius: 5px;
}


@media screen and (min-width: 2300px) {
    .carousel-container { height: 65vh; }
    .carousel-prev { left: 80px; }
    .carousel-next { right: 80px; }

    .carousel-slide.left .slide-image-bg {
        background-position: center center;
    }
    .carousel-slide.right .slide-image-bg {
        background-position: center center;
    }
    .slide-content {
        padding: 0 10px 0 10px;
    }
    .hero-text h2 {
        font-size: 3rem;
    }
}

@media screen and (min-width: 2100px) {
    .carousel-container { height: 60vh; }
    .carousel-prev { left: 80px; }
    .carousel-next { right: 80px; }

    .carousel-slide.left .slide-image-bg {
        background-position: center center;
    }
    .carousel-slide.right .slide-image-bg {
        background-position: center center;
    }
    .slide-content {
        padding: 0 10px 0 10px;
    }
    .hero-text h2 {
        font-size: 3rem;
    }
    .hero-text p {
        font-size: 1.8rem;
    }
}

@media screen and (min-width: 1801px), (max-width: 2099px) {
    .carousel-container { height: 60vh; }
    .carousel-prev { left: 80px; }
    .carousel-next { right: 80px; }

    .carousel-slide.left .slide-image-bg {
        background-position: center center;
    }
    .carousel-slide.right .slide-image-bg {
        background-position: center center;
    }
    .slide-content {
        padding: 0 10px 0 10px;
    }
    .hero-text h2 {
        font-size: 3rem;
    }
    .hero-text p {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 1800px) {
    .carousel-container { height: 50vh; }
    .carousel-prev { left: 80px; }
    .carousel-next { right: 80px; }

    .carousel-slide.left .slide-image-bg {
        background-position: center center;
    }
    .carousel-slide.right .slide-image-bg {
        background-position: center center;
    }
    .slide-content {
        padding: 0 10px 0 10px;
    }
    .hero-text h2 {
        font-size: 3rem;
    }
    .hero-text p {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 1650px) {
    .carousel-container { height: 55vh; }
    .carousel-prev { left: 40px; }
    .carousel-next { right: 40px; }

    .carousel-slide.left .slide-image-bg {
        background-position: center center;
    }
    .carousel-slide.right .slide-image-bg {
        background-position: center center;
    }
    .slide-content {
        padding: 0 10px 0 80px;
    }
    .hero-text h2 {
        font-size: 2.8rem;
    }
    .hero-text p {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 1500px) {
    .carousel-container { height: 55vh; }
    .carousel-prev { left: 40px; }
    .carousel-next { right: 40px; }

    .carousel-slide.left .slide-image-bg {
        background-position: center center;
    }
    .carousel-slide.right .slide-image-bg {
        background-position: center center;
    }
    .slide-content {
        padding: 0 50px 0 120px;
    }
    .hero-text h2 {
        font-size: 2.6rem;
    }
    .hero-text p {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 1300px) {
    .carousel-container { height: 55vh; }
    .carousel-prev { left: 40px; }
    .carousel-next { right: 40px; }

    .carousel-slide.left .slide-image-bg {
        background-position: center center;
    }
    .carousel-slide.right .slide-image-bg {
        background-position: center center;
    }
    .slide-content {
        padding: 0 50px 0 120px;
    }
    .hero-text h2 {
        font-size: 2.5rem;
    }
    .hero-text p {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 1150px) {
    .carousel-container { height: 55vh; }
    .carousel-prev { left: 40px; }
    .carousel-next { right: 40px; }

    .carousel-slide.left .slide-image-bg {
        background-position: center center;
    }
    .carousel-slide.right .slide-image-bg {
        background-position: center center;
    }
    .slide-content {
        justify-content: center !important;
        padding: 0 50px 0 50px;
    }
    .hero-text {
        text-align: center;
    }
    .hero-text h2 {
        font-size: 2.5rem;
    }
    .hero-text p {
        max-width: 100%;
        font-size: 1.2rem;
    }
}

@media (max-width: 799px) {
    .hero-text h2 { font-size: 2.2rem; }

    .carousel-container { height: 50vh; }
    .carousel-prev { left: 40px; }
    .carousel-next { right: 40px; }

    .carousel-slide.left .slide-image-bg {
        background-position: center center;
    }
    .carousel-slide.right .slide-image-bg {
        background-position: center center;
    }
    .slide-content {
        justify-content: center !important;
        padding: 0 120px 0 120px;
    }
    .hero-text {
        text-align: center;
    }
    .hero-text h2 {
        font-size: 2.5rem;
    }
    .hero-text p {
        max-width: 100%;
        font-size: 1.2rem;
    }
}