/* ============================================================
   Artikel — Dark Section (zwischen Cream Sliders)
   ============================================================ */

.section-articles{
  padding:140px 0;
  background:#0e0e0e;
  color:#e8e6e0;
  position:relative;
  overflow:hidden;
}

.section-articles > .container{ max-width:1280px; }

.articles-header{
  text-align:center;
  margin-bottom:100px;
}

.articles-header .eyebrow{
  display:inline-block;
  font-family:'Inter',sans-serif;
  font-size:11px;
  font-weight:500;
  color:#bb9e51;
  letter-spacing:.5em;
  text-transform:uppercase;
  margin-bottom:24px;
}

.articles-header h2{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(40px,5vw,68px);
  font-weight:400;
  margin:0 0 20px;
  color:#fff;
  letter-spacing:-.02em;
}

.articles-header p{
  color:#a8a39a;
  font-size:17px;
  max-width:560px;
  margin:0 auto;
  font-weight:300;
}

.articles-list{
  display:flex;
  flex-direction:column;
  gap:160px;
}

.article-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  position:relative;
  min-height:520px;
}

.article-image{
  position:relative;
  z-index:1;
  height:100%;
  min-height:520px;
  overflow:hidden;
  border-radius:2px;
}

.article-image img{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 1.2s cubic-bezier(.7,0,.3,1);
}

.article-row:hover .article-image img{ transform:scale(1.03); }

/* Karte — warm cream auf dark section */
.article-card{
  position:relative;
  z-index:2;
  background:#e8e2d3;
  color:#1a1a1a;
  padding:64px 64px;
  border:1px solid #d6cfb9;
  border-radius:2px;
  box-shadow:0 40px 80px rgba(0,0,0,.4);
}

.article-image-left .article-image{ grid-column:1; grid-row:1; }
.article-image-left .article-card{
  grid-column:2; grid-row:1;
  margin-left:-120px;
  margin-top:60px;
  margin-bottom:60px;
}

.article-image-right .article-image{ grid-column:2; grid-row:1; }
.article-image-right .article-card{
  grid-column:1; grid-row:1;
  margin-right:-120px;
  margin-top:60px;
  margin-bottom:60px;
}

.article-card::before{
  content:'';
  position:absolute;
  top:64px;
  width:32px;
  height:1px;
  background:#a08a4a;
}

.article-image-left .article-card::before{ left:64px; }
.article-image-right .article-card::before{ left:64px; }

.article-eyebrow{
  display:inline-block;
  font-family:'Inter',sans-serif;
  font-size:11px;
  font-weight:500;
  color:#a08a4a;
  letter-spacing:.4em;
  text-transform:uppercase;
  margin:32px 0 24px;
}

.article-card h3{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(28px,2.8vw,42px);
  font-weight:400;
  margin:0 0 24px;
  color:#1a1a1a;
  line-height:1.15;
  letter-spacing:-.01em;
}

.article-card p{
  font-size:16px;
  line-height:1.85;
  color:#4a463e;
  margin:0 0 32px;
  font-weight:300;
}

.article-tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:32px;
}

.article-tag{
  display:inline-block;
  font-family:'Inter',sans-serif;
  padding:6px 14px;
  font-size:10px;
  font-weight:500;
  letter-spacing:.2em;
  text-transform:uppercase;
  border:1px solid #d6cfb9;
  border-radius:2px;
  color:#5d5a52;
  background:#faf6ed;
}

.article-tag-partner{
  border-color:#1a1a1a;
  color:#1a1a1a;
  background:transparent;
}

.article-cta{
  display:inline-flex;
  align-items:center;
  gap:16px;
  padding:16px 32px;
  background:#1a1a1a;
  color:#fff !important;
  border:1px solid #1a1a1a;
  border-radius:2px;
  text-decoration:none !important;
  font-family:'Inter',sans-serif;
  font-size:11px;
  font-weight:600;
  letter-spacing:.25em;
  text-transform:uppercase;
  transition:all .3s cubic-bezier(.7,0,.3,1);
}

.article-cta span{
  transition:transform .3s cubic-bezier(.7,0,.3,1);
}

.article-cta:hover{
  background:#a08a4a;
  border-color:#a08a4a;
  color:#fff !important;
}

.article-cta:hover span{ transform:translateX(6px); }

@media(max-width:992px){
  .section-articles{ padding:80px 0; }
  .articles-header{ margin-bottom:60px; }
  .articles-list{ gap:80px; }

  .article-row,
  .article-image-left,
  .article-image-right{
    display:flex;
    flex-direction:column;
    min-height:0;
  }

  .article-image{
    min-height:320px;
    height:320px;
    width:100%;
  }

  .article-image-left .article-card,
  .article-image-right .article-card{
    margin:-40px 16px 0;
    padding:40px 32px;
    grid-column:auto;
    grid-row:auto;
  }

  .article-image-left .article-card::before,
  .article-image-right .article-card::before{
    top:40px;
    left:32px;
  }

  .article-card h3{ font-size:26px; }
  .article-card p{ font-size:15px; }
}
