/* =========================================
 * Custom Site Styles
 * ========================================= */

/* Global Heading Sizes - Larger and more readable */
h1 {
  font-size: 2.5rem !important;
  line-height: 1.2 !important;
  margin-bottom: 1.5rem !important;
}

h2 {
  font-size: 2rem !important;
  line-height: 1.3 !important;
  margin-bottom: 1.2rem !important;
}

h3 {
  font-size: 1.6rem !important;
  line-height: 1.4 !important;
  margin-bottom: 1rem !important;
}

h4 {
  font-size: 1.3rem !important;
  line-height: 1.4 !important;
  margin-bottom: 0.8rem !important;
}

h5 {
  font-size: 1.1rem !important;
  line-height: 1.4 !important;
  margin-bottom: 0.7rem !important;
}

h6 {
  font-size: 1rem !important;
  line-height: 1.4 !important;
  margin-bottom: 0.6rem !important;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem !important;
  }

  h2 {
    font-size: 1.6rem !important;
  }

  h3 {
    font-size: 1.4rem !important;
  }

  h4 {
    font-size: 1.2rem !important;
  }
}

/* Blog Page Styles */
.blog-card {
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
  border-color: #337ab7 !important;
}

.blog-card:hover h2 {
  color: #2868a0 !important;
}

.blog-card:hover .read-more {
  transform: translateX(4px);
}

/* VIEL GRÖßERE SCHRIFTGRÖSSEN für bessere Lesbarkeit */
.blog-card h2 {
  font-size: 1.75rem !important;
  line-height: 1.3 !important;
  margin-bottom: 1rem !important;
  font-weight: 600 !important;
}

.blog-card h2 a {
  font-size: 1.75rem !important;
}

.blog-card .blog-content > p {
  font-size: 1.15rem !important;
  line-height: 1.7 !important;
  color: #444 !important;
  margin-bottom: 1.2rem !important;
}

.blog-card .blog-meta {
  font-size: 1rem !important;
  margin-bottom: 1rem !important;
}

.blog-card .tags span {
  font-size: 0.95rem !important;
  padding: 0.4rem 0.8rem !important;
}

.blog-card .read-more {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
}

.blog-grid {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .blog-card h2,
  .blog-card h2 a {
    font-size: 1.5rem !important;
  }

  .blog-card .blog-content > p {
    font-size: 1.1rem !important;
  }
}

/* Blog SEO Intro */
.seo-intro {
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 16px;
}

.seo-intro h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.seo-intro h3 {
  font-size: 1.2rem;
  color: #337ab7;
  margin-bottom: 0.5rem;
}

.seo-intro .row {
  margin-bottom: 1.5rem;
}

/* Blog SEO Footer */
.seo-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e0e0e0;
  line-height: 1.8;
  font-size: 16px;
}

.seo-footer h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.seo-footer h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #337ab7;
}

.seo-footer ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.seo-footer .contact-box {
  background: #f0f7ff;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.seo-footer .contact-box h3 {
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: #337ab7;
}

.seo-footer .contact-box .row {
  margin-top: 1.5rem;
}

.seo-footer .contact-box p {
  margin: 0;
}

.seo-footer .contact-box a {
  color: #337ab7;
  font-size: 1.2rem;
  text-decoration: none;
}

.seo-footer .blog-keywords {
  font-size: 0.9rem;
  color: #888;
  margin-top: 2rem;
}
