/* Fasten-Sylt Erfahrungsberichte Modul */


.erfahrungen-module .fs-layout-aside {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.erfahrungen-intro {
  max-width: 780px;
  margin: 0 0 clamp(28px, 4vw, 44px);
}

.erfahrungen-intro .section-lead {
  max-width: 680px;
}

.erfahrungen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 32px);
}

.erfahrung-card {
  display: flex;

  flex-direction: column;
  overflow: hidden;
  background: white;
  border: 1px solid #f2f2f2;
}

.erfahrung-card__media {
  position: relative;
  display: flex;
  min-height: 215px;
  aspect-ratio: 16 / 10;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #4d3928;
  text-decoration: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.85), transparent 34%),
    linear-gradient(135deg, #efe1cd, #d6b993);
}

.erfahrung-card__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(to top, rgba(47, 38, 31, 0.28), transparent);
  pointer-events: none;
}

.erfahrung-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.erfahrung-card:hover .erfahrung-card__media img {
  transform: scale(1.035);
}

.erfahrung-card__placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  font-size: 34px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
}

.erfahrung-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
}

.erfahrung-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.erfahrung-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  color: #614936;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--exp-soft);
  border-radius: 999px;
}

.erfahrung-card h3 {
  margin: 0 0 10px;
  color: var(--main-red-color);
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.08;
}


.erfahrung-card__subtitle {
  margin: 0 0 14px;
  color: var(--exp-muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.45;
}

.erfahrung-card p:not(.erfahrung-card__subtitle) {
  margin: 0 0 18px;
  color: var(--exp-muted);
  font-size: 16px;
  line-height: 1.68;
}

.erfahrung-card blockquote {
  margin: 4px 0 22px;
  padding: 16px 18px;
  color: #4d3d31;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
  background: #fbf5ec;
  border-left: 4px solid var(--exp-soft-2);
  border-radius: 0 18px 18px 0;
}

.erfahrung-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 4px;
}

.erfahrung-card__source {
  color: #7a6858;
  font-size: 13px;
  line-height: 1.35;
}

.erfahrung-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  background: #2f261f;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.erfahrung-card__link:hover,
.erfahrung-card__link:focus-visible {
  background: #4d3928;
  transform: translateY(-1px);
}

/* Sidebar */

.sidebar {
  position: sticky;
  top: 10vh;
  padding-top: 3rem;
}

.sb-box {
  padding: 1.5rem;
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 3px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.sb-box:first-child {
  border-top: 3px solid var(--main-blue-color);
}

.sb-ttl {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 1.15rem;
  color: var(--main-blue-color);
  font-family: var(--sans);
  font-size: 0.6rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sb-ttl::before {
  width: 14px;
  height: 1px;
  flex-shrink: 0;
  content: "";
  background: var(--main-blue-color);
}

.rl-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.rl-list li {
  border-bottom: 1px solid var(--bdr);
}

.rl-list li:last-child {
  border-bottom: 0;
}

.rl-list a {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0.65rem 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.83rem;
  text-decoration: none;
  transition: color 0.15s ease;
}

.rl-list a::before {
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  content: "";
  background: rgba(30, 111, 156, 0.22);
  border-radius: 50%;
  transition: background 0.15s ease;
}

.rl-list a:hover,
.rl-list a.active,
.rl-list a[aria-current="page"] {
  color: var(--main-blue-color);
}

.rl-list a:hover::before,
.rl-list a.active::before,
.rl-list a[aria-current="page"]::before {
  background: var(--main-blue-color);
}

/* Responsive */

@media (max-width: 1080px) {
  .erfahrungen-module .fs-layout-aside {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    padding-top: 0;
  }

  .erfahrungen-sidebar {
    order: -1;
  }
}

@media (max-width: 760px) {
  .erfahrungen-grid {
    grid-template-columns: 1fr;
  }

  .erfahrung-card {
    border-radius: 22px;
  }

  .erfahrung-card__media {
    min-height: 185px;
  }

  .erfahrung-card__body {
    padding: 20px;
  }

  .erfahrung-card__subtitle {
    font-size: 16px;
  }

  .erfahrung-card blockquote {
    font-size: 17px;
  }

  .erfahrung-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .erfahrung-card__link {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .sb-box {
    padding: 1.25rem;
  }
}
