.bg-free {
    background-color: light;
    color: red;
    font-size: 15px;
}

.badge-paid {
    background-color: #f59e0b;
    color: white;
}
.icon-lg {
    font-size: 1.6rem;
    line-height: 1;
}

.icon-img {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
}

.resource-card {
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    background: #fff;
}

.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.resource-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00c896, #4cc9f0, #80ff72);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.resource-card:hover::before {
    opacity: 1;
}

.resource-card:hover .icon-wrapper {
    background: rgba(25, 135, 84, 0.2);
}

.transition-all {
    transition: all 0.3s ease-in-out;
}

.hover-shadow:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.btn-outline-success:hover {
    color: #fff !important;
    background: linear-gradient(90deg, #00b894, #00cec9);
    border-color: transparent;
}

/* Document */
