
/* DJ SIXX Presse-Feature */
.press-feature{
  display:grid;
  grid-template-columns:minmax(260px, .9fr) minmax(0, 1.1fr);
  gap:28px;
  align-items:center;
  margin:0 0 28px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(145deg,#ffffff09,#ffffff03);
}

.press-feature-image{
  overflow:hidden;
  border-radius:16px;
  background:#0d0b09;
  box-shadow:0 16px 36px #0007;
}

.press-feature-image img{
  display:block;
  width:100%;
  height:auto;
}

.press-feature-copy h3{
  margin:.2rem 0 1rem;
  font-size:clamp(1.65rem,3vw,2.65rem);
  line-height:1.05;
}

.press-feature-copy p{
  color:#e9e0d5;
  line-height:1.6;
}

.press-feature-copy .press-meta{
  margin-top:16px;
  color:var(--gold2);
  font-size:.95rem;
  font-weight:700;
}

@media(max-width:800px){
  .press-feature{
    grid-template-columns:1fr;
    padding:16px;
    gap:20px;
  }
}
