.vm-accordion {
  background: transparent;
  border-radius: 0;
}

.vm-accordion__item {
    position: relative;
	padding-top: 30px;
	padding-bottom: 30px;
}

.vm-accordion__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(166, 132, 168, 0.05) 0%,
    rgba(166, 132, 168, 0.20) 100%
  );
}

.vm-accordion__item:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(166, 132, 168, 0.05) 0%,
    rgba(166, 132, 168, 0.20) 100%
  );
}

.vm-accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 46px;
  line-height: 1.1;
}

.vm-accordion__panel {
  overflow: hidden;
  opacity: 0;
  padding: 0 32px;
}

.vm-accordion__panel-inner{
	color: var(--white);
	padding-top: 20px;
    width: 80%;
}

.vm-accordion__item:not(.is-open) .vm-accordion__panel {
	display: none; 
}

.vm-accordion__item.is-open .vm-accordion__panel {
  display: block; 
  opacity: 1; 
  color: var(--white);
  font-size: 18px;
  max-width: 70%;
}

.vm-accordion__icon {
  width: 64px ; 
  height: 64px ;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vm-accordion__chevron-image {
    width: 70px;
    height: 70px; 
    object-fit: contain; 
    transform: rotate(0deg); 
    transition: transform 0.25s ease;
}

/* 3. Rotazione all'apertura */
.vm-accordion__item.is-open .vm-accordion__chevron-image {
    transform: rotate(180deg);
}