/* Structural CSS for Image Accordion Widget */
.flex-showcase-93cc532f {
  display: flex;
  width: 100%;
  gap: 16px;
  box-sizing: border-box;
}

.flex-showcase-93cc532f * {
  box-sizing: border-box;
}

.showcase-panel-93cc532f {
  position: relative;
  flex: 1; 
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #e2e8f0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.showcase-panel-93cc532f::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  transition: background 0.4s ease;
}

/* Remove hover behavior and replace with active class */
.showcase-panel-93cc532f.is-active {
  flex: 5; 
}

.panel-number-93cc532f {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 30px;
  transition: all 0.4s ease;
}

.panel-title-vertical-93cc532f {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.showcase-panel-93cc532f.is-active .panel-title-vertical-93cc532f {
  opacity: 0; 
  pointer-events: none;
}

.panel-content-expanded-93cc532f {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  border-radius: 12px;
  padding: 32px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 3;
  pointer-events: none;
}

.showcase-panel-93cc532f.is-active .panel-content-expanded-93cc532f {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0.15s; 
}

.panel-content-expanded-93cc532f h3 {
  margin: 0 0 12px 0;
}

.panel-content-expanded-93cc532f p {
  margin: 0 0 20px 0;
  max-width: 500px;
}

.panel-link-93cc532f {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.panel-link-93cc532f svg {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.panel-link-93cc532f:hover svg {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .flex-showcase-93cc532f {
    flex-direction: column;
  }
  .showcase-panel-93cc532f {
    flex: 1;
  }
  .showcase-panel-93cc532f.is-active {
    flex: 3.5;
  }
  .panel-title-vertical-93cc532f {
    writing-mode: horizontal-tb;
    transform: none;
    bottom: 16px;
    left: 20px;
  }
  .panel-content-expanded-93cc532f {
    padding: 20px;
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
}