.about-hero {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(15, 15, 15, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.12);
  padding: 28px;
  border-radius: 18px;
  margin-bottom: 24px;
}

.about-content {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  color: var(--tb-primary);
  margin-bottom: 18px;
  font-size: 1.65em;
}

.about-text p {
  color: #d9d9d9;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-image {
  flex-shrink: 0;
  text-align: center;
  margin-top: 44px;
}

.about-image img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid var(--tb-primary);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.32);
}

.image-caption {
  color: #d4af37;
  font-size: 0.9em;
  margin-top: 10px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 10px;
  }
  
  .about-image {
    margin-top: 0;
  }

  .about-image img {
    width: 180px;
    height: 180px;
  }
}
