.ds-home-themen {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;

  padding: 130px 20px;
  overflow: hidden;

  background: linear-gradient(
    180deg,
    #f8f3eb 0%,
    #f4ecdf 48%,
    #fdfaf4 100%
  );
}

.ds-home-themen-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.ds-home-themen-header {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.ds-home-themen-kicker {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #758764;
}

.ds-home-themen-header h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.15;
  color: #21361f;
}

.ds-home-themen-header p {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: #6f675b;
}

.ds-home-themen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.ds-home-themen-card {
  position: relative;
  overflow: hidden;
  padding: 0 34px 38px;
  border-radius: 30px;

  background: linear-gradient(
    145deg,
    rgba(252, 249, 244, 0.96) 0%,
    rgba(246, 240, 232, 0.98) 100%
  );

  border: 1px solid rgba(140, 125, 105, 0.12);

  box-shadow:
    0 14px 38px rgba(60, 45, 25, 0.055);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.ds-home-themen-card:hover {
  transform: translateY(-5px);
  border-color: rgba(125, 145, 104, 0.26);
  box-shadow:
    0 22px 52px rgba(60, 45, 25, 0.09);
}


.ds-home-themen-icon {
  width: calc(100% + 68px);
  height: 250px;
  margin: 0 -34px 30px;

  overflow: hidden;

  background: #efe4d6;
}

.ds-home-themen-icon img {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.6s ease;
}

.ds-home-themen-card:hover .ds-home-themen-icon img {
  transform: scale(1.04);
}

.ds-home-themen-card h3 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.25;
  color: #21361f;
}

.ds-home-themen-card p {
  margin: 0 0 26px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #6f675b;
}

.ds-home-themen-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ds-home-themen-chip {
  display: inline-flex;
  align-items: center;

  padding: 8px 13px;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 600;
  line-height: 1;

  text-decoration: none;

  color: #44613b;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(125, 145, 104, 0.16);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.ds-home-themen-chip:hover {
  transform: translateY(-2px);
  background: rgba(246, 240, 232, 0.92);
  border-color: rgba(125, 145, 104, 0.32);
}

@media (max-width: 900px) {
  .ds-home-themen {
    padding: 90px 16px;
  }

  .ds-home-themen-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ds-home-themen-card {
    padding: 0 24px 30px;
    border-radius: 24px;
  }

  .ds-home-themen-icon {
    width: calc(100% + 48px);
    height: 210px;
    margin: 0 -24px 24px;
  }

  .ds-home-themen-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .ds-home-themen-chip {
    white-space: nowrap;
  }
}

body.ds-darkmode .ds-home-themen {
  background: #10180f;
}

body.ds-darkmode .ds-home-themen-header h2,
body.ds-darkmode .ds-home-themen-card h3 {
  color: #efe3cf;
}

body.ds-darkmode .ds-home-themen-header p,
body.ds-darkmode .ds-home-themen-card p {
  color: #d8c8ad;
}

body.ds-darkmode .ds-home-themen-card {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(214, 188, 120, 0.14);
}

body.ds-darkmode .ds-home-themen-icon {
  background: rgba(255, 255, 255, 0.04);
}

body.ds-darkmode .ds-home-themen-chip {
  color: #d8c9a8;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(214, 188, 120, 0.16);
}