/* Editorial Board - Single Column Layout */
.editorial-board {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}

.editor-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.editor-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.editor-info {
  flex: 1;
}

.editor-name {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.editor-specialization {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 5px;
}

.editor-link a {
  font-size: 0.9em;
  color: #0073aa;
  text-decoration: none;
}

.editor-link a:hover {
  text-decoration: underline;
}
