.about {
  background-color: #f8f9fb;
  padding: 6rem 0;
}

.about__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  color: #333;
}

.about__wrapper {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.about__content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2rem;
}

.about__media {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
}

.about__paragraph {
  max-height: 8em;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.about__paragraph--expanded {
  max-height: 1000px;
}

.about__read-more {
  background-color: #b0b0b0;
  color: #111;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: background 0.2s ease;
}

.about__read-more:hover {
  background-color: #555;
  color: white;
}

.about__video-button {
  background-color: #111;
  color: white;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: background 0.2s ease;
  text-decoration: none;
}

.about__video-button:hover {
  background-color: #555;
}

.about__slider {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #ccc;
}

.about__slide {
  width: 100%;
  height: auto;
  display: none;
}

.about__slide.active {
  display: block;
}

@media (max-width: 768px) {
  .about__wrapper {
    flex-direction: column;
  }

  .about__media,
  .about__content {
    flex: 1 1 100%;
  }
}
