


.card {
    border: none;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.25);
    margin-bottom: 2rem;
    font-family: "Frutiger";
}
.cardImg {
    height: 300px;
    width: 100%;
    object-fit: cover;
}
.blog-label {
    position: absolute;
    top: 250px;
    left: 0;
    background-color: #e2001a;
    color: white;
    padding: 0.3rem 1rem;
    font-size: 16px;
    font-weight: 700;
}

.card-body {
    max-height: 190px;
    overflow-y: auto;
}
.card-title {
    margin: 0;
    font-weight: 700;
    font-size: 24px;
    color: black;
}
.userCard {
    font-size: 14px;
    font-weight: 700px;
    color: #606060;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.5rem;
}
.userCard i {
    font-size: 15px;
}
.card-text {
    margin: 0;
    margin-top: 0.5rem;
    font-size: 16px;
    color: #606060;
}

.card-footer {
    display: flex;
    color: #606060;
    background: none;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    border: none;
}
.icon-group span {
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
}
.icon-group i {
    margin-right: 5px;
}

@media screen and (max-width: 1440px) {
    .card-title {
        font-size: 22px;
    }

    .cardImg {
        height: 250px;
    }
    .blog-label {
        top: 200px;
    }
}
@media screen and (max-width: 1280px) {
    .card-title {
        font-size: 18px;
    }
    .card-footer{
        flex-direction: column;
        align-items: flex-start;
    }
}
@media screen and (max-width: 767px) {
    .card-title {
        font-size: 18px;
    }
}
.pagination .page-item .page-link{
    color: #e2001a;
}