.lira-header {
  text-align: center;
  margin-bottom: 30px;
  font-family: Arial, sans-serif;
}
.lira-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.lira-card {
  flex: 1 1 300px;
  text-align: center;
  padding: 16px;
}
.lira-card a {
  display: block;
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}
.lira-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .lira-grid {
    flex-direction: column;
    align-items: center;
  }
  .lira-card {
    flex: none;
    width: 100%;
  }
}
