.last-president-page {
    outline: 10px solid red !important;
}


.last-president-page__list {
  display: flex;
  flex-direction: column;
}

.last-president-page__item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 50px;
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.last-president-page__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.last-president-page__photo {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 3 / 4;
  background-color: #f8f9fa;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.last-president-page__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.last-president-page__name-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.last-president-page__term {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 4px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.last-president-page__name {
  font-size: 1.25rem;
  color: #1a2b4c;
  font-weight: 400;
  margin-bottom: 12px;
}

.last-president-page__name strong {
  font-weight: 700;
}

.last-president-page__line {
  width: 30px;
  height: 1px;
  background-color: #d4af37;
}

.last-president-page__content {
  display: flex;
  flex-direction: column;
}

.last-president-page__executives {
  background-color: #f8f9fa;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 20px;
  margin-bottom: 30px;
  border-left: 3px solid #1a2b4c;
}

.last-president-page__executives span {
  font-size: 0.9rem;
  color: #444;
}

.last-president-page__executives strong {
  color: #1a2b4c;
  font-weight: 600;
  margin-right: 6px;
}

.last-president-page__achievements {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.last-president-page__achievements li {
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  word-break: keep-all;
}

.last-president-page__num {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d4af37;
  margin-right: 12px;
  margin-top: 2px;
  font-family: monospace, sans-serif;
}

.last-president-page__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 80px;
  margin-bottom: 140px;
}

.last-president-page__page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
  border: 1px solid #ddd;
  transition: all 0.2s ease;
  background-color: #fff;
}

.last-president-page__page-btn:hover {
  border-color: #1a2b4c;
  color: #1a2b4c;
}

.last-president-page__page-btn--active {
  background-color: #1a2b4c;
  color: #fff;
  border-color: #1a2b4c;
  font-weight: 600;
}

@media (max-width: 991px) {
  .last-president-page__item {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0;
  }
  
  .last-president-page__profile {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    align-items: center;
  }

  .last-president-page__photo {
    margin-bottom: 0;
    max-width: 100px;
  }

  .last-president-page__name-box {
    align-items: flex-start;
  }

  .last-president-page__line {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .last-president-page__executives {
    padding: 16px;
    gap: 10px;
  }
  
  .last-president-page__pagination {
    margin-top: 50px;
    margin-bottom: 80px;
  }
}