/* General Page Styling */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
}

.board-page {
}

/* Title */
.board-title {
  padding: 4rem;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.blue-dot {
  width: 1.8rem;
  height: 1.8rem;
  background-color: #007bff;
  border-radius: 50%;
  margin-left: 0.5rem;
  display: inline-block;
}

/* Layout */
.board-content {
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Members Column */
.board-members {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* Image Column */
.board-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .board-content {
    grid-template-columns: 1fr;
  }

  .board-image img {
    margin-top: 2rem;
  }
}

.section-divider {
  border: none;
  border-top: 2px solid #000;
  margin: 1.5rem 0;
}

img{
    height: 600px;
}