.widget-tile {
    background: var(--color-background-surface);
    border: none;
    border-radius: 16px;
    padding: 30px;
    margin: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.widget-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-brand-primary) 0%, var(--color-brand-secondary) 50%, var(--color-brand-accent) 100%);
    box-shadow: var(--glow-primary);
}

.widget-tile:hover {
    background: var(--color-background-elevated);
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.widget-tile-number {
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    font-family: var(--font-family-primary);
    background: linear-gradient(135deg, var(--color-brand-primary) 0%, var(--color-brand-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.widget-tiles-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: -15px;
    align-items: stretch;
}

.widget-tiles-row .widget-tile {
    flex: 1;
    min-width: 280px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .widget-tile {
        padding: 24px 20px;
        margin: 12px;
    }
    
    .widget-tiles-row {
        margin: -12px;
    }
    
    .widget-tiles-row .widget-tile {
        min-width: 240px;
    }
    
    .widget-tile-number {
        font-size: 2.2em;
        margin-bottom: 10px;
    }
    
    .widget-tile-title {
        font-size: 1.05em;
        margin-bottom: 10px;
    }
    
    .widget-tile-text {
        font-size: 0.95em;
    }
}

@media (max-width: 576px) {
    .widget-tile {
        padding: 20px 16px;
        margin: 10px;
    }
    
    .widget-tiles-row {
        flex-direction: column;
        margin: -10px;
    }
    
    .widget-tiles-row .widget-tile {
        min-width: auto;
        width: 100%;
    }
    
    .widget-tile-number {
        font-size: 2em;
        margin-bottom: 8px;
    }
    
    .widget-tile-title {
        font-size: 1em;
        margin-bottom: 8px;
    }
    
    .widget-tile-text {
        font-size: 0.9em;
    }
}
