:root{
  --bg:#eef4fb;
  --text:#0b1f33;
  --muted:#5a728a;
  --card:#ffffff;
  --line:rgba(10,30,50,.10);
  --blue:#0c63b6;
  --blue-2:#135ea7;
  --shadow: 0 10px 28px rgba(0,0,0,.10);
  --radius:18px;
  --radius-lg:22px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}

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

.page{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.container{
  width:min(980px, 92vw);
  margin:0 auto;
}

/* ===== Header (matches your main page style) ===== */
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(238,244,251,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(10,30,50,.06);
}

.site-header .bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:12px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.4px;
}

.brand small{
  font-weight:700;
  opacity:.7;
}

.header-right{
  display:flex;
  align-items:center;
  gap:12px;
}

.lang{
  display:flex;
  gap:8px;
  align-items:center;
}

.lang button{
  border:1px solid rgba(10,30,50,.12);
  background:#fff;
  color:#0b1f33;
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
  cursor:pointer;
}

.lang button.is-active{
  background:#111;
  border-color:#111;
  color:#fff;
}

.menu-btn{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(10,30,50,.12);
  background:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  font-size:18px;
}

/* ===== News page layout ===== */
.main{
  flex:1;
  padding:18px 0 28px;
}

.page-title{
  font-size:34px;
  line-height:1.05;
  margin:12px 0 14px;
  font-weight:900;
}

.article-card{
  background:var(--card);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid rgba(10,30,50,.06);
}

.hero{
  position:relative;
  overflow:hidden;
  aspect-ratio: 16 / 9;
  background:#dbe7f6;
}

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

.hero-overlay{
  position:absolute;
  inset:auto 0 0 0;
  padding:14px 16px;
  color:#fff;
  background:linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0));
  font-weight:800;
  text-shadow: 0 10px 22px rgba(0,0,0,.45);
}

.meta-strip{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px 16px;
  border-top:1px solid rgba(255,255,255,.18);
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.75);
}

.meta-strip .label{
  font-weight:800;
  color:#223a52;
}

.meta-strip .date{
  font-weight:800;
  color:#223a52;
}

.article-body{
  padding:16px 16px 6px;
}

.h1{
  font-size:22px;
  font-weight:900;
  margin:4px 0 10px;
}

.p{
  color:#243b55;
  line-height:1.75;
  margin:0 0 14px;
  font-size:15.5px;
}

.hr{
  height:1px;
  background:var(--line);
  margin:14px 0;
}

.section-title{
  font-size:16px;
  font-weight:900;
  margin:6px 0 10px;
}

/* ===== 3-image block (inspo like your “image 3”) ===== */
.photo-grid{
  padding:10px 16px 16px;
}

.photo-grid .grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}

.photo{
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(10,30,50,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  background:#dbe7f6;
}

.photo img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  aspect-ratio: 16 / 9;
}

/* ===== Read more section ===== */
.read-more{
  margin-top:18px;
  padding:0 2px;
}

.read-more h3{
  margin:0 0 10px;
  font-size:16px;
  font-weight:900;
  color:#19324a;
}

.read-more .cards{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}

.read-card{
  background:#fff;
  border:1px solid rgba(10,30,50,.08);
  border-radius:18px;
  padding:14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
}

.read-card .t{
  font-weight:900;
  font-size:14.5px;
  margin:0 0 6px;
}

.read-card .d{
  font-weight:800;
  color:var(--muted);
  font-size:12.5px;
}

.read-card .arrow{
  font-weight:900;
  color:var(--blue);
  font-size:18px;
}

/* ===== Footer (accordion exactly like your main page) ===== */
.footer{
  background:linear-gradient(180deg, var(--blue), var(--blue-2));
  color:#fff;
  padding:18px 0 26px;
}

.footer .inner{
  padding:0;
}

.footer-acc{
  border-top:1px solid rgba(255,255,255,.20);
}

.acc-item{
  border-bottom:1px solid rgba(255,255,255,.20);
}

.acc-btn{
  width:100%;
  background:transparent;
  border:none;
  color:#fff;
  padding:16px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:900;
  font-size:16px;
  cursor:pointer;
}

.acc-panel{
  padding:0 0 14px;
  color:rgba(255,255,255,.92);
  line-height:1.65;
  font-size:14px;
}

.acc-panel a{
  text-decoration:underline;
}

.footer-brand{
  padding-top:14px;
  font-weight:900;
  letter-spacing:.5px;
  opacity:.95;
}

@media (min-width: 820px){
  .article-body{ padding:18px 18px 8px; }
  .photo-grid{ padding:10px 18px 18px; }
  .meta-strip{ padding:12px 18px; }
  .read-more .cards{ grid-template-columns: 1fr 1fr; }
}
