.card {
    padding: 20px;
    border-radius: 8px;
    margin: 2% 4% 4%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.card-header {
    margin: 0px 0px 16px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.334;
    letter-spacing: 0em;
    color: rgb(176, 37, 25) !important;
    text-align: center;
}

.card-content {
    padding: 16px;
}

.news-item {
    margin-bottom: 16px;
}

.news-date {
    font-size: 12px;
    color: #757575;
}

.news-title {
    font-weight: bold;
    font-size: 18px;
    margin-top: 8px;
}

.news-description {
    font-size: 14px;
    color: #555;
}

.loading {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.error-message {
    color: red;
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .card {
        width: 90%;
    }
}

