/* Main content */
.homepage-content {
    text-align: center;
    padding: 100px 20px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px;
}

.news-item {
    background-color: #0072bb;;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.news-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px #0D184E;
}

.news-item h3 {
    margin-bottom: 10px;
}

.news-item p {
    line-height: 1.5;
}

.separator {
    border-bottom: 2px solid #ccc;
    margin: 10px 0;
}

.news-link{
    text-decoration: none;
}