.tppbos-slider {
  margin: 60px 0;
}

.tppbos-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.tppbos-slide-content {
  flex: 1 1 45%;
}

.tppbos-slide-image {
  flex: 1 1 45%;
}

.tppbos-slide-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.tppbos-slide-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.tppbos-slide-content .subtitel {
  display: block;
  text-transform: uppercase;
  color: var(--accent, #0085CA);
  font-weight: 600;
  margin-bottom: 5px;
}

.tppbos-slide-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.tppbos-slide-content .btn {
  display: inline-block;
  background: var(--accent, #0085CA);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tppbos-slide-content .btn:hover {
  background: #006ea7;
}

/* Mobiel */
@media (max-width: 768px) {
  .tppbos-slide {
    flex-direction: column-reverse;
    text-align: center;
  }

  .tppbos-slide-content {
    flex: 1 1 100%;
  }

  .tppbos-slide-image {
    flex: 1 1 100%;
  }
}
