/* Specialist */
.specialist-section {
  padding: 4rem 2rem;
  background-color: #fdfdfd;
}

.specialist-wrapper {
  display: grid;
  grid-template-columns: 250px 1fr 2fr;
  gap: 2rem;
  align-items: flex-start;
}

.specialist-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.specialist-details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.specialist-details h3 {
  font-size: 1.8rem;
  color: #0d47a1;
  margin-bottom: 0.4rem;
}

.specialist-details p {
  margin: 0.3rem 0;
  color: #333;
  line-height: 1.6;
}

.specialist-details a {
  color: #0d47a1;
  font-weight: 500;
  text-decoration: none;
}

.specialist-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}

/* Colorful Blocks */
.specialist-content .info-block {
  padding: 1.2rem 1.4rem;
  border-radius: 0.75rem;
  color: #222;
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.specialist-content .education {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-left: 5px solid #1e88e5;
}
.specialist-content .experience {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-left: 5px solid #1e88e5;
}
.specialist-content .skills {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-left: 5px solid #1e88e5;
}
.specialist-content .memberships {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-left: 5px solid #1e88e5;
}

.specialist-content .info-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.specialist-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: #212121;
}

.specialist-content ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0;
  color: #444;
}

