/* layout.css */

.canvas {
  width: 100%;
  height: 90vh;
  overflow: hidden;
  position: relative;
  z-index: 0;
  padding-bottom: 40px;
}

.split-section {
  background-color: transparent;
  position: relative;
}

.split-container {
  display: flex;
  flex-wrap: wrap;
  background-color: transparent;
  overflow: hidden;
}

.split-image,
.split-text {
  flex: 1;
  min-width: 300px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-text {
  padding: 40px;
}

.split-text h2,
.split-text h3 {
  margin-bottom: 15px;
  color: #111;
}

.split-text p {
  margin-bottom: 10px;
  line-height: 1.6;
}
