.releases-container{
  width:min(100%, 1420px);
  margin:0 auto;
  padding:10px 14px 36px;
}

/* título */
.releases-title-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin:14px 0 16px;
}

.releases-title-line{
  flex:1;
  max-width:320px;
  height:1px;
  background:rgba(255,255,255,.12);
}

.releases-title{
  margin:0;
  font-size:clamp(34px,4.8vw,58px);
  font-weight:900;
  text-transform:uppercase;
  color:#f6f7fb;
  text-align:center;
}

/* containers */
.releases-panel{
  position:relative;
  margin:0 0 22px;
  padding:16px;
  border-radius:24px;
  border:1px solid rgba(255,108,58,.18);
  background:
    radial-gradient(circle at 84% 10%, rgba(255,70,70,.06), transparent 24%),
    radial-gradient(circle at 10% 100%, rgba(255,170,70,.05), transparent 26%),
    linear-gradient(180deg, rgba(8,11,18,.98), rgba(4,6,12,.99));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.02),
    0 18px 40px rgba(0,0,0,.24);
  overflow:hidden;
}

.releases-panel::after{
  content:"";
  position:absolute;
  left:16px;
  right:16px;
  bottom:0;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg, transparent, #ff5b2e, #ff924c, transparent);
  box-shadow:0 0 14px rgba(255,98,48,.36);
}

/* filtro */
.releases-filter-form{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}

.releases-year-input{
  flex:1 1 220px;
  min-height:46px;
  border:none;
  outline:none;
  border-radius:14px;
  padding:0 16px;
  background:#10141d;
  color:#fff;
  font-size:15px;
  border:1px solid rgba(255,255,255,.08);
}

.releases-filter-btn{
  min-height:46px;
  padding:0 18px;
  border:none;
  border-radius:14px;
  background:linear-gradient(180deg,#ff7e45,#ff5b2e);
  color:#fff;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 10px 20px rgba(0,0,0,.25);
}

/* grid panel */
.releases-grid-panel .browse-section{
  margin:0;
  padding:0;
  border:none;
  background:none;
  box-shadow:none;
}

.releases-grid-panel .browse-section-head{
  margin-bottom:14px;
}

/* paginação */
.gd-pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin-top:18px;
}

.gd-pagination .pg{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:40px;
  min-height:40px;
  padding:0 12px;
  border-radius:12px;
  text-decoration:none;
  background:#121825;
  color:#fff;
  font-weight:800;
  border:1px solid rgba(255,255,255,.08);
}

.gd-pagination .pg.current{
  background:linear-gradient(180deg,#ff7e45,#ff5b2e);
  border-color:rgba(255,160,110,.48);
}

.gd-pagination .pg.disabled{
  opacity:.45;
  pointer-events:none;
}

@media (max-width:860px){
  .releases-container{
    padding:8px 12px 28px;
  }

  .releases-panel{
    padding:14px;
    border-radius:20px;
  }

  .releases-panel::after{
    left:14px;
    right:14px;
  }
}

@media (max-width:560px){
  .releases-title{
    font-size:clamp(28px,8vw,40px);
  }

  .releases-panel{
    padding:12px;
    border-radius:18px;
  }

  .releases-panel::after{
    left:12px;
    right:12px;
  }

  .releases-filter-btn,
  .releases-year-input{
    width:100%;
  }
}