/*
Theme Name: T2H Landing
Author: Lettow
Version: 1.0
*/

html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f3f3f3;
}

* {
  box-sizing: border-box;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.logo-grid {
  width: 100%;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  border: 1px solid #dcdcdc;
  background: #ffffff;
  padding: 30px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.logo-card img {
  max-width: 100%;
  max-height: 140px;
}

.content-wrapper {
  width: 100%;
  max-width: 1000px;
}

.page-title {
  text-align: center;
  margin-bottom: 30px;
}

.page-title h2 {
  margin: 0;
  font-weight: 600;
  font-size: 22px;
}
@media (max-width: 767px) {
  .logo-grid {
    grid-template-columns: 1fr;
  }
}