/* Hero */

.first-photo{
  display: flex;
  justify-content: center;
  align-items: center;
}

.first-photo img{
  max-width: 75vw;
    border-radius: 10px;
    max-height: 60vh;
}


/* Images */

.slider-container {
    position: relative;
    width: 85%;
    margin: 0 auto;
    justify-content: center;
    overflow: hidden;
    padding: 20px 50px;
  }

  .slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 10px;
  }

  .slider-wrapper img {
    width: calc(100% / 3);
    flex-shrink: 0;
    object-fit: cover;
    padding: 5px;
    border-radius: 10px;
  }

  .slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
  }

  .slider-button.prev {
    left: 10px;
  }

  .slider-button.next {
    right: 10px;
  }

  /* Section */

.news-section{
    padding: 20px 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
    text-align: left;
    font-family: "Nunito", serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-text-color);
}

.news-header{
    margin: 0;
    max-width: none;
    font-family: "Keania One", serif;
    color: #0047AB;
}
    
.news-date{
    font-size: 16px;
}

.news-para{
    margin: 50px 0;
    text-align: justify;
}

@media (max-width: 391px) {

    .news-section{
        padding: 20px 30px;
    }

    .news-header{
        font-size: 24px;
    }

    .news-date{
        font-size: 13px;
    }

    .news-para{
        font-size: 18px;
        margin-top: 20px;
    }
}
