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

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

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

.collections-list-title{
  margin:0;
  font-size:clamp(28px,4.6vw,52px);
  font-weight:900;
  text-transform:uppercase;
  color:#f6f7fb;
  text-align:center;
}

/* painel */
.collections-list-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;
}

.collections-list-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);
}

.collections-list-section{
  margin:0;
}

.collections-list-section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:16px;
}

.collections-list-section-title{
  display:flex;
  align-items:center;
  gap:10px;
}

.collections-list-section-bar{
  width:4px;
  height:18px;
  border-radius:999px;
  background:linear-gradient(180deg,#ff924c,#ff4f2d);
  box-shadow:0 0 12px rgba(255,98,48,.35);
  flex:0 0 auto;
}

.collections-list-section-title h2{
  margin:0;
  font-size:18px;
  font-weight:900;
  color:#fff;
}

/* grid */
.collections-list-grid{
  display:grid;
  grid-template-columns:repeat(1,minmax(0,1fr));
  gap:16px;
}

@media (min-width: 900px){
  .collections-list-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

/* card */
.collection-card{
  position:relative;
  min-height:260px;
  border-radius:20px;
  overflow:hidden;
  background:#111;
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 16px 34px rgba(0,0,0,.28);
}

.collection-card-link{
  display:block;
  min-height:260px;
  color:#fff;
  text-decoration:none;
  position:relative;
}

.collection-card-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

.collection-card-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.42) 56%, rgba(0,0,0,.84) 100%);
}

.collection-card-content{
  position:relative;
  z-index:2;
  padding:18px 16px 16px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  min-height:260px;
}

.collection-card-title{
  margin:0 0 10px;
  font-size:clamp(20px,3vw,34px);
  line-height:1.08;
  font-weight:900;
  color:#fff;
  text-shadow:0 3px 14px rgba(0,0,0,.35);
}

.collection-card-pills{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.collection-card-pills span{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:4px 12px;
  border-radius:12px;
  background:rgba(120,90,72,.65);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  font-size:13px;
  font-weight:700;
  backdrop-filter:blur(3px);
}

.collection-card-desc{
  margin:0 0 14px;
  max-width:100%;
  font-size:15px;
  line-height:1.5;
  color:#f0f3f8;
  text-shadow:0 2px 12px rgba(0,0,0,.30);

  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.collection-card-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  width:max-content;
  min-width:145px;
  padding:0 22px;
  border-radius:999px;
  background:linear-gradient(180deg,#ff6d48,#e54936);
  color:#fff;
  font-size:16px;
  font-weight:900;
  letter-spacing:.01em;
  box-shadow:0 10px 18px rgba(0,0,0,.28);
}

/* vazio */
.collections-list-empty{
  padding:22px 16px;
  text-align:center;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.06);
  background:linear-gradient(180deg,#0d121a,#090d14);
  color:#bcc6d5;
}

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

.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){
  .collections-list-container{
    padding:8px 12px 28px;
  }

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

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

@media (max-width:560px){
  .collections-list-title{
    font-size:clamp(24px,8vw,36px);
  }

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

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

  .collections-list-section-title h2{
    font-size:16px;
  }

  .collection-card,
  .collection-card-link,
  .collection-card-content{
    min-height:220px;
  }

  .collection-card-content{
    padding:14px 14px 14px;
  }

  .collection-card-title{
    font-size:clamp(18px,7vw,28px);
    margin-bottom:8px;
  }

  .collection-card-pills{
    gap:6px;
    margin-bottom:10px;
  }

  .collection-card-pills span{
    min-height:28px;
    padding:4px 10px;
    font-size:12px;
  }

  .collection-card-desc{
    font-size:14px;
    line-height:1.4;
    -webkit-line-clamp:2;
    margin-bottom:12px;
  }

  .collection-card-btn{
    min-height:42px;
    min-width:132px;
    padding:0 18px;
    font-size:15px;
  }
}