HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/test.kaunokolegija.lt/kk_wp_content/plugins/stateblock/style-index.css
/* Statistics Block Frontend Styles */
.statistics-block-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: start;
}

.stat-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stats-icon {
  margin: 0 auto 16px;
  transition: transform 0.3s ease;
}

.stat-item:hover .stats-icon {
  transform: scale(1.1);
}

.stat-number {
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1;
  transition: color 0.3s ease;
}

.stat-description {
  line-height: 1.4;
  max-width: 200px;
  margin: 0 auto;
  transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .statistics-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .statistics-block-wrapper {
    padding: 30px 15px;
  }
  
  .stat-number {
    font-size: 2rem !important;
  }
  
  .stat-description {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 480px) {
  .statistics-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .statistics-block-wrapper {
    padding: 25px 15px;
  }
  
  .stats-icon {
    width: 50px !important;
    height: 50px !important;
  }
  
  .stats-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
  
  .stat-number {
    font-size: 1.8rem !important;
  }
}