/* Thay đổi màu background cho phần header */
.bg_pri_blue {
  background-color: #3333cc;
  color: whitesmoke;
}

.pri_blue {
  background-color: #176E39;
}

.pri_green {
  background-color: #176E39;
}

ul.editorialTeam {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.nav .nav-link:hover {
  color: #ebebfa;
}

.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 12px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active,
.collapsible:hover {
  background-color: #555;
}

.collapsible:after {
  content: "\002B";
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.content {
  padding: 0 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}

/* CSS: Bìa Tạp Chí Đã Xuất Bản  */
.magazine-card {
  transition: transform 0.3s;
}

.magazine-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.magazine-img-container {
  /* height: 320px; */
  /* Slightly increased for better balance */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: #f8f9fa;
  /* Background for empty space */
  padding: 10px;
  /* Padding for balanced spacing */
}

.magazine-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  /* Ensure image fits without cropping */
}

.card-body {
  padding: 5px;
  /* Increased padding for text balance */
}