/**
 * Links-Text Block Styles
 * Produktliste mit Hintergrundbild (2-spaltig)
 */

/* Navigation Column */
.links-text__nav-column {
  display: flex;
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
}

/* Liste */
.links-text__list {
  width: 100%;
  margin: 0;
  padding: 0;
}

.links-text__item {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.links-text__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Links */
.links-text__link {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--bs-body-color, inherit);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s ease;
}

.links-text__link:hover {
  color: var(--brand-secondary-color, var(--bs-link-color));
}

.links-text__link:hover .links-text__arrow {
  transform: translateX(8px);
}

/* Arrow */
.links-text__arrow {
  font-size: 1.5em;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

/* Link ohne URL */
.links-text__link--no-url {
  color: var(--bs-secondary-color, #6c757d);
  cursor: default;
}

.links-text__link--no-url:hover {
  color: var(--bs-secondary-color, #6c757d);
}

/* Bild-Spalte */
.links-text__image-column {
  display: flex;
  align-items: stretch;
}

.links-text__figure {
  width: 100%;
  height: 100%;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--bs-border-radius, 0.375rem);
}

.links-text__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .links-text__nav-column {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }
  
  .links-text__figure {
    min-height: 250px;
  }
}

@media (max-width: 576px) {
  .links-text__link {
    font-size: 1.125rem;
  }
  
  .links-text__item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
}
