:root {
  --primary: #0b8f70;
  --primary-2: #10b981;
  --secondary: #ef4444;
  --dark: #17212b;
  --ink: #24364b;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f7faf9;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(16, 24, 40, .10);
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block
}

button {
  font: inherit
}

.container {
  width: var(--container);
  margin-inline: auto
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(180deg, rgba(3, 7, 12, .94), rgba(3, 7, 12, .72));
  box-shadow: none;
  backdrop-filter: blur(6px);
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}

header.scrolled {
  background: linear-gradient(90deg, #0b9f7a 0%, #6a8c70 45%, #ef373b 100%);
  box-shadow: 0 8px 30px rgba(15, 23, 42, .18);
  backdrop-filter: none;
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 214px
}

.brand-logo {
  width: 184px;
  max-height: 58px;
  object-fit: contain
}

.brand-title {
  font-size: 24px;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.5px
}

.brand-title small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  opacity: .85;
  letter-spacing: .04em;
  margin-bottom: 3px
}

.menu {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 750
}

.menu-item {
  position: relative
}

.menu-link {
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 9px 11px;
  border-radius: 8px;
  transition: .2s ease;
  text-transform: uppercase;
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: #fff;
  transition: .25s ease;
}

.menu-link:hover {
  background: rgba(255, 255, 255, .11)
}

.menu-link:hover::after {
  right: 0
}

.has-submenu>.menu-link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
  order: 2;
  opacity: .78;
}

.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 250px;
  padding: 10px;
  background: rgba(8, 13, 18, .96);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, .28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
  backdrop-filter: blur(14px);
}

.submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px
}

.menu-item.open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 7px;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.submenu a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #ef4444);
  flex: 0 0 auto;
}

.submenu a:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, .4);
  background: transparent;
  color: #fff;
  border-radius: 10px;
  padding: 8px 11px
}

.menu-link.active {
  background: rgba(255, 255, 255, .16)
}

.menu-link.active::after {
  right: 0
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.search-toggle {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .26);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.search-toggle svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round
}

.site-search {
  position: absolute;
  top: calc(100% + 12px);
  right: max(20px, calc((100vw - 1180px) / 2));
  width: min(420px, calc(100vw - 40px));
  padding: 10px;
  background: rgba(8, 13, 18, .96);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, .24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: .2s ease;
}

.site-search.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.site-search input {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  padding: 0 14px;
  outline: none;
}

.site-search input::placeholder {
  color: rgba(255, 255, 255, .62)
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: #0b1721;
  padding: 0
}

.slides {
  position: relative;
  height: 100vh;
  min-height: 620px
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .75s ease, transform 1.2s ease;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  transform: scale(1)
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 7, 12, .96) 0%, rgba(3, 7, 12, .8) 12%, rgba(3, 7, 12, .38) 32%, rgba(3, 7, 12, 0) 58%),
    linear-gradient(90deg, rgba(5, 12, 18, .74) 0%, rgba(5, 12, 18, .44) 42%, rgba(5, 12, 18, .18) 100%),
    linear-gradient(0deg, rgba(3, 7, 12, .48) 0%, rgba(3, 7, 12, 0) 34%);
}

.slide.one {
  background-image: url("../images/gambar-0.jpg");
}

.slide.two {
  background-image: url("../images/gambar-1.jpg");
}

.slide.three {
  background-image: url("../images/gambar-2.jpg");
}

.slide.four {
  background-image: url("../images/gambar-3.jpg");
}

.hero-content {
  position: relative;
  z-index: 4;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding-top: 78px;
  padding-bottom: 70px;
}

.hero-copy {
  width: min(650px, 94%);
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .42);
  padding-left: 22px;
  border-left: 4px solid #ef4444;
}

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: #fda4af
}

.hero h1 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.08;
  margin: 12px 0 16px;
  letter-spacing: 0;
  max-width: 650px
}

.hero p {
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.68;
  color: rgba(255, 255, 255, .84);
  margin: 0 0 26px;
  max-width: 590px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .2s ease;
}

.btn-primary {
  background: #ef5b67;
  color: #fff
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(239, 91, 103, .3)
}

.dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 6;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  cursor: pointer
}

.dot.active {
  background: white;
  outline: 3px solid rgba(255, 255, 255, .25)
}

/* COMMON SECTION */
section {
  padding: 80px 0
}

.section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px
}

.section-head h2 {
  font-size: 32px;
  margin: 0;
  letter-spacing: -.5px
}

.section-head .line {
  height: 1px;
  background: #dfe4e8;
  flex: 1
}

.outline-link {
  padding: 10px 18px;
  border: 1.5px solid var(--primary-2);
  border-radius: 8px;
  color: var(--primary);
  font-weight: 800;
  background: #fff;
}

.section-copy {
  max-width: 680px;
  color: #64748b;
  margin: -20px 0 30px;
  font-size: 16px
}

/* SELAYANG PANDANG */
.intro {
  background: #fff;
  position: relative
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb, transparent)
}

.intro .kicker {
  color: #ef5b67;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .08em
}

.intro h2 {
  font-size: 38px;
  line-height: 1.16;
  margin: 8px 0 28px;
  color: #314052;
  letter-spacing: 0
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start
}

.intro p {
  font-size: 17px;
  line-height: 1.85;
  text-align: left;
  margin-top: 0;
  color: #475569
}

.intro-media {
  margin: 28px 0 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #e5e7eb
}

/* .intro-media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain
} */

/* .intro-leader-media img {
  display: block;
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
  background: #f8fafc
} */

.intro-media figcaption {
  padding: 12px 14px;
  background: #fff;
  color: #64748b;
  font-size: 13px
}

.intro-highlight {
  padding: 26px;
  background: linear-gradient(135deg, #f4fbf8, #fff7f8);
  border: 1px solid #e5eee9;
  border-radius: 8px;
  display: grid;
  gap: 16px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
}

.intro-stat {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: center
}

.intro-stat strong {
  font-size: 28px;
  color: #0b8f70;
  line-height: 1
}

.intro-stat span {
  font-size: 14px;
  color: #64748b
}

/* NEWS */
.news {
  background: linear-gradient(180deg, #f8fafc, #fff)
}

.section-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -10px 0 28px
}

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

.tab {
  border: 1px solid #dbe6e1;
  background: #fff;
  color: #475569;
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: .2s ease;
}

.tab:hover,
.tab.active {
  background: #0b8f70;
  border-color: #0b8f70;
  color: #fff
}

.news-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 30px
}

.featured {
  min-height: 500px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.featured.news-background-fallback {
  background-color: #f8fafc;
  background-repeat: no-repeat;
  background-size: min(260px, 42%) auto;
}

.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 10, 18, .05) 20%, rgba(4, 10, 18, .88) 100%)
}

.featured-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px;
  color: #fff
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, .92);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.featured h3 {
  font-size: 29px;
  line-height: 1.28;
  margin: 9px 0;
  letter-spacing: 0
}

.featured p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .82);
  max-width: 650px
}

.meta {
  font-size: 14px;
  opacity: .8
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.news-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e7eeeb;
  background: #fff;
  transition: .2s ease;
}

.news-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
  border-color: #cfe0d8
}

.thumb {
  height: 72px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

.thumb.news-background-fallback {
  background-color: #f8fafc;
  background-repeat: no-repeat;
  background-size: 52px auto
}

.news-item h4 {
  font-size: 15px;
  line-height: 1.38;
  margin: 0 0 7px
}

.news-item small {
  color: #94a3b8
}

.news-item .news-date-badge {
  padding: 5px 8px;
  font-size: 11px
}

.date-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0b8f70;
  font-size: 12px;
  font-weight: 800
}

.news-item[hidden],
.service-card[hidden],
[data-opd-row][hidden],
.public-service-card[hidden],
[data-transparency-row][hidden] {
  display: none
}

.opd-home-news-section {
  padding-top: 56px
}

.opd-home-news-section .section-head {
  align-items: center;
  gap: 18px;
  margin-bottom: 26px
}

.opd-home-news-section .outline-link {
  padding: 12px 22px;
  white-space: nowrap
}

.opd-home-news-section .news-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  gap: 26px;
  align-items: start
}

.opd-featured-card {
  overflow: hidden;
  border: 1px solid #e7eeeb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .08)
}

.opd-featured-link {
  display: grid;
  color: inherit;
  text-decoration: none
}

.opd-featured-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f8fafc
}

.opd-featured-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover
}

.opd-featured-image.news-image-fallback img {
  object-fit: contain;
  padding: 34px
}

.opd-featured-link .badge {
  justify-self: start;
  margin: 20px 24px 0
}

.opd-featured-link h3,
.opd-featured-link p,
.opd-home-news-section .news-item h4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.opd-featured-link h3 {
  -webkit-line-clamp: 2;
  margin: 12px 24px 10px;
  font-size: 26px;
  line-height: 1.28
}

.opd-featured-link p {
  -webkit-line-clamp: 3;
  margin: 0 24px 16px;
  color: #5f7089;
  line-height: 1.58
}

.opd-featured-link .meta {
  margin: 0 24px 24px;
  color: #6b7b92;
  overflow-wrap: anywhere
}

.opd-home-news-section .news-list {
  gap: 14px
}

.opd-home-news-section .news-item {
  min-height: 104px
}

.opd-home-news-section .thumb {
  height: 76px
}

.opd-home-news-section .news-item h4 {
  -webkit-line-clamp: 3;
  margin-bottom: 9px
}

/* SERVICES */
.services {
  background: linear-gradient(180deg, #fff7f8 0 42%, #fff 42%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.service-card {
  min-height: 210px;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
  border: 1px solid #edf1ef;
  transition: .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #cfe0d8
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #f2fbf7;
  color: var(--primary);
}

.service-icon svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.service-icon i {
  font-size: 24px
}

.service-body {
  min-width: 0
}

.service-card h3 {
  font-size: 19px;
  margin: 0 0 4px;
  color: #1f3145
}

.owner {
  color: #f05260;
  font-size: 13px;
  min-height: 0;
  margin-bottom: 10px;
  font-weight: 700
}

.service-card p {
  color: #64748b;
  font-size: 14px;
  margin: 0 0 16px
}

.service-card .btn {
  border-radius: 8px;
  background: #0b8f70;
  color: #fff;
  padding: 9px 12px;
  font-size: 13px;
  width: max-content;
}

.service-search {
  position: relative;
  width: min(320px, 100%)
}

.service-search input {
  width: 100%;
  height: 42px;
  border: 1px solid #dbe6e1;
  border-radius: 8px;
  background: #fff;
  padding: 0 13px 0 39px;
  color: #1f3145;
  outline: none;
}

.service-search svg {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  stroke: #64748b;
  stroke-width: 2;
  fill: none
}

/* QUICK INFO */
.quick {
  padding-top: 20px
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.quick-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff
}

.quick-item strong {
  display: block;
  font-size: 28px;
  color: var(--primary)
}

.quick-item span {
  color: #64748b;
  font-size: 14px
}

/* INNER PAGE */
body.is-inner header {
  background: linear-gradient(90deg, #0b9f7a 0%, #6a8c70 45%, #ef373b 100%);
  box-shadow: 0 8px 30px rgba(15, 23, 42, .18);
  backdrop-filter: none;
}

.inner-hero {
  padding: 150px 0 72px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 12, 18, .78), rgba(5, 12, 18, .34)),
    url("https://img.inews.co.id/media/1200/files/inews_new/2024/09/13/Desa_di_Jombang.jpg");
  background-size: cover;
  background-position: center;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 18px
}

.breadcrumbs a {
  color: #fff;
  font-weight: 800
}

.inner-hero h1 {
  font-size: 46px;
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: 0
}

.inner-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 18px
}

.content-section {
  background: #fff
}

.content-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 42px;
  align-items: start
}

.article-body {
  font-size: 17px;
  color: #475569;
  line-height: 1.85
}

.article-body h2 {
  font-size: 30px;
  color: #1f3145;
  line-height: 1.2;
  margin: 0 0 18px
}

.article-body p {
  margin: 0 0 18px
}

.article-image figcaption {
  margin-top: 8px;
  color: #64748b;
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
  text-align: center
}

.full-article {
  max-width: 920px;
  margin-inline: auto
}

.full-article h2 {
  font-size: 34px;
  margin-bottom: 24px
}

.full-article p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 20px
}

.full-article strong {
  color: #1f3145
}

.profile-overview {
  grid-template-columns: minmax(0, 1fr) 360px
}

.stat-box {
  position: sticky;
  top: 106px;
  padding: 22px;
  border: 1px solid #e7eeeb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
}

.stat-box-head {
  padding: 4px 4px 18px;
  border-bottom: 1px solid #edf1ef;
  margin-bottom: 14px
}

.stat-box-head span {
  display: inline-flex;
  color: #ef4444;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em
}

.stat-box-head h2 {
  font-size: 25px;
  line-height: 1.18;
  margin: 6px 0;
  color: #1f3145
}

.stat-box-head p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55
}

.stat-list {
  display: grid;
  gap: 10px
}

.stat-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid #edf1ef;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fafc, #fff);
}

.stat-item i {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #f2fbf7;
  color: #0b8f70;
  font-size: 18px
}

.stat-item span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em
}

.stat-item strong {
  display: block;
  color: #1f3145;
  font-size: 21px;
  line-height: 1.2;
  margin-top: 2px
}

.info-panel {
  display: grid;
  gap: 14px
}

.info-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid #e7eeeb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}

.info-card i {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #f2fbf7;
  color: #0b8f70;
  font-size: 20px
}

.info-card strong {
  display: block;
  color: #1f3145;
  margin-bottom: 4px
}

.info-card span {
  display: block;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 28px
}

.leader-card {
  overflow: hidden;
  border: 1px solid #e7eeeb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
}

.leader-photo {
  aspect-ratio: 4/3;
  background-color: #e7eef1;
  background-size: cover;
  background-position: left top;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  position: relative;
}

.leader-photo-wabup {
  background-position: right top
}

.leader-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, .72) 100%)
}

.leader-role {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0b8f70;
  color: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em
}

.leader-body {
  padding: 22px
}

.leader-body h2 {
  font-size: 25px;
  margin: 0 0 8px;
  color: #1f3145;
  line-height: 1.16
}

.leader-body .degree {
  color: #ef4444;
  font-weight: 800;
  margin-bottom: 14px
}

.leader-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #475569
}

.leader-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start
}

.leader-list i {
  color: #0b8f70;
  margin-top: 5px
}

.leader-photo-section {
  padding-top: 46px
}

.leader-single-image {
  margin: 0 auto;
  max-width: 980px
}

.leader-single-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow)
}

.leader-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 28px auto 0;
  max-width: 980px
}

.leader-profile-card {
  border: 1px solid #e7eeeb;
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05)
}

.leader-profile-role {
  display: inline-flex;
  margin-bottom: 10px;
  color: #ef4444;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em
}

.leader-profile-card h2 {
  margin: 0 0 12px;
  color: #1f3145;
  font-size: 24px;
  line-height: 1.2
}

.leader-profile-card p {
  margin: 0 0 14px;
  color: #475569;
  font-size: 16px;
  line-height: 1.75
}

.leader-profile-card p:last-child {
  margin-bottom: 0
}

.vision-strip {
  margin-top: 30px;
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f2fbf7, #fff7f8);
  border: 1px solid #e4eee9
}

.vision-strip strong {
  display: block;
  color: #1f3145;
  margin-bottom: 6px
}

.source-note {
  margin-top: 20px;
  color: #64748b;
  font-size: 13px
}

.vision-content-section {
  padding-top: 42px;
  padding-bottom: 52px
}

.vision-article {
  max-width: 920px;
  margin-inline: auto
}

.vision-article>h2 {
  margin-top: 24px;
  margin-bottom: 16px
}

.vision-card {
  padding: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0b8f70, #ef4444);
  color: #fff;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.vision-card .eyebrow {
  color: rgba(255, 255, 255, .78)
}

.vision-card h2 {
  font-size: 34px;
  line-height: 1.18;
  margin: 8px 0 10px;
  color: #fff
}

.vision-card p {
  margin: 0;
  color: rgba(255, 255, 255, .84)
}

.vision-leader-image {
  margin: 22px 0 24px
}

.vision-leader-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #f8fafc
}

.vision-narrative {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #e7eeeb
}

.mission-list {
  display: grid;
  gap: 12px
}

.mission-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid #e7eeeb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}

.mission-card>i {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #f2fbf7;
  color: #0b8f70;
  font-size: 22px;
}

.mission-label {
  display: block;
  color: #ef4444;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px
}

.mission-card h3 {
  margin: 0 0 7px;
  color: #1f3145;
  font-size: 18px
}

.mission-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.65
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px
}

.program-card {
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e7eeeb
}

.program-card i {
  color: #ef4444;
  font-size: 20px;
  margin-bottom: 10px
}

.program-card strong {
  display: block;
  color: #1f3145;
  margin-bottom: 4px
}

.program-card span {
  display: block;
  color: #64748b;
  font-size: 14px;
  line-height: 1.45
}

.directory-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 20px
}

.directory-search {
  position: relative;
  width: min(420px, 100%)
}

.directory-search input {
  width: 100%;
  height: 44px;
  border: 1px solid #dbe6e1;
  border-radius: 8px;
  padding: 0 14px 0 42px;
  outline: none
}

.directory-search i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b
}

.opd-table-wrap {
  overflow: auto;
  border: 1px solid #e7eeeb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .05)
}

.opd-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px
}

.opd-table th,
.opd-table td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid #edf1ef;
  vertical-align: top
}

.opd-table th {
  background: #f8fafc;
  color: #1f3145;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em
}

.opd-table td {
  color: #475569;
  font-size: 14px
}

.opd-name {
  font-weight: 850;
  color: #1f3145
}

.opd-type {
  display: inline-flex;
  margin-top: 7px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f2fbf7;
  color: #0b8f70;
  font-size: 12px;
  font-weight: 800
}

.opd-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0b8f70;
  font-weight: 850
}

.opd-empty {
  display: inline-flex;
  color: #94a3b8;
  font-weight: 800
}

.opd-summary {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #64748b;
  font-size: 14px
}

.tourism-hero-card {
  min-height: 460px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.tourism-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 10, 18, .08), rgba(4, 10, 18, .82))
}

.tourism-hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
  color: #fff
}

.tourism-hero-content h2 {
  font-size: 31px;
  line-height: 1.18;
  margin: 10px 0 8px;
  color: #fff
}

.tourism-hero-content p {
  margin: 0;
  color: rgba(255, 255, 255, .84)
}

.tourism-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px
}

.tourism-card {
  overflow: hidden;
  border: 1px solid #e7eeeb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05)
}

.tourism-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #e5e7eb
}

.tourism-card-body {
  padding: 18px
}

.tourism-card-body h3 {
  font-size: 19px;
  margin: 0 0 8px;
  color: #1f3145
}

.tourism-card-body p {
  font-size: 14px;
  line-height: 1.65;
  color: #64748b;
  margin: 0
}

.tourism-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: #f2fbf7;
  color: #0b8f70;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px
}

.tourism-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none
}

.tourism-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid #e7eeeb;
  border-radius: 8px;
  background: #fff
}

.tourism-list i {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #fff7f8;
  color: #ef4444
}

.tourism-list strong {
  display: block;
  color: #1f3145;
  margin-bottom: 3px
}

.tourism-list span {
  display: block;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5
}

.content-section:has(.tourism-article) {
  padding-top: 42px;
  padding-bottom: 52px
}

.tourism-article .tourism-hero-card {
  margin-bottom: 34px
}

.tourism-article .section-head {
  margin-top: 0 !important;
  margin-bottom: 16px
}

.tourism-article>p {
  font-size: 17px;
  line-height: 1.85;
  margin: 0 0 18px
}

.tourism-category {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e7eeeb
}

.tourism-category-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px
}

.tourism-category-head i {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #f2fbf7;
  color: #0b8f70
}

.tourism-category-head h3 {
  font-size: 26px;
  line-height: 1.2;
  margin: 0;
  color: #1f3145
}

.tourism-place {
  margin-top: 4px;
  padding: 0
}

.tourism-place h4 {
  font-size: 21px;
  line-height: 1.28;
  margin: 0 0 4px;
  color: #20364d
}

.tourism-place p {
  font-size: 17px;
  line-height: 1.85;
  margin: 0 0 18px
}

.tourism-place p:last-child {
  margin-bottom: 0
}

.location-box {
  display: none
}

.location-box-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e8f7f1;
  color: #0b8f70;
  font-size: 18px
}

.location-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 8px 10px;
  border: 1px solid #cfe7dc;
  border-radius: 8px;
  background: #fff;
  color: #0b8f70;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  transition: .2s ease
}

.location-box strong {
  display: inline-block;
  margin-bottom: 2px;
  color: #1f3145;
  font-size: 13px
}

.location-box span {
  color: #475569
}

.location-map-link:hover {
  border-color: #0b8f70;
  background: #0b8f70;
  color: #fff;
  transform: translateY(-1px)
}

.public-service-section {
  padding-top: 54px;
  padding-bottom: 64px
}

.public-service-section .section-head {
  margin-bottom: 12px
}

.public-service-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  margin: -4px 0 14px
}

.public-service-search {
  flex: 0 0 min(420px, 100%)
}

.public-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  grid-auto-rows: 1fr
}

.landing-service-grid {
  margin-top: 0
}

.public-service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  padding: 14px;
  border: 1px solid #e7eeeb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .045);
  transition: .2s ease
}

.public-service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
  border-color: #cfe0d8
}

.public-service-icon {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 18%, rgba(240, 82, 96, .14), transparent 28%),
    linear-gradient(135deg, #f2fbf7, #eef6ff);
  color: #0b8f70;
  font-size: 42px
}

.public-service-body {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column
}

.public-service-body h3 {
  display: -webkit-box;
  min-height: 42px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.25;
  margin: 8px 0 4px;
  color: #1f3145
}

.public-service-body p {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 10px;
  line-height: 1.55
}

.public-service-web {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  margin: auto 0 0;
  padding: 6px 8px;
  border-radius: 8px;
  background: #f8fafc;
  color: #1f3145;
  font-size: 12px;
  font-weight: 850;
  word-break: break-word
}

.public-service-web i {
  color: #0b8f70
}

.empty-state {
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
  padding: 36px;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
  color: #64748b;
}

.empty-state i {
  font-size: 34px;
  color: #0b8f70
}

.empty-state strong {
  display: block;
  color: #1f3145;
  font-size: 21px
}

.empty-state span {
  max-width: 560px
}

.news-list-section {
  padding-top: 54px;
  scroll-margin-top: 96px
}

.news-list-section .section-head {
  margin-bottom: 12px
}

.news-list-summary {
  display: flex;
  justify-content: flex-end;
  margin: -4px 0 12px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800
}

.news-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  grid-auto-rows: 1fr
}

.news-page-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid #e7eeeb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .045);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease
}

.news-page-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
  border-color: #cfe0d8
}

.news-page-image {
  display: block;
  overflow: hidden;
  background: #e5e7eb
}

.news-page-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16/8.5;
  object-fit: cover;
  background: #e5e7eb
}

.news-page-image.news-image-fallback {
  background: #f8fafc
}

.news-page-card img.news-image-fallback {
  object-fit: contain;
  padding: 24px;
  background: #f8fafc
}

.news-page-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 12px 14px 14px
}

.news-card-meta {
  display: grid;
  gap: 6px;
  align-items: start;
  color: #64748b;
  font-size: 12px;
  font-weight: 800
}

.news-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2fbf7;
  color: #0b8f70;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25
}

.news-card-meta .news-badge {
  display: block;
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis
}

.news-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  padding: 5px 8px;
  border-radius: 8px;
  background: #fff7f8;
  color: #ef4444;
  border: 1px solid #ffe0e5;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2
}

.news-page-body h3 {
  display: -webkit-box;
  min-height: 44px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.3;
  margin: 9px 0 6px;
  color: #1f3145
}

.news-page-body p {
  display: -webkit-box;
  min-height: 39px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
  margin: 0 0 10px
}

.news-read-more {
  margin-top: auto;
  font-size: 13px
}

.featured-news-card {
  display: flex;
  grid-column: auto
}

.show-more-wrap {
  display: flex;
  justify-content: center;
  margin: 22px 0 4px
}

.show-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid #0b8f70;
  border-radius: 8px;
  background: #0b8f70;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(11, 143, 112, .16);
  transition: .2s ease;
}

.show-more-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 143, 112, .22)
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin: 22px auto 0;
  padding: 0 12px
}

.page-link {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #dbe6e1;
  border-radius: 8px;
  background: #fff;
  color: #1f3145;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: .2s ease;
}

.page-link:hover {
  border-color: #0b8f70;
  color: #0b8f70;
  transform: translateY(-1px)
}

.page-link.active {
  background: #0b8f70;
  border-color: #0b8f70;
  color: #fff;
  box-shadow: 0 10px 22px rgba(11, 143, 112, .18)
}

.page-link.disabled {
  pointer-events: none;
  color: #cbd5e1;
  background: #f8fafc
}

.page-ellipsis {
  min-width: 30px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-weight: 900;
}

.news-detail-hero {
  min-height: 280px;
  padding: 112px 0 58px
}

.news-detail-section {
  padding-top: 54px
}

.news-detail {
  overflow: hidden;
  border: 1px solid #e7eeeb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .06)
}

.news-detail-single {
  max-width: 960px;
  margin-inline: auto
}

.news-detail-heading {
  padding: 28px 32px 22px
}

.news-back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  color: #0b8f70;
  font-size: 13px;
  font-weight: 900
}

.news-back-link:hover {
  color: #ef4444
}

.news-author-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 8px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e7eeeb;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2
}

.news-detail-heading h1 {
  font-size: 36px;
  line-height: 1.22;
  margin: 14px 0 12px;
  color: #1f3145;
  letter-spacing: 0
}

.news-detail-heading p {
  max-width: 780px;
  margin: 0 0 16px;
  color: #64748b;
  font-size: 17px;
  line-height: 1.75
}

.news-detail>img {
  display: block;
  width: 100%;
  aspect-ratio: 16/7.6;
  object-fit: cover;
  background: #e5e7eb
}

.news-detail>img.news-image-fallback {
  object-fit: contain;
  padding: 54px;
  background: #f8fafc
}

.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #64748b;
  font-size: 13px
}

.news-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px
}

.news-detail-tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid #c9f4e5;
  border-radius: 999px;
  background: #effcf7;
  color: #0b8f70;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  word-break: break-word;
}

.news-detail-content {
  max-width: 780px;
  margin-inline: auto;
  padding: 30px 32px 36px;
  font-size: 17px;
  line-height: 1.9;
  color: #475569;
  white-space: normal
}

.news-detail-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.25rem auto;
  border-radius: 8px;
  object-fit: contain;
}

.news-detail-content p,
.news-detail-content blockquote,
.news-detail-content ol,
.news-detail-content ul,
.news-detail-content h1,
.news-detail-content h2,
.news-detail-content h3 {
  margin-bottom: 1rem;
}

.news-detail-content h1,
.news-detail-content h2,
.news-detail-content h3 {
  margin-top: 1.5rem;
  color: #1e293b;
  line-height: 1.35;
  font-weight: 700;
}

.news-detail-content h1 { font-size: 1.75rem; }
.news-detail-content h2 { font-size: 1.4rem; }
.news-detail-content h3 { font-size: 1.15rem; }

.news-detail-content a {
  color: #0b8f70;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-detail-content ol {
  list-style: decimal;
  padding-left: 1.5rem;
}

.news-detail-content ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.news-detail-content blockquote {
  border-left: 4px solid #0b8f70;
  border-radius: 0 8px 8px 0;
  background: #f0fdf4;
  padding: 1rem 1.25rem;
  color: #475569;
}

.news-detail-content .ql-align-center { text-align: center; }
.news-detail-content .ql-align-right { text-align: right; }
.news-detail-content .ql-align-justify { text-align: justify; }


.news-detail .news-detail-meta {
  padding: 0
}

.related-news {
  display: block;
  padding: 16px;
  border: 1px solid #e7eeeb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05)
}

.related-news span {
  display: block;
  color: #0b8f70;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px
}

.related-news strong {
  display: block;
  color: #1f3145;
  line-height: 1.35;
  margin-bottom: 8px
}

.related-news small {
  color: #94a3b8
}

.transparency-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0 20px
}

.transparency-filter {
  display: grid;
  gap: 7px
}

.transparency-filter label {
  font-size: 13px;
  font-weight: 850;
  color: #1f3145
}

.transparency-filter select {
  height: 44px;
  min-width: 180px;
  border: 1px solid #dbe6e1;
  border-radius: 8px;
  background: #fff;
  color: #1f3145;
  padding: 0 13px;
  outline: none;
  font: inherit;
}

.transparency-table-wrap {
  border-color: #dfe9e5;
  box-shadow: 0 18px 46px rgba(15, 23, 42, .08)
}

.transparency-table {
  min-width: 900px;
  table-layout: fixed
}

.transparency-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f4f8f6;
  color: #203344;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .025em;
  white-space: nowrap
}

.transparency-table th:first-child,
.transparency-table td:first-child {
  width: 76px;
  text-align: center
}

.transparency-table th:nth-child(3),
.transparency-table td:nth-child(3) {
  width: 150px
}

.transparency-table th:last-child,
.transparency-table td:last-child {
  width: 210px
}

.transparency-table tbody tr:nth-child(even) {
  background: #fbfdfc
}

.transparency-table tbody tr:hover {
  background: #f4fbf8
}

.transparency-table td {
  padding: 17px 16px;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1.55
}

.transparency-number-cell {
  color: #0f766e
}

.transparency-number {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 32px;
  padding: 0 8px;
  border-radius: 8px;
  background: #eaf7f2;
  color: #08745c;
  font-size: 13px;
  font-weight: 750;
  line-height: 1
}

.transparency-document-title {
  max-width: 100%;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55
}

.transparency-link-cell,
.transparency-date-cell {
  white-space: nowrap
}

.transparency-link {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid #cfe6dc;
  border-radius: 8px;
  background: #f4fbf8;
  color: #08745c;
  font-size: 13px;
  font-weight: 750;
  line-height: 1
}

.transparency-link:hover {
  border-color: #0b8f70;
  background: #eaf7f2;
  color: #075f4e
}

.transparency-empty {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 32px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 750
}

.transparency-date-cell {
  color: #475569;
  font-size: 13px;
  font-weight: 600
}
/* FOOTER */
footer {
  margin-top: 70px;
  background: #20272f;
  color: #fff;
  padding: 62px 0 28px
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.25fr) minmax(220px, .75fr);
  gap: 56px;
  align-items: flex-start
}

footer h4 {
  font-size: 16px;
  margin: 0 0 18px
}

footer a,
footer p {
  color: #dbe2e8;
  font-size: 14px
}

.footer-links {
  display: grid;
  gap: 9px
}

.footer-link-column {
  justify-self: end;
  min-width: 220px
}

.footer-brand {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  max-width: 560px
}

.footer-logo {
  width: 82px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .24))
}

.footer-brand strong {
  font-size: 24px;
  line-height: 1.25
}

.footer-contact {
  display: grid;
  gap: 9px;
  margin-top: 10px
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, border-color .2s ease
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .28)
}

.social-links a.instagram:hover {
  background: #e4405f
}

.social-links a.youtube:hover {
  background: #ff0033
}

.social-links a.tiktok:hover {
  background: #111827
}

.social-links i {
  font-size: 17px
}

.contact-pill {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 9px 12px;
  border-radius: 8px;
  background: #0b8f70;
  color: #fff
}

.copyright {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #9fb0be;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 20px
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #d3dce2;
  background: #fff;
  color: #2563eb;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, .12);
  font-size: 23px;
  z-index: 30
}

@media (max-width:980px) {
  .brand {
    min-width: auto
  }

  .brand-logo {
    width: 168px
  }

  .menu {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 18px;
    background: rgba(8, 13, 18, .98);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    max-height: calc(100vh - 78px);
    overflow: auto
  }

  .menu.open {
    display: flex
  }

  .menu-link {
    width: 100%;
    justify-content: space-between
  }

  .menu-link::after {
    display: none
  }

  .submenu {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin: 0 0 8px;
    padding: 6px;
    background: rgba(255, 255, 255, .08);
    box-shadow: none;
    border-radius: 8px
  }

  .menu-item.open .submenu {
    display: block
  }

  .submenu a {
    white-space: normal
  }

  .menu-toggle {
    display: block
  }

  .header-actions {
    margin-left: auto
  }

  .site-search {
    top: calc(100% + 8px);
    right: 14px
  }

  .slides,
  .hero-content {
    height: 100svh;
    min-height: 620px
  }

  .intro-grid,
  .news-grid {
    grid-template-columns: 1fr
  }

  .opd-home-news-section {
    padding-top: 46px
  }

  .opd-home-news-section .news-grid {
    gap: 18px
  }

  .opd-featured-link h3 {
    font-size: 24px
  }

  .opd-featured-link p {
    -webkit-line-clamp: 2
  }

  .section-tools {
    align-items: flex-start;
    flex-direction: column
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .quick-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: minmax(320px, 1.15fr) minmax(220px, .85fr);
    gap: 32px
  }

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

  .profile-overview {
    grid-template-columns: 1fr
  }

  .stat-box {
    position: static
  }

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

  .leader-profile-grid {
    grid-template-columns: 1fr
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .public-service-toolbar {
    flex-direction: column
  }

  .public-service-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .news-page-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .featured-news-card {
    grid-column: auto
  }

  .news-detail-layout {
    grid-template-columns: 1fr
  }

  .transparency-toolbar {
    align-items: flex-start;
    flex-direction: column
  }

  .directory-tools {
    align-items: flex-start;
    flex-direction: column
  }
}

@media (max-width:640px) {
  :root {
    --container: min(100% - 28px, 1180px)
  }

  .brand-logo {
    width: 144px
  }

  .nav {
    min-height: 72px
  }

  .menu {
    top: 72px
  }

  .slides,
  .hero-content {
    height: 100svh;
    min-height: 560px
  }

  .hero-content {
    padding-top: 72px
  }

  .hero-copy {
    padding-left: 16px
  }

  .hero h1 {
    font-size: 33px
  }

  .hero p {
    font-size: 16px
  }

  section {
    padding: 60px 0
  }

  .intro h2 {
    font-size: 31px
  }

  .intro-grid {
    gap: 10px
  }

  .intro p {
    font-size: 17px
  }

  .section-head {
    align-items: flex-start;
    flex-wrap: wrap
  }

  .opd-home-news-section .section-head {
    margin-bottom: 18px
  }

  .opd-home-news-section .section-head h2 {
    font-size: 30px
  }

  .opd-home-news-section .outline-link {
    width: auto;
    padding: 11px 18px
  }

  .opd-featured-link .badge {
    margin: 16px 18px 0;
    font-size: 11px
  }

  .opd-featured-link h3 {
    margin: 10px 18px 8px;
    font-size: 21px;
    -webkit-line-clamp: 2
  }

  .opd-featured-link p {
    margin: 0 18px 14px;
    font-size: 15px;
    -webkit-line-clamp: 3
  }

  .opd-featured-link .meta {
    margin: 0 18px 18px;
    font-size: 13px
  }

  .opd-home-news-section .news-item {
    grid-template-columns: 72px 1fr;
    min-height: 96px;
    gap: 12px
  }

  .opd-home-news-section .thumb {
    height: 68px
  }

  .section-head .line {
    display: none
  }

  .service-grid,
  .quick-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-link-column {
    justify-self: start
  }

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

  .public-service-grid {
    grid-template-columns: 1fr
  }

  .news-page-grid {
    grid-template-columns: 1fr
  }

  .show-more-button {
    width: 100%
  }

  .pagination {
    gap: 6px;
    padding: 0
  }

  .page-link {
    min-width: 36px;
    height: 36px;
    padding: 0 10px
  }

  .page-ellipsis {
    height: 36px;
    min-width: 24px
  }

  .featured-news-card {
    grid-column: span 1
  }

  .news-detail-hero {
    min-height: 250px;
    padding: 96px 0 48px
  }

  .news-detail-section {
    padding-top: 40px
  }

  .news-detail-heading {
    padding: 22px 20px 18px
  }

  .news-detail-heading h1 {
    font-size: 29px
  }

  .news-detail-content {
    padding: 24px 20px 30px
  }

  .service-card {
    grid-template-columns: 48px 1fr;
    padding: 18px
  }

  .public-service-card {
    padding: 12px
  }

}
