/**
 * @file
 * Tab Element component styles.
 */

.tab-element {
  transition: opacity 0.3s ease-in-out;
}

.tab-element.hidden {
  display: none;
}

.tab-element.active {
  display: block;
}

.tab-element__content {
  min-height: 300px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tab-element__title {
  line-height: 1.2;
}

.tab-element__text {
  font-size: 1.1rem;
  line-height: 1.6;
}

.tab-element__text p {
  margin-bottom: 1rem;
}

.tab-element__text p:last-child {
  margin-bottom: 0;
}

.tab-element__cta {
  margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tab-element__content {
    padding: 1.5rem;
    min-height: 250px;
  }
  
  .tab-element__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .tab-element__text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}