.blog-hero {
    background: var(--navy);
    color: var(--white);
    padding: 56px 0 60px;
}

.container-narrow {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

td {
    padding: 16px 20px;
    color: var(--text-secondary);
    font-size: 15px;
    border: 1px solid var(--border-light);
}
th {
    text-align: left;
    font-weight: 500;
    color: var(--navy);
    padding: 16px 20px;
    width: 38%;
    vertical-align: top;
    font-size: 15px;
    background: var(--sky-soft);
}
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    overflow: hidden;
}
tr {
    border-bottom: 1px solid var(--border-light);
}
.blog-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.66);
  font-size: 13px;
}
.blog-breadcrumbs a { color: var(--sky); }
.blog-breadcrumbs a:hover { text-decoration: underline; }
.blog-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
  gap: 70px;
  align-items: end;
}
.blog-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--sky);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
}
.blog-hero h1, .article-header h1 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.blog-hero__grid > p {
  max-width: 520px;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.75;
}
.blog-listing {
    padding: 72px 0 96px;
    background: var(--white);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.blog-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform .3s ease, box-shadow .3s ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sky-soft);
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.blog-card:hover .blog-card__image img { transform: scale(1.045); }
.blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px 25px 28px;
}
.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 13px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .055em;
}
.blog-card h2,
.blog-card h3 {
  margin: 0 0 13px;
  color: var(--navy-deep);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.28;
}
.blog-card h3 { font-size: 19px; }
.blog-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 22px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.blog-card__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}
.blog-card__link span { transition: transform .25s ease; }
.blog-card:hover .blog-card__link span { transform: translateX(4px); }
.blog-empty {
  padding: 40px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
}
.blog-empty h2 { margin-bottom: 10px; color: var(--navy-deep); }
.blog-empty p { color: var(--text-secondary); }
.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 48px;
}
.blog-pagination a,
.blog-pagination span {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  font-weight: 500;
}

.blog-pagination span { border-color: var(--navy); background: var(--navy); color: var(--white); }
.blog-pagination a:hover{
    border-color: var(--navy);
}
.article-header {
    background: var(--navy);
    color: var(--white);
    padding: 56px 0 60px;
}
.article-breadcrumbs {
    margin-bottom: 0;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 21px;
  color: var(--sky);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.article-header h1 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.article-lead {
    max-width: 100%;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .8);
    font-size: clamp(16px, 2vw, 18px);
}
.article-media-wrap { margin-top: -1px; }
.article-media {
    overflow: hidden;
    max-height: 650px;
    margin: 0;
    border-radius: 20px;
    background: var(--bg-soft);
    margin-top: 10px;
}
.article-media img { width: 100%; max-height: 650px; object-fit: cover; }
.article-section { padding: 70px 0 88px; }
.article-content {
  color: var(--text-primary);
  font-size: 17px;
  line-height: 1.82;
}
.article-content > *:first-child { margin-top: 0; }
.article-content h2,
.article-content h3 {
  color: var(--navy-deep);
  line-height: 1.25;
}
.article-content h2 {
    margin: 48px 0 20px;
}
.article-content h3 { margin: 32px 0 14px; font-size: 22px; font-weight: 600; }
.article-content p { margin: 0 0 21px; }
.article-content ul,
.article-content ol { margin: 0 0 25px 24px; }
.article-content li { margin: 9px 0; padding-left: 5px; }
.article-content strong { font-weight: 600; }
.article-content a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.article-content blockquote {
  margin: 34px 0;
  padding: 23px 26px;
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--sky-soft);
  color: var(--navy-deep);
  font-size: 19px;
}
.article-author {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
}
.article-author strong { color: var(--navy); font-weight: 600; }
.related-articles { padding: 76px 0 92px; background: var(--bg-soft); }
.related-articles__head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 36px;
}
.related-articles__head h2 {
    color: var(--navy-deep);
}
.related-articles__head a { color: var(--navy); font-weight: 600; }

@media (max-width: 980px) {
  .blog-hero__grid { grid-template-columns: 1fr; gap: 26px; }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	
	table {
    display: block;
    overflow-x: auto;
}
}
@media (max-width: 640px) {
  .blog-hero, .article-header { padding: 46px 0 52px; }
  .blog-breadcrumbs { margin-bottom: 25px; }
  .blog-listing, .article-section, .related-articles { padding: 48px 0 64px; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-card__body { padding: 21px 20px 24px; }
  .article-content { font-size: 16px; line-height: 1.75; }
  .article-author, .related-articles__head { align-items: flex-start; flex-direction: column; }
}


/* Article rating and sharing */
.article-engagement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.article-rating,
.article-share {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(12, 35, 64, .06);
}
.article-tools__heading > span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.article-tools__heading h2 {
    margin: 0;
    color: var(--navy-deep);
    font-weight: 500;
}
.article-rating__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin-top: 24px;
  color: var(--text-muted);
}
.article-rating__summary strong {
  color: var(--navy-deep);
  font-size: 34px;
  line-height: 1;
}
.article-rating__summary > span {
  font-size: 15px;
  font-weight: 600;
}
.article-rating__summary small {
  width: 100%;
  margin-top: 2px;
  font-size: 13px;
}
.article-rating__stars {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
}
.article-rating__star {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d5dbe3;
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
  transition: color .18s ease, transform .18s ease;
}
.article-rating__star:hover,
.article-rating__star:focus-visible {
  outline: none;
  transform: translateY(-2px) scale(1.05);
}
.article-rating__star.is-selected { color: #f2b53d; }
.article-rating__star:disabled { cursor: default; }
.article-rating__star:disabled:hover { transform: none; }
.article-rating__message {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}
.article-share__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.article-share__button {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--navy-deep);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}
.article-share__button:hover,
.article-share__button:focus-visible,
.article-share__button.is-copied {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  outline: none;
  transform: translateY(-1px);
}
.article-share__button svg {
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  fill: currentColor;
}
.article-share__button:last-child {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .article-engagement { grid-template-columns: 1fr; margin-top: 42px; }
  .article-rating,
  .article-share { padding: 24px 20px; }
}

@media (max-width: 420px) {
  .article-share__list { grid-template-columns: 1fr; }
  .article-share__button:last-child { grid-column: auto; }
  .article-rating__stars { gap: 3px; }
  .article-rating__star { width: 38px; height: 38px; font-size: 34px; }
}