body.page-id-3620 .entry-title,
body.page-id-3620 h1.entry-title { display: none !important; }

/* --- HERO --- */
.blog-hero{
  position: relative;
  z-index: 0;
  padding: 77px 0 100px;
}
.blog-hero::before{
  content:"";
  position:absolute;
  top:0; bottom:0;
  left:50%; right:50%;
  margin-left:-50vw; margin-right:-50vw;
  width:100vw;
  background:#F2F7FA;
  z-index:-1;
}
.site, .site-content, .entry-content { overflow: visible; }

.blog-hero__inner{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:40px;
  align-items: stretch;
  grid-template-areas: "content image";
}

.blog-hero__content{
  grid-area: content;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-hero__image{ grid-area: image; }

.blog-hero__title{
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size:50px;
  font-weight:400;
  color:#0E161B;
  margin:0;
  position:relative;
}
.blog-hero__title::after{
  content:"";
  display:block;
  width:140px; height:1px;
  background:#9AA7B2;
  margin:32px 0;
}
.blog-hero__subtitle{
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size:16px;
  font-weight:300;
  max-width:560px;
  margin:0 0 32px;
}
.blog-hero__btn{ display:inline-block; }
.blog-hero__image img{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
  border-radius:8px;
}

/* ===== Blog button style ===== */
:root{
  --brand-teal:#1BB6AB;
  --btn-rad:24px;
  --btn-py:12px;
  --btn-px:28px;
  --btn-fs:14px;
  --btn-lh:20px;
}
.blog-hero .blog-hero__btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:var(--btn-py) var(--btn-px);
  border:1px solid var(--brand-teal);
  border-radius:var(--btn-rad);
  color:var(--brand-teal);
  background:transparent;
  width: 127px;
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size:var(--btn-fs); line-height:var(--btn-lh);
  font-weight:500; text-decoration:none;
  transition:background-color .2s,color .2s,border-color .2s,box-shadow .2s;
}
.blog-hero .blog-hero__btn:hover,
.blog-hero .blog-hero__btn:focus-visible{
  background:var(--brand-teal);
  color:#fff;
  outline:none;
}


/* =========================================================
   BLOG GRID
   ========================================================= */

.blog-grid .blog-grid__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 32px;
  margin-bottom: 100px;
  align-items: start;
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 20px 40px -15px rgba(10, 67, 63, 0.14);
  overflow: hidden;
}

.blog-card__thumb {
  position: relative;
  display: block;
}
.blog-card__thumb img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Research Area / Category */
.blog-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid #E6EDF3;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  color: #1BB6AB;
  white-space: nowrap;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  padding: 16px 20px 24px;
}

.blog-card__title {
  margin: 0 0 8px 0;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  color: #000000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog-card__title a { color: inherit; text-decoration: none; }

.blog-card__excerpt {
  margin: 0 0 16px 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #687A86;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blog-card__footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.blog-card__date {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #687A86;
  white-space: nowrap;
}

/* brand color */
:root { --brand-green: #1BB6AB; }

/* ---- Read More Button ---- */
.blog-card__more{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 24px;
  border-radius:24px;
  border:1px solid var(--brand-green);
  color:var(--brand-green);
  background:transparent;
  text-decoration:none;
  font-weight:500;
  font-size:14px;
  line-height:1;
  white-space:nowrap;
  transition:background-color .2s ease,color .2s ease,
             box-shadow .2s ease,transform .12s ease,border-color .2s ease;
}

/* ---- Hero Button ---- */
.blog-hero__btn{
  display:inline-flex;
  padding:12px 24px;
  line-height:1;
  border-radius:26px;
  border:1px solid var(--brand-green);
  color:var(--brand-green);
  background:transparent;
  text-decoration:none;
  font-weight:600;
  transition:background-color .2s ease,color .2s ease,
             box-shadow .2s ease,transform .12s ease,border-color .2s ease;
}

.blog-hero__btn:hover,
.blog-card__more:hover{
  background:var(--brand-green);
  color:#fff;
  border-color:var(--brand-green);
  box-shadow:0 12px 28px rgba(27,182,171,.35);
  transform:translateY(-1px);
}

/* focus-visible (a11y) */
.blog-hero__btn:focus-visible,
.blog-card__more:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px rgba(27,182,171,.35),
             0 12px 28px rgba(27,182,171,.35);
}

/* active */
.blog-hero__btn:active,
.blog-card__more:active{
  transform:translateY(0);
  box-shadow:0 8px 18px rgba(27,182,171,.28);
}

.blog-grid__empty{
  margin:8px 0;
  color:#687A86;
  font-size:16px;
}


/* ============ BLOG FILTERS ============ */

.blog-filters { margin:24px 0 32px; }

.bf__row{
  display:grid;
  grid-template-columns: 1fr 240px 240px;
  gap:24px;
  margin-top: 50px;
  align-items:end;
}

.bf__label{
  display:block;
  margin:0 0 8px;
  font-family:Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:400;
  font-size:16px;
  line-height:24px;
  letter-spacing:-0.01em;
  color:#1B1C20;
}

.bf__control { position:relative; }

.bf__control input[type="search"],
.bf__control select{
  width:100%;
  height:48px;
  border:1px solid #D9E3EA;
  border-radius:8px;
  background:#fff;
  padding:0 16px;
  font-family:Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:300;
  font-size:16px;
  line-height:48px;
  letter-spacing:-0.01em;
  color:#1B1C20;
  outline:none;
}

.bf__control input[type="search"]::placeholder{
  color:#687A86;
  opacity:1;
  font-weight:300;
  letter-spacing:-0.01em;
}

.bf__control--search .bf__icon{
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  color: #687A86;
}

.bf__control--search .bf__icon svg{
  display: block;
  width: 100%;
  height: 100%;
}

.bf__control--search input[type="search"]{ padding-left:44px; }

.bf__control select{
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;

  width:100%;
  height:48px;
  padding-right:44px;
  background-repeat:no-repeat;
  background-size:20px 20px;
  background-position:right 16px center;

  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M4 8L12 16L20 8' stroke='%230E161B' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.bf__control select.use-current-color{
  color:#1B1C20;
  background-image:url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M4 8L12 16L20 8' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'/></svg>\");
}

select::-ms-expand{ display:none; }


.bf__item--actions{ grid-column:1 / -1; }
.bf__actions{ display:flex; gap:16px; margin-top:4px; }

.bf__apply{
  display:inline-flex; align-items:center; justify-content:center;
  height:48px; padding:0 24px; border-radius:24px;
  border:1px solid #1BB6AB; color:#1BB6AB; background:transparent;
  font-weight:600; text-decoration:none; white-space:nowrap;
  transition:transform .08s ease, box-shadow .08s ease, background-color .12s ease, color .12s ease;
}
.bf__apply:hover{
  background:#1BB6AB; color:#fff; transform:translateY(-1px);
  box-shadow:0 4px 14px rgba(27,182,171,.22);
}
.bf__reset{ color:#1BB6AB; font-weight:600; text-decoration:none; line-height:48px; }

.bf__item--actions{ display:none !important; }


/* ===== BREAKPOINTS ===== */

/* ≤1200px */
@media (max-width:1200px){
  .bf__row{ grid-template-columns:1fr 200px 200px; }
}

/* ≤1024px */
@media (max-width:1024px){
  .blog-grid .blog-grid__list{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .blog-card__thumb img{ height:260px; }
}

/* ≤991px */
@media (max-width:991px){
  .blog-hero{ padding-top:56px; padding-bottom:32px; }

  .blog-hero__inner{
    grid-template-columns:1fr;
    gap:16px;
    margin-bottom:30px;
    align-items:start;
    grid-template-areas:
      "title"
      "image"
      "subtitle"
      "cta";
  }

  .blog-hero__content{ display:contents; }
  .blog-hero__title{ grid-area:title; }
  .blog-hero__image{ grid-area:image; }
  .blog-hero__subtitle{ grid-area:subtitle; margin-bottom:16px; }
  .blog-hero__btn{ grid-area:cta; }
  .blog-hero .container{ margin-bottom:0; padding-bottom:0; }
  .blog-hero__content > :last-child{ margin-bottom:0; }
  .blog-hero__image,
  .blog-hero__image figure,
  .blog-hero__image img{ display:block; margin:0; }
}

/* ≤900px */
@media (max-width:900px){
  .bf__row{ grid-template-columns:1fr 1fr; }
  .bf__item--search{ grid-column:1 / -1; }
}

/* ≤640px */
@media (max-width:640px){
  .blog-grid .blog-grid__list{ grid-template-columns:1fr; }
  .blog-card__thumb img{ height:220px; }
  .blog-hero__title{ font-size:36px; }
  .blog-hero__title::after{ display:none; }
  .blog-card__title{ font-size:20px; }
  .blog-hero .blog-hero__btn{ width:127px; }
  .blog-hero__subtitle{ margin:0; }
  .bf__row{ grid-template-columns:1fr; gap:16px; }
  .bf__item--type, .bf__item--ra, .bf__item--order{ grid-column:1 / -1; }
  .bf__control input[type="search"], .bf__control select{ font-size:14px; }
  .blog-grid{ margin-bottom:64px; }
}