.exp-card {
    max-width: 280px;
    border: 1px solid #66478F;
    background-color: #312244;
    padding: 7px;
    border-radius: 8px;
    cursor: pointer;
    height: 100%;
}

.exp-img {
    object-fit: cover;
    aspect-ratio: 3/2;
    width: 100%;
    border-radius: 8px;
}

.exp-card h5 {
    color: var(--white);
}

.exp-card p {
    font-size: var(--h6);
    color: var(--white);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}


.exp-card .fa-heart {
    color: #AAAAAA;
    border-radius: 50%;
    background: #D9D9D933;
    padding: 7px;
    font-size: 12px;
}
.exp-card .fa-heart.active {
    background-color: #F04141 !important;
    color: white !important;
}
.exp-user-img {
    width: 25px !important;
    height: 25px !important;
    border-radius: 50px;
    object-fit: cover;
}

.free-label {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--orange);
    color: var(--white);
    padding: 2px 8px 2px 8px;
    border-radius: 8px 4px 4px 0px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.exp-card .authorname {
    color: var(--orange) !important;
    text-decoration: underline !important;
    font-size: var(--h6);
    overflow-wrap: anywhere;
}


.exp-card .category {
    color: var(--blue-var1) !important;
    text-decoration: underline !important;
    font-size: var(--h6);
    font-weight: 400;
}

.exp-card .dropdown-menu {
    border: 1px solid rgb(102, 71, 143);
    background-color: rgb(49, 34, 68);
    margin-top: 1rem !important;
}

.exp-card .dropdown-item {
    color: #fff;
}

.exp-card .dropdown-item:hover {
    background: transparent;
    color: var(--blue-var1);
}

.exp-card .dropdown-item:hover path {
    fill: var(--blue-var1);
}

@media screen and (max-width: 767px) {
    .exp-card {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .expcategory {
        margin-left: auto;
        margin-right: auto;
    }

}

@media screen and (max-width : 768px) {
    .exp-card .card-body {
        gap: 0.25rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .exp-card .card-body {
        gap: 0.35rem;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1700px) {
    .exp-card .card-body {
        gap: 0.25rem;
    }
}

@media screen and (min-width: 1701px) {
    .exp-card .card-body {
        gap: 0rem;
    }
}