/**
 * @file
 * Styles for the Blog content type.
 * Based on the standalone design HTML (Blog Article.html).
 */
/**
 * @file
 * Shared LESS variables — imported by general.less and component files.
 *
 * Breakpoint variables used in @media queries across the theme.
 */
/**
 * @file
 * Layout mixins — shared across content types.
 */
/* Full-bleed: break out of parent container to fill viewport width.
   Uses margin-left: calc(50% - 50vw) — the percentage resolves against the
   direct parent's width, cancelling out any centering offset, so the element
   always aligns with the viewport's left edge regardless of nesting depth. */
/**
 * Shared breadcrumb mixin.
 * Used by solutions.less and blog.less.
 */
/* =========================================================================
    Full-bleed: break out of Bootstrap .container parent
    overflow-x already handled by general.less
    ========================================================================= */
.node--type-blog {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
/* =========================================================================
   Container
   ========================================================================= */
.node--type-blog .blog .container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 32px;
}
/* =========================================================================
   Avatar (initials)
   ========================================================================= */
.node--type-blog .blog-ava {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a4565, #0d5a82);
  border: 2px solid rgba(224, 144, 48, 0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  flex: none;
}
/* Avatar with image — hides fallback initials, shows photo */
.node--type-blog .blog-ava--img {
  font-size: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* =========================================================================
   Tags
   ========================================================================= */
.node--type-blog .blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #f3c993;
  border: 1px solid rgba(224, 144, 48, 0.5);
  background: rgba(224, 144, 48, 0.12);
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.12s;
}
.node--type-blog .blog-tag:hover {
  background: rgba(224, 144, 48, 0.22);
}
.node--type-blog .blog-tag--light {
  color: var(--al-orange-700);
  border-color: rgba(224, 144, 48, 0.45);
  background: #fff6ec;
}
.node--type-blog .blog-tag--light:hover {
  background: #ffeed8;
}
/* =========================================================================
   Breadcrumb (scoped to blog al-hero — matches solution breadcrumb)
   ========================================================================= */
.node--type-blog .al-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}
.node--type-blog .al-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--dur-1) var(--ease-out);
}
.node--type-blog .al-hero .breadcrumb a:hover {
  color: #fff;
}
.node--type-blog .al-hero .breadcrumb__sep {
  color: rgba(255, 255, 255, 0.3);
}
.node--type-blog .al-hero .breadcrumb__current {
  color: var(--al-orange-300);
}
/* =========================================================================
   HERO SECTION
   ========================================================================= */
.node--type-blog .al-hero {
  background: var(--al-navy-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.node--type-blog .al-hero::after {
  content: "";
  position: absolute;
  right: -130px;
  top: -90px;
  width: 440px;
  height: 250px;
  border: 2px solid rgba(224, 144, 48, 0.3);
  border-radius: 50%;
  transform: rotate(-18deg);
  pointer-events: none;
}
.node--type-blog .al-hero__inner {
  position: relative;
  z-index: 2;
  padding: 46px 0 58px;
  max-width: 820px;
}
/* Reusable abstract "learning" art (shows on every blog al-hero) */
.node--type-blog .al-hero__art {
  position: absolute;
  right: 300px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 600px;
  z-index: 1;
  pointer-events: none;
}
.node--type-blog .al-hero__art svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.node--type-blog .al-hero__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px 0 0;
}
.node--type-blog .al-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(31px, 4.3vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 82px 0 0;
  text-wrap: balance;
}
.node--type-blog .al-hero__standfirst {
  font-family: var(--font-sans);
  font-size: 19px;
  line-height: 1.55;
  color: #cfe0ec;
  max-width: 60ch;
  margin: 18px 0 0;
  text-wrap: pretty;
}
.node--type-blog .al-hero__standfirst .field {
  margin: 0;
}
.node--type-blog .al-hero__standfirst .field__item {
  display: inline;
}
.node--type-blog .al-hero__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 70px;
  color: #bcd6e7;
  font-family: var(--font-sans);
  font-size: 15px;
}
.node--type-blog .al-hero__who b {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
}
.node--type-blog .al-hero__who span {
  font-size: 13px;
  color: #9fc0d6;
}
.node--type-blog .al-hero__meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6f97b1;
}
.node--type-blog .al-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
/* =========================================================================
   BODY
   ========================================================================= */
.node--type-blog .blog-body {
  background: var(--bg-page);
  padding: 54px 0 6px;
}
.node--type-blog .al-blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 296px;
  gap: 56px;
  align-items: start;
}
.node--type-blog .blog-article {
  min-width: 0;
}
.node--type-blog .blog-lead {
  font-family: var(--font-sans);
  font-size: 23px;
  line-height: 1.62;
  color: var(--fg-1);
  font-weight: 500;
  margin: 0 0 28px;
  max-width: 740px;
}
.node--type-blog .blog-article p {
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.78;
  color: var(--fg-2);
  margin: 0 0 18px;
  max-width: 740px;
}
.node--type-blog .blog-article h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 29px;
  line-height: 1.25;
  color: var(--al-navy);
  margin: 42px 0 14px;
  scroll-margin-top: 100px;
  max-width: 740px;
}
.node--type-blog .blog-article strong {
  color: var(--al-navy);
  font-weight: 700;
}
.node--type-blog .blog-q {
  margin: 30px 0;
  padding: 8px 0 8px 24px;
  border-left: 4px solid var(--al-orange);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.4;
  color: var(--al-navy);
  max-width: 720px;
}
.node--type-blog .blog-list {
  list-style: none;
  margin: 6px 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 740px;
}
.node--type-blog .blog-list li {
  position: relative;
  padding-left: 36px;
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.55;
  color: var(--fg-2);
}
.node--type-blog .blog-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 23px;
  height: 23px;
  border-radius: 6px;
  background: rgba(224, 144, 48, 0.14);
}
.node--type-blog .blog-list li::after {
  content: "\2713";
  position: absolute;
  left: 5px;
  top: 0;
  color: var(--al-orange-700);
  font-weight: 700;
  font-size: 14px;
}
/* =========================================================================
   ARTICLE FOOT
   ========================================================================= */
.node--type-blog .blog-foot {
  max-width: 740px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--border-1);
}
.node--type-blog .blog-foot__tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.node--type-blog .blog-sameauthor {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--al-navy);
  background: var(--al-navy-50);
  border: 1px solid var(--al-navy-100);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.14s var(--ease-out), border-color 0.14s var(--ease-out), color 0.14s var(--ease-out), box-shadow 0.14s var(--ease-out);
}
.node--type-blog .blog-sameauthor svg {
  width: 15px;
  height: 15px;
}
.node--type-blog .blog-sameauthor:hover {
  background: var(--al-navy);
  border-color: var(--al-navy);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 48, 80, 0.2);
}
/* =========================================================================
   SHARE BUTTONS
   ========================================================================= */
.node--type-blog .blog-share {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0 26px;
}
.node--type-blog .blog-share__lbl {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-3);
}
.node--type-blog .blog-share__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-1);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--al-navy);
  cursor: pointer;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.node--type-blog .blog-share__btn:hover {
  background: var(--al-navy);
  color: #fff;
  border-color: var(--al-navy);
}
/* =========================================================================
   AUTHOR BIO
   ========================================================================= */
.node--type-blog .blog-bio {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg-alt);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}
.node--type-blog .blog-bio .blog-ava {
  width: 58px;
  height: 58px;
  font-size: 19px;
}
.node--type-blog .blog-bio__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--al-navy);
}
.node--type-blog .blog-bio__role {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--al-orange-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 3px 0 9px;
}
.node--type-blog .blog-bio p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
}
/* =========================================================================
   SIDEBAR
   ========================================================================= */
.node--type-blog .blog-side {
  position: sticky;
  top: calc(var(--header-h) + 22px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.node--type-blog .al-blog-card {
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow-xs);
}
.node--type-blog .al-blog-card__h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0 0 14px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--border-1);
}
.node--type-blog .blog-toc {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow-y: auto;
  max-height: 40vh;
}
.node--type-blog .blog-toc::-webkit-scrollbar {
  width: 4px;
}
.node--type-blog .blog-toc::-webkit-scrollbar-track {
  background: transparent;
}
.node--type-blog .blog-toc::-webkit-scrollbar-thumb {
  background: var(--border-1);
  border-radius: 2px;
}
.node--type-blog .blog-toc a {
  display: block;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.4;
  color: var(--fg-2);
  text-decoration: none;
  padding: 8px 12px;
  border-left: 2px solid transparent;
  border-radius: 0 6px 6px 0;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.node--type-blog .blog-toc a:hover {
  background: var(--bg-alt);
  color: var(--al-navy);
}
.node--type-blog .blog-toc a.is-active {
  color: var(--al-orange-700);
  border-left-color: var(--al-orange);
  background: #fff6ec;
  font-weight: 600;
}
.node--type-blog .blog-toc .blog-toc__sub {
  list-style: none;
  margin: 2px 0 0;
  padding: 0 0 0 14px;
}
.node--type-blog .blog-toc .blog-toc__sub a {
  font-size: 13px;
  padding: 6px 8px 6px 12px;
}
.node--type-blog .blog-toc .blog-toc__sub a.is-active {
  border-left-color: var(--al-orange);
  background: #fff6ec;
}
.node--type-blog .blog-side__share {
  display: flex;
  gap: 8px;
}
.node--type-blog .blog-news-mini p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 12px;
}
/* Webform elements inside the sidebar newsletter card.
   The mini webform template strips wrappers; these rules
   style the raw inputs to match the design. */
.node--type-blog .blog-news-mini {
  /* Strip Drupal form-item wrappers (margin, padding, label).  */
  /* Remove the gap that Drupal inserts between items. */
  /* Email input — matches the design .blog-input */
  /* Submit button — matches the design .al-btn.al-btn--primary */
}
.node--type-blog .blog-news-mini .js-form-item,
.node--type-blog .blog-news-mini .form-item {
  margin: 0;
  padding: 0;
}
.node--type-blog .blog-news-mini .js-form-item label,
.node--type-blog .blog-news-mini .form-item label {
  display: none;
}
.node--type-blog .blog-news-mini .form-actions,
.node--type-blog .blog-news-mini .webform-actions {
  margin: 0;
}
.node--type-blog .blog-news-mini input[type="email"],
.node--type-blog .blog-news-mini .form-email,
.node--type-blog .blog-news-mini .blog-input {
  width: 100%;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--fg-1);
  background: #fff;
  box-sizing: border-box;
}
.node--type-blog .blog-news-mini input[type="email"]:focus,
.node--type-blog .blog-news-mini .form-email:focus,
.node--type-blog .blog-news-mini .blog-input:focus {
  outline: none;
  border-color: var(--al-orange);
}
.node--type-blog .blog-news-mini .webform-button--submit,
.node--type-blog .blog-news-mini button[type="submit"],
.node--type-blog .blog-news-mini input[type="submit"],
.node--type-blog .blog-news-mini .al-btn--primary {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.14s var(--ease-out), box-shadow 0.14s var(--ease-out);
  background: var(--al-orange);
  color: #fff;
  text-decoration: none;
}
.node--type-blog .blog-news-mini .webform-button--submit:hover,
.node--type-blog .blog-news-mini button[type="submit"]:hover,
.node--type-blog .blog-news-mini input[type="submit"]:hover,
.node--type-blog .blog-news-mini .al-btn--primary:hover {
  background: var(--al-orange-700);
  box-shadow: 0 6px 16px rgba(224, 144, 48, 0.28);
}
/* =========================================================================
   NEWSLETTER BAND
   ========================================================================= */
.node--type-blog .al-newsband {
  background: var(--al-navy-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.node--type-blog .al-newsband::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -100px;
  width: 330px;
  height: 190px;
  border: 2px solid rgba(224, 144, 48, 0.28);
  border-radius: 50%;
  transform: rotate(14deg);
  pointer-events: none;
}
.node--type-blog .al-newsband__in {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
  padding: 46px 0;
}
.node--type-blog .al-newsband h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.15;
  color: #fff;
  margin: 0;
  max-width: 17ch;
}
.node--type-blog .al-newsband p {
  font-family: var(--font-sans);
  font-size: 16px;
  color: #bcd6e7;
  margin: 9px 0 0;
  max-width: 46ch;
}
.node--type-blog .al-newsband form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.node--type-blog .al-newsband input {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 13px 18px;
  font-family: var(--font-sans);
  font-size: 15px;
  min-width: 250px;
}
.node--type-blog .al-newsband input::-moz-placeholder {
  color: #8fb1c8;
}
.node--type-blog .al-newsband input::placeholder {
  color: #8fb1c8;
}
.node--type-blog .al-newsband input:focus {
  outline: none;
  border-color: var(--al-orange);
  background: rgba(255, 255, 255, 0.12);
}
/* =========================================================================
   RELATED ARTICLES
   ========================================================================= */
.node--type-blog .blog-related {
  background: var(--bg-alt);
  padding: 58px 0 66px;
  margin-top: 52px;
}
.node--type-blog .blog-related__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.node--type-blog .blog-related__head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  color: var(--al-navy);
  margin: 0;
  letter-spacing: -0.01em;
}
.node--type-blog .blog-related__head a {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--al-orange-700);
  text-decoration: none;
}
.node--type-blog .blog-related__head a:hover {
  color: var(--al-orange);
}
.node--type-blog .al-blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.node--type-blog .blog-pcard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.16s var(--ease-out), transform 0.16s var(--ease-out), border-color 0.16s var(--ease-out);
}
.node--type-blog .blog-pcard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--al-navy-100);
}
/* =========================================================================
   CARD THUMB (colored top area)
   ========================================================================= */
.node--type-blog .blog-thumb {
  height: 172px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Orbiting luminous ring with a satellite dot */
.node--type-blog .blog-thumb__halo {
  position: absolute;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  z-index: 0;
  background: conic-gradient(from 0deg, rgba(224, 144, 48, 0) 0deg, rgba(224, 144, 48, 0.85) 60deg, rgba(255, 210, 150, 0.95) 90deg, rgba(224, 144, 48, 0) 150deg, rgba(224, 144, 48, 0) 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 2px));
  animation: blogOrbit 9s linear infinite;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out);
}
.node--type-blog .blog-thumb__halo::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  border-radius: 50%;
  background: #f2b46a;
  box-shadow: 0 0 9px 2px rgba(242, 180, 106, 0.8);
}
@keyframes blogOrbit {
  to {
    transform: rotate(360deg);
  }
}
.node--type-blog .blog-thumb__disc {
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 22px;
  z-index: 0;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 8px 22px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(2px);
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.node--type-blog .blog-thumb::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 170px;
  height: 120px;
  border: 2px solid rgba(224, 144, 48, 0.42);
  border-radius: 50%;
  transform: rotate(-16deg);
}
.node--type-blog .blog-thumb--a {
  background: linear-gradient(135deg, var(--al-navy-dark), #0a4f74);
}
.node--type-blog .blog-thumb--b {
  background: linear-gradient(135deg, #073048, #114b6a);
}
.node--type-blog .blog-thumb--c {
  background: linear-gradient(135deg, #0a3a55, #0f5577);
}
/* =========================================================================
   CARD BOTTOM (content area)
   ========================================================================= */
.node--type-blog .blog-pcard__b {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.node--type-blog .blog-pcard__b .blog-tag--light {
  align-self: flex-start;
}
.node--type-blog .blog-pcard h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--al-navy);
  margin: 0;
}
.node--type-blog .blog-pcard__excerpt {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
}
.node--type-blog .blog-pcard__foot {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 4px;
}
.node--type-blog .blog-pcard__foot .blog-ava {
  width: 30px;
  height: 30px;
  font-size: 11px;
  border-width: 1.5px;
}
.node--type-blog .blog-pcard__author {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--al-navy);
  line-height: 1.2;
}
.node--type-blog .blog-pcard__author span {
  display: block;
  font-weight: 400;
  color: var(--fg-3);
  font-size: 11.5px;
}
.node--type-blog .blog-pcard__meta {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--fg-3);
  display: flex;
  gap: 8px;
  align-items: center;
}
.node--type-blog .blog-pcard__meta .rt {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.node--type-blog .blog-pcard__meta .rt svg {
  width: 13px;
  height: 13px;
}
/* =========================================================================
   CARD VARIANT: Title-in-thumb
   ========================================================================= */
.node--type-blog .blog-pcard--titlehead .blog-thumb {
  padding: 22px 24px;
  align-items: flex-start;
  justify-content: flex-start;
}
.node--type-blog .blog-pcard--titlehead .blog-thumb__disc,
.node--type-blog .blog-pcard--titlehead .blog-thumb__halo {
  display: none;
}
.node--type-blog .blog-pcard--titlehead .blog-thumb__title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.26;
  color: #fff;
  text-align: left;
  text-wrap: balance;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}
/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1180px) {
  .node--type-blog .al-hero__art {
    right: 120px;
    opacity: 0.4;
  }
}
@media (max-width: 1000px) {
  .node--type-blog .al-hero__art {
    display: none;
  }
}
@media (max-width: 980px) {
  .node--type-blog .al-blog-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .node--type-blog .blog-side {
    position: static;
  }
  .node--type-blog .al-blog-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .node--type-blog .blog .container {
    padding: 0 20px;
  }
  .node--type-blog .al-blog-cards {
    grid-template-columns: 1fr;
  }
  .node--type-blog .al-newsband__in {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .node--type-blog .al-hero__title {
    font-size: 31px;
  }
}
@media (max-width: 560px) {
  .node--type-blog .blog-sameauthor {
    margin-left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .node--type-blog .blog-thumb__halo {
    animation: none;
  }
}
/* =========================================================================
   DARK MODE
   ========================================================================= */
body.dark .node--type-blog .blog-body {
  background: var(--al-navy);
}
body.dark .node--type-blog .blog-lead {
  color: rgba(255, 255, 255, 0.92);
}
body.dark .node--type-blog .blog-article p {
  color: rgba(255, 255, 255, 0.78);
}
body.dark .node--type-blog .blog-article h2 {
  color: #fff;
}
body.dark .node--type-blog .blog-article strong {
  color: #fff;
}
body.dark .node--type-blog .blog-q {
  color: #fff;
}
body.dark .node--type-blog .blog-list li {
  color: rgba(255, 255, 255, 0.8);
}
body.dark .node--type-blog .blog-list li::before {
  background: rgba(224, 144, 48, 0.22);
}
body.dark .node--type-blog .blog-foot {
  border-top-color: rgba(255, 255, 255, 0.12);
}
body.dark .node--type-blog .blog-share__lbl {
  color: rgba(255, 255, 255, 0.6);
}
body.dark .node--type-blog .blog-share__btn {
  background: var(--al-navy-800);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}
body.dark .node--type-blog .blog-share__btn:hover {
  background: var(--al-orange);
  border-color: var(--al-orange);
  color: #fff;
}
body.dark .node--type-blog .blog-bio {
  background: var(--al-navy-800);
  border-color: rgba(255, 255, 255, 0.1);
}
body.dark .node--type-blog .blog-bio__name {
  color: #fff;
}
body.dark .node--type-blog .blog-bio p {
  color: rgba(255, 255, 255, 0.74);
}
body.dark .node--type-blog .blog-sameauthor {
  background: var(--al-navy-800);
  border-color: rgba(255, 255, 255, 0.14);
  color: #cfe0ec;
}
body.dark .node--type-blog .blog-sameauthor:hover {
  background: var(--al-orange);
  border-color: var(--al-orange);
  color: #02283f;
}
body.dark .node--type-blog .al-blog-card {
  background: var(--al-navy-800);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
body.dark .node--type-blog .al-blog-card__h {
  color: rgba(255, 255, 255, 0.55);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
body.dark .node--type-blog .blog-toc a {
  color: rgba(255, 255, 255, 0.72);
}
body.dark .node--type-blog .blog-toc a:hover {
  background: var(--al-navy-700);
  color: #fff;
}
body.dark .node--type-blog .blog-toc a.is-active {
  color: var(--al-orange-300);
  background: rgba(224, 144, 48, 0.14);
  border-left-color: var(--al-orange);
}
body.dark .node--type-blog .blog-toc .blog-toc__sub a.is-active {
  border-left-color: var(--al-orange);
  background: rgba(224, 144, 48, 0.14);
}
body.dark .node--type-blog .blog-toc::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
}
body.dark .node--type-blog .blog-news-mini p {
  color: rgba(255, 255, 255, 0.74);
}
body.dark .node--type-blog .blog-news-mini input[type="email"],
body.dark .node--type-blog .blog-news-mini .form-email,
body.dark .node--type-blog .blog-news-mini .blog-input {
  background: var(--al-navy-900);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}
body.dark .node--type-blog .blog-news-mini input[type="email"]::-moz-placeholder, body.dark .node--type-blog .blog-news-mini .form-email::-moz-placeholder, body.dark .node--type-blog .blog-news-mini .blog-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
body.dark .node--type-blog .blog-news-mini input[type="email"]::placeholder,
body.dark .node--type-blog .blog-news-mini .form-email::placeholder,
body.dark .node--type-blog .blog-news-mini .blog-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
body.dark .node--type-blog .blog-news-mini input[type="email"]:focus,
body.dark .node--type-blog .blog-news-mini .form-email:focus,
body.dark .node--type-blog .blog-news-mini .blog-input:focus {
  border-color: var(--al-orange);
  background: var(--al-navy-800);
}
body.dark .node--type-blog .blog-tag--light {
  color: var(--al-orange-300);
  border-color: rgba(224, 144, 48, 0.4);
  background: rgba(224, 144, 48, 0.12);
}
body.dark .node--type-blog .blog-tag--light:hover {
  background: rgba(224, 144, 48, 0.22);
}
body.dark .node--type-blog .blog-related {
  background: var(--al-navy-900);
}
body.dark .node--type-blog .blog-related__head h2 {
  color: #fff;
}
body.dark .node--type-blog .blog-related__head a {
  color: var(--al-orange-300);
}
body.dark .node--type-blog .blog-pcard {
  background: var(--al-navy-800);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
body.dark .node--type-blog .blog-pcard:hover {
  border-color: rgba(224, 144, 48, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
body.dark .node--type-blog .blog-pcard h3 {
  color: #fff;
}
body.dark .node--type-blog .blog-pcard__excerpt {
  color: rgba(255, 255, 255, 0.72);
}
body.dark .node--type-blog .blog-pcard__author {
  color: #fff;
}
body.dark .node--type-blog .blog-pcard__author span {
  color: rgba(255, 255, 255, 0.55);
}
body.dark .node--type-blog .blog-pcard__meta {
  color: rgba(255, 255, 255, 0.55);
}
