/* Link evidenziati nel testo */
.link-evidenziato {
  color: #e6001f;
  font-weight: bold;
  text-decoration: none;
}

.link-evidenziato:hover {
  text-decoration: underline;
}

/* Carosello foto */
.carosello-section {
  max-width: 1100px;
}

.carosello {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.carosello-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carosello-img {
  width: 100%;
  flex: 0 0 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.carosello-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.85);
  color: #e6001f;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.carosello-btn:hover {
  background-color: #fff;
  transform: translateY(-50%) scale(1.08);
}

.carosello-prev {
  left: 15px;
}

.carosello-next {
  right: 15px;
}

.carosello-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carosello-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.carosello-dot.active {
  background-color: #fff;
  transform: scale(1.3);
}

@media screen and (max-width: 600px) {
  .carosello-img {
    height: 320px;
  }

  .carosello-btn {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
}

.carosello-section.content-section {
  max-width: 1100px;
}