.paragraph--type--discover-more-item {
  position: relative;
  display: block;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 20px;
  min-height: 300px;
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.paragraph--type--discover-more-item span {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.paragraph--type--discover-more-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(229, 114, 0, 0);
  transition: background-color 0.4s ease;
  z-index: 1;
}

.paragraph--type--discover-more-item:hover::before {
  background-color: rgba(229, 114, 0, 0.9);
}

.link-title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  transition: transform 0.4s ease;
  margin-bottom: 10px;
}

.field-descriptive-text {
  text-align: center;
  transition: opacity 0.4s ease;
  font-size: 1rem;
}

.field-descriptive-text ul {
  padding: 0;
  list-style: none;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.field-descriptive-text li {
  display: inline-block;
}

.field-descriptive-text a {
  color: white;
  text-decoration: underline;
}
