body {
    background-color: #f8f9fa;
    font-family: 'Inter', sans-serif;
}

.news-container {
    padding: 0;
}

.news-filter {
    background-color: #fff;
    max-width: 400px;
    width: 90%;
}

.news-filter h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-filter .list-group-item {
    cursor: pointer;
    border: none;
    margin-bottom: 0.5rem;
    transition: background-color 0.2s ease, color 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f0f0;
    font-size: 0.8vmax;
    font-weight: 600;
    border-radius: 30px !important;
    padding: 0.5vmax 1.4vmax;
    margin-bottom: 1.3vmax;
}

.news-filter .list-group-item:hover {
    background-color: #e9ecef;
}

.news-filter .list-group-item.active {
    background-color: #ff94b8;
    color: #ffffff;
    font-size: 0.8vmax;
    font-weight: 600;
    border-radius: 30px;
    padding: 0.5vmax 1.4vmax;
}

.news-filter .list-group-item .badge {
    font-size: 0.8vmax;
    font-weight: 800;
    color: #000 !important;
}

.news-filter .list-group-item.active .badge {
    font-size: 0.8vmax;
    font-weight: 800;
    color: #fff !important;
}

.text-muted2 {
    color: rgb(0 0 0) !important;
    font-weight: 600;
    font-size: 0.8vmax;
}

.text-muted3 {
    color: #000;
    font-size: 1vmax;
}

.job_hr {
    width: 100%;
    display: block;
    height: 4px;
    border-radius: 30px;
    margin: 1vmax 0;
    margin-bottom: 4.6vmax;
}

.news-card {
    background-color: #fff;
    border-radius: 30px;
    border: 1px solid #dbdbdb;
    cursor: pointer;
    overflow: hidden;
    height: 100%;
    padding: 1.5vmax 2vmax;
    transition: all 0.5s;
}

.news-card:hover {
    box-shadow: 0 0 30px 2px rgba(0, 0, 0, 0.1);
}

.news-card-header {
    display: flex;
    justify-content: space-between;
    padding: 0;
}

.news-card-body {
    padding: 0;
}

@media (min-width: 768px) {
    .news-card-body h3 {
        font-size: 1.5vmax;
        font-weight: 800;
        color: #000;
        margin-top: 0.5rem;
        margin-bottom: 1vmax;
    }
}

@media (max-width: 768px) {
    .news-card-body h3 {
        font-size: 2.5vmax;
        font-weight: 800;
        color: #000;
        margin-top: 0.5rem;
        margin-bottom: 3vmax;
    }
}

.news-card-body img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}