.list-articles .section-header {
  margin-bottom: 60px;
  margin-top: 60px;
  position: relative;
  padding-bottom: 20px;
}

.list-articles .section-header::before {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #4bb1ec;
  bottom: 0;
  left: calc(50% - 25px);
}

.list-articles .section-header h2 {
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.list-articles .section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #9195a2;
}

.img-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.txt-banner {
  background-color: #f3f9fd;
  border-bottom: 1px solid #a0d1f0;
  width: 100%;
  height: 300px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.txt-banner span {
  font-size: 70px;
  font-weight: bold;
  color: #2c718d;
  font-style: italic;
}

.list-articles {
  padding: 20px 0 30px 0;
  min-height: 100vh;
}

.list-articles .detail-article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: #1f57b6;
  font-weight: 700;
  font-size: 14px;
}

.list-articles .detail-article-back-link:hover {
  color: #123b7a;
}

.list-articles .articles {
  margin-top: 60px;
  margin-bottom: 30px;
}

.list-articles .article {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  height: 300px;
  cursor: pointer;
}

.list-articles .article .article-link {
  display: block;
  height: 100%;
  color: inherit;
}

.list-articles .article .details {
  background: rgba(6, 12, 34, 0.76);
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  padding-bottom: 15px;
}

.list-articles .article .details h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin: 20px 0 10px 0;
  cursor: pointer;
}

.list-articles .article .details p {
  color: #fff;
  font-size: 15px;
  margin-top: 0;
  font-style: italic;
}

.list-articles .article .details a {
  color: #fff;
}

.list-articles .article .details a:hover {
  color: #4bb1ec;
}

.list-articles .article img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.list-articles .article-placeholder {
  height: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 12, 34, 0.06);
  color: #112363;
  font-size: 16px;
  font-weight: 600;
}

.list-articles .article:hover .details h3,
.list-articles .article:hover .details h3 span {
  color: #4bb1ec;
}

.list-articles .article .details a {
  color: #fff;
}

.list-articles .article .details a:hover {
  color: #4bb1ec;
}

.list-articles .articles .article img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.list-articles .admin-buttons {
  display: flex;
  gap: 10px; /* Espaçamento entre os botões */
}

.list-articles .admin-buttons .admin-btn-dashboard {
  background-color: #cebf3a;
  border: 1px solid #cebf3a;
}

.list-articles .admin-buttons .admin-btn-dashboard:hover {
  background-color: #afa22c;
}

.list-articles .admin-buttons .admin-btn-success {
  background-color: #28a745;
  border: 1px solid #28a745;
}

.list-articles .admin-buttons .admin-btn-success:hover {
  background-color: #127e2b;
}

.list-articles .action-buttons {
  padding: 10px 20px;
}

@media (max-width: 991.98px) {
  .list-articles .action-buttons {
    padding: 8px 0;
  }
}

@media (max-width: 575.98px) {
  .list-articles .detail-article-back-link {
    gap: 6px;
  }
}

.list-articles .no-articles {
  display: flex;
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
  text-align: center; /* Centraliza o texto dentro do parágrafo */
}
