.widget-tile {
    background-color: var(--color-surface);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}

.widget-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(5, 161, 170, 0.3);
    border-color: var(--color-hover-accent);
}

.widget-tile-icon {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--color-hover-accent);
}

.widget-tile-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: 12px;
}

.widget-tile-description {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    color: var(--color-text-secondary);
    text-align: center;
    line-height: 1.6;
}

.widget-tile-step-number {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    color: var(--color-hover-accent);
    text-align: center;
    margin-bottom: 16px;
}

