.information-hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(6, 26, 73, 0.97), rgba(11, 45, 102, 0.9)),
    url("assets/gallery/gallery-06.jpg") center 44% / cover;
}

.information-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: radial-gradient(circle at 15% 15%, #fff 0 1px, transparent 1.5px);
  background-size: 22px 22px;
}

.information-hero-content {
  position: relative;
  z-index: 1;
  padding-block: 62px;
}

.information-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 42px;
  color: rgba(255, 255, 255, 0.7);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .01em;
}

.information-breadcrumb strong {
  color: #fff;
  font-weight: 700;
}

.information-eyebrow {
  margin: 0 0 12px;
  color: #ffbdc3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.information-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.information-hero-content > p:last-child {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.8;
}

.information-section {
  padding: 64px 0 72px;
  background: #f7f8fb;
}

.information-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.information-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(27px, 3.5vw, 38px);
  line-height: 1.2;
}

.information-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.information-subsection {
  margin-top: 64px;
  padding-top: 58px;
  border-top: 1px solid var(--border);
}

.information-label,
.announcement-status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--red);
  background: rgba(237, 28, 46, 0.09);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.information-card h2,
.information-card h3 {
  margin: 14px 0 0;
  color: var(--navy);
  line-height: 1.3;
}

.information-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.information-card {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(6, 26, 73, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.information-card:hover {
  box-shadow: 0 16px 34px rgba(6, 26, 73, 0.14);
  transform: translateY(-4px);
}

.information-card > a:first-child {
  display: block;
  min-height: 205px;
  overflow: hidden;
}

.information-card > a:first-child img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.information-card:hover > a:first-child img {
  transform: scale(1.035);
}

.information-card-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 18px;
}

.information-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.information-card h2,
.information-card h3 {
  margin-top: 11px;
  font-size: 18px;
  line-height: 1.35;
}

.information-card h3 a {
  color: inherit;
  text-decoration: none;
}

.information-date {
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.information-card-summary {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 9px !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.information-card .information-read-more {
  margin-top: auto;
  padding-top: 13px;
}

.information-read-more {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.information-read-more:hover {
  text-decoration: underline;
}

.information-empty {
  padding: 48px 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
  background: #fff;
}

.information-empty h2 {
  margin: 0;
  color: var(--navy);
}

.information-empty p {
  margin: 12px 0 0;
  color: var(--muted);
}

.information-detail-section {
  padding: 58px 0 76px;
  background: #f7f8fb;
}

.information-detail-article {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.information-detail-header {
  padding: clamp(30px, 5vw, 58px) clamp(26px, 6vw, 72px) clamp(24px, 4vw, 36px);
}

.information-detail-header h1 {
  max-width: 820px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.15;
  letter-spacing: -.035em;
}

.information-detail-hero {
  margin: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #e9edf4;
}

.information-detail-image {
  display: block;
  width: 100%;
  max-height: 540px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.information-detail-copy {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 56px) clamp(26px, 5vw, 48px) clamp(38px, 6vw, 64px);
}

.information-detail-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  margin-top: 18px;
}

.information-detail-meta {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 10px;
  margin: 0;
}

.information-detail-body {
  color: #3f4c5f;
  font-size: 16px;
  line-height: 1.9;
}

.information-detail-body p {
  margin: 0 0 24px;
}

.information-detail-body p:first-child {
  color: #26364d;
  font-size: 1.06em;
}

.information-content-image {
  margin: 30px 0;
}

.information-content-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(6, 26, 73, 0.12);
}

.information-recommendations {
  max-width: 1040px;
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.information-recommendation-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 17px;
}

.information-recommendation-heading span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.information-recommendation-heading h2 {
  margin: 5px 0 0;
  color: var(--navy);
  font-size: clamp(22px, 3vw, 29px);
}

.information-recommendation-heading > a {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.information-recommendation-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.information-recommendation-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  min-width: 0;
  min-height: 96px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(6, 26, 73, 0.07);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.information-recommendation-card:hover {
  border-color: rgba(12, 45, 107, 0.24);
  box-shadow: 0 11px 24px rgba(6, 26, 73, 0.12);
  transform: translateY(-2px);
}

.information-recommendation-image {
  display: block;
  overflow: hidden;
  background: #e9eef6;
}

.information-recommendation-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.information-recommendation-card:hover img {
  transform: scale(1.04);
}

.information-recommendation-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 12px;
}

.information-recommendation-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.information-recommendation-meta span {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.information-recommendation-copy h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 7px 0 0;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.information-recommendation-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.information-back-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.information-detail-breadcrumb {
  max-width: 900px;
  margin: 0 auto 18px;
  color: var(--muted);
}

.information-detail-breadcrumb a {
  color: var(--navy);
}

.information-detail-breadcrumb strong {
  color: var(--red);
}

.announcement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
}

.announcement-primary,
.announcement-notice {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow);
}

.announcement-status.pending {
  color: #996100;
  background: #fff4d6;
}

.announcement-primary h2,
.announcement-notice h2 {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

.announcement-primary p,
.announcement-notice p,
.announcement-notice li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.announcement-notice ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.announcement-notice li + li {
  margin-top: 8px;
}

.information-contact-button {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .announcement-grid {
    grid-template-columns: 1fr;
  }

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

  .information-recommendation-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 720px) {
  .information-hero {
    min-height: 390px;
    padding: 0;
  }

  .information-hero-content {
    padding-block: 50px;
  }

  .information-breadcrumb {
    margin-bottom: 33px;
    font-size: 11px;
  }

  .information-section {
    padding: 50px 0 58px;
  }

  .information-detail-section {
    padding: 38px 0 54px;
  }

  .information-detail-header h1 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .information-detail-copy {
    padding-inline: 22px;
  }

  .information-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }


  .information-recommendation-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .information-recommendation-list {
    grid-template-columns: 1fr;
  }

  .information-card {
    grid-template-columns: 126px minmax(0, 1fr);
  }

  .information-card > a:first-child {
    min-height: 176px;
  }

  .information-card-copy {
    padding: 14px;
  }

  .information-card h3 {
    font-size: 16px;
  }

  .information-card-summary {
    -webkit-line-clamp: 2;
  }

  .information-card .information-read-more {
    padding-top: 9px;
  }
}

/* Editorial detail proportions: a calmer headline and breathing room around
   the lead image keep the article readable on standard desktop screens. */
.information-detail-section{padding:46px 0 70px}
.information-detail-article{max-width:900px}
.information-detail-header{padding:34px 48px 22px}
.information-detail-header h1{max-width:760px;font-size:clamp(27px,3.35vw,41px);line-height:1.16;letter-spacing:-.028em}
.information-detail-hero{margin:0 28px;border:0;border-radius:16px}
.information-detail-image{max-height:470px;border-radius:16px}
.information-detail-copy{padding:30px 48px 52px}
.information-detail-body{font-size:15.5px;line-height:1.86}
.information-detail-body h2,.information-detail-body h3{margin:28px 0 12px;color:var(--navy);line-height:1.3}
.information-detail-body ul,.information-detail-body ol{margin:0 0 22px;padding-left:24px}
.information-detail-body blockquote{margin:22px 0;padding:14px 18px;border-left:3px solid #4d77b6;color:#53647e;background:#f5f8fc}
@media(max-width:720px){
  .information-detail-section{padding:34px 0 54px}
  .information-detail-header{padding:26px 22px 18px}
  .information-detail-header h1{font-size:clamp(25px,8vw,34px)}
  .information-detail-hero{margin:0 14px;border-radius:13px}
  .information-detail-image{border-radius:13px}
  .information-detail-copy{padding:26px 22px 42px}
}

@media (prefers-reduced-motion: reduce) {
  .information-card,
  .information-recommendation-card,
  .information-card img,
  .information-recommendation-card img {
    transition: none;
  }
}
/* Article attribution and discoverability metadata */
.information-author{display:inline-flex;align-items:center;gap:6px;color:#526173;font-size:.78rem;font-weight:700}
.information-author::before{content:"•";color:#d61f36}
.information-hashtags{display:flex;flex-wrap:wrap;gap:8px;margin-top:28px}
.information-hashtags span{display:inline-flex;padding:7px 11px;border-radius:999px;color:#1550a0;background:#edf4ff;font-size:.75rem;font-weight:700}

/* Final editorial scale: keep long Indonesian headlines compact and easy to
   scan without changing the established article card proportions. */
.information-detail-header h1{max-width:720px;font-size:clamp(24px,2.75vw,34px);line-height:1.2;letter-spacing:-.022em}
.information-detail-copy{max-width:none;padding:30px 28px 52px}
.information-detail-body{max-width:none;width:100%}
.information-detail-header h1{max-width:100%;font-size:clamp(22px,2.35vw,30px);line-height:1.22;letter-spacing:-.02em}
.information-detail-meta{gap:7px 10px;margin:0}
.information-detail-meta .information-label{
  min-height:24px;
  padding:4px 9px;
  font-size:.7rem;
  font-weight:800;
  line-height:1.2;
}
.information-detail-meta .information-date,
.information-detail-meta .information-author{
  color:#526173;
  font-size:.7rem!important;
  font-weight:500;
  line-height:1.4;
  letter-spacing:.01em;
}
.information-detail-meta .information-author{gap:7px}
.information-detail-meta .information-author::before{
  color:#d61f36;
  font-size:.82em;
  line-height:1;
}
@media(max-width:720px){
  .information-detail-header h1{max-width:100%;font-size:clamp(21px,6.5vw,28px);line-height:1.24}
  .information-detail-copy{padding:26px 14px 42px}
}

/* Compact share trigger and accessible popup */
.information-share-trigger{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  min-height:34px;
  flex:0 0 auto;
  margin:0;
  padding:7px 12px;
  border:1px solid #cad6e8;
  border-radius:9px;
  color:var(--navy);
  background:#f7faff;
  font:inherit;
  font-size:.7rem;
  font-weight:600;
  line-height:1;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.information-share-trigger svg{
  width:15px;
  height:15px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.information-share-trigger:hover,
.information-share-trigger:focus-visible{
  border-color:#9fb3d2;
  background:#fff;
  box-shadow:0 8px 20px rgba(6,26,73,.1);
  transform:translateY(-1px);
}
.information-share-trigger:focus-visible,
.information-share-close:focus-visible,
.information-share-button:focus-visible{
  outline:3px solid rgba(37,99,235,.2);
  outline-offset:2px;
}
.information-share[hidden]{display:none!important}
.information-share{
  position:fixed;
  inset:0;
  z-index:1100;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(2,12,33,.62);
  backdrop-filter:blur(4px);
}
.information-share-heading{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:6px;
  margin:0;
  padding:26px 60px 20px 26px;
  border-bottom:1px solid #e6ebf3;
}
.information-share-card{
  position:relative;
  z-index:1;
  width:min(100%,540px);
  max-height:calc(100vh - 48px);
  overflow:auto;
  border-radius:16px;
  background:#fff;
  box-shadow:0 24px 70px rgba(0,0,0,.26);
}
.information-share-eyebrow{
  color:var(--red);
  font-size:.66rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.information-share-heading h2{
  margin:0;
  color:var(--navy);
  font-size:1.08rem;
  font-weight:700;
}
.information-share-close{
  position:absolute;
  top:20px;
  right:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  padding:0;
  border:1px solid #dce3ed;
  border-radius:9px;
  color:#526173;
  background:#fff;
  cursor:pointer;
}
.information-share-close:hover{color:var(--navy);border-color:#b9c7dc}
.information-share-close svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round}
.information-share-heading,
.information-share-actions,
.information-share-status{width:100%;box-sizing:border-box}
.information-share-actions{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin:0;
  padding:22px 26px 8px;
}
.information-share-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:44px;
  padding:10px 12px;
  border:1px solid #dce3ed;
  border-radius:10px;
  color:#334155;
  background:#fff;
  font:inherit;
  font-size:.74rem;
  font-weight:700;
  line-height:1;
  text-decoration:none;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}
.information-share-button:last-child{grid-column:1 / -1}
.information-share-button svg{
  width:17px;
  height:17px;
  flex:0 0 17px;
  fill:currentColor;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.information-share-button img{
  display:block;
  width:21px;
  height:21px;
  flex:0 0 21px;
  object-fit:contain;
}
.information-share-button:hover{
  color:var(--navy);
  border-color:#b9c7dc;
  box-shadow:0 7px 18px rgba(6,26,73,.1);
  transform:translateY(-2px);
}
.information-share-facebook{color:#1877f2}
.information-share-instagram{color:#c13584}
.information-share-x{color:#111827}
.information-share-whatsapp{color:#159447}
.information-share-copy{color:#1550a0}
.information-share-status{
  min-height:1.25em;
  margin:0;
  padding:4px 26px 22px;
  color:#159447;
  font-size:.72rem;
  font-weight:600;
}
body.share-dialog-open{overflow:hidden}
@media(max-width:620px){
  .information-detail-toolbar{
    display:grid;
    grid-template-columns:1fr;
    align-items:start;
    gap:12px;
    margin-top:16px;
  }
  .information-share-trigger{justify-self:start}
}
@media(max-width:560px){
  .information-share{padding:16px}
  .information-share-card{max-height:calc(100vh - 32px)}
  .information-share-heading{padding:22px 56px 17px 20px}
  .information-share-actions{padding:18px 20px 6px;gap:8px}
  .information-share-status{padding:4px 20px 19px}
  .information-share-button{min-height:42px;padding-inline:8px}
}
