body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', sans-serif;
}
.top-header {
    background-color: #102F51;
    padding: 2rem 1rem;
    color: #F6941F;
    font-weight: bold;
    font-size: 2rem;
}
.top-header span {
    color: #f1a229;
    display: block;
}
.news-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}
.news-card:hover {
    transform: translateY(-5px);
}
.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-title {
    font-size: 1.1rem;
    font-weight: bold;
}
.news-date {
    font-size: 0.85rem;
    color: #6c757d;
}
.news-content {
    font-size: 0.9rem;
    color: #333;
}

.link_caption {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: bold;
}

.link_caption:hover {
  text-decoration: none;
  color : #211e1e
}

