.tabs-container {
  max-width: 800px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
}
.tab-content {
  padding: 32px 24px 24px 24px;
  display: none;
  animation: fadeIn 0.4s;
}
.tab-content.active {
  display: block;
}
.tab-heading {
  margin-bottom: 1.5rem;
  margin-top: 0;
}
.tab-paragraph {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #444;
}
.tab-list {
  margin-bottom: 1.5rem;
  padding-left: 20px;
  color: #333;
}
.tab-images {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
}
.tab-images img {
  width: calc(50% - 8px);
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.tab-images-single {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
}
.tab-images-single img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.tab-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: #f7f7f7;
  padding: 16px 20px;
  border-top: 1px solid #eee;
}
.tab-btn {
  padding: 16px 28px;
  font-size: 18px;
  border: none;
  border-radius: 2px;
  background: #e0e0e0;
  color: #333;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
  font-weight: 500;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--wp--preset--color--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,115,230,0.08);
}
@media (max-width: 768px) {
  .tabs-container {
    max-width: 98vw;
    margin: 16px auto;
  }
  .tab-content {
    padding: 20px 8px 16px 8px;
  }
  .tab-buttons {
    grid-template-columns: 1fr;
  }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
} 