/* =========================================================
   BASIS
========================================================= */

:root{
  --pink:#d97893;
  --pink-dark:#b95773;
  --pink-deep:#8f455b;
  --pink-light:#f6d5df;
  --pink-soft:#fff0f4;
  --pink-ultra:#fff8fa;

  --cream:#fffaf8;
  --white:#fff;

  --text:#4c3940;
  --muted:#79686d;
  --light:#9b898e;

  --yellow:#f7e2ad;
  --sage:#e6eadf;
  --lilac:#e8e0ee;

  --border:#efd4dc;

  --shadow:
    0 18px 45px rgba(102,57,70,.11);

  --shadow-small:
    0 8px 25px rgba(102,57,70,.07);

  --radius:24px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--pink-ultra);
  color:var(--text);

  font-family:
  -apple-system,
  BlinkMacSystemFont,
  "Segoe UI",
  Arial,
  sans-serif;

  line-height:1.55;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
select{
  font:inherit;
}

button{cursor:pointer}

img{
  display:block;
  max-width:100%;
}

.container{
  width:min(1180px,calc(100% - 40px));
  margin:auto;
}

.serif,
h1,
h2.page-title,
.section-title,
.logo-name{
  font-family:Georgia,"Times New Roman",serif;
}

.hidden{
  display:none!important;
}


/* =========================================================
   TOP BAR
========================================================= */

.topbar{
  padding:9px 16px;

  text-align:center;

  color:#fff;
  background:var(--pink);

  font-size:.88rem;
  font-weight:750;
}


/* =========================================================
   HEADER
========================================================= */

header{
  position:sticky;
  top:0;
  z-index:100;

  background:rgba(255,248,250,.95);
  backdrop-filter:blur(16px);

  border-bottom:1px solid var(--border);
}

.header-row{
  min-height:90px;

  display:flex;
  align-items:center;
  gap:28px;
}

.logo{
  margin-right:auto;

  display:flex;
  align-items:center;
  gap:14px;
}

.logo-circle{
  width:66px;
  height:66px;

  flex:0 0 66px;

  overflow:hidden;

  display:grid;
  place-items:center;

  border-radius:50%;

  background:var(--pink-light);
  border:3px solid #fff;

  box-shadow:var(--shadow-small);
}

.logo-circle img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.logo-fallback{
  display:none;

  color:#fff;
  background:var(--pink);

  width:100%;
  height:100%;

  place-items:center;

  font-family:Georgia,serif;
  font-size:1.25rem;
  font-weight:800;
}

.logo-name{
  display:block;

  font-size:1.8rem;
  line-height:1;
  font-weight:700;
}

.logo-sub{
  display:block;

  margin-top:6px;

  color:var(--pink);

  font-size:.68rem;
  font-weight:850;

  letter-spacing:.15em;
  text-transform:uppercase;
}

.desktop-nav{
  display:flex;
  gap:20px;

  font-size:.88rem;
  font-weight:700;
}

.desktop-nav a:hover{
  color:var(--pink-dark);
}

.button{
  min-height:48px;
  padding:0 21px;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;

  border-radius:999px;
  border:1px solid transparent;

  font-weight:800;

  transition:.18s ease;
}

.button:hover{
  transform:translateY(-2px);
}

.primary{
  background:var(--pink);
  color:#fff;

  box-shadow:
  0 9px 22px rgba(217,120,147,.22);
}

.primary:hover{
  background:var(--pink-dark);
}

.secondary{
  background:#fff;
  border-color:var(--border);
}

.small{
  min-height:40px;
  padding:0 15px;
  font-size:.8rem;
}

.menu-button{
  display:none;

  width:46px;
  height:46px;

  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;

  font-size:1.2rem;
}

.mobile-nav{
  display:none;

  padding:0 0 18px;
}

.mobile-nav.open{
  display:block;
}

.mobile-nav a{
  display:block;

  padding:11px 0;

  border-bottom:1px solid var(--border);

  font-weight:700;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:7px;

  padding:7px 13px;
  margin-bottom:15px;

  color:var(--pink-dark);
  background:var(--pink-light);

  border-radius:999px;

  font-size:.78rem;
  font-weight:800;
}

.section{
  padding:78px 0;
}

.section-head{
  margin-bottom:35px;
  max-width:760px;
}

.section-title{
  margin:0 0 12px;

  font-size:clamp(2rem,4vw,3.25rem);
  letter-spacing:-.035em;
  line-height:1.08;
}

.section-text{
  margin:0;

  color:var(--muted);
  font-size:1.02rem;
}

.text-link{
  color:var(--pink-dark);
  font-weight:800;
}


/* =========================================================
   HOME HERO
========================================================= */

.hero{
  position:relative;
  overflow:hidden;

  padding:85px 0 78px;
}

.hero:before{
  content:"";

  position:absolute;
  right:-130px;
  top:-90px;

  width:500px;
  height:500px;

  border-radius:50%;

  background:var(--pink-light);

  opacity:.7;

  z-index:-1;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:65px;

  align-items:center;
}

.hero h1{
  margin:0 0 20px;

  font-size:clamp(3rem,6vw,5.2rem);
  line-height:1.02;
  letter-spacing:-.05em;
}

.hero-lead{
  max-width:680px;

  margin:0;

  color:var(--muted);
  font-size:1.1rem;
}

.hero-buttons{
  margin-top:28px;

  display:flex;
  flex-wrap:wrap;
  gap:11px;
}

.hero-trust{
  margin-top:28px;

  display:flex;
  flex-wrap:wrap;
  gap:11px 22px;

  color:var(--muted);

  font-size:.87rem;
  font-weight:750;
}


/* HERO VISUAL */

.visual{
  min-height:440px;
  position:relative;
}

.preview-paper{
  width:min(340px,82%);

  position:absolute;

  padding:25px;

  background:#fff;

  border:1px solid var(--border);
  border-radius:14px 14px 27px 14px;

  box-shadow:var(--shadow);
}

.preview-paper:before{
  content:"";

  width:72px;
  height:21px;

  position:absolute;
  top:-10px;
  left:40%;

  background:rgba(225,133,156,.45);

  transform:rotate(-4deg);
}

.preview-paper h3{
  margin:10px 0 6px;

  font-family:Georgia,serif;
  font-size:1.3rem;
}

.preview-paper p{
  margin:0;

  color:var(--muted);
  font-size:.86rem;
}

.paper-one{
  top:5px;
  right:12px;
  transform:rotate(4deg);
}

.paper-two{
  top:135px;
  left:0;
  transform:rotate(-4deg);
}

.paper-three{
  top:275px;
  right:0;

  background:var(--pink-soft);

  transform:rotate(3deg);
}


/* =========================================================
   STATS
========================================================= */

.stats{
  background:#fff;

  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.stat{
  padding:22px 15px;

  text-align:center;

  border-right:1px solid var(--border);
}

.stat:last-child{
  border-right:0;
}

.stat strong{
  display:block;

  color:var(--pink-dark);

  font-family:Georgia,serif;
  font-size:1.55rem;
}

.stat span{
  color:var(--muted);

  font-size:.76rem;
  font-weight:700;
}


/* =========================================================
   CATEGORY CARDS
========================================================= */

.category-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}

.category-card{
  min-height:165px;

  padding:21px;

  background:#fff;

  border:1px solid var(--border);
  border-radius:21px;

  transition:.18s ease;
}

.category-card:hover{
  transform:translateY(-4px);

  box-shadow:var(--shadow-small);
  border-color:var(--pink);
}

.category-icon{
  display:block;

  margin-bottom:26px;

  font-size:1.8rem;
}

.category-card strong{
  display:block;
}

.category-card small{
  color:var(--muted);
}


/* =========================================================
   MATERIAL FINDER
========================================================= */

.finder-section{
  background:var(--pink-soft);
}

.finder{
  padding:29px;

  background:rgba(255,255,255,.82);

  border:1px solid var(--border);
  border-radius:30px;
}

.filters{
  margin-bottom:22px;

  display:grid;
  grid-template-columns:1.4fr repeat(3,1fr);
  gap:11px;
}

.control{
  width:100%;
  min-height:51px;

  padding:0 14px;

  background:#fff;
  color:var(--text);

  border:1px solid var(--border);
  border-radius:13px;

  outline:none;
}

.control:focus{
  border-color:var(--pink);

  box-shadow:
  0 0 0 3px rgba(217,120,147,.13);
}

.results{
  margin-bottom:13px;

  color:var(--muted);

  font-size:.82rem;
  font-weight:800;
}


/* =========================================================
   MATERIAL CARDS
========================================================= */

.material-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:17px;
}

.material-card{
  min-height:395px;

  overflow:hidden;

  display:flex;
  flex-direction:column;

  background:#fff;

  border:1px solid var(--border);
  border-radius:21px;

  box-shadow:var(--shadow-small);
}

.material-cover{
  height:175px;

  padding:20px;

  position:relative;

  display:flex;
  align-items:flex-end;

  overflow:hidden;
}

.material-cover:after{
  content:"";

  width:120px;
  height:120px;

  position:absolute;
  right:-30px;
  top:-30px;

  background:rgba(255,255,255,.32);

  border-radius:50%;
}

.c1{background:linear-gradient(135deg,#f5bfce,#fde7ed)}
.c2{background:linear-gradient(135deg,#f5dbe3,#e6deec)}
.c3{background:linear-gradient(135deg,#f6dfa4,#fde6d5)}
.c4{background:linear-gradient(135deg,#eac9d7,#f7e7ec)}
.c5{background:linear-gradient(135deg,#ead5db,#e7eadf)}
.c6{background:linear-gradient(135deg,#e7bfd0,#f6e2e6)}

.cover-name{
  position:relative;
  z-index:2;

  max-width:85%;

  padding:8px 10px;

  background:rgba(255,255,255,.88);

  border-radius:10px;

  font-family:Georgia,serif;
  font-weight:700;
}

.material-body{
  padding:19px;

  flex:1;

  display:flex;
  flex-direction:column;
}

.tags{
  margin-bottom:10px;

  display:flex;
  flex-wrap:wrap;
  gap:5px;
}

.tag{
  padding:5px 8px;

  background:var(--pink-soft);
  color:var(--muted);

  border-radius:999px;

  font-size:.65rem;
  font-weight:800;
}

.free-tag{
  background:#edf3df;
  color:#587050;
}

.material-body h3{
  margin:0 0 8px;

  font-size:1.02rem;
}

.material-body p{
  margin:0 0 17px;

  color:var(--muted);
  font-size:.83rem;
}

.material-bottom{
  margin-top:auto;
}


/* =========================================================
   EDUKI
========================================================= */

.white-section{
  background:#fff;
}

.eduki-top{
  margin-bottom:31px;

  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:30px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
}

.product-card{
  overflow:hidden;

  background:var(--pink-ultra);

  border:1px solid var(--border);
  border-radius:21px;

  transition:.18s;
}

.product-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-small);
}

.product-cover{
  aspect-ratio:4/3;

  padding:24px;

  display:grid;
  place-items:center;

  text-align:center;

  border-bottom:1px solid var(--border);

  position:relative;
  overflow:hidden;
  min-height:220px;
}

.pc1{background:#f7d6df}
.pc2{background:#f3e2cf}
.pc3{background:#e7e0ef}
.pc4{background:#f1dbe3}
.pc5{background:#e6eadf}
.pc6{background:#f9e2df}
.pc7{background:#eadce7}
.pc8{background:#f4e8ce}

.product-cover strong{
  font-family:Georgia,serif;
  font-size:1.05rem;

  position:relative;
  z-index:3;
  width:55%;
  padding:10px;
  background:rgba(255,255,255,.88);
  border-radius:8px;
  box-shadow:0 5px 14px rgba(70,40,50,.07);
}

.product-info{
  padding:16px;
}

.product-info h3{
  margin:0 0 6px;
  font-size:.9rem;
}

.product-info p{
  margin:0 0 11px;

  color:var(--muted);
  font-size:.75rem;
}


/* =========================================================
   FREEBIES
========================================================= */

.freebie-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr .9fr;
  gap:17px;
}

.freebie{
  min-height:285px;

  padding:28px;

  border:1px solid var(--border);
  border-radius:27px;

  background:#fff;
}

.freebie-main{
  color:#fff;
  background:linear-gradient(135deg,var(--pink-dark),var(--pink));
}

.freebie-main h3,
.freebie-main p{
  color:#fff;
}

.freebie:nth-child(2){
  background:#fff2f6;
}

.freebie:nth-child(3){
  background:#fff8ed;
}

.freebie-icon{
  font-size:2rem;
}

.freebie h3{
  margin:25px 0 9px;

  font-family:Georgia,serif;
  font-size:1.5rem;
}

.freebie p{
  color:var(--muted);
}


/* =========================================================
   METHODS
========================================================= */

.method-box{
  padding:48px;

  position:relative;
  overflow:hidden;

  display:grid;
  grid-template-columns:1fr auto;
  gap:35px;
  align-items:center;

  color:#fff;

  background:
  linear-gradient(135deg,var(--pink-dark),#e894aa);

  border-radius:36px;
}

.method-box:after{
  content:"70";

  position:absolute;
  right:125px;
  top:-55px;

  font-family:Georgia,serif;
  font-size:12rem;
  font-weight:800;

  opacity:.08;
}

.method-box h2{
  margin:0 0 10px;

  color:#fff;

  font-family:Georgia,serif;
  font-size:clamp(2rem,4vw,3rem);
}

.method-box p{
  margin:0;
  max-width:710px;

  color:rgba(255,255,255,.85);
}


/* =========================================================
   TOPICS
========================================================= */

.topic-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.topic-card{
  padding:26px;

  background:#fff;

  border:1px solid var(--border);
  border-radius:23px;
}

.topic-icon{
  width:51px;
  height:51px;

  margin-bottom:20px;

  display:grid;
  place-items:center;

  background:var(--pink-light);

  border-radius:15px;

  font-size:1.4rem;
}

.topic-card h3{
  margin:0 0 8px;

  font-family:Georgia,serif;
  font-size:1.3rem;
}

.topic-card p{
  color:var(--muted);
  font-size:.85rem;
}


/* =========================================================
   INSTAGRAM
========================================================= */

.instagram-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:17px;
}

.instagram-card{
  min-height:310px;

  padding:20px;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  color:#fff;

  border-radius:27px;
}

.ig1{
  background:
  linear-gradient(to top,rgba(72,38,49,.8),transparent),
  linear-gradient(135deg,#e092aa,#f6cfd9);
}

.ig2{
  background:
  linear-gradient(to top,rgba(72,38,49,.8),transparent),
  linear-gradient(135deg,#e9c8ac,#ec9eb6);
}

.ig3{
  background:
  linear-gradient(to top,rgba(72,38,49,.8),transparent),
  linear-gradient(135deg,#c77d94,#e8bdca);
}

.instagram-placeholder{
  margin-bottom:auto;

  font-size:.7rem;
  font-weight:850;

  letter-spacing:.07em;
  text-transform:uppercase;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter{
  padding:42px;

  display:grid;
  grid-template-columns:1fr auto;
  gap:35px;
  align-items:center;

  background:var(--pink-light);

  border:1px solid #eab6c5;
  border-radius:32px;
}

.newsletter h2{
  margin:0 0 7px;

  font-family:Georgia,serif;
  font-size:2rem;
}

.newsletter p{
  margin:0;
  color:var(--muted);
}

.newsletter-form{
  display:flex;
  gap:8px;
}

.newsletter-form input{
  min-width:260px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:55px;

  align-items:center;
}

.about-logo{
  padding:17px;

  background:#fff;

  border:1px solid var(--border);
  border-radius:50%;

  box-shadow:var(--shadow);
}

.about-logo-inner{
  aspect-ratio:1;

  overflow:hidden;

  display:grid;
  place-items:center;

  background:var(--pink-light);

  border-radius:50%;
}

.about-logo-inner img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.about h2{
  margin:0 0 15px;

  font-family:Georgia,serif;
  font-size:clamp(2rem,4vw,3rem);
}

.about p{
  max-width:680px;
  color:var(--muted);
}


/* =========================================================
   INTERNAL PAGE
========================================================= */

.page-hero{
  padding:67px 0 55px;

  background:linear-gradient(135deg,var(--pink-soft),var(--pink-ultra));

  border-bottom:1px solid var(--border);
}

.breadcrumb{
  margin-bottom:17px;

  color:var(--pink-dark);

  font-size:.8rem;
  font-weight:800;
}

.page-title{
  max-width:800px;

  margin:0 0 15px;

  font-size:clamp(2.8rem,6vw,4.8rem);
  line-height:1.02;
  letter-spacing:-.045em;
}

.page-lead{
  max-width:720px;

  color:var(--muted);
  font-size:1.07rem;
}

.subcategory-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.subcategory{
  padding:23px;

  background:#fff;

  border:1px solid var(--border);
  border-radius:20px;
}

.subcategory span{
  font-size:1.7rem;
}

.subcategory h3{
  margin:17px 0 6px;
}

.subcategory p{
  margin:0;
  color:var(--muted);
  font-size:.82rem;
}

.notice{
  padding:18px 20px;

  background:#fff8e9;

  border:1px solid #efdcae;
  border-radius:15px;

  color:#746243;

  font-size:.86rem;
}


/* =========================================================
   FOOTER
========================================================= */

footer{
  padding:52px 0 27px;

  color:#fff;
  background:#5b4149;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr repeat(3,1fr);
  gap:37px;
}

.footer-brand{
  font-family:Georgia,serif;
  font-size:1.35rem;
}

.footer-copy{
  max-width:340px;

  color:rgba(255,255,255,.68);
  font-size:.84rem;
}

footer strong{
  display:block;
  margin-bottom:9px;
}

footer a{
  display:block;

  margin:7px 0;

  color:rgba(255,255,255,.72);
  font-size:.82rem;
}

footer a:hover{
  color:#fff;
}

.footer-bottom{
  margin-top:36px;
  padding-top:18px;

  display:flex;
  justify-content:space-between;
  gap:20px;

  border-top:1px solid rgba(255,255,255,.13);

  color:rgba(255,255,255,.52);
  font-size:.73rem;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1080px){

  .desktop-nav,
  .header-eduki{
    display:none;
  }

  .menu-button{
    display:block;
  }

  .hero-grid{
    grid-template-columns:1fr;
  }

  .visual{
    width:min(620px,100%);
    margin:auto;
  }

  .category-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .material-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .product-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .filters{
    grid-template-columns:1fr 1fr;
  }

  .subcategory-grid{
    grid-template-columns:repeat(2,1fr);
  }

}


@media(max-width:720px){

  .container{
    width:min(100% - 28px,1180px);
  }

  .section{
    padding:58px 0;
  }

  .header-row{
    min-height:76px;
  }

  .logo-circle{
    width:52px;
    height:52px;
    flex-basis:52px;
  }

  .logo-name{
    font-size:1.25rem;
  }

  .logo-sub{
    display:none;
  }

  .hero{
    padding:57px 0;
  }

  .hero h1{
    font-size:clamp(2.6rem,12vw,4.2rem);
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-buttons .button{
    width:100%;
  }

  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .stat:nth-child(2){
    border-right:0;
  }

  .stat:nth-child(-n+2){
    border-bottom:1px solid var(--border);
  }

  .category-grid,
  .filters,
  .methods-filters,
  .material-grid,
  .product-grid,
  .topic-grid,
  .instagram-grid,
  .subcategory-grid{
    grid-template-columns:1fr;
  }

  .freebie-grid{
    grid-template-columns:1fr;
  }

  .method-box{
    padding:30px 24px;
    grid-template-columns:1fr;
  }

  .newsletter{
    padding:30px 24px;
    grid-template-columns:1fr;
  }

  .newsletter-form{
    display:grid;
  }

  .newsletter-form input{
    min-width:0;
  }

  .about-grid{
    grid-template-columns:1fr;
  }

  .about-logo{
    width:230px;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

}


@media(max-width:480px){

  .footer-grid{
    grid-template-columns:1fr;
  }

}

/* =========================================================
   CONTENT CARDS, METHODS, DOWNLOADS & TESTIMONIALS
========================================================= */

.content-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:17px;
}

.content-card{
  padding:25px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:23px;
  box-shadow:var(--shadow-small);
}

.content-card h3{
  margin:13px 0 8px;
  font-family:Georgia,serif;
  font-size:1.25rem;
}

.content-card p{
  margin:0;
  color:var(--muted);
  font-size:.86rem;
}

.content-icon{
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  background:var(--pink-light);
  border-radius:15px;
  font-size:1.4rem;
}

.content-link-card{
  display:block;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.content-link-card:hover{
  transform:translateY(-4px);
  border-color:var(--pink);
  box-shadow:var(--shadow-small);
}

.content-link-card .topic-arrow{
  display:inline-block;
  margin-top:15px;
  color:var(--pink-dark);
  font-weight:800;
  font-size:.8rem;
}

.methods-finder{
  padding:29px;
  background:rgba(255,255,255,.86);
  border:1px solid var(--border);
  border-radius:30px;
}

.methods-filters{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:11px;
  margin-bottom:18px;
}

.methods-results-head{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  margin-bottom:22px;
  color:var(--muted);
  font-size:.84rem;
}

.methods-results-head strong{
  color:var(--text);
}

.method-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:17px;
}

.method-card{
  padding:22px;
  display:flex;
  flex-direction:column;
  align-self:start;
  background:#fff;
  border:1px solid var(--border);
  border-radius:23px;
  box-shadow:var(--shadow-small);
}

.method-type{
  display:inline-block;
  align-self:flex-start;
  padding:5px 9px;
  margin-bottom:14px;
  border-radius:999px;
  background:var(--pink-light);
  color:var(--pink-dark);
  font-size:.68rem;
  font-weight:850;
}

.method-card h3{
  margin:0 0 10px;
  font-family:Georgia,serif;
  font-size:1.22rem;
  line-height:1.22;
}

.method-meta{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-bottom:13px;
}

.method-meta span{
  padding:4px 8px;
  border-radius:8px;
  background:var(--pink-ultra);
  border:1px solid var(--border);
  color:var(--muted);
  font-size:.68rem;
  font-weight:700;
}

.method-card p{
  margin:0;
  color:var(--muted);
  font-size:.84rem;
}

.method-toggle{
  margin-top:17px;
  padding:0;
  align-self:flex-start;
  border:0;
  background:transparent;
  color:var(--pink-dark);
  font-weight:850;
  font-size:.8rem;
}

.method-toggle:hover{
  text-decoration:underline;
}

.method-details{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid var(--border);
}

.method-details[hidden]{
  display:none;
}

.method-details p + p{
  margin-top:10px;
}

.method-source{
  padding:10px 12px;
  background:var(--pink-ultra);
  border-radius:12px;
  font-size:.76rem!important;
}

.methods-load-more{
  margin-top:25px;
  text-align:center;
}

.methods-empty{
  grid-column:1/-1;
  padding:40px;
  background:#fff;
  border:1px dashed var(--pink);
  border-radius:20px;
  text-align:center;
  color:var(--muted);
}

.download-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.download-card{
  min-height:230px;
  padding:24px;
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid var(--border);
  border-radius:23px;
  box-shadow:var(--shadow-small);
}

.download-icon{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  background:var(--pink-light);
  border-radius:14px;
  font-size:1.4rem;
}

.download-card h3{
  margin:19px 0 8px;
  font-family:Georgia,serif;
  font-size:1.15rem;
}

.download-card p{
  margin:0 0 18px;
  color:var(--muted);
  font-size:.82rem;
}

.download-card .button{
  margin-top:auto;
}

.testimonial-section{
  background:#fff;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:17px;
}

.testimonial{
  padding:25px;
  position:relative;
  background:var(--pink-ultra);
  border:1px solid var(--border);
  border-radius:23px;
}

.testimonial:before{
  content:"“";
  position:absolute;
  right:17px;
  top:-10px;
  color:var(--pink-light);
  font-family:Georgia,serif;
  font-size:6rem;
  line-height:1;
}

.testimonial p{
  position:relative;
  z-index:2;
  color:var(--muted);
  font-size:.87rem;
}

.testimonial strong{
  display:block;
  margin-top:13px;
  color:var(--pink-dark);
}

.ref-status{
  display:inline-block;
  padding:5px 9px;
  margin-top:9px;
  background:#fff6dc;
  color:#7b6740;
  border-radius:999px;
  font-size:.66rem;
  font-weight:800;
}

/* =========================================================
   PRODUCT COVERS & MATERIAL FINDER
========================================================= */

.product-cover::before{
  content:"";
  position:absolute;
  width:64%;
  height:76%;
  left:18%;
  top:13%;
  background:#fff;
  border:1px solid rgba(90,60,70,.12);
  border-radius:5px;
  box-shadow:0 14px 30px rgba(80,50,60,.14);
  transform:rotate(-2deg);
}

.product-cover::after{
  content:"";
  position:absolute;
  width:60px;
  height:19px;
  left:calc(50% - 30px);
  top:8%;
  background:rgba(217,120,147,.38);
  transform:rotate(2deg);
}

.real-product-cover{
  min-height:310px;
  background-repeat:no-repeat!important;
  background-position:center!important;
  background-size:contain!important;
  background-color:#fff!important;
}

.real-product-cover::before,
.real-product-cover::after{
  display:none!important;
}

.real-product-cover strong{
  display:none!important;
}

.material-cover.has-image{
  height:245px;
  background-position:center;
  background-repeat:no-repeat;
  background-size:contain;
  background-color:#fff;
}

.material-cover.has-image::after{
  display:none;
}

.material-cover.has-image .cover-name{
  display:none;
}

.home-finder-more{
  margin-top:24px;
  text-align:center;
}

.full-finder{
  padding:30px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:30px;
  box-shadow:var(--shadow-small);
}

.finder-tip{
  padding:20px;
  margin-bottom:30px;
  background:var(--pink-soft);
  border:1px solid var(--border);
  border-radius:17px;
  color:var(--muted);
  font-size:.87rem;
}

.finder-tip strong{
  color:var(--text);
}

.finder-reset{
  border:0;
  background:transparent;
  color:var(--pink-dark);
  font-weight:800;
}

.finder-results-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin:20px 0 15px;
}

.finder-results-head strong{
  font-size:.88rem;
}

.finder-results-head span{
  color:var(--muted);
  font-size:.8rem;
}

.load-more-wrap{
  margin-top:30px;
  text-align:center;
}

.material-navigation{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
  margin-bottom:35px;
}

.material-navigation-card{
  padding:24px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  transition:.18s ease;
}

.material-navigation-card:hover{
  transform:translateY(-4px);
  border-color:var(--pink);
  box-shadow:var(--shadow-small);
}

.material-navigation-card span{
  font-size:1.8rem;
}

.material-navigation-card h3{
  margin:18px 0 7px;
  font-family:Georgia,serif;
}

.material-navigation-card p{
  margin:0;
  color:var(--muted);
  font-size:.83rem;
}

/* =========================================================
   TOPIC & UTILITY PAGES
========================================================= */

.topic-hero-small{
  padding:58px 0 48px;
  background:linear-gradient(135deg,var(--pink-soft),var(--pink-ultra));
  border-bottom:1px solid var(--border);
}

.topic-material-section{
  background:var(--pink-soft);
}

.topic-info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.topic-info{
  padding:24px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
}

.topic-info span{
  display:block;
  font-size:1.6rem;
  margin-bottom:17px;
}

.topic-info h3{
  margin:0 0 8px;
  font-family:Georgia,serif;
}

.topic-info p{
  margin:0;
  color:var(--muted);
  font-size:.84rem;
}

.rebuild-note{
  margin-top:28px;
  padding:18px 20px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:17px;
  color:var(--muted);
}

.legal-card{
  max-width:760px;
  padding:28px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:23px;
  box-shadow:var(--shadow-small);
}

.newsletter-form .control[disabled]{
  opacity:.72;
  cursor:not-allowed;
}

.newsletter-form .button[disabled]{
  opacity:.72;
  cursor:not-allowed;
  transform:none;
}

.instagram-card{
  text-decoration:none;
}

.instagram-card .ig-label{
  margin-bottom:auto;
  font-size:.72rem;
  font-weight:850;
  letter-spacing:.06em;
  text-transform:uppercase;
}

@media(max-width:1080px){
  .content-grid,
  .method-grid,
  .download-grid,
  .testimonial-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:900px){
  .material-navigation,
  .topic-info-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:720px){
  .content-grid,
  .methods-filters,
  .method-grid,
  .download-grid,
  .testimonial-grid{
    grid-template-columns:1fr;
  }
}



/* =========================================================
   FREEBIE FINDER & VERTRETUNGSSTUNDEN
========================================================= */

.freebie-category-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.freebie-category-card{
  width:100%;
  text-align:left;
  font:inherit;
  color:inherit;
}

.freebie-category-card.active{
  border-color:var(--pink);
  background:var(--pink-soft);
}

.freebie-finder{
  padding:29px;
  background:rgba(255,255,255,.86);
  border:1px solid var(--border);
  border-radius:30px;
}

.freebie-filters{
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:11px;
  margin-bottom:18px;
}

.freebie-results-head{
  margin-bottom:22px;
  color:var(--muted);
  font-size:.84rem;
}

.freebie-results-head strong{
  color:var(--text);
}

.freebie-badge{
  display:inline-flex;
  align-items:center;
  width:max-content;
  margin-top:15px;
  padding:5px 9px;
  border-radius:999px;
  background:#edf3df;
  color:#587050;
  font-size:.66rem;
  font-weight:850;
}

.download-category{
  display:block;
  margin:-1px 0 9px;
  color:var(--pink-dark);
  font-size:.72rem;
  font-weight:850;
}

.substitution-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:17px;
}

.substitution-card{
  padding:27px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:var(--shadow-small);
}

.substitution-card h2{
  margin:0 0 12px;
  font-family:Georgia,serif;
  font-size:1.55rem;
}

.substitution-card p{
  color:var(--muted);
}

.substitution-card ul{
  margin:10px 0 0;
  padding-left:20px;
  color:var(--muted);
  font-size:.88rem;
}

.substitution-meta{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin:0 0 17px;
}

.substitution-meta span{
  padding:5px 9px;
  border-radius:9px;
  background:var(--pink-ultra);
  border:1px solid var(--border);
  color:var(--muted);
  font-size:.72rem;
  font-weight:750;
}

.source-note{
  margin-top:20px!important;
  padding:12px 14px;
  background:var(--pink-ultra);
  border:1px solid var(--border);
  border-radius:13px;
  color:var(--muted)!important;
  font-size:.75rem!important;
}

@media(max-width:1080px){
  .freebie-category-grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:720px){
  .freebie-category-grid,
  .freebie-filters,
  .substitution-grid{grid-template-columns:1fr}
}



/* =========================================================
   REFERENDARIAT – LANGE BEITRÄGE & UNTERSEITEN
========================================================= */
.ref-article{
  width:min(840px,100%);
  margin:0 auto;
}

.ref-article p{
  margin:0 0 18px;
}

.ref-intro-nav{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:24px 0 0;
}

.ref-intro-nav a{
  padding:8px 11px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--pink-dark);
  font-size:.78rem;
  font-weight:800;
}

.ref-intro-nav a:hover{
  border-color:var(--pink);
}

.ref-note{
  margin:24px 0;
  padding:20px 22px;
  background:#fff8e9;
  border:1px solid #efdcae;
  border-radius:18px;
  color:#746243;
  font-size:.9rem;
}

.ref-note.personal{
  background:var(--pink-soft);
  border-color:var(--border);
  color:var(--text);
}

.ref-badge{
  display:inline-flex;
  align-items:center;
  width:max-content;
  padding:5px 9px;
  border-radius:999px;
  background:var(--pink-soft);
  color:var(--pink-dark);
  font-size:.68rem;
  font-weight:850;
}

.ref-badge.update{
  background:#fff4dd;
  color:#7f6031;
}

.ref-card-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.ref-card{
  padding:24px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:var(--shadow-small);
}

.ref-card h3{
  margin:12px 0 8px;
  font-family:Georgia,serif;
  font-size:1.22rem;
}

.ref-card p{
  margin:0;
  color:var(--muted);
  font-size:.88rem;
}

.ref-accordion{
  display:grid;
  gap:12px;
}

.ref-accordion details{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
}

.ref-accordion summary{
  padding:18px 20px;
  cursor:pointer;
  font-weight:850;
  list-style:none;
}

.ref-accordion summary::-webkit-details-marker{
  display:none;
}

.ref-accordion summary::after{
  content:"＋";
  float:right;
  color:var(--pink-dark);
}

.ref-accordion details[open] summary::after{
  content:"−";
}

.ref-detail-body{
  padding:0 20px 20px;
  color:var(--muted);
  font-size:.9rem;
}

.ref-detail-body ul,
.ref-question-list{
  margin:10px 0 0;
  padding-left:20px;
}

.ref-detail-body li,
.ref-question-list li{
  margin:7px 0;
}

.ref-question-group{
  margin:0 0 16px;
  padding:22px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
}

.ref-question-group h3{
  margin:0 0 10px;
  font-family:Georgia,serif;
}

.ref-back{
  margin-top:30px;
}

.ref-disabled-button{
  opacity:.55;
  cursor:not-allowed;
  pointer-events:none;
}

@media(max-width:720px){
  .ref-card-grid{grid-template-columns:1fr}
}


/* =========================================================
   REFERENDARIAT V6 – AKTUELLER NRW-SACHSTAND
========================================================= */
.ref-badge.current{
  background:var(--sage);
  color:#51624d;
}

.ref-current-box{
  margin:0 0 28px;
  padding:28px;
  background:linear-gradient(135deg,#f3f6ef,#fff);
  border:1px solid #d8dfce;
  border-radius:26px;
  box-shadow:var(--shadow-small);
}

.ref-current-box h2{
  margin:12px 0 10px;
  font-family:Georgia,serif;
  font-size:clamp(1.7rem,3vw,2.25rem);
}

.ref-current-box > p{
  color:var(--muted);
}

.ref-fact-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin-top:22px;
}

.ref-fact{
  padding:18px;
  background:rgba(255,255,255,.88);
  border:1px solid #dfe5d6;
  border-radius:17px;
}

.ref-fact strong{
  display:block;
  margin-bottom:5px;
  color:#53634e;
  font-family:Georgia,serif;
  font-size:1.22rem;
}

.ref-fact span{
  color:var(--muted);
  font-size:.78rem;
}

.ref-current-section{
  margin:0 0 32px;
  padding:26px;
  background:#f8faf5;
  border:1px solid #dfe5d6;
  border-radius:24px;
}

.ref-current-section h2,
.ref-current-section h3{
  font-family:Georgia,serif;
}

.ref-current-section h2{
  margin:10px 0 14px;
}

.ref-current-section h3{
  margin:20px 0 8px;
}

.ref-current-section ul{
  padding-left:20px;
}

.ref-current-section li{
  margin:8px 0;
}

.ref-source-line{
  margin-top:28px;
  padding-top:16px;
  border-top:1px solid var(--border);
  color:var(--light);
  font-size:.76rem;
}

.ref-history-divider{
  margin:34px 0 20px;
  padding-top:26px;
  border-top:1px solid var(--border);
}

.ref-history-divider h2{
  margin:10px 0 8px;
  font-family:Georgia,serif;
}

.ref-weight-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:10px;
  margin:20px 0 8px;
}

.ref-weight{
  padding:18px 12px;
  text-align:center;
  background:#fff;
  border:1px solid #dfe5d6;
  border-radius:16px;
}

.ref-weight strong{
  display:block;
  color:#53634e;
  font-family:Georgia,serif;
  font-size:1.35rem;
}

.ref-weight span{
  color:var(--muted);
  font-size:.73rem;
}

.ref-download-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.ref-download-card{
  padding:24px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:var(--shadow-small);
}

.ref-download-card h3{
  margin:12px 0 8px;
  font-family:Georgia,serif;
  font-size:1.2rem;
}

.ref-download-card p{
  color:var(--muted);
  font-size:.86rem;
}

.ref-file-type{
  display:inline-block;
  margin:0 0 8px;
  color:var(--light);
  font-size:.72rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.ref-historical-hint{
  margin-top:14px;
  color:var(--light);
  font-size:.74rem;
}

@media(max-width:900px){
  .ref-fact-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .ref-weight-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:720px){
  .ref-fact-grid,
  .ref-download-grid,
  .ref-weight-grid{grid-template-columns:1fr}
  .ref-current-box,
  .ref-current-section{padding:22px}
}



/* =========================================================
   VERSION 7 · STARTSEITE & ÜBER MICH
   bewusst in den bestehenden CSS-Bereich integriert
========================================================= */

.hero-eduki-link{
  display:inline-block;
  margin-top:16px;
  color:var(--pink-dark);
  font-size:.9rem;
  font-weight:800;
}

.preview-paper{
  color:inherit;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.preview-paper:hover{
  border-color:var(--pink);
  box-shadow:0 20px 48px rgba(102,57,70,.14);
}

.paper-one:hover{transform:rotate(3deg) translateY(-3px)}
.paper-two:hover{transform:rotate(-3deg) translateY(-3px)}
.paper-three:hover{transform:rotate(2deg) translateY(-3px)}

.instagram-follow{
  margin-top:24px;
}

.about-actions,
.final-cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:23px;
}

.home-final-cta{
  padding:36px;
  background:linear-gradient(135deg,var(--pink-light),var(--pink-soft));
  border:1px solid #eab6c5;
  border-radius:30px;
  box-shadow:var(--shadow-small);
}

.home-final-cta h2{
  margin:0 0 10px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.8rem,4vw,2.7rem);
  line-height:1.08;
}

.home-final-cta p{
  max-width:720px;
  margin:0;
  color:var(--muted);
}

.about-intro{
  max-width:840px;
}

.about-intro h2,
.about-story h2,
.about-choice h2,
.about-closing h2{
  margin:0 0 14px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2rem,4vw,3rem);
}

.about-intro p,
.about-story p,
.about-choice p,
.about-closing p{
  color:var(--muted);
}

.about-facts{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.about-fact{
  padding:24px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:var(--shadow-small);
}

.about-fact .fact-icon{
  display:block;
  margin-bottom:15px;
  font-size:1.7rem;
}

.about-fact strong{
  display:block;
  margin-bottom:4px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.2rem;
}

.about-fact span{
  color:var(--muted);
  font-size:.84rem;
}

.about-value-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.about-value{
  padding:25px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
}

.about-value h3{
  margin:0 0 8px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.3rem;
}

.about-value p{
  margin:0;
  color:var(--muted);
  font-size:.86rem;
}

.about-story{
  max-width:840px;
  padding:34px;
  background:var(--pink-soft);
  border:1px solid var(--border);
  border-radius:28px;
}

.about-choice-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:17px;
}

.about-choice-card{
  min-height:250px;
  padding:28px;
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid var(--border);
  border-radius:25px;
  box-shadow:var(--shadow-small);
}

.about-choice-card .choice-icon{
  font-size:2rem;
}

.about-choice-card h3{
  margin:20px 0 8px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.45rem;
}

.about-choice-card p{
  margin:0 0 20px;
  color:var(--muted);
}

.about-choice-card .button{
  margin-top:auto;
  align-self:flex-start;
}

.about-closing{
  max-width:840px;
  padding:38px;
  background:linear-gradient(135deg,var(--pink-soft),#fff);
  border:1px solid var(--border);
  border-radius:30px;
}

@media(max-width:900px){
  .about-facts,
  .about-value-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:720px){
  .about-facts,
  .about-value-grid,
  .about-choice-grid{
    grid-template-columns:1fr;
  }

  .home-final-cta,
  .about-story,
  .about-closing{
    padding:28px 22px;
  }

  .about-actions,
  .final-cta-actions{
    flex-direction:column;
  }

  .about-actions .button,
  .final-cta-actions .button{
    width:100%;
  }
}

/* =========================================================
   PRODUCTION V10 – STATIC ROUTES & TOPIC LANDINGS
========================================================= */
.preview-paper{color:inherit;text-decoration:none;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
.preview-paper:hover{box-shadow:0 20px 50px rgba(102,57,70,.16);border-color:var(--pink)}
.hero-eduki-link{display:inline-block;margin-top:17px;color:var(--pink-dark);font-weight:800;font-size:.86rem}
.instagram-follow{margin-top:20px}
.about-actions,.final-cta-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:23px}
.home-final-cta{padding:38px;background:linear-gradient(135deg,var(--pink-soft),#fff);border:1px solid var(--border);border-radius:30px}
.home-final-cta h2,.about-story h2,.about-closing h2{margin:10px 0 10px;font-family:Georgia,"Times New Roman",serif;font-size:clamp(1.9rem,4vw,2.8rem)}
.home-final-cta p,.about-story p,.about-closing p{color:var(--muted)}
.about-facts,.about-value-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:15px}
.about-fact,.about-value,.about-choice-card{padding:24px;background:#fff;border:1px solid var(--border);border-radius:22px;box-shadow:var(--shadow-small)}
.about-fact{display:flex;flex-direction:column;gap:6px}.about-fact .fact-icon,.choice-icon{font-size:1.8rem}.about-fact strong{font-family:Georgia,"Times New Roman",serif;font-size:1.22rem}.about-fact span:last-child{color:var(--muted);font-size:.82rem}
.about-value h3,.about-choice-card h3{margin:0 0 8px;font-family:Georgia,"Times New Roman",serif;font-size:1.35rem}.about-value p,.about-choice-card p{margin:0;color:var(--muted)}
.about-story{max-width:840px;padding:38px;background:#fff;border:1px solid var(--border);border-radius:30px}.about-choice-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:17px}.about-choice-card{display:flex;flex-direction:column}.about-choice-card .button{margin-top:20px;align-self:flex-start}.about-closing{max-width:840px;padding:38px;background:linear-gradient(135deg,var(--pink-soft),#fff);border:1px solid var(--border);border-radius:30px}
.topic-quicklinks{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
.topic-quicklinks a{padding:10px 14px;background:#fff;border:1px solid var(--border);border-radius:999px;color:var(--pink-dark);font-weight:800;font-size:.82rem;transition:.18s ease}
.topic-quicklinks a:hover{border-color:var(--pink);transform:translateY(-2px)}
.topic-landing-copy{max-width:760px}.topic-landing-copy p{color:var(--muted);font-size:1rem}
.topic-landing-material{margin-top:32px}
.topic-back-actions{display:flex;flex-wrap:wrap;gap:10px}
.static-page-note{padding:15px 18px;background:#fff;border:1px solid var(--border);border-radius:15px;color:var(--muted);font-size:.84rem}
@media(max-width:900px){.about-facts,.about-value-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:720px){.about-facts,.about-value-grid,.about-choice-grid{grid-template-columns:1fr}.topic-back-actions{flex-direction:column}.topic-back-actions .button{width:100%}}

/* Version 12: transparent subject/catalog positioning */
.finder-catalog-note{margin:12px 0 20px;padding:13px 16px;border-radius:14px;background:rgba(255,255,255,.72);color:var(--muted);font-size:.88rem}
.subcategory h3{overflow-wrap:anywhere}
@media(max-width:720px){.desktop-nav{display:none}.subcategory-grid{grid-template-columns:1fr}}


/* =========================================================
   V13 – ARCHIV, EMPFEHLUNGEN & AFFILIATE
========================================================= */
.affiliate-note{margin:0 0 28px;padding:19px 22px;border:1px solid #ead8b2;background:#fff9ea;border-radius:18px;color:#6e5a38;font-size:.87rem;line-height:1.6}.recommendation-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:17px}.recommendation-card{display:flex;flex-direction:column;gap:10px;padding:25px;background:#fff;border:1px solid var(--border);border-radius:23px;box-shadow:var(--shadow-small)}.recommendation-card h2,.recommendation-card h3{margin:2px 0 0;font-family:Georgia,serif;font-size:1.2rem}.recommendation-card p{margin:0;color:var(--muted);font-size:.86rem;line-height:1.65}.affiliate-link{display:inline-flex;margin-top:auto;padding-top:7px;color:var(--pink-dark);font-weight:850;font-size:.82rem;text-decoration:none}.affiliate-link:hover{text-decoration:underline}.amazon-partner-footer{flex-basis:100%;font-size:.68rem;color:var(--muted)}.debate-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.debate-card{display:flex;gap:15px;align-items:flex-start;padding:20px;background:#fff;border:1px solid var(--border);border-radius:19px;box-shadow:var(--shadow-small)}.debate-card>span{display:grid;place-items:center;min-width:38px;height:38px;border-radius:12px;background:var(--pink-soft);color:var(--pink-dark);font-size:.72rem;font-weight:900}.debate-card p{margin:4px 0 0;color:var(--text);font-weight:700;line-height:1.5}.ref-detail-body{padding:0 20px 20px;color:var(--muted);line-height:1.75}.content-card .text-link{display:inline-block;margin-top:15px}.content-card .ref-badge{margin-top:12px}@media(max-width:900px){.recommendation-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:720px){.recommendation-grid,.debate-grid{grid-template-columns:1fr}}


/* =========================================================
   V17 · EDITORIAL REDESIGN
   Weniger App-/KI-Optik, mehr persönlicher Lehrerblog.
========================================================= */
:root{--radius:16px;--shadow:0 12px 32px rgba(94,58,69,.08);--shadow-small:0 5px 18px rgba(94,58,69,.06)}
body{background:#fffaf8;font-family:Arial,"Helvetica Neue",sans-serif;line-height:1.62}
.topbar{background:#8f455b;padding:7px 16px;font-size:.76rem;letter-spacing:.04em;font-weight:650}
header{background:rgba(255,250,248,.97);backdrop-filter:blur(10px)}
.header-row{min-height:82px;gap:22px}.logo-circle{width:58px;height:58px;flex-basis:58px;border-radius:14px;box-shadow:none}.logo-name{font-size:1.55rem}.logo-sub{color:#8f455b;font-size:.62rem;letter-spacing:.11em}
.desktop-nav{gap:17px;font-weight:650}.button{border-radius:10px;min-height:46px;font-weight:750}.button:hover{transform:none}.primary{box-shadow:none}.secondary{background:#fffaf8}
.eyebrow{padding:0;margin-bottom:13px;background:none;border-radius:0;color:#9c5065;font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;font-weight:800}
.section{padding:70px 0}.section-title{font-size:clamp(2rem,3.6vw,3.15rem);letter-spacing:-.025em}.section-head{margin-bottom:30px}
.editorial-hero{padding:74px 0 64px;background:linear-gradient(180deg,#fffaf8 0,#fff 100%)}.editorial-hero:before{display:none}.hero-grid{grid-template-columns:.9fr 1.1fr;gap:58px}.hero h1{font-size:clamp(3rem,5vw,4.75rem);max-width:720px}.hero-note{margin-top:24px;color:#8d777e;font-size:.84rem}.hero-collage{display:grid;grid-template-columns:1.15fr .85fr;grid-template-rows:repeat(2,190px);gap:13px}.hero-collage figure{margin:0;overflow:hidden;border-radius:12px;border:1px solid #ead8de;background:#fff}.hero-collage figure.collage-main{grid-row:1/3}.hero-collage img{width:100%;height:100%;object-fit:cover}.hero-collage .collage-main img{object-position:50% 28%}
.quick-paths{padding:26px 0 42px;background:#fff}.quick-grid{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid #e8d7dc;border-left:1px solid #e8d7dc}.quick-grid a{padding:20px 22px;border-right:1px solid #e8d7dc;border-bottom:1px solid #e8d7dc;background:#fff}.quick-grid a:hover{background:#fff5f7}.quick-grid span{display:block;color:#a25b6e;font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em;margin-bottom:5px}.quick-grid strong{font-family:Georgia,serif;font-size:1.02rem;font-weight:600}
.category-grid{grid-template-columns:repeat(3,1fr)}.category-card{min-height:auto;padding:18px 20px;border-radius:10px;box-shadow:none}.category-card small{display:block;margin-top:4px}.category-icon,.content-icon,.topic-icon,.freebie-icon,.download-icon{display:none!important}
.finder{border-radius:14px;padding:25px;background:#fff}.finder-section{background:#fbf0f3}.control{border-radius:8px}.material-card{border-radius:12px;box-shadow:none}.material-cover{height:210px;background-position:center;background-size:cover}.material-cover.has-image:before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 45%,rgba(70,40,49,.24))}.cover-name{border-radius:6px;background:rgba(255,255,255,.94)}
.feature-products{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.feature-product{display:grid;grid-template-columns:145px 1fr;min-height:230px;border:1px solid #ead8de;background:#fff;border-radius:12px;overflow:hidden}.feature-product img{width:100%;height:100%;object-fit:cover}.feature-product>div{padding:22px;align-self:center}.feature-product span{font-size:.7rem;text-transform:uppercase;letter-spacing:.07em;color:#9c5065;font-weight:750}.feature-product h3{margin:7px 0;font-family:Georgia,serif;font-size:1.45rem}.feature-product p{color:#79686d;font-size:.88rem}.feature-product strong{color:#a24c65;font-size:.82rem}.section-cta{margin-top:26px}
.affiliate-home{background:#f4ebe7}.affiliate-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:14px}.affiliate-grid.all{grid-template-columns:repeat(5,1fr)}.affiliate-product{background:#fff;border:1px solid #e1d1d5;border-radius:10px;overflow:hidden;min-width:0}.affiliate-product>a{display:block;height:100%}.affiliate-image{height:180px;position:relative;display:grid;place-items:center;background:#f7f2ef;overflow:hidden}.affiliate-product.large .affiliate-image{height:220px}.affiliate-image img{max-width:88%;max-height:88%;object-fit:contain}.affiliate-image>span{position:absolute;left:9px;bottom:9px;background:#fff;padding:4px 7px;border:1px solid #e4d3d8;font-size:.62rem;text-transform:uppercase;letter-spacing:.06em}.affiliate-product h3{font-family:Georgia,serif;font-size:1rem;line-height:1.25;margin:14px 14px 7px}.affiliate-product p{font-size:.76rem;color:#79686d;margin:0 14px 12px}.affiliate-cta{display:block;padding:0 14px 15px;color:#a24c65;font-size:.76rem;font-weight:800}.affiliate-cta small{display:block;color:#8d777e;font-weight:500;margin-top:2px}.affiliate-note{margin-top:22px;border-left:3px solid #c46c83;padding:11px 14px;background:rgba(255,255,255,.65);font-size:.76rem;color:#66545a}.recommendation-nav{display:flex;gap:10px;flex-wrap:wrap;margin:20px 0 40px}.recommendation-nav a,.text-links a{border-bottom:1px solid #c77b90;padding-bottom:2px;color:#8f455b;font-weight:750}
.split-feature{display:grid;grid-template-columns:.8fr 1.2fr;gap:50px;align-items:center}.preview-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}.preview-strip a{height:300px;background:#fff;border:1px solid #ead8de;overflow:hidden}.preview-strip img{width:100%;height:100%;object-fit:cover;object-position:top}.text-links{display:flex;flex-direction:column;align-items:flex-start;gap:10px;margin-top:24px}
.knowledge-section{background:#8f455b;color:#fff}.knowledge-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0;border-top:1px solid rgba(255,255,255,.25);border-left:1px solid rgba(255,255,255,.25)}.knowledge-grid article{padding:34px;border-right:1px solid rgba(255,255,255,.25);border-bottom:1px solid rgba(255,255,255,.25)}.knowledge-grid .eyebrow,.knowledge-grid .text-link{color:#f7dfe6}.knowledge-grid h2{font-family:Georgia,serif;font-size:1.75rem;margin:4px 0 12px}.knowledge-grid p{color:#f1e6e9;font-size:.9rem}
.quote-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.quote-grid blockquote{margin:0;padding:26px;border-top:2px solid #c46c83;background:#fff;font-family:Georgia,serif;font-size:1.05rem;line-height:1.55}.quote-grid cite{display:block;margin-top:15px;font-family:Arial,sans-serif;font-size:.75rem;color:#8d777e;font-style:normal;text-transform:uppercase;letter-spacing:.08em}.instagram-call{display:flex;align-items:center;justify-content:space-between;gap:30px;padding:36px 0;border-top:1px solid #ead8de;border-bottom:1px solid #ead8de}.instagram-call h2{font-family:Georgia,serif;font-size:2rem;margin:0 0 8px}.instagram-call p{margin:0;color:#79686d}
.page-hero{padding:58px 0 40px;background:#fff5f7;border-bottom:1px solid #ead8de}.page-title{font-size:clamp(2.4rem,4vw,4rem)}.page-media{padding:24px 0;background:#fff}.page-media figure{margin:0;max-width:760px;height:360px;overflow:hidden;border:1px solid #ead8de;background:#f7f2ef}.page-media.slim figure{height:300px;max-width:560px}.page-media img{width:100%;height:100%;object-fit:cover;object-position:top}.page-media figcaption{padding-top:7px;color:#8d777e;font-size:.72rem}
.content-grid,.topic-grid,.ref-card-grid{gap:14px}.content-card,.topic-card,.ref-card,.download-card,.recommendation-card{border-radius:10px;box-shadow:none}.content-card,.topic-card,.ref-card{border-color:#e5d6da}.ref-card{padding:22px}.ref-card h3{font-family:Georgia,serif}.ref-product-image{width:100%;height:150px;object-fit:contain;background:#f7f2ef;margin:-2px 0 16px;border:1px solid #eee1e4}.download-card{overflow:hidden}.download-preview{display:block;height:220px;overflow:hidden;background:#f7f2ef;margin:-1px -1px 16px}.download-preview img{width:100%;height:100%;object-fit:cover;object-position:top}
.method-card{border-radius:8px;box-shadow:none}.method-meta{gap:6px}.method-meta span{background:#f6f0f1;border-radius:4px;font-size:.68rem;padding:5px 7px}.method-type,.ref-badge,.freebie-badge{border-radius:4px;text-transform:uppercase;letter-spacing:.05em;font-size:.62rem}
.source-stamp{display:flex;justify-content:space-between;gap:15px;border-top:1px solid #dcc8ce;border-bottom:1px solid #dcc8ce;padding:12px 0;margin-bottom:32px;color:#79686d;font-size:.8rem}.section-title.compact{font-size:2.25rem}.checklist-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:0;border-top:1px solid #e1d2d6;border-left:1px solid #e1d2d6;margin:25px 0}.checklist-grid article{padding:25px;border-right:1px solid #e1d2d6;border-bottom:1px solid #e1d2d6;background:#fff}.checklist-grid article>span{font-family:Georgia,serif;color:#c46c83;font-size:1.1rem}.checklist-grid h3{font-family:Georgia,serif;margin:7px 0 8px}.checklist-grid p{color:#6f5d63;font-size:.9rem}.ref-accordion details{border-radius:6px;box-shadow:none}.ref-accordion summary{font-family:Georgia,serif}
/* reduce over-cardification */
.freebie-grid{grid-template-columns:repeat(3,1fr)}.freebie{min-height:auto;border-radius:10px;padding:25px}.method-box{border-radius:12px}
@media(max-width:1050px){.affiliate-grid{grid-template-columns:repeat(3,1fr)}.affiliate-grid.all{grid-template-columns:repeat(3,1fr)}.feature-products{grid-template-columns:1fr}.feature-product{grid-template-columns:180px 1fr}.quick-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:780px){.hero-grid{grid-template-columns:1fr}.hero-collage{grid-template-rows:repeat(2,150px)}.quick-grid{grid-template-columns:1fr}.affiliate-grid,.affiliate-grid.all{grid-template-columns:repeat(2,1fr)}.split-feature,.knowledge-grid,.quote-grid,.checklist-grid{grid-template-columns:1fr}.preview-strip{grid-template-columns:repeat(3,1fr)}.preview-strip a{height:200px}.feature-product{grid-template-columns:115px 1fr}.filters{grid-template-columns:1fr}.instagram-call{display:block}.instagram-call .button{margin-top:18px}.page-media figure,.page-media.slim figure{height:260px}.source-stamp{display:block}.source-stamp span{display:block;margin-top:4px}}
@media(max-width:480px){.affiliate-grid,.affiliate-grid.all{grid-template-columns:1fr}.hero-collage{grid-template-columns:1fr 1fr;grid-template-rows:190px 130px}.preview-strip{grid-template-columns:1fr}.preview-strip a{height:280px}.feature-product{grid-template-columns:100px 1fr}.hero h1{font-size:2.85rem}.section{padding:54px 0}}
