/*  */
.wem-main-heading {
    font-size: 36px;
    line-height: 40px;
}

.wem-main-subheading {
    color: #4B5563;
    font-size: 20px;
    line-height: 28px;
}

.wem-card-main-wrapper {
    max-width: 1120px;
}

.wem-card-wrapper {
    padding-left: 16px !important;
    padding-right: 16px !important;
}

.wem-card {
    padding: 32px;
}

.wem-card>.card-body {
    padding: 0px;
}

.wem-card>.card-body>.card-title {
    color: #111827;
    font-size: 20px;
    line-height: 28px;
}

.wem-card>.card-body>.card-text {
    color: #4B5563;
    font-size: 16px;
    /* line-height: 28px; */
}

.wem-card-subtext {
    line-height: 14px;
    font-weight: 500;
}

/* Gradient backgrounds */
.gradient-blue {
    background: linear-gradient(to bottom right, #ebf4ff, #c3dafe);
}

.gradient-green {
    background: linear-gradient(to bottom right, #e6fffa, #a7f3d0);
}

.gradient-purple {
    background: linear-gradient(to bottom right, #f3e8ff, #d8b4fe);
}

/* Icon circle */
.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Color classes */
.bg-blue {
    background-color: #3b82f6;
}

.bg-green {
    background-color: #10b981;
}

.bg-purple {
    background-color: #8b5cf6;
}

.text-purple {
    color: #8b5cf6;
}

/* Hover lift effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}