:root{
  --bg:#eef1f7;
  --surface:#ffffff;
  --surface-soft:#f5f7ff;
  --text:#121826;
  --muted:#5f6980;
  --line:#d9deea;

  --navy:#071b57;
  --navy-2:#0d2b82;
  --pink:#ff3b8f;
  --pink-dark:#e02d7a;
  --yellow:#ffd83d;
  --yellow-dark:#f0c800;

  --black-bar:#2b2b2b;
  --shadow:0 14px 40px rgba(15, 31, 88, .12);
}

*{
  box-sizing:border-box;
}

html,body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Hiragino Sans","Yu Gothic",sans-serif;
}

body{
  line-height:1.7;
}

.hero{
  background:
    radial-gradient(circle at top right, rgba(255,59,143,.14), transparent 28%),
    radial-gradient(circle at left center, rgba(255,216,61,.12), transparent 24%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color:#fff;
  padding:56px 24px 80px;
  position:relative;
  overflow:hidden;
}

.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:6px;
  background:var(--pink);
}

.hero-inner{
  max-width:1180px;
  margin:0 auto;
}

.hero-eyebrow{
  margin:0 0 10px;
  font-size:14px;
  letter-spacing:.18em;
  font-weight:800;
  opacity:.9;
}

.hero-title{
  margin:0;
  font-size:clamp(42px, 6vw, 86px);
  line-height:1.02;
  font-weight:900;
  letter-spacing:.01em;
  text-shadow:0 3px 0 rgba(0,0,0,.12);
}

.hero-description{
  margin:20px 0 0;
  max-width:860px;
  font-size:18px;
  color:rgba(255,255,255,.92);
}

.hero-actions{
  margin-top:28px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:14px;
  text-decoration:none;
  font-size:18px;
  font-weight:900;
  box-shadow:var(--shadow);
}

.hero-btn-pink{
  background:var(--pink);
  color:#fff;
}

.hero-btn-pink:hover{
  background:var(--pink-dark);
}

.hero-btn-yellow{
  background:var(--yellow);
  color:#1d1d1d;
}

.hero-btn-yellow:hover{
  background:var(--yellow-dark);
}

.page-body{
  max-width:1180px;
  margin:0 auto;
  padding:28px 24px 80px;
}

.filter-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
  margin-top:-26px;
  position:relative;
  z-index:2;
}

.filter-panel-header{
  margin-bottom:18px;
}

.filter-title{
  margin:0;
  font-size:34px;
  line-height:1.1;
  font-weight:900;
  color:#172033;
}

.filter-description{
  margin:10px 0 0;
  color:var(--muted);
  font-size:15px;
}

.search-wrap{
  margin-top:18px;
}

#keyword{
  width:100%;
  padding:16px 18px;
  font-size:16px;
  border:1px solid var(--line);
  border-radius:16px;
  outline:none;
  background:#fff;
  color:var(--text);
  box-shadow:0 6px 18px rgba(20,34,80,.04);
}

#keyword:focus{
  border-color:#9eb7ff;
  box-shadow:0 0 0 4px rgba(49,94,251,.12);
}

.tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.tab{
  padding:11px 18px;
  border:2px solid #d7dfef;
  background:#fff;
  color:#172033;
  border-radius:999px;
  cursor:pointer;
  font-size:15px;
  font-weight:800;
  transition:all .18s ease;
  user-select:none;
}

.tab:hover{
  transform:translateY(-1px);
  border-color:#c7d3f4;
}

.tab.active{
  background:var(--pink);
  color:#fff;
  border-color:var(--pink);
  box-shadow:0 10px 18px rgba(255,59,143,.22);
}

.content-area{
  margin-top:34px;
}

.category-section{
  margin-bottom:70px;
}

.category-heading{
  display:inline-flex;
  align-items:center;
  min-height:72px;
  padding:10px 26px;
  margin:0 0 26px;
  background:var(--black-bar);
  color:#fff;
  font-size:42px;
  line-height:1.1;
  font-weight:900;
  border-radius:0 0 16px 16px;
  position:relative;
  box-shadow:var(--shadow);
}

.category-heading::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:10px;
  background:var(--pink);
  border-radius:0 0 0 16px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:22px;
}

.card{
  background:var(--surface);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid #e5ebf5;
  display:flex;
  flex-direction:column;
  min-height:100%;
}

.thumb{
  width:100%;
  aspect-ratio:16 / 9;
  object-fit:cover;
  display:block;
  background:#dfe6f7;
}

.content{
  padding:18px 18px 20px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}

.meta{
  margin-bottom:2px;
}

.tag{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:6px 10px;
  border-radius:999px;
  background:var(--surface-soft);
  color:#1f49da;
  font-size:12px;
  font-weight:800;
}

.award-name{
  font-size:22px;
  line-height:1.35;
  font-weight:900;
  color:var(--pink);
  margin-bottom:2px;
}

.work-title{
  font-size:18px;
  line-height:1.4;
  font-weight:900;
  margin:0;
  color:#121826;
}

.sub{
  font-size:14px;
  line-height:1.7;
  color:var(--muted);
}

.desc{
  font-size:14px;
  line-height:1.8;
  color:#344056;
  display:-webkit-box;
  -webkit-line-clamp:6;
  -webkit-box-orient:vertical;
  overflow:hidden;
  white-space:pre-wrap;
}

.links{
  margin-top:auto;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding-top:6px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  text-decoration:none;
  font-size:13px;
  font-weight:800;
}

.btn-primary{
  background:var(--pink);
  color:#fff;
}

.btn-primary:hover{
  background:var(--pink-dark);
}

.btn-sub{
  background:var(--yellow);
  color:#1b1b1b;
}

.btn-sub:hover{
  background:var(--yellow-dark);
}

.empty{
  text-align:center;
  padding:48px 0;
  display:none;
  color:var(--muted);
  font-size:16px;
}

@media (max-width: 960px){
  .hero{
    padding:46px 20px 60px;
  }

  .page-body{
    padding:24px 20px 64px;
  }

  .category-heading{
    font-size:34px;
  }
}

@media (max-width: 640px){
  .hero-title{
    font-size:42px;
  }

  .hero-description{
    font-size:15px;
  }

  .filter-title{
    font-size:28px;
  }

  .category-heading{
    font-size:28px;
    min-height:auto;
    padding:12px 18px;
  }

  .grid{
    grid-template-columns:1fr;
  }

  .tab{
    font-size:14px;
    padding:10px 14px;
  }

  #keyword{
    font-size:15px;
  }

  .hero-btn{
    width:100%;
  }
}