#arquivos-edicoes-anteriores .container {
  display: block;
  width: 100%;
}

#arquivos-edicoes-anteriores .section-title {
  width: 100%;
  margin-bottom: 40px;
}

#arquivos-edicoes-anteriores .edicoes-grid {
  width: 100%;
}

.arquivos-edicoes-anteriores {
  background: #0f3764;
  padding: 80px 0 60px;
}

/* TÍTULO */
.section-title {
  color: #fff;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 50px;
  text-align: center;
}

/* GRID */
.edicoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 40px;
  align-items: stretch;
}

/* CARD */
.edicao-card {
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.edicao-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

.edicao-capa {
  padding: 20px;
  text-align: center;
}

.edicao-capa img {
  width: 100%;
  max-width: 200px;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.edicao-conteudo {
  padding: 20px;
  text-align: center;
  flex: 1;
}

.edicao-conteudo h3 {
  font-size: 18px;
  color: #0f3764;
  margin-bottom: 10px;
}

.edicao-conteudo p {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}

/* BOTÕES */
.edicao-acoes {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.edicao-acoes a {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #0f3764;
  color: #0f3764;
  transition: .3s;
}

.edicao-acoes a:hover {
  background: #0f3764;
  color: #fff;
}

.edicoes-acoes {
  margin-top: 35px;
  text-align: center;
}

.btn-carregar-todas {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}

.btn-carregar-todas:hover {
  background: #ffffff;
  color: #0f3764;
}

.btn-carregar-todas:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
