
/* Основной контейнер  */
.page-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.page-container h1 {
  margin-bottom: 24px;
}

.page-container h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.page-container p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.page-container figure {
  margin: 24px 0;
  text-align: center;
}

.page-container figcaption {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}
.page-container figure img {
  max-width: 800px;
  max-height: 600px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,115,230,0.12), 0 1.5px 6px rgba(0,0,0,0.07);
}


/* Кнопка на главную */
.btn-back {
  display: inline-flex;
  align-items: center;
  margin: 24px 0 24px 16px; 
  padding: 10px 16px;
  background: #0073e6;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.2s;
}

.btn-back:hover {
  background: #005bb5;
}

.btn-back .btn-arrow {
  margin-right: 8px;
  display: inline-block;
  transition: transform 0.2s;
}

.btn-back:hover .btn-arrow {
  transform: translateX(-4px);
}

/* Таблица министров */
.ministers-table {
  margin: 32px 0 48px 0;
  overflow-x: auto;
  border-radius: 30px;
  box-shadow: 0 2px 16px rgba(0, 115, 230, 0.07);
  background: #fff;
}

.ministers-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 600px;
  font-size: 16px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.ministers-table thead tr {
  background: #0073e6;
}

.ministers-table th,
.ministers-table td {
  padding: 8px 13px;
  text-align: left;
}

.ministers-table th {
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  border-right: 1px solid #176dc3;
  border-bottom: none;
}

.ministers-table th:last-child,
.ministers-table td:last-child {
  border-right: none;
}

.ministers-table tbody tr {
  border-bottom: 1px solid #e4eaf1;
  transition: background 0.18s;
}

.ministers-table tbody tr:nth-child(even) {
  background: #f3f8fd;
}

.ministers-table tbody tr:hover {
  background: #eaf4fd;
}

.ministers-table td {
  color: #222;
  font-weight: 500;
  font-size: 16px;
  border-right: 1px solid #e4eaf1;
}

.ministers-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 800px) {
  .ministers-table table {
    font-size: 15px;
    min-width: 480px;
  }
  .ministers-table th,
  .ministers-table td {
    padding: 10px 8px;
  }
}
