.hero-blog {
  --blog-accent: #66ffe6;
  --blog-accent-rgb: 102, 255, 230;
  position: relative;
  padding: 12px 0 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 87% 16%,
      rgba(83, 109, 254, 0.12),
      transparent 31%
    ),
    radial-gradient(circle at 8% 0%, rgba(0, 214, 200, 0.07), transparent 28%),
    linear-gradient(145deg, #0a101a, #0b1422 58%, #0d1625);
}

.hero-blog::before {
  background-image:
    linear-gradient(rgba(144, 174, 215, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(144, 174, 215, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.42;
  animation: none;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 94%);
  mask-image: linear-gradient(to bottom, #000, transparent 94%);
}

.hero-blog::after {
  background: none;
}

.blog-hero-inner {
  display: block !important;
  padding-top: 22px;
}

.blog-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
  padding: 42px 0 62px;
}

.blog-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #87f4e5;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.blog-kicker::before {
  content: "";
  width: 29px;
  height: 1px;
  background: currentColor;
}

.blog-hero-copy h1 {
  max-width: 780px;
  margin: 14px 0 0;
  color: #f2f6fd;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: clamp(3.05rem, 5.5vw, 5.15rem);
  font-weight: 350;
  line-height: 0.97;
  letter-spacing: -0.053em;
}

.blog-hero-copy h1 strong {
  display: block;
  color: var(--blog-accent);
  font-weight: 620;
}

.blog-hero-copy h1 > span {
  display: block;
}

.blog-hero-copy p {
  max-width: 680px;
  margin: 20px 0 0;
  color: #a8b9cf;
  font-size: 1rem;
  line-height: 1.72;
}

.blog-hero-display {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  isolation: isolate;
}

.blog-hero-display::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(176, 202, 235, 0.18) 18%,
    rgba(176, 202, 235, 0.18) 82%,
    transparent
  );
}

.blog-hero-display::after {
  content: "";
  position: absolute;
  top: 51%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(176, 202, 235, 0.16) 18%,
    rgba(176, 202, 235, 0.16) 88%,
    transparent
  );
}

.blog-display-axis {
  position: absolute;
  top: 22px;
  left: calc(18% - 22px);
  color: #687c95;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.blog-display-number {
  position: absolute;
  top: 3px;
  right: 5px;
  color: rgba(var(--blog-accent-rgb), 0.16);
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.07em;
}

.blog-display-word {
  position: absolute;
  top: 89px;
  right: 0;
  color: transparent;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: clamp(5.6rem, 10vw, 8.8rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.075em;
  -webkit-text-stroke: 1px rgba(205, 224, 249, 0.29);
  text-stroke: 1px rgba(205, 224, 249, 0.29);
}

.blog-display-cross {
  position: absolute;
  z-index: 2;
  top: calc(51% - 9px);
  left: calc(18% - 9px);
  width: 19px;
  height: 19px;
  border: 1px solid rgba(var(--blog-accent-rgb), 0.38);
  background: #0b1422;
}

.blog-display-cross::before,
.blog-display-cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--blog-accent);
  transform: translate(-50%, -50%);
}

.blog-display-cross::before {
  width: 9px;
  height: 1px;
}

.blog-display-cross::after {
  width: 1px;
  height: 9px;
}

.blog-display-footer {
  position: absolute;
  right: 0;
  bottom: 27px;
  left: 25%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  padding-top: 12px;
  border-top: 1px solid rgba(176, 202, 235, 0.16);
}

.blog-display-footer span {
  width: 5px;
  height: 5px;
  border: 1px solid rgba(176, 202, 235, 0.3);
}

.blog-display-footer span:first-child {
  margin-right: auto;
  border-color: rgba(var(--blog-accent-rgb), 0.6);
  background: rgba(var(--blog-accent-rgb), 0.16);
}

.blog-page {
  position: relative;
  padding: clamp(66px, 8vw, 102px) 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(83, 109, 254, 0.052),
      transparent 31%
    ),
    #09111e;
}

.blog-container {
  max-width: 1160px;
}

.blog-index {
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid rgba(176, 202, 235, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.032),
      rgba(255, 255, 255, 0.01)
    ),
    #0a1321;
}

.blog-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 18px;
}

.blog-search-control {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(176, 202, 235, 0.14);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.022);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.blog-search-control:focus-within {
  border-color: rgba(var(--blog-accent-rgb), 0.4);
  background: rgba(var(--blog-accent-rgb), 0.022);
  box-shadow: 0 0 0 3px rgba(var(--blog-accent-rgb), 0.05);
}

.blog-search-control > i {
  color: #8297b0;
}

.blog-search-input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #edf5ff;
  background: transparent;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 620;
}

.blog-search-input::placeholder {
  color: #657991;
}

.blog-search-clear {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  color: #8ea1b8;
  text-decoration: none;
}

.blog-search-clear:hover {
  color: #e3edf9;
  background: rgba(255, 255, 255, 0.045);
}

.blog-search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 11px;
  color: #06131a;
  background: linear-gradient(135deg, #78ffec, #25d8cb);
  box-shadow: 0 11px 27px rgba(0, 214, 200, 0.15);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.blog-search-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 34px rgba(0, 214, 200, 0.21);
}

.blog-category-bar {
  display: grid;
  grid-template-columns: 175px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 40px;
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(176, 202, 235, 0.1);
}

.blog-category-heading {
  display: grid;
  gap: 5px;
  padding-top: 8px;
}

.blog-category-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c5d5e8;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.blog-category-label i {
  color: #91f6e8;
  font-size: 0.96rem;
}

.blog-category-hint {
  color: #71859e;
  font-size: 0.67rem;
  font-weight: 650;
  line-height: 1.45;
}

.blog-category-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  min-width: 0;
}

.blog-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  min-height: 52px;
  padding: 9px 11px;
  border: 1px solid rgba(176, 202, 235, 0.13);
  border-radius: 12px;
  color: #b5c5d8;
  background: rgba(255, 255, 255, 0.018);
  font-size: 0.76rem;
  font-weight: 780;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.blog-category-main {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.blog-category-main > i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid rgba(176, 202, 235, 0.11);
  border-radius: 9px;
  color: #a9b9d1;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.94rem;
}

.blog-category-main > span {
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.28;
}

.blog-category-arrow {
  flex: 0 0 auto;
  color: #72869f;
  font-size: 0.9rem;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.blog-category:hover {
  border-color: rgba(var(--blog-accent-rgb), 0.25);
  color: #dcf9f5;
  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(var(--blog-accent-rgb), 0.075),
      transparent 70%
    ),
    rgba(255, 255, 255, 0.022);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.13);
  transform: translateY(-1px);
}

.blog-category.active {
  border-color: rgba(var(--blog-accent-rgb), 0.36);
  color: #a7fff2;
  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(var(--blog-accent-rgb), 0.13),
      transparent 72%
    ),
    rgba(var(--blog-accent-rgb), 0.055);
  box-shadow: inset 0 0 0 1px rgba(var(--blog-accent-rgb), 0.025);
}

.blog-category:hover .blog-category-main > i,
.blog-category.active .blog-category-main > i {
  border-color: rgba(var(--blog-accent-rgb), 0.23);
  color: #9affed;
  background: rgba(var(--blog-accent-rgb), 0.075);
}

.blog-category:hover .blog-category-arrow,
.blog-category.active .blog-category-arrow {
  color: #9affed;
  transform: translateX(2px);
}

.blog-category-count {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  flex: 0 0 auto;
  padding: 0 7px;
  border: 1px solid rgba(176, 202, 235, 0.1);
  border-radius: 8px;
  color: #aebfd3;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.64rem;
  font-weight: 850;
}

.blog-category.active .blog-category-count {
  border-color: rgba(var(--blog-accent-rgb), 0.18);
  color: #a7fff2;
  background: rgba(var(--blog-accent-rgb), 0.075);
}

.blog-category-bar.has-popular-tags {
  margin-bottom: 24px;
}

.blog-tag-bar {
  display: grid;
  grid-template-columns: 175px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 40px;
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(176, 202, 235, 0.1);
}

.blog-tag-heading {
  display: grid;
  gap: 5px;
  padding-top: 7px;
}

.blog-tag-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #c5d5e8;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.blog-tag-label i {
  color: #9eaaff;
  font-size: 0.96rem;
}

.blog-tag-hint {
  color: #71859e;
  font-size: 0.67rem;
  font-weight: 650;
  line-height: 1.45;
}

.blog-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  max-width: 100%;
  padding: 7px 9px 7px 11px;
  border: 1px solid rgba(176, 202, 235, 0.12);
  border-radius: 10px;
  color: #aebfd3;
  background: rgba(255, 255, 255, 0.016);
  font-size: 0.71rem;
  font-weight: 760;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.blog-tag-mark {
  flex: 0 0 auto;
  color: #8f9eff;
  font-size: 0.8rem;
  font-weight: 850;
}

.blog-tag-title {
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.3;
}

.blog-tag-count {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  flex: 0 0 auto;
  padding: 0 6px;
  border-left: 1px solid rgba(176, 202, 235, 0.12);
  color: #8195ad;
  font-size: 0.6rem;
  font-weight: 850;
}

.blog-tag:hover {
  border-color: rgba(143, 165, 255, 0.28);
  color: #e1e8ff;
  background: rgba(83, 109, 254, 0.055);
  transform: translateY(-1px);
}

.blog-tag:hover .blog-tag-count {
  color: #aebcff;
}

.blog-tag.active {
  border-color: rgba(var(--blog-accent-rgb), 0.34);
  color: #a7fff2;
  background:
    linear-gradient(
      110deg,
      rgba(var(--blog-accent-rgb), 0.09),
      transparent 78%
    ),
    rgba(var(--blog-accent-rgb), 0.035);
}

.blog-tag.active .blog-tag-mark,
.blog-tag.active .blog-tag-count {
  color: #91f8e9;
}

.blog-tag.active .blog-tag-count {
  border-left-color: rgba(var(--blog-accent-rgb), 0.17);
}

.blog-tag:focus-visible {
  outline: 2px solid #66ffe6;
  outline-offset: 3px;
}

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

.blog-list-head .blog-kicker {
  margin-bottom: 11px;
}

.blog-list-head h2 {
  margin: 0;
  color: #f1f6ff;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: clamp(2.05rem, 4vw, 3.35rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.038em;
}

.blog-filter-clear {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(var(--blog-accent-rgb), 0.3);
  color: var(--blog-accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}

.blog-post-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.blog-post-card {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 20px;
  min-width: 0;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(176, 202, 235, 0.13);
  border-radius: 19px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(83, 109, 254, 0.055),
      transparent 37%
    ),
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.01)
    ),
    #0a1321;
}

.blog-post-card::after {
  content: "";
  position: absolute;
  right: -47px;
  bottom: -57px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(var(--blog-accent-rgb), 0.065);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(83, 109, 254, 0.012);
  pointer-events: none;
}

.blog-post-card-featured {
  grid-column: 1 / -1;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 30px;
  padding: 29px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(var(--blog-accent-rgb), 0.065),
      transparent 35%
    ),
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.011)
    ),
    #0a1321;
}

.blog-date {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 190px;
  padding: 16px 9px;
  overflow: hidden;
  border: 1px solid rgba(var(--blog-accent-rgb), 0.17);
  border-radius: 14px;
  color: #dff7f3;
  background:
    radial-gradient(
      circle at 50% 26%,
      rgba(var(--blog-accent-rgb), 0.09),
      transparent 38%
    ),
    rgba(var(--blog-accent-rgb), 0.025);
}

.blog-post-card-featured .blog-date {
  min-height: 230px;
}

.blog-date::before,
.blog-date::after {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(var(--blog-accent-rgb), 0.075);
  border-radius: 50%;
}

.blog-date::before {
  top: -39px;
  right: -38px;
}

.blog-date::after {
  bottom: -44px;
  left: -39px;
}

.blog-date-day {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.7rem);
  font-weight: 650;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.blog-date-month {
  margin-top: 11px;
  color: var(--blog-accent);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-date-year {
  margin-top: 3px;
  color: #788da6;
  font-size: 0.61rem;
  font-weight: 750;
}

.blog-post-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.blog-post-title {
  margin: 0;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: clamp(1.18rem, 2.3vw, 1.48rem);
  font-weight: 630;
  line-height: 1.3;
  letter-spacing: -0.018em;
}

.blog-post-card-featured .blog-post-title {
  max-width: 860px;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  line-height: 1.2;
}

.blog-post-title a {
  color: #edf4ff;
  text-decoration: none;
}

.blog-post-title a:hover {
  color: #fff;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 13px;
  align-items: center;
  margin-top: 12px;
  color: #8396ae;
  font-size: 0.7rem;
}

.blog-post-meta span,
.blog-post-meta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-post-meta i {
  color: #95a9ff;
}

.blog-post-category {
  color: #83f1e2;
  font-weight: 750;
  text-decoration: none;
}

.blog-post-reads {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #aebfd3;
  font-size: 0.7rem;
  font-weight: 780;
  white-space: nowrap;
}

.blog-post-reads i {
  color: #8ff7e7;
}

.blog-post-excerpt {
  display: -webkit-box;
  margin: 16px 0 0;
  overflow: hidden;
  color: #a4b5c9;
  font-size: 0.78rem;
  line-height: 1.68;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-post-card-featured .blog-post-excerpt {
  max-width: 880px;
  font-size: 0.86rem;
}

.blog-post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 23px;
}

.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dce7f5;
  font-size: 0.7rem;
  font-weight: 850;
  text-decoration: none;
}

.blog-read i {
  color: var(--blog-accent);
  transition: transform 0.2s ease;
}

.blog-read:hover i {
  transform: translateX(3px);
}

.blog-empty {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 23px;
  align-items: center;
  padding: clamp(27px, 5vw, 45px);
  border: 1px solid rgba(176, 202, 235, 0.13);
  border-radius: 19px;
  background:
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.034),
      rgba(255, 255, 255, 0.01)
    ),
    #0a1321;
}

.blog-empty-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(143, 165, 255, 0.19);
  border-radius: 16px;
  color: #a9b8ff;
  background: rgba(83, 109, 254, 0.05);
  font-size: 1.6rem;
}

.blog-empty h3 {
  margin: 0;
  color: #eaf2fd;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 630;
}

.blog-empty p {
  margin: 6px 0 0;
  color: #91a4ba;
  font-size: 0.78rem;
  line-height: 1.6;
}

.blog-empty a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--blog-accent);
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: none;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 31px;
}

.blog-page-numbers {
  display: flex;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-page-button,
.blog-page-nav,
.blog-page-ellipsis {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  border: 1px solid rgba(176, 202, 235, 0.13);
  border-radius: 10px;
  color: #aebed1;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: none;
}

.blog-page-nav {
  display: inline-flex;
  gap: 7px;
  padding: 0 13px;
}

.blog-page-button[aria-current="page"] {
  border-color: rgba(var(--blog-accent-rgb), 0.31);
  color: #87f4e5;
  background: rgba(var(--blog-accent-rgb), 0.055);
}

.blog-page-button:hover,
.blog-page-nav:hover {
  border-color: rgba(var(--blog-accent-rgb), 0.27);
  color: #eaf3ff;
}

.blog-page-nav[aria-disabled="true"] {
  color: #53657b;
  cursor: not-allowed;
}

.blog-page-ellipsis {
  border-color: transparent;
  background: transparent;
}

.blog-sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .blog-hero-layout {
    grid-template-columns: 1fr;
  }

  .blog-hero-display {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .blog-category-bar {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .blog-tag-bar {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .blog-category-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding-top: 0;
  }

  .blog-tag-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding-top: 0;
  }

  .blog-category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-post-list {
    grid-template-columns: 1fr;
  }

  .blog-post-card-featured {
    grid-column: auto;
  }

  .blog-list-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 580px) {
  .blog-hero-layout {
    padding: 34px 0 48px;
  }

  .blog-hero-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .blog-hero-display {
    min-height: 235px;
  }

  .blog-display-axis {
    display: none;
  }

  .blog-hero-display::before {
    left: 11%;
  }

  .blog-display-cross {
    left: calc(11% - 9px);
  }

  .blog-display-word {
    top: 65px;
    font-size: clamp(4.4rem, 22vw, 6.7rem);
  }

  .blog-display-footer {
    bottom: 18px;
    left: 17%;
  }

  .blog-search {
    grid-template-columns: 1fr;
  }

  .blog-category-heading {
    display: grid;
    justify-content: start;
    gap: 3px;
  }

  .blog-tag-heading {
    display: grid;
    justify-content: start;
    gap: 3px;
  }

  .blog-category-list {
    grid-template-columns: 1fr;
  }

  .blog-post-card,
  .blog-post-card-featured {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 19px;
  }

  .blog-date,
  .blog-post-card-featured .blog-date {
    flex-direction: row;
    justify-content: flex-start;
    gap: 9px;
    min-height: auto;
    padding: 12px 14px;
  }

  .blog-date-day {
    font-size: 1.7rem;
  }

  .blog-date-month {
    margin-top: 0;
  }

  .blog-date-year {
    margin: 0 0 0 2px;
  }

  .blog-post-card-featured .blog-post-title {
    font-size: clamp(1.35rem, 7vw, 1.7rem);
  }

  .blog-pagination {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .blog-page-numbers {
    order: 3;
    justify-content: center;
    width: 100%;
  }

  .blog-empty {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-search-control,
  .blog-search-submit,
  .blog-category,
  .blog-category-arrow,
  .blog-tag,
  .blog-read i {
    transition: none;
  }
}

/* Newsletter additions — intentionally isolated from the existing blog UI. */
.newsletter-notice,
.blog-newsletter {
  --newsletter-accent: #66ffe6;
  --newsletter-accent-rgb: 102, 255, 230;
}

.newsletter-notice {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 15px;
  align-items: start;
  margin-bottom: 24px;
  padding: 17px 18px;
  border: 1px solid rgba(176, 202, 235, 0.15);
  border-radius: 16px;
  background: #0a1321;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.newsletter-notice.is-dismissed {
  opacity: 0;
  transform: translateY(-6px);
}

.newsletter-notice--success {
  border-color: rgba(var(--newsletter-accent-rgb), 0.25);
  background:
    linear-gradient(
      110deg,
      rgba(var(--newsletter-accent-rgb), 0.07),
      transparent 46%
    ),
    #0a1321;
}

.newsletter-notice--error {
  border-color: rgba(255, 112, 137, 0.28);
  background:
    linear-gradient(110deg, rgba(255, 83, 117, 0.075), transparent 46%), #0a1321;
}

.newsletter-notice-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(var(--newsletter-accent-rgb), 0.22);
  border-radius: 11px;
  color: #8ff8e9;
  background: rgba(var(--newsletter-accent-rgb), 0.065);
  font-size: 1.08rem;
}

.newsletter-notice--error .newsletter-notice-icon {
  border-color: rgba(255, 112, 137, 0.23);
  color: #ff9aae;
  background: rgba(255, 83, 117, 0.07);
}

.newsletter-notice-copy {
  min-width: 0;
}

.newsletter-notice-copy h2 {
  margin: 1px 0 3px;
  color: #eef5ff;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 680;
  line-height: 1.3;
}

.newsletter-notice-copy p {
  margin: 0;
  color: #9eb0c7;
  font-size: 0.76rem;
  line-height: 1.58;
}

.newsletter-notice-copy a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
  color: #93f9eb;
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: none;
}

.newsletter-notice-close {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 9px;
  color: #8295ad;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  cursor: pointer;
}

.newsletter-notice-close:hover {
  color: #e7effa;
  background: rgba(255, 255, 255, 0.045);
}

.blog-newsletter {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  margin-top: clamp(58px, 8vw, 92px);
  padding: clamp(32px, 5vw, 52px) 0 4px;
  border-top: 1px solid rgba(176, 202, 235, 0.11);
}

.blog-newsletter::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 96px;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--newsletter-accent),
    rgba(var(--newsletter-accent-rgb), 0)
  );
}

.newsletter-intro {
  min-width: 0;
}

.newsletter-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8cf6e8;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.newsletter-kicker i {
  font-size: 0.98rem;
}

.newsletter-intro h2 {
  max-width: 470px;
  margin: 12px 0 0;
  color: #f1f6ff;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 430;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.newsletter-intro > p {
  max-width: 490px;
  margin: 16px 0 0;
  color: #9dafc5;
  font-size: 0.82rem;
  line-height: 1.72;
}

.newsletter-confirmation-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 19px;
  color: #8094ac;
  font-size: 0.7rem;
  font-weight: 680;
}

.newsletter-confirmation-note i {
  color: #8cf6e8;
  font-size: 1rem;
}

.newsletter-form {
  position: relative;
  display: grid;
  gap: 17px;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(176, 202, 235, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(83, 109, 254, 0.06),
      transparent 38%
    ),
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.01)
    ),
    #0a1321;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.newsletter-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.newsletter-field {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: #aebed2;
  font-size: 0.68rem;
  font-weight: 800;
}

.newsletter-input-wrap {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 47px;
  padding: 0 12px;
  border: 1px solid rgba(176, 202, 235, 0.14);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.newsletter-input-wrap:focus-within {
  border-color: rgba(var(--newsletter-accent-rgb), 0.38);
  background: rgba(var(--newsletter-accent-rgb), 0.022);
  box-shadow: 0 0 0 3px rgba(var(--newsletter-accent-rgb), 0.045);
}

.newsletter-input-wrap > i {
  color: #8094ac;
  font-size: 0.95rem;
}

.newsletter-input-wrap input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #edf5ff;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 620;
}

.newsletter-input-wrap input::placeholder {
  color: #657991;
}

.newsletter-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: #8fa2b9;
  font-size: 0.68rem;
  line-height: 1.55;
  cursor: pointer;
}

.newsletter-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.newsletter-check {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1px solid rgba(176, 202, 235, 0.23);
  border-radius: 5px;
  color: transparent;
  background: rgba(255, 255, 255, 0.025);
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.newsletter-check i {
  font-size: 0.76rem;
  font-weight: 900;
}

.newsletter-consent input:checked + .newsletter-check {
  border-color: rgba(var(--newsletter-accent-rgb), 0.55);
  color: #06131a;
  background: var(--newsletter-accent);
}

.newsletter-consent input:focus-visible + .newsletter-check {
  box-shadow: 0 0 0 3px rgba(var(--newsletter-accent-rgb), 0.12);
}

.newsletter-form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.newsletter-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 132px;
  min-height: 44px;
  padding: 0 17px;
  border: 0;
  border-radius: 11px;
  color: #06131a;
  background: linear-gradient(135deg, #78ffec, #25d8cb);
  box-shadow: 0 11px 27px rgba(0, 214, 200, 0.15);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.newsletter-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 34px rgba(0, 214, 200, 0.21);
}

.newsletter-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.newsletter-form.is-loading .newsletter-submit-icon {
  animation: newsletter-spin 0.72s linear infinite;
}

@keyframes newsletter-spin {
  to {
    transform: rotate(360deg);
  }
}

.newsletter-form-note {
  margin: 0;
  color: #73879f;
  font-size: 0.64rem;
  line-height: 1.55;
}

.newsletter-form-note a {
  color: #9eb2ca;
  text-decoration: underline;
  text-decoration-color: rgba(158, 178, 202, 0.38);
  text-underline-offset: 2px;
}

.newsletter-feedback {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px 13px;
  border: 1px solid rgba(176, 202, 235, 0.14);
  border-radius: 11px;
  outline: 0;
  background: rgba(255, 255, 255, 0.022);
}

.newsletter-feedback[hidden] {
  display: none;
}

.newsletter-feedback.is-success {
  border-color: rgba(var(--newsletter-accent-rgb), 0.24);
  background: rgba(var(--newsletter-accent-rgb), 0.045);
}

.newsletter-feedback.is-error {
  border-color: rgba(255, 112, 137, 0.26);
  background: rgba(255, 83, 117, 0.05);
}

.newsletter-feedback-icon {
  color: #8cf6e8;
  font-size: 1rem;
}

.newsletter-feedback.is-error .newsletter-feedback-icon {
  color: #ff94aa;
}

.newsletter-feedback-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.newsletter-feedback-copy strong {
  color: #eaf3ff;
  font-size: 0.72rem;
  line-height: 1.4;
}

.newsletter-feedback-copy > span {
  color: #93a6bd;
  font-size: 0.67rem;
  line-height: 1.5;
}

.newsletter-notice-close:focus-visible,
.newsletter-notice-copy a:focus-visible,
.newsletter-submit:focus-visible,
.newsletter-form-note a:focus-visible {
  outline: 2px solid var(--newsletter-accent);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .blog-newsletter {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .newsletter-intro h2,
  .newsletter-intro > p {
    max-width: 680px;
  }
}

@media (max-width: 580px) {
  .newsletter-notice {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 15px;
  }

  .newsletter-notice-close {
    position: absolute;
    top: 9px;
    right: 9px;
  }

  .newsletter-notice-copy {
    padding-right: 24px;
  }

  .blog-newsletter {
    padding-top: 34px;
  }

  .newsletter-form {
    padding: 19px;
  }

  .newsletter-fields {
    grid-template-columns: 1fr;
  }

  .newsletter-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .newsletter-submit {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .newsletter-notice,
  .newsletter-input-wrap,
  .newsletter-check,
  .newsletter-submit {
    transition: none;
  }

  .newsletter-form.is-loading .newsletter-submit-icon {
    animation: none;
  }
}