/**
 * Editors Section Styles
 * CSS for Co Editors-in-Chief section
 */

.editors-section {
  background-color: #5c5cb5 !important;
  padding: 2rem 0;
  margin: 0;
}

/* Using global .containerr from index.css - removed duplicate container styles */

.editors-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem !important;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-separator {
  color: #ffffff;
  font-size: 24px;
  margin: 0 0.3rem;
  padding: 0 4px;
}

.editors-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: bolder !important;
  margin: 0;
  padding: 0;
}

.view-board-link {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 500;
}

.view-board-link:hover {
  color: #e5e7eb;
}

.editors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-left: 2rem;
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.editor-card {
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.editor-image {
  flex-shrink: 0;
}

.editor-photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.editor-info {
  flex: 1;
}

.editor-name {
  color: #ffffff;
  font-size: 20px !important;
  font-weight: bold !important;
  margin: 0 0 0.5rem 0;
  padding: 0;
  line-height: 1.3;
}

.editor-affiliation {
  color: #ffffff;
  font-size: 16px !important;
  font-weight: normal !important;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  opacity: 0.9;
}

@media (max-width: 992px) {
  /* Using global .containerr responsive styles from index.css */

  .editors-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .editors-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-left: 0;
  }

  .editor-card {
    gap: 1rem;
  }

  .editor-photo {
    width: 60px;
    height: 60px;
  }

  .editors-title {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .editors-section {
    padding: 1.5rem 0;
  }

  /* Using global .containerr responsive styles from index.css */

  .editors-title {
    font-size: 20px;
  }

  .editor-name {
    font-size: 18px;
  }

  .editor-affiliation {
    font-size: 14px;
  }
}
