/* Main Container */
.principal-container {
  display: flex;
  width: 100%;
  border-radius: 15px;
  padding: 100px 20px;
  overflow: hidden;
  width: 80vw;
  height: auto;
  margin: 0 auto;
}

/* Left Side: Message Content */
.message-content {
  width: 70%;
  padding: 40px;
}

.message-content h2 {
  font-size: 2rem;
  color: #ff6700;
  margin-bottom: 15px;
}

.message-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
}

.read-more {
  text-decoration: none;
  color: #ff6700;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

.read-more:hover {
  text-decoration: underline;
}

.author-name {
  margin-top: 15px;
  font-weight: bold;
  color: #333;
}

/* Right Side: Profile Card */
.profile-card {
  width: 40%;
  background: linear-gradient(135deg, #3ba99c, #276875);
  border-radius: 0 0 50px 50px; /* Bottom rounded corners only */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  position: relative;
}

/* Circular Profile Image */
.profile-header {
  width: 350px;
  height: 350px;
  border-radius: 100%;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.5); /* White border around image */
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4);
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
