a{
  text-decoration:none;
  color:inherit;
}

a:hover,
a:focus{
  text-decoration:none;
}

.hero.carousel{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  box-shadow:var(--shadow);
}
.hero .carousel-item{
  position:relative;
  height:clamp(360px, 46vh, 520px);
}
.hero .bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.04);
  filter:saturate(1.05);
}
.hero .overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 600px at 10% 10%, rgba(25,179,106,.30), transparent 55%),
    linear-gradient(90deg, rgba(2,6,23,.82) 0%, rgba(2,6,23,.30) 55%, rgba(2,6,23,.05) 100%);
}
.hero .inner{
  position:relative;
  padding:clamp(18px, 3vw, 36px);
  color:#fff;
  display:flex;
  align-items:flex-end;
  min-height:clamp(360px, 46vh, 520px);
}
.hero .carousel-item.active .bg{
  animation:kenburns 6.2s ease-in-out both;
}
@keyframes kenburns{
  0%{transform:scale(1.03) translate3d(0,0,0);}
  100%{transform:scale(1.12) translate3d(-1.5%, -1%, 0);}
}
.hero .carousel-indicators [data-bs-target]{
  width:8px;
  height:8px;
  border-radius:50%;
}

.h-title{
  font-weight:950;
  letter-spacing:-.04em;
  font-size:clamp(28px, 3.6vw, 48px);
  line-height:1.08;
  margin:0 0 10px 0;
}
.h-sub{
  color:rgba(255,255,255,.86);
  max-width:60ch;
  margin:0;
}
.h-actions{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.btn-ghost{
  border-radius:16px;
  padding:12px 14px;
  font-weight:950;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
}
.btn-ghost:hover{
  background:rgba(255,255,255,.14);
  color:#fff;
}

.cardx{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  box-shadow:0 14px 40px rgba(2,6,23,.06);
  overflow:hidden;
  height:100%;
}
.cardx .hd{
  padding:16px 16px 10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.cardx .ttl{
  font-weight:950;
  letter-spacing:-.02em;
  margin:0;
  font-size:1.12rem;
}
.linkbtn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(2,6,23,.08);
  font-weight:900;
  color:#0f172a;
}


.thumb{
  height:180px;
  background:#e5e7eb;
  background-size:cover;
  background-position:center;
  transition:transform .35s ease, filter .35s ease;
}
.cardx-hover:hover .thumb{
  transform:scale(1.06);
  filter:saturate(1.05) contrast(1.02);
}
.meta{
  padding:14px 16px 16px;
  color:var(--muted);
  font-weight:700;
}

.notice a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 16px;
  border-top:1px solid rgba(2,6,23,.06);
}
.notice a:hover{background:rgba(25,179,106,.06);}
.notice .t{font-weight:900;color:#0f172a;}
.notice .d{
  color:var(--muted);
  font-size:.92rem;
  white-space:nowrap;
}

.ggrid{
  padding:0 16px 16px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
  min-height:360px;
}
@media (min-width: 992px){
  .ggrid{min-height:420px;}
}
@media (max-width: 576px){
  .ggrid{grid-template-columns:repeat(2, 1fr);}
}
.ggrid {
  grid-template-columns: repeat(3, 1fr);
  min-height: 320px;
}
.gitem {
  min-height: 240px;
}

@media (max-width: 576px) {
  .ggrid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .gitem {
    min-height: 240px;
  }
}
.gitem{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(2,6,23,.08);
  background:#e5e7eb;
  background-size:cover;
  background-position:center;
  box-shadow:0 10px 25px rgba(2,6,23,.06);
  transition:transform .35s ease, filter .35s ease;
}
.gitem:hover{
  transform:translateY(-4px) scale(1.05);
  filter:saturate(1.08) contrast(1.02);
}


/* ¦¡¦¡ Ä«µå ¸ÞÅ¸ ¸µÅ© ¦¡¦¡ */
.meta-links {
  padding: 0;
}
.meta-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid rgba(2,6,23,.06);
  font-weight: 800;
  font-size: .92rem;
  color: #0f172a;
  text-decoration: none;
  transition: background .15s;
}
.meta-link:hover {
  background: rgba(25,179,106,.06);
  color: #064e3b;
}
.meta-link i:first-child {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(25,179,106,.10);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem;
  color: #2e7d32;
  flex-shrink: 0;
}
.meta-link i:last-child {
  color: #ccc;
  font-size: .75rem;
}
.meta-link:hover i:last-child {
  color: #2e7d32;
}