.fullscreen-tabs-wrapper {
  display: flex;
  flex-direction: row;
  height: 550px;
  width: 100%;
}

.tab-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transition: all 0.3s ease;
}

.tab-closed {
  width: 100px;
  border-right: 1px solid #ccc;
  writing-mode: sideways-lr;
  text-orientation: mixed;
  text-align: center;
  color: #000000;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
}
.tab-closed:hover {
  border: none;
}
.tab-icon img {
    max-width: 55px !important;
}

.tab-expanded {
  width: 0;
  overflow: hidden;
  opacity: 0;
  display: flex;
  flex-direction: row;
  align-items: end;
  padding: 0;
  gap: 2rem;
  background: #fff;
  transition: all 0.3s ease;
}

.tab-wrapper:hover .tab-expanded {
  width: 600px;
  padding: 0 2rem;
  opacity: 1;
}

.tab-image img {
  width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

.tab-text {
  max-width: 300px;
  font-size: 0.95rem;
  color: #333;
}
.tab-title h3 {
    font-size: 35px;
    color: var(--e-global-color-primary);
}
.tab-image {
  height: 100%;
  width: 100%;
  background-position: center center;
  background-size: cover;
}

.tab-wrapper .tab-expanded {
  opacity: 0;
  pointer-events: none;
  width: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.tab-wrapper.active .tab-expanded {
  opacity: 1;
  pointer-events: auto;
  width: 600px;
  padding: 2rem;
}