.homeNewsSection {
    width: 100%;
    min-height: 25vh;
}
.news-card {
    /* cursor: pointer; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.news-image {
    height: 200px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.news-card:hover .news-image {
    opacity: 0.85;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.card-text {
    font-size: 1rem;
    color: #666;
}

.btn-primary {
    background-color: rgb(25, 225, 200);
    border-color: rgb(25, 225, 200);
}

.btn-primary:hover {
    background-color: rgb(16, 16, 16);
    border-color: rgb(16, 16, 16);
}
.news-skeleton {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #f2f2f2;
    transition: opacity 0.3s ease;
}

.skeleton-image {
    height: 200px;
    background-color: #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
}

.skeleton-title {
    height: 20px;
    width: 60%;
    background-color: #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

.skeleton-text {
    height: 15px;
    width: 100%;
    background-color: #ddd;
    border-radius: 5px;
    margin-bottom: 8px;
}

.news-skeleton.hidden {
    opacity: 0;
    pointer-events: none;
}
