section.announcements-section {
    padding: 90px 0;
    background-color: var(--text-color);
    color: var(--cupper-color);
}

section.announcements-section .section-title .title {
    color: var(--cupper-color);
    font-size: 40px;
    text-transform: none;
}

#annuncements-home-slider {
    max-width: 1200px;
    overflow: visible;
    margin: 0 auto;
}

#annuncements-home-slider .slick-list {
    overflow: visible;
}

#annuncements-home-slider .slick-prev {
    z-index: 8;
    left: 44px;
}

#annuncements-home-slider .slick-next {
    right: 44px;
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

.slick-prev:before,
.slick-next:before {
    content: '';
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='24' viewBox='0 0 25 24' fill='none'%3E%3Cpath d='M12.8301 22C18.3529 22 22.8301 17.5228 22.8301 12C22.8301 6.47715 18.3529 2 12.8301 2C7.30723 2 2.83008 6.47715 2.83008 12C2.83008 17.5228 7.30723 22 12.8301 22Z' stroke='%23D68631' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.8301 16L16.8301 12L12.8301 8' stroke='%23D68631' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.83008 12H16.8301' stroke='%23D68631' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    width: 32px;
    height: 32px;
    background-size: contain;
}

.slick-prev:before {
    transform: rotate(180deg);
}

.announcement-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 45px auto;
    max-width: 953px;
}

.announcement-card .card-image a {
    border-radius: 20px;
    display: block;
    width: 100%;
    overflow: hidden;
}

.announcement-card .card-image a img {
    width: 100%;
    height: auto;
}

.announcement-card .card-caption {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out 300ms;
}

.announcement-card .card-caption .more-information-btn {
    opacity: 0;
}

.slick-center .announcement-card .card-caption {
    opacity: 1;
    visibility: visible;
}


.slick-center .announcement-card .card-caption .more-information-btn {
    opacity: 1;
}

.announcement-card .card-caption .sub {
    color: var(--bluesky-color, #3D717F);
    text-align: left;
    font-family: var(--monserrat-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 19px;
}

.announcement-card .card-caption .title {
    color: var(--cupper-color, #B2672D);
    font-family: var(--monserrat-font);
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.announcement-card .card-caption .excerpt {
    color: var(--color-primary, #0B2839);
    font-family: var(--monserrat-font);
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
    .announcement-card .card-caption {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .announcement-card .card-caption .title {
        font-size: 28px;
    }

    #annuncements-home-slider .slick-list {
        overflow: hidden;
    }
}