/* 
    Message Section
 */
.company-message-section {
  background: linear-gradient(180deg, #f5fcff, #ffffff);
}

.company-message-wrapper {
  display: flex;
  gap: 40px;
  background: #ffffff;
  border-radius: 40px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* Left */
.company-message-left {
  width: 55%;
}

.company-title {
  background: linear-gradient(135deg, #5ac0e6, #87d3f4);
  color: #111;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 14px;
  display: inline-block;
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.message-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.message-avatar img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.message-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.message-role {
  display: inline-block;
  background: #ffd7d7;
  color: #111;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
}

.message-content p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #111;
}

/* Right */
.company-message-right {
  width: 45%;
}

.exchange-image {
  width: 100%;
  height: 86%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
  margin-bottom: 20px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .company-message-wrapper {
    flex-direction: column;
  }

  .company-message-left,
  .company-message-right {
    width: 100%;
  }
}
