.explore-shell{
}

.explore-header{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:18px;
  align-items:baseline;
}

.explore-title-wrap{
  display:inline-block;
  width:fit-content;
  max-width:100%;
}

.explore-title{
  font-size:24px;
  font-weight:700;
  letter-spacing:-0.2px;
  color:var(--text-main);
  line-height:1;
}

.explore-underline{
  width:100%;
  height:3px;
  border-radius:999px;
  margin-top:10px;
  background:var(--accent);
  opacity:0.95;
}

.explore-searchbar{
  width:100%;
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(255,255,255,0.07);
  color:rgba(246,247,242,0.65);
  cursor:text;
  text-align:left;
}

.explore-searchbar:active{
  transform:scale(0.995);
}

.explore-search-ico{
  opacity:0.7;
  font-size:16px;
  line-height:1;
}

.explore-search-ph{
  font-size:14px;
  font-weight:400;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.explore-section{
  margin-top:26px;
}

.explore-section-title{
  font-size:20px;
  font-weight:700;
  letter-spacing:-0.2px;
  color:var(--text-main);
  margin:10px 0 14px;
}

.explore-section-title.is-small{
  font-size:15px;
  font-weight:500;
  margin-top:30px;
  margin-bottom:12px;
}

.topic-wrap{
  display:flex;
  flex-wrap:wrap;
  gap:10px 8px;
  overflow:hidden;
  max-height:calc((34px * 4) + (12px * 3));
}

.topic-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:34px;
  padding:0 16px;
  border-radius:8px;
  text-decoration:none;
  font-size:12px;
  font-weight:400;
  color:rgba(246,247,242,0.82);
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.10);
  transition:transform 0.08s ease, background-color 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}

.topic-pill:visited{
  color:rgba(246,247,242,0.82);
}

.topic-pill:active{
  transform:scale(0.97);
  background:rgba(255,255,255,0.16);
}

.topic-pill:focus,
.topic-pill:focus-visible{
  outline:none;
  box-shadow:none;
}

.browse-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.browse-card{
  position:relative;
  min-height:104px;
  padding:16px 16px;
  background:var(--card-bg, #374151);
  text-decoration:none;
  overflow:hidden;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.08);
}

.browse-card:active{
  transform:scale(0.99);
}

.browse-card-title{
  font-size:15px;
  font-weight:600;
  color:#fff;
  max-width:72%;
  line-height:1.12;
}

.browse-card-img{
  position:absolute;
  right:-12px;
  bottom:-12px;
  width:78px;
  height:78px;
  border-radius:8px;
  transform:rotate(18deg);
  object-fit:cover;
  border:1px solid rgba(0,0,0,0.25);
  background:rgba(255,255,255,0.10);
}

.browse-card-img.placeholder{
  background:rgba(255,255,255,0.14);
}

@media (max-width: 360px){
  .explore-title{ font-size:22px; }
  .explore-search-ph{ font-size:13px; }
  .browse-card-title{ font-size:14px; }
}