.main-body {
    display: flex;
    justify-content: space-between;
    margin: 1em 3em;
}

.left-body {
    position: relative;
    width: 60%;
    /* height: fit-content; */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: white;
}
.right-body {
    width: 37%;
}
.last-news-item {
    display: flex;
    align-items: center;
    margin: 0 0 5px 0;
    background-color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-decoration: none;
    color: black;
}
.last-news-item:hover {
    background-color: #c9d9fc;
}
.last-news-item img {
    width: 9em;
    height: fit-content;
    margin: 0.5em;
}
.last-news-item h3 {
    margin-top: 0.5em;
}
/* Carrusel */
.carrusel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carrusel-item {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.carrusel-item img {
    width: 100%;
    display: block;
}

.caption {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    box-sizing: border-box;
}

.caption h3 {
    margin: 0;
    font-size: 18px;
}

.caption p {
    margin: 5px 0 0;
    font-size: 14px;
}

.carrusel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.carrusel-control:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.news-ext {
    margin: 3em;
    background-color: white;
}
.news-ext article a {
    display: flex;
    align-items: center;
    margin: 1em;
    text-decoration: none;
    color: black;
    background-color: rgb(235, 232, 232);
}
.news-ext article a img {
    width: 12em;
    height: fit-content;
    margin: 0 1em 0 0;
}
.news-ext article a div h3, p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-right: 3em;
}
/* RWD */
@media screen and (max-width: 1000px) {
    .main-body {
        display: block;
    }
    .left-body, .right-body {
        width: 100%;
    }
}
@media  screen and (max-width: 800px) {
    .news-ext article a {
        display: block;
    }    
}