:root{
  --blue: #0e2e63;
  --blue2:#0b2550;
  --bg:#ffffff;
  --muted:#6b7280;
  --card:#f3f4f6;
  --radius: 18px;
  --max: 1100px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:#111827;
  background: var(--bg);
}

.container{
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

/* NAV (same system) */
.brand{ display:flex; align-items:center; gap:12px; }
.brand__img{ height:54px; width:300px; }

.nav{
  background:#fff;
  border-bottom:1px solid #e5e7eb;
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top: 15px;
  padding-bottom: 7px;
}
.nav__menu{
  display:flex;
  gap:10px;
  margin-left:30px;
}
.nav__menu a{
  text-decoration:none;
  color:#111;
  font-weight:600;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav__menu a:hover{ color: var(--blue); }
.nav__menu a:not(:last-child)::after{
  content:"|";
  margin-left:10px;
  margin-right:4px;
  color:black;
}

/* PAGE BAR */
.pagebar{
  background: var(--blue);
  color:#fff;
  padding: 22px 0;
}
.pagebar__inner{
  text-align:center;
}
.pagebar h1{
  margin:0;
  font-size: 23px;
  font-weight: 700;
}
.pagebar p{
  margin:4px 0 0;
  font-size: 16px;
  opacity: .9;
  font-weight: 600;
}

/* BLOG AREA */
.blog{
  padding: 28px 0 80px;
}

/* light background panel like screenshot */
.blog__panel{
  background:#eef3f8;
  padding: 26px;
  border-radius: 10px;
}

/* grid */
.blog__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* clickable post card */
.post{
  display:block;
  text-decoration:none;
  color:#111827;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius: 10px;
  overflow:hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.post:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.post__img{
  width:100%;
  height: 165px;
  object-fit: cover;
  display:block;
}

.post__body{
  padding: 14px 14px 16px;
}

.post__cat{
  font-size: 10px;
  font-weight: 700;
  color: #2563eb; /* blue label like screenshot */
  margin-bottom: 8px;
}

.post__title{
  margin:0 0 10px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.post__meta{
  font-size: 10px;
  color: #2563eb;
  font-weight: 700;
  margin-bottom: 10px;
}

.post__excerpt{
  margin:0;
  font-size: 11px;
  line-height: 1.55;
  color: #4b5563;
}

/* FOOTER (same system) */
.footer{
  background: var(--blue);
  color: #fff;
  padding: 40px 0 0;
}
.footer__grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 45px;
}
.footer__title{
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
}
.footer__text{
  margin: 0;
  max-width: 280px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}
.footer__col{
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.footer__link{
  text-decoration:none;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s ease;
}
.footer__link:hover{ color:#fff; }

.footer__bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
}
.footer__bottom-inner{
  display:flex;
  justify-content:center;
  text-align:center;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* responsive */
@media (max-width: 980px){
  .blog__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px){
  .blog__grid{ grid-template-columns: 1fr; }
  .nav__menu{ flex-wrap: wrap; justify-content:flex-end; }
  .blog__panel{ padding: 18px; }
}