/*
Theme Name: blocksy Child lifehackerino
Theme URI: 
Description: Minimalistisches, gartenfreundliches Design mit grünem Daumen Feeling
Author: Patrick Kowalski
Author URI: https://lifehackerino.de
Template: blocksy
Version: 1.0.0
Text Domain: blocksy
*/

/* CSS Custom Properties für minimalistisches Garten-Design */
:root {
  /* Natürliche Garten-Farbpalette */
  --garden-green-primary: #4A7C59;
  --garden-green-light: #8FBC8F;
  --garden-green-dark: #2F4F2F;
  --garden-sage: #9CAF88;
  --garden-mint: #B5D3B7;
  --garden-earth: #8B7355;
  --garden-terracotta: #C65D07;
  
  /* Neutrale Töne */
  --garden-text-primary: #2F3E2F;
  --garden-text-secondary: #5A6B5A;
  --garden-text-light: #7A8A7A;
  --garden-border: #E8F0E8;
  --garden-border-light: #F2F8F2;
  --garden-bg: #FAFCFA;
  --garden-bg-light: #FCFEFC;
  --garden-white: #FFFFFF;
  
  /* Schriftarten */
  --font-garden: 'Georgia', 'Times New Roman', serif;
  --font-clean: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Import für saubere Schrift */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

/* Basis Setup für WordPress Content */
.entry-content * {
  image-rendering: auto;
}

/* Überschriften im Content - minimalistisch und natürlich */
.entry-content h1 {
  font-family: var(--font-garden);
  font-size: 2.2rem;
  font-weight: 400;
  margin: 2rem 0 1.5rem;
  color: var(--garden-green-dark);
  line-height: 1.3;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--garden-border);
  padding-bottom: 0.75rem;
  position: relative;
}

.entry-content h1:before {
  content: "🌱 ";
  margin-right: 0.75rem;
  font-size: 0.9em;
}

.entry-content h2 {
  font-family: var(--font-garden);
  font-size: 1.8rem;
  font-weight: 400;
  margin: 1.75rem 0 1rem;
  color: var(--garden-green-primary);
  line-height: 1.4;
  position: relative;
}

.entry-content h2:before {
  content: "🍃 ";
  margin-right: 0.5rem;
  font-size: 0.85em;
}

.entry-content h2:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--garden-sage);
}

.entry-content h3 {
  font-family: var(--font-clean);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 1.5rem 0 0.75rem;
  color: var(--garden-text-primary);
  line-height: 1.5;
}

.entry-content h3:before {
  content: "🌿 ";
  margin-right: 0.5rem;
  font-size: 0.8em;
}

.entry-content h4 {
  font-family: var(--font-clean);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 1.25rem 0 0.5rem;
  color: var(--garden-text-primary);
}

.entry-content h4:before {
  content: "• ";
  margin-right: 0.5rem;
  color: var(--garden-sage);
  font-weight: bold;
}

.entry-content h5,
.entry-content h6 {
  font-family: var(--font-clean);
  font-weight: 500;
  color: var(--garden-text-secondary);
  margin: 1rem 0 0.5rem;
}

/* Listen im Content - minimalistisch und natürlich */
.entry-content .seo-custom-ul,
.entry-content ul:not([class]) {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-clean);
  background: var(--garden-bg);
  border: 1px solid var(--garden-border);
  border-left: 3px solid var(--garden-sage);
  border-radius: 2px;
}

.entry-content .seo-custom-ul li,
.entry-content ul:not([class]) li {
  margin-bottom: 0.5rem;
  position: relative;
  list-style-type: none;
  color: var(--garden-text-primary);
  font-weight: 400;
  line-height: 1.6;
  padding-left: 1.5rem;
}

.entry-content .seo-custom-ul li:before,
.entry-content ul:not([class]) li:before {
  content: "🌱";
  position: absolute;
  left: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Geordnete Listen */
.entry-content .seo-custom-ol,
.entry-content ol:not([class]) {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  counter-reset: clean-counter;
  font-family: var(--font-clean);
  background: var(--garden-bg);
  border: 1px solid var(--garden-border);
  border-left: 3px solid var(--garden-green-light);
  border-radius: 2px;
}

.entry-content .seo-custom-ol li,
.entry-content ol:not([class]) li {
  margin-bottom: 0.5rem;
  position: relative;
  list-style-type: none;
  counter-increment: clean-counter;
  color: var(--garden-text-primary);
  font-weight: 400;
  line-height: 1.6;
  padding-left: 2rem;
}

.entry-content .seo-custom-ol li:before,
.entry-content ol:not([class]) li:before {
  content: counter(clean-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--garden-green-light);
  color: var(--garden-white);
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.8rem;
}

/* Hervorgehobene Liste */
.entry-content .seo-custom-ol-featured {
  margin: 1.75rem 0;
  padding: 0;
  counter-reset: featured-counter;
  list-style: none;
}

.entry-content .seo-custom-ol-featured li {
  margin-bottom: 1rem;
  padding: 1.25rem 1.25rem 1.25rem 3rem;
  background: var(--garden-white);
  border: 1px solid var(--garden-border);
  border-left: 4px solid var(--garden-green-primary);
  border-radius: 2px;
  position: relative;
  counter-increment: featured-counter;
  transition: border-left-color 0.2s ease;
  font-family: var(--font-clean);
  color: var(--garden-text-primary);
  line-height: 1.6;
}

.entry-content .seo-custom-ol-featured li:hover {
  border-left-color: var(--garden-sage);
}

.entry-content .seo-custom-ol-featured li:before {
  content: counter(featured-counter);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--garden-green-primary);
  color: var(--garden-white);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.85rem;
}

/* Tipp-Listen */
.entry-content .seo-custom-tips {
  margin: 1.75rem 0;
  padding: 0;
  list-style: none;
}

.entry-content .seo-custom-tips li {
  margin-bottom: 1rem;
  padding: 1.25rem 1.25rem 1.25rem 3rem;
  background: var(--garden-bg);
  border: 1px solid var(--garden-border);
  border-radius: 2px;
  position: relative;
  font-family: var(--font-clean);
  color: var(--garden-text-primary);
  line-height: 1.6;
}

.entry-content .seo-custom-tips li:before {
  content: "💡";
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  font-size: 1.1rem;
  opacity: 0.8;
}

.entry-content .seo-custom-tips.seo-custom-tips-check li {
  border-left: 3px solid var(--garden-green-primary);
}

.entry-content .seo-custom-tips.seo-custom-tips-check li:before {
  content: "🌿";
  font-size: 1.1rem;
}

.entry-content .seo-custom-tips.seo-custom-tips-alert li {
  border-left: 3px solid var(--garden-terracotta);
}

.entry-content .seo-custom-tips.seo-custom-tips-alert li:before {
  content: "🍂";
  font-size: 1.1rem;
}

/* Tabellen */
.entry-content .seo-custom-table,
.entry-content table:not([class]) {
  width: 100%;
  margin: 1.75rem 0;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--garden-border);
  background: var(--garden-white);
  font-family: var(--font-clean);
  border-radius: 2px;
  overflow: hidden;
}

.entry-content .seo-custom-table th,
.entry-content table:not([class]) th {
  background: var(--garden-bg);
  color: var(--garden-text-primary);
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 500;
  border-bottom: 1px solid var(--garden-border);
  font-size: 0.95rem;
}

.entry-content .seo-custom-table td,
.entry-content table:not([class]) td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--garden-border-light);
  color: var(--garden-text-primary);
  font-size: 0.9rem;
}

.entry-content .seo-custom-table tr:nth-child(even),
.entry-content table:not([class]) tr:nth-child(even) {
  background: var(--garden-bg-light);
}

.entry-content .seo-custom-table tr:hover,
.entry-content table:not([class]) tr:hover {
  background: var(--garden-border-light);
}

/* Blockquote */
.entry-content .seo-custom-blockquote,
.entry-content blockquote:not([class]) {
  margin: 1.75rem 0;
  padding: 1.5rem;
  border-left: 4px solid var(--garden-sage);
  background: var(--garden-bg);
  border-radius: 0 2px 2px 0;
  font-family: var(--font-garden);
  color: var(--garden-text-primary);
  font-style: italic;
  position: relative;
}

.entry-content .seo-custom-blockquote:before,
.entry-content blockquote:not([class]):before {
  content: "🌻";
  position: absolute;
  top: -8px;
  left: 15px;
  background: var(--garden-white);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  font-size: 1.2rem;
}

.entry-content .seo-custom-blockquote cite,
.entry-content blockquote:not([class]) cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--garden-text-secondary);
  text-align: right;
  font-weight: 400;
}

.entry-content .seo-custom-blockquote cite:before,
.entry-content blockquote:not([class]) cite:before {
  content: "— ";
  color: var(--garden-sage);
}

/* FAQ-Bereich */
.entry-content .seo-custom-faq {
  margin: 1.75rem 0;
  background: var(--garden-white);
  border: 1px solid var(--garden-border);
  border-radius: 2px;
  padding: 1.5rem;
}

.entry-content .seo-custom-faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--garden-border-light);
  padding-bottom: 1rem;
}

.entry-content .seo-custom-faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.entry-content .seo-custom-faq-question {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--garden-green-primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-clean);
}

.entry-content .seo-custom-faq-question:before {
  content: "🌸 ";
  margin-right: 0.5rem;
  opacity: 0.8;
}

.entry-content .seo-custom-faq-answer {
  margin-left: 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--garden-border);
  color: var(--garden-text-primary);
  font-family: var(--font-clean);
  line-height: 1.6;
}

/* Experten-Hinweis Box */
.entry-content .seo-custom-expert-tip {
  margin: 1.75rem 0;
  padding: 1.5rem;
  border: 1px solid var(--garden-border);
  border-radius: 2px;
  background: var(--garden-bg);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.entry-content .seo-custom-expert-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--garden-sage);
}

.entry-content .seo-custom-expert-content {
  flex: 1;
}

.entry-content .seo-custom-expert-title {
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--garden-green-primary);
  margin: 0 0 0.5rem 0;
  font-family: var(--font-clean);
}

.entry-content .seo-custom-expert-title:before {
  content: "👨‍🌾 ";
  margin-right: 0.5rem;
}

.entry-content .seo-custom-expert-text {
  margin: 0;
  color: var(--garden-text-primary);
  font-family: var(--font-clean);
  line-height: 1.6;
}

/* Infobox */
.entry-content .seo-custom-infobox {
  margin: 1.75rem 0;
  padding: 1.25rem 1.25rem 1.25rem 3rem;
  border: 1px solid var(--garden-border);
  border-radius: 2px;
  background: var(--garden-bg);
  position: relative;
  font-family: var(--font-clean);
}

.entry-content .seo-custom-infobox:before {
  content: "📋";
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  font-size: 1.1rem;
  opacity: 0.8;
}

.entry-content .seo-custom-infobox-title {
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--garden-green-primary);
  margin: 0 0 0.75rem 0;
}

.entry-content .seo-custom-infobox-content {
  margin: 0;
  color: var(--garden-text-primary);
  line-height: 1.6;
}

/* Infobox Varianten */
.entry-content .seo-custom-infobox-note {
  border-left: 3px solid var(--garden-sage);
}

.entry-content .seo-custom-infobox-note:before {
  content: "🌿";
}

.entry-content .seo-custom-infobox-note .seo-custom-infobox-title {
  color: var(--garden-sage);
}

.entry-content .seo-custom-infobox-important {
  border-left: 3px solid var(--garden-terracotta);
}

.entry-content .seo-custom-infobox-important:before {
  content: "🍂";
}

.entry-content .seo-custom-infobox-important .seo-custom-infobox-title {
  color: var(--garden-terracotta);
}

/* Step-by-Step Liste */
.entry-content .seo-custom-steps {
  margin: 1.75rem 0;
  counter-reset: step-counter;
  list-style: none;
  position: relative;
}

.entry-content .seo-custom-steps:before {
  content: "🌱 Schritt-für-Schritt Anleitung";
  display: block;
  font-family: var(--font-garden);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--garden-green-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--garden-border);
}

.entry-content .seo-custom-steps li {
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.25rem 1.25rem 3.5rem;
  background: var(--garden-white);
  border: 1px solid var(--garden-border);
  border-left: 3px solid var(--garden-green-primary);
  border-radius: 2px;
  position: relative;
  counter-increment: step-counter;
  font-family: var(--font-clean);
  color: var(--garden-text-primary);
  line-height: 1.6;
  transition: border-left-color 0.2s ease;
  list-style-type: none;
}

.entry-content .seo-custom-steps li:hover {
  border-left-color: var(--garden-sage);
}

.entry-content .seo-custom-steps li:before {
  content: counter(step-counter);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--garden-green-primary);
  color: var(--garden-white);
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
}

.entry-content .seo-custom-steps li:hover:before {
  background: var(--garden-sage);
}

.entry-content .seo-custom-steps li:last-child {
  border-left-color: var(--garden-earth);
}

.entry-content .seo-custom-steps li:last-child:before {
  background: var(--garden-earth);
  content: "✓";
}

/* Fehler-Lösung Darstellung */
.entry-content .seo-custom-problem-solution {
  margin: 1.75rem 0;
  background: var(--garden-white);
  border: 1px solid var(--garden-border);
  border-radius: 2px;
  overflow: hidden;
}

.entry-content .seo-custom-problem-solution-header {
  display: flex;
  background: var(--garden-bg);
  border-bottom: 1px solid var(--garden-border);
}

.entry-content .seo-custom-problem-label {
  flex: 1;
  padding: 0.875rem 1rem;
  background: rgba(198, 93, 7, 0.05);
  border-right: 1px solid var(--garden-border);
  font-family: var(--font-clean);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--garden-terracotta);
  text-align: center;
}

.entry-content .seo-custom-problem-label:before {
  content: "🍂 PROBLEM: ";
}

.entry-content .seo-custom-solution-label {
  flex: 1;
  padding: 0.875rem 1rem;
  background: rgba(74, 124, 89, 0.05);
  font-family: var(--font-clean);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--garden-green-primary);
  text-align: center;
}

.entry-content .seo-custom-solution-label:before {
  content: "🌱 LÖSUNG: ";
}

.entry-content .seo-custom-problem-solution-content {
  padding: 1.5rem;
  font-family: var(--font-clean);
  color: var(--garden-text-primary);
  line-height: 1.6;
}

.entry-content .seo-custom-problem-solution-content p:first-child {
  margin-top: 0;
}

.entry-content .seo-custom-problem-solution-content p:last-child {
  margin-bottom: 0;
}

/* TOC+ Plugin Styles für WordPress */
.entry-content #toc_container {
  background: var(--garden-white) !important;
  border: 1px solid var(--garden-border) !important;
  padding: 1.5rem !important;
  margin-bottom: 1.75rem !important;
  width: auto !important;
  display: table !important;
  font-size: 95% !important;
  font-family: var(--font-clean) !important;
  border-radius: 2px !important;
  position: relative;
}

.entry-content #toc_container:before {
  content: "🌳 Inhaltsverzeichnis";
  position: absolute;
  top: -10px;
  left: 15px;
  background: var(--garden-white);
  color: var(--garden-green-primary);
  padding: 0 10px;
  font-size: 0.85rem;
  font-weight: 500;
}

.entry-content #toc_container p.toc_title {
  text-align: center !important;
  font-weight: 500 !important;
  margin: 0 0 1rem 0 !important;
  padding: 0 !important;
  color: var(--garden-green-primary) !important;
  font-size: 1.1rem !important;
}

.entry-content #toc_container li:before {
  content: "🌿";
  margin-right: 0.5rem;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .entry-content h1 {
    font-size: 1.9rem;
  }
  
  .entry-content h2 {
    font-size: 1.6rem;
  }
  
  .entry-content .seo-custom-expert-tip {
    flex-direction: column;
    padding: 1.25rem;
  }
  
  .entry-content .seo-custom-expert-image {
    align-self: center;
  }
  
  .entry-content .seo-custom-steps li {
    padding: 1rem 1rem 1rem 3rem;
  }
  
  .entry-content .seo-custom-steps li:before {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.8rem;
  }
}

/* Sanfte Übergänge für alle interaktiven Elemente */
.entry-content .seo-custom-ol-featured li,
.entry-content .seo-custom-steps li,
.entry-content .seo-custom-tips li {
  transition: all 0.2s ease;
}

/* Subtile Akzente */
.entry-content .seo-custom-ol-featured li:nth-child(3n+1):before {
  background: var(--garden-sage);
}

.entry-content .seo-custom-ol-featured li:nth-child(3n+2):before {
  background: var(--garden-green-light);
}

.entry-content .seo-custom-ol-featured li:nth-child(3n+3):before {
  background: var(--garden-mint);
}

/* _________________________________________SEO_Trusted_Sources_________________________________________ */
.seo-sources {
    max-width: 1000px;
    margin-top: 20px;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.seo-sources__card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex: 100%;
    min-width: 300px;
    max-width: calc(100% - 8px);
}

.seo-sources__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.seo-sources__title {
    flex: 1;
}

.seo-sources__name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 2px;
}

.seo-sources__domain {
    color: #000;
    font-size: 16px;
}

.seo-sources__trust {
    background: var(--garden-green-dark);
    color: white;
    padding: 8px 12px;
    border-radius: 10px;
    text-align: center;
    min-width: 60px;
}

.seo-sources__trust-level {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 2px;
}

.seo-sources__trust-label {
    font-size: 14px;
    text-transform: uppercase;
}

.seo-sources__meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
    margin-bottom: 12px;
}

.seo-sources__meta-item {
    background: var(--garden-mint);
    padding: 8px;
    border-radius: 4px;
}

.seo-sources__meta-label {
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 3px;
    font-weight: bold;
}

.seo-sources__meta-value {
    font-size: 14px;
    color: #000;
}

.seo-sources__bias {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: bold;
}

.seo-sources__commercial {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.seo-sources__categories {
    margin-bottom: 12px;
}

.seo-sources__categories {
    display: inline-block;
    background: var(--garden-earth);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 16px;
    margin-right: 6px;
    margin-bottom: 3px;
}

.seo-sources__summary {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 4px;
    line-height: 1.4;
    color: #555;
    font-size: 12px;
}

@media (max-width: 768px) {
    .seo-sources {
        flex-direction: column;
    }
    
    .seo-sources__card {
        max-width: none;
    }
    
    .seo-sources__meta {
        grid-template-columns: 1fr 1fr;
    }
}