
.editorial-board {
  padding: 40px 20px;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
}

/* Ban Biên Tập Chính */
.editor-top {
  display: flex;
  justify-content: center;
  align-items: center; /* canh giữa theo chiều dọc */
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.editor-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* canh giữa ảnh và chữ */
  justify-content: center; /* canh giữa chiều dọc */
  text-align: center;
  width: 200px;
  padding: 10px;
}

.editor-item img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0077b6;
  transition: transform 0.3s;
}

.editor-item img:hover {
  transform: scale(1.05);
}

.editor-item .name {
  font-weight: bold;
  margin-top: 10px;
  color: #023e8a;
}

.editor-item .position {
  font-size: 14px;
  color: #555;
}


/* Hội đồng chuyên môn */
.board-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: stretch; /* Giữ chiều cao bằng nhau */
}

.column {
  display: flex;
  flex-direction: column;
  gap: 30px; /* Khoảng cách giữa các nhóm */
}

.board-group {
  margin-bottom: 30px;
  padding: 20px;
  border-left: 4px solid #0077b6;
  background: #f8f9fa;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.board-group h3 {
  color: #0077b6;
  font-size: 18px;
  margin-bottom: 10px;
}

.board-group ul {
  padding-left: 20px;
}

.board-group li {
  margin: 6px 0;
}

.board-group a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
}

.board-group a:hover {
  color: #0077b6;
  font-weight: bold;
}

.journal-footer {
    background-color: #f9f9f9;
    padding: 40px 20px;
    font-family: "Segoe UI", sans-serif;
    color: #333;
  }

  .journal-footer .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }

  .footer-left,
  .footer-right {
    flex: 1;
    min-width: 300px;
  }

  .logo {
    max-width: 220px;
    margin-bottom: 20px;
  }

  .journal-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
  }

  .journal-content .cover {
    max-width: 100px;
    height: auto;
    flex-shrink: 0;
    border: 1px solid #ccc;
  }

  .description p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
  }

  .footer-right h3 {
    color: #ff6600;
	text-align: left;
    font-size: 20px;
    margin-bottom: 15px;
  }

  .contact-info {
    list-style: none;
    padding: 0;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .contact-info li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
  }

  .contact-info i.material-icons {
    color: #ff6600;
    font-size: 18px;
    margin-top: 2px;
  }

  .submit-btn {
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
  }

  .submit-btn i {
    margin-right: 8px;
  }

  .submit-btn:hover {
    background-color: #e65c00;
  }
  .copyright{
	  display: none;
  }
  .credits{
	  display: none;
  }

  @media (max-width: 768px) {
    .footer-grid {
      flex-direction: column;
    }

    .journal-content {
      flex-direction: column;
      align-items: flex-start;
    }

    .journal-content .cover {
      margin-bottom: 10px;
    }
  }