/* News Section */
*{
 margin: 0;
 padding: 0;
}
.news-container {
    width: 95%;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    color: #111827;
}

.section-title {
    color: #6b7280;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 2rem;
}

.news-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    gap: 1rem;
}

.news-content {
    flex: 1;
}

.news-date {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 22px;
    font-weight: bold;
    color: #223b9d;
    margin-bottom: 0.5rem;
}

.news-title-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.news-description {
    color: #374151;
    text-align: justify;
}

.news-image {
    min-width: 160px;
    max-width: 280px;
    border: 2px solid #223b9d;
    border-radius: 4px;
}

@media (max-width: 716px) {

  .news-item {
    flex-direction: column;
  }

  .news-image {
    max-width:90%;
    margin: 0 auto;
  }

}

@media (max-width: 400px) {
    .news-item {
        flex-direction: column;
        row-gap: 30px;
  }
}