.wnb-7e1fb5fc-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.wnb-7e1fb5fc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.wnb-7e1fb5fc-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wnb-7e1fb5fc-icon {
    font-size: 32px;
    color: #2563eb;
    margin-bottom: 20px;
    display: inline-flex;
}

.wnb-7e1fb5fc-icon svg {
    width: 32px;
    height: 32px;
    fill: #2563eb;
}

.wnb-7e1fb5fc-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 0;
    margin-bottom: 15px;
}

.wnb-7e1fb5fc-card-desc {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    margin-bottom: 20px;
    flex-grow: 1; /* Ensures bottom elements align */
}

.wnb-7e1fb5fc-card-link {
    display: inline-block;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: color 0.2s ease;
}

.wnb-7e1fb5fc-card-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .wnb-7e1fb5fc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .wnb-7e1fb5fc-grid {
        grid-template-columns: 1fr;
    }
}