.blog-landing,
.blog-article-page {
  background: #f3f8fa;
}

.blog-hero {
  padding: 34px 0 58px;
  border-bottom: 1px solid #d7e6ec;
  background: linear-gradient(135deg, #e9f8fd 0%, #f7fbfc 62%, #eef6f8 100%);
}

.blog-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 64px;
  align-items: center;
}

.blog-kicker,
.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: #0789bc;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-hero h1,
.blog-article-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #1d3442;
  font-size: clamp(44px, 5.7vw, 76px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.blog-hero p,
.blog-article-hero__lead {
  max-width: 820px;
  margin: 22px 0 0;
  color: #526d7b;
  font-size: 19px;
  line-height: 1.65;
}

.blog-hero__panel {
  padding: 30px;
  color: #fff;
  background: #1d3442;
  border-radius: 24px;
  box-shadow: 0 24px 55px rgba(26, 55, 71, .15);
}

.blog-hero__panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 26px;
}

.blog-hero__panel p {
  margin: 0 0 22px;
  color: #c7d6dd;
  font-size: 15px;
}

.blog-hero__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-hero__topics a {
  padding: 10px 13px;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.blog-hero__topics a[aria-current="page"] {
  color: #173543;
  background: #fff;
  border-color: #fff;
}

.blog-catalog {
  padding: 70px 0 96px;
}

.blog-section + .blog-section {
  margin-top: 84px;
}

.blog-section {
  scroll-margin-top: 120px;
}

.blog-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.blog-section__head span {
  color: #0789bc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-section__head h2 {
  margin: 5px 0 0;
  color: #1d3442;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
}

.blog-section__head > strong {
  padding: 9px 13px;
  color: #607986;
  background: #fff;
  border: 1px solid #d8e6eb;
  border-radius: 999px;
  font-size: 12px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8e6eb;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(25, 58, 75, .05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: #9edcf0;
  box-shadow: 0 22px 44px rgba(25, 58, 75, .1);
}

.blog-card__image {
  display: block;
  height: 220px;
  overflow: hidden;
  background: #dfeef3;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.035);
}

.blog-card__body {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 24px;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: #718894;
  font-size: 12px;
  font-weight: 700;
}

.blog-card__meta span {
  color: #0789bc;
}

.blog-card h3 {
  margin: 14px 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.blog-card h3 a {
  color: #1d3442;
}

.blog-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 22px;
  color: #5c7481;
  font-size: 14px;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: #0789bc;
  font-weight: 800;
}

.blog-pagination {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) auto minmax(110px, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 54px;
}

.blog-pagination__pages {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.blog-pagination a {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: #31556a;
  background: #fff;
  border: 1px solid #d8e6eb;
  border-radius: 11px;
  font-weight: 800;
}

.blog-pagination__edge {
  gap: 9px;
  white-space: nowrap;
}

.blog-pagination__edge[rel="prev"] {
  grid-column: 1;
  justify-self: start;
}

.blog-pagination__edge[rel="next"] {
  grid-column: 3;
}

.blog-pagination a[aria-current="page"] {
  color: #fff;
  background: #078fca;
  border-color: #078fca;
}

.blog-pagination__edge:last-child {
  justify-self: end;
}

.blog-article-hero {
  padding: 32px 0 58px;
  border-bottom: 1px solid #d7e6ec;
  background: #eaf8fc;
}

.blog-hero .crumbs,
.blog-article-hero .crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.blog-hero .crumbs > * + *::before,
.blog-article-hero .crumbs > * + *::before {
  content: "/";
  margin-right: 8px;
  color: #9aadb7;
  font-weight: 400;
}

.blog-hero .crumbs > span,
.blog-article-hero .crumbs > span {
  color: #718894;
}

.blog-article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 58px;
  align-items: center;
}

.blog-article-hero__media {
  height: 430px;
  overflow: hidden;
  background: #d9eaf0;
  border-radius: 24px;
  box-shadow: 0 24px 55px rgba(26, 55, 71, .13);
}

.blog-article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  color: #67808c;
  font-size: 13px;
  font-weight: 700;
}

.blog-article-meta span {
  color: #0789bc;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 64px;
  align-items: start;
  padding-top: 64px;
  padding-bottom: 84px;
}

.blog-article-content {
  min-width: 0;
  padding: 42px;
  background: #fff;
  border: 1px solid #d8e6eb;
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(25, 58, 75, .06);
}

.blog-article-content > :first-child {
  margin-top: 0;
}

.blog-article-content h2,
.blog-article-content h3 {
  scroll-margin-top: 0;
  color: #1d3442;
  line-height: 1.2;
}

.blog-article-content h2 {
  margin: 48px 0 18px;
  font-size: clamp(28px, 3.4vw, 40px);
}

.blog-article-content h3 {
  margin: 34px 0 14px;
  font-size: 25px;
}

.blog-article-content p,
.blog-article-content li {
  color: #405d6b;
  font-size: 17px;
  line-height: 1.78;
}

.blog-article-content p {
  margin: 0 0 20px;
}

.blog-article-content ul,
.blog-article-content ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 26px;
  padding-left: 26px;
}

.blog-article-content a {
  color: #087eac;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.blog-article-content figure {
  margin: 34px 0;
}

.blog-article-content figure img,
.blog-article-content > img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 18px;
}

.blog-article-content figcaption {
  margin-top: 9px;
  color: #718894;
  font-size: 13px;
  text-align: center;
}

.blog-article-content blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  color: #355462;
  background: #eff9fc;
  border-left: 4px solid #15a9df;
  border-radius: 0 14px 14px 0;
}

.article-medical-note {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 32px;
  padding: 18px;
  color: #456371;
  background: #eef9fd;
  border: 1px solid #d0eaf3;
  border-radius: 15px;
}

.article-medical-note i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #078fca;
  border-radius: 12px;
}

.article-medical-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.article-medical-note .urgent-phone {
  display: inline;
  color: #087eac;
  font-size: inherit;
  font-weight: 800;
  line-height: inherit;
  white-space: nowrap;
}

.blog-article-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

.article-side-card {
  padding: 22px;
  background: #fff;
  border: 1px solid #d8e6eb;
  border-radius: 17px;
}

.article-side-card h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

.article-side-card nav,
.article-side-card__links {
  display: grid;
  gap: 10px;
}

.article-side-card nav a,
.article-side-card__links a {
  color: #526f7c;
  font-size: 14px;
  line-height: 1.4;
}

.article-side-card--call {
  color: #fff;
  background: #1d3442;
  border: 0;
}

.article-side-card--call p {
  margin: 0 0 16px;
  color: #c7d6dd;
  font-size: 14px;
  line-height: 1.5;
}

.article-side-card--call > a {
  display: block;
  color: #75d2f5;
  font-size: 21px;
  font-weight: 800;
}

.article-related {
  padding: 70px 0 96px;
  background: #eaf3f6;
}

.article-related__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.article-related__head h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
}

.article-related__head a {
  color: #0789bc;
  font-weight: 800;
}

.article-related .blog-card__body {
  min-height: 270px;
}

@media (max-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-article-layout { grid-template-columns: minmax(0, 1fr) 270px; gap: 34px; }
}

@media (max-width: 900px) {
  .blog-hero__grid,
  .blog-article-hero__grid,
  .blog-article-layout { grid-template-columns: 1fr; }
  .blog-article-sidebar { position: static; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .blog-hero,
  .blog-article-hero { padding: 24px 0 40px; }
  .blog-hero__grid,
  .blog-article-hero__grid { gap: 32px; }
  .blog-hero h1,
  .blog-article-hero h1 { font-size: clamp(35px, 10.5vw, 48px); overflow-wrap: anywhere; }
  .blog-hero__panel { padding: 22px; }
  .blog-catalog { padding: 48px 0 72px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-section__head { align-items: flex-start; flex-direction: column; }
  .blog-card__image { height: 210px; }
  .blog-card__body { min-height: 0; }
  .blog-article-hero__media { height: 260px; }
  .blog-article-layout { padding-top: 36px; }
  .blog-article-content { padding: 24px 19px; border-radius: 16px; }
  .blog-article-content p,
  .blog-article-content li { font-size: 16px; line-height: 1.7; }
  .blog-article-sidebar { grid-template-columns: 1fr; }
  .article-related__head { align-items: flex-start; flex-direction: column; }
  .blog-pagination { grid-template-columns: 1fr 1fr; }
  .blog-pagination__pages { grid-column: 1 / -1; grid-row: 1; flex-wrap: wrap; }
  .blog-pagination__edge { grid-row: 2; }
  .blog-pagination__edge[rel="prev"] { grid-column: 1; }
  .blog-pagination__edge[rel="next"] { grid-column: 2; }
}
