:root{
  --mk-gap-between-blocks:30px;
}

/* Section paddings consistent with Media Hub page */
.et-generic-cat-archive.et-news-archive.et-news-section{
  margin-top:0;
  padding-top:clamp(24px,3.5vw,48px);
  padding-bottom:clamp(60px,7vw,120px);
}
@media (max-width:640px){
  .et-generic-cat-archive.et-news-archive.et-news-section{
    padding-top:clamp(92px,24vw,128px);
    padding-bottom:clamp(70px,16vw,120px);
  }
}

/* Breadcrumbs (reuse site styles/classes) */
.et-generic-cat-archive.et-news-archive .et-breadcrumbs{
  margin:0 0 var(--mk-gap-between-blocks);
  position:relative;
  padding-bottom:10px;
}
.et-generic-cat-archive.et-news-archive .et-breadcrumbs a{
  font-size:16px;color:#75787B;text-decoration:none;font-weight:400;transition:color .18s;
}
.et-generic-cat-archive.et-news-archive .et-breadcrumbs a:hover{color:#3459AF;}
.et-generic-cat-archive.et-news-archive .et-breadcrumbs .current,
.et-generic-cat-archive.et-news-archive .et-breadcrumbs span:last-child{
  font-size:16px;color:#3C3C3C;font-weight:400;
}
.et-generic-cat-archive.et-news-archive .et-breadcrumbs::after{
  content:"";position:absolute;left:0;bottom:0;width:140px;height:1px;
  background:linear-gradient(90deg,#D8DDE3 0%,#E6E9EE 55%,rgba(230,233,238,0) 100%);border-radius:1px;
}

/* Title */
.et-cat-archive-head{margin:0;}
.et-cat-archive-title{
  margin:0;font-size:38px;line-height:1.05;font-weight:600;color:#222;
}
@media (max-width:640px){.et-cat-archive-title{font-size:32px;}}

/* Lead paragraph under title */
.et-mediakit-lead{
  margin:10px 0 0;
  font-size:16px;
  line-height:1.55;
  color:#4B4F55;
  max-width:880px;
}

/* Top grid (same layout as media-hub, renamed classes) */
.et-mk-top{
  display:grid;
  grid-template-columns:1fr auto;
  grid-template-areas:
    "crumb crumb"
    "head  logo";
  column-gap:32px;
  row-gap:0;
  position:relative;
  padding-bottom:var(--mk-gap-between-blocks);
}

/* Bottom border like Media Hub (gradient divider) */
.et-mk-top::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:linear-gradient(90deg,#D8DDE3 0%,#E6E9EE 55%,rgba(230,233,238,0) 100%);
  border-radius:1px;
}

.et-mk-top .et-breadcrumbs{grid-area:crumb;}
.et-mk-top .et-cat-archive-head{grid-area:head;align-self:center;}
.et-mk-top .et-mk-logo-wrap{
  grid-area:logo;
  align-self:center;
  width:115px;
  max-width:24vw;
  pointer-events:none;
}
.et-mk-top .et-mk-logo-wrap img{width:100%;height:auto;display:block;}

/* Mobile alignment identical to media-hub */
@media (max-width:640px){
  .et-mk-top{
    grid-template-areas:
      "crumb crumb"
      "title logo"
      "lead lead"
      "tagline tagline";
    grid-template-columns:1fr auto;
    row-gap:8px;
  }
  .et-mk-top .et-breadcrumbs{
    margin:0 0 var(--mk-gap-between-blocks);
  }
  .et-mk-top .et-cat-archive-head{display:contents;}
  .et-mk-top .et-cat-archive-title{
    grid-area:title;margin:0;text-align:left;align-self:center;
  }
  .et-mk-top .et-mediakit-lead{
    grid-area:lead;margin:6px 0 0;text-align:left;
  }
  .et-mk-top .et-mediakit-tagline{
    grid-area:tagline;margin:6px 0 0;text-align:left;
  }
  .et-mk-top .et-mk-logo-wrap{
    grid-area:logo;width:90px;align-self:center;justify-self:end;margin:0;
  }
}

/* Optional tagline */
.et-mediakit-tagline{
  margin:14px 0 0;
  font-size:15px;
  line-height:1.5;
  color:#333;
  max-width:880px;
}
.et-mediakit-tagline p{margin:0;}

/* Content spacing */
.et-mediakit-content{
  margin-top:clamp(26px,3vw,40px);
}