/* About & Speech Styles */
.about-speech-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}

.about-speech-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.about-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(20,20,40,0.06);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-body {
  padding: 22px;
}

.about-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.about-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-card .btn-outline-primary {
  border: 1px solid #2d6cdf;
  color: #2d6cdf;
  background: transparent;
  padding: 8px 16px;
  border-radius: 6px;
}

.about-card .btn-outline-primary:hover {
  background: #2d6cdf;
  color: #fff;
}

.messages-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.message-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(20,20,40,0.05);
}

.message-head {
  display: flex;
  gap: 12px;
  align-items: center;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg,#f0f4ff,#e8f0ff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar img { width: 100%; height: 100%; object-fit: cover; }

.avatar-placeholder { font-size: 22px; color: #2d6cdf; }

.message-meta .message-title { font-size: 1.05rem; margin: 0; font-weight: 700; }

.message-role { color: #9aa3b2; margin: 0; font-size: 0.85rem; }

.message-body blockquote {
  margin: 12px 0 0 0;
  padding-left: 12px;
  border-left: 3px solid #e6eefc;
  color: #444;
  font-style: normal;
}

.message-body .btn {
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 991px) {
  .about-speech-grid { grid-template-columns: 1fr; }
  .about-media { height: 260px; }
}

@media (max-width: 575px) {
  .about-body { padding: 14px; }
  .avatar { width: 54px; height: 54px; }
}
