.wa-portal-card {
    text-align: center;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f2f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-portal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.wa-portal-title {
    margin: 0 0 12px 0;
    font-size: 24px;
    font-weight: 700;
}
.wa-portal-desc {
    margin: 0 0 24px 0;
    font-size: 16px;
    line-height: 1.5;
}
.wa-portal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.wa-portal-btn:active {
    transform: scale(0.98);
}
.wa-portal-btn i, .wa-portal-btn svg {
    font-size: 18px;
}
.wa-portal-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
