/*
Theme Name: FIXPC Lab
Theme URI: https://howtofixpc.com/
Description: Child theme for How to Fix PC / FIXPC//LAB, based on Twenty Twenty-Three.
Author: How to Fix PC
Template: twentytwentythree
Version: 1.0.0
Text Domain: fixpc-lab
*/

:root {
  --hf-mint: #8fffbe;
  --hf-bg: #07090f;
  --hf-panel: #10141d;
  --hf-panel-2: #151b26;
  --hf-text: #e8edf4;
  --hf-muted: #9ba7b7;
  --hf-line: rgba(130, 151, 176, 0.22);
  --hf-cyan: #41e7ff;
  --hf-green: #8cffb4;
  --hf-yellow: #ffd166;
  --hf-code: #0d1118;
}

html {
  background: var(--hf-bg);
}

body {
  background:
    linear-gradient(rgba(65, 231, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 231, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(140, 255, 180, 0.08), transparent 34rem),
    var(--hf-bg);
  background-size: 32px 32px, 32px 32px, auto, auto;
  color: var(--hf-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wp-site-blocks {
  background: transparent;
}

.wp-site-blocks > header,
.wp-site-blocks > main,
.wp-site-blocks > footer {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.wp-site-blocks > header {
  position: sticky;
  top: 0;
  z-index: 20;
  margin-top: 0;
  padding: 18px 22px;
  border-bottom: 1px solid var(--hf-line);
  background: rgba(7, 9, 15, 0.88);
  backdrop-filter: blur(14px);
}

.wp-site-blocks > header .wp-block-site-title a,
.wp-site-blocks > header .wp-block-site-title {
  color: var(--hf-text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.wp-site-blocks > header .wp-block-site-title a::before {
  content: "// ";
  color: var(--hf-cyan);
}

.wp-block-navigation a,
.wp-block-navigation-item__content {
  color: var(--hf-muted) !important;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  text-decoration: none;
  text-transform: uppercase;
}

.wp-block-navigation a:hover,
.wp-block-navigation-item__content:hover {
  color: var(--hf-cyan) !important;
}

main {
  padding: 42px 22px 64px;
}

.wp-block-query-title,
h1,
h2,
h3,
h4 {
  color: var(--hf-text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  letter-spacing: 0;
}

h1,
.wp-block-query-title {
  max-width: 880px;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1.02;
}

h1::after,
.wp-block-query-title::after {
  content: "_";
  color: var(--hf-green);
}

a {
  color: var(--hf-cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--hf-green);
}

p,
li,
.wp-block-post-excerpt__excerpt {
  color: var(--hf-muted);
  line-height: 1.72;
}

.wp-block-post-template {
  display: grid;
  gap: 18px;
}

.wp-block-post,
.wp-block-query .wp-block-post,
.wp-block-group:has(.wp-block-post-title) {
  position: relative;
  padding: 24px;
  border: 1px solid var(--hf-line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(21, 27, 38, 0.94), rgba(13, 17, 24, 0.94));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.wp-block-post::before,
.wp-block-query .wp-block-post::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 4px;
  height: 100%;
  border-radius: 8px 0 0 8px;
  background: linear-gradient(var(--hf-cyan), var(--hf-green));
}

.wp-block-post-title a {
  color: var(--hf-text);
  text-decoration: none;
}

.wp-block-post-title a:hover {
  color: var(--hf-cyan);
}

.wp-block-post-date,
.wp-block-post-author-name,
.wp-block-post-terms,
.wp-block-post-navigation-link,
.wp-block-query-pagination {
  color: var(--hf-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.wp-block-read-more,
.wp-block-button__link,
button,
input[type="submit"] {
  border: 1px solid rgba(65, 231, 255, 0.55) !important;
  border-radius: 6px !important;
  background: rgba(65, 231, 255, 0.08) !important;
  color: var(--hf-cyan) !important;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(140, 255, 180, 0.08);
}

.wp-block-read-more:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
  border-color: var(--hf-green) !important;
  color: var(--hf-green) !important;
  background: rgba(140, 255, 180, 0.08) !important;
}

.wp-block-separator {
  border-color: var(--hf-line);
}

.wp-block-code,
pre,
code,
kbd {
  border-radius: 6px;
  background: var(--hf-code);
  color: var(--hf-green);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.wp-block-code,
pre {
  border: 1px solid var(--hf-line);
  padding: 18px;
}

.wp-block-search__input,
input,
textarea {
  border: 1px solid var(--hf-line) !important;
  border-radius: 6px !important;
  background: rgba(13, 17, 24, 0.96) !important;
  color: var(--hf-text) !important;
}

.wp-block-search__input:focus,
input:focus,
textarea:focus {
  outline: 2px solid rgba(65, 231, 255, 0.34);
  outline-offset: 2px;
}

.wp-site-blocks > footer {
  padding: 28px 22px 42px;
  border-top: 0;
  color: var(--hf-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
}

@media (max-width: 720px) {
  .wp-site-blocks > header {
    position: static;
    padding: 16px;
  }

  main {
    padding: 28px 16px 48px;
  }

  .wp-block-post,
  .wp-block-query .wp-block-post,
  .wp-block-group:has(.wp-block-post-title) {
    padding: 18px;
  }
}
/* How to Fix PC cyber home layout */
.hf-main {
  padding-top: 34px;
}

.hf-hero {
  position: relative;
  margin-bottom: 34px;
  padding: 34px 28px;
  border: 1px solid var(--hf-line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(21, 27, 38, 0.96), rgba(9, 13, 19, 0.96));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
}

.hf-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--hf-cyan), var(--hf-green), transparent);
}

.hf-kicker,
.hf-section-label p {
  margin: 0 0 14px;
  color: var(--hf-green);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hf-kicker::before {
  content: "STATUS: ";
  color: var(--hf-cyan);
}

.hf-lede {
  max-width: 760px;
  font-size: 1.08rem;
}

.hf-section-label {
  margin-top: 0;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--hf-line);
}

.wp-block-post-template.is-layout-grid {
  grid-template-columns: minmax(0, 1fr) !important;
}

.wp-block-query .wp-block-post {
  max-width: none;
  min-height: auto;
}

.wp-block-query .wp-block-post-title {
  max-width: 920px;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.12;
}

.wp-block-query .wp-block-post-excerpt {
  max-width: 720px;
}

.hf-post-meta {
  gap: 12px 18px;
  margin-top: 22px;
}

.hf-post-meta a {
  color: var(--hf-cyan);
}

@media (min-width: 900px) {
  .hf-hero {
    padding: 44px 42px;
  }
}
/* Professional footer polish */
.wp-site-blocks > footer p:has(a[href*="wordpress.org"]),
.wp-site-blocks > footer .wp-block-site-title + p:has(a[href*="wordpress.org"]) {
  display: none !important;
}

.wp-site-blocks > footer::after {
  content: "No ads. No fluff. Practical repair notes.";
  display: block;
  margin-top: 14px;
  color: var(--hf-muted);
}
/* Single article reading typography */
.single-post main {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.single-post .wp-block-post-title,
.single-post h1.wp-block-post-title,
.single-post h1 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.45rem, 5vw, 4.9rem);
  line-height: 1.08;
  text-wrap: balance;
}

.single-post .wp-block-post-content {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.single-post .wp-block-post-content > * {
  max-width: 860px;
}

.single-post .wp-block-post-content p,
.single-post .wp-block-post-content li {
  color: #b6c0ce;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  line-height: 1.76;
}

.single-post .wp-block-post-content h2,
.single-post .wp-block-post-content h3 {
  margin-top: 2.4em;
  margin-bottom: 0.55em;
  color: var(--hf-text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  text-wrap: balance;
}

.single-post .wp-block-post-content h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.18;
}

.single-post .wp-block-post-content h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.25;
}

.single-post .wp-block-post-content h2::before {
  content: "# ";
  color: var(--hf-cyan);
}

.single-post .wp-block-post-content p:first-of-type {
  color: #c7d0dc;
  font-size: clamp(1.08rem, 1.55vw, 1.26rem);
}

.single-post .wp-block-post-date,
.single-post .wp-block-post-terms,
.single-post .taxonomy-category,
.single-post .wp-block-post-author-name {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.single-post .wp-block-spacer {
  max-height: 38px;
}

.single-post .wp-block-template-part + main,
.single-post main.wp-block-group {
  margin-top: 0 !important;
}

@media (min-width: 1200px) {
  .single-post .wp-block-post-content {
    max-width: 920px;
  }

  .single-post .wp-block-post-content > * {
    max-width: 920px;
  }
}

@media (max-width: 720px) {
  .single-post main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .single-post .wp-block-post-title,
  .single-post h1.wp-block-post-title,
  .single-post h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}
/* Single article template v2 */
.hf-article-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px 72px;
}

.hf-article-shell {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--hf-line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(21, 27, 38, 0.95), rgba(11, 15, 22, 0.97));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.hf-article-header {
  max-width: 900px;
  margin: 0 auto 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hf-line);
}

.hf-article-header .wp-block-post-title {
  max-width: 900px;
  margin: 0;
  color: var(--hf-text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  line-height: 1.12;
  text-wrap: balance;
}

.hf-article-meta {
  gap: 10px 18px;
  margin-top: 24px;
  margin-bottom: 6px;
  color: var(--hf-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.hf-article-meta a {
  color: var(--hf-cyan);
}

.hf-article-shell .wp-block-post-content {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hf-article-shell .wp-block-post-content > * {
  max-width: 820px;
}

.hf-article-shell .wp-block-post-content p,
.hf-article-shell .wp-block-post-content li {
  color: #bcc6d3;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.06rem;
  line-height: 1.75;
}

.hf-article-shell .wp-block-post-content p:first-of-type {
  color: #d1d8e3;
  font-size: 1.16rem;
  line-height: 1.7;
}

.hf-article-shell .wp-block-post-content h2,
.hf-article-shell .wp-block-post-content h3 {
  margin-top: 2.35em;
  margin-bottom: 0.55em;
  color: var(--hf-text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  line-height: 1.22;
  text-wrap: balance;
}

.hf-article-shell .wp-block-post-content h2 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.hf-article-shell .wp-block-post-content h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}

.hf-article-shell .wp-block-post-content h2::before {
  content: "# ";
  color: var(--hf-cyan);
}

.wp-site-blocks > footer p.has-text-align-right {
  display: none !important;
}

@media (min-width: 1280px) {
  .hf-article-shell .wp-block-post-content,
  .hf-article-shell .wp-block-post-content > * {
    max-width: 880px;
  }
}

@media (max-width: 720px) {
  .hf-article-main {
    padding: 22px 14px 52px;
  }

  .hf-article-shell {
    padding: 22px 18px;
  }

  .hf-article-header .wp-block-post-title {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .hf-article-shell .wp-block-post-content p,
  .hf-article-shell .wp-block-post-content li {
    font-size: 1rem;
  }
}
/* Single article final scale tuning */
.hf-article-header .wp-block-post-title {
  font-size: clamp(2rem, 3.35vw, 3.15rem) !important;
  line-height: 1.16 !important;
}

.hf-article-shell .wp-block-post-content h2 {
  font-size: clamp(1.28rem, 1.75vw, 1.62rem) !important;
}

.hf-article-shell .wp-block-post-content p,
.hf-article-shell .wp-block-post-content li {
  font-size: 1.04rem !important;
}

.hf-article-shell .wp-block-post-content p:first-of-type {
  font-size: 1.1rem !important;
}

footer.wp-block-template-part p.has-text-align-right,
footer.wp-block-template-part a[href*="wordpress.org"] {
  display: none !important;
}

footer.wp-block-template-part .wp-block-group.alignwide {
  justify-content: flex-start !important;
}
/* Practical guide media and tables */
.hf-guide-image {
  margin-top: 2rem;
  margin-bottom: 2.2rem;
}

.hf-guide-image img {
  display: block;
  width: 100%;
  border: 1px solid var(--hf-line);
  border-radius: 8px;
  background: #07090f;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.hf-guide-image figcaption,
.wp-block-image figcaption {
  margin-top: 0.75rem;
  color: var(--hf-muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
}

.hf-check-table {
  margin-top: 1.7rem;
  margin-bottom: 2.2rem;
  overflow-x: auto;
}

.hf-check-table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--hf-line);
  border-radius: 8px;
  background: rgba(13, 19, 29, 0.75);
  overflow: hidden;
}

.hf-check-table th,
.hf-check-table td {
  border: 1px solid rgba(130, 151, 176, 0.18);
  padding: 0.9rem 1rem;
  text-align: left;
  vertical-align: top;
}

.hf-check-table th {
  color: var(--hf-green);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.88rem;
  text-transform: uppercase;
  background: rgba(65, 231, 255, 0.06);
}

.hf-check-table td {
  color: #bcc6d3;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.98rem;
  line-height: 1.55;
}

.hf-article-shell .wp-block-post-content ul,
.hf-article-shell .wp-block-post-content ol {
  padding-left: 1.35rem;
}

.hf-article-shell .wp-block-post-content li + li {
  margin-top: 0.55rem;
}
/* Author spotlight for expert columns */
.hf-author-spotlight {
  position: relative;
  margin-top: clamp(28px, 4vw, 48px) !important;
  padding: clamp(22px, 3vw, 34px) !important;
  border: 1px solid rgba(125, 249, 255, .24);
  border-left: 4px solid var(--hf-mint);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(21, 30, 43, .94), rgba(9, 15, 24, .96)),
    repeating-linear-gradient(90deg, rgba(125, 249, 255, .06) 0 1px, transparent 1px 28px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.hf-author-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(125, 249, 255, .16), transparent 44%, rgba(143, 255, 190, .08));
  pointer-events: none;
}

.hf-author-label,
.hf-author-footer-label {
  position: relative;
  margin: 0 0 14px !important;
  color: var(--hf-mint) !important;
  font-size: .78rem !important;
  font-family: var(--hf-font-mono);
  font-weight: 800;
  letter-spacing: .12em !important;
  line-height: 1.2;
  text-transform: uppercase;
}

.hf-author-spotlight .wp-block-post-author {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  column-gap: 22px;
  row-gap: 8px;
  align-items: center;
  margin: 0 !important;
}

.hf-author-spotlight .wp-block-post-author__avatar {
  grid-row: 1 / span 4;
  margin: 0;
}

.hf-author-spotlight .avatar,
.hf-author-footer .avatar {
  border-radius: 50%;
  border: 2px solid rgba(125, 249, 255, .58);
  box-shadow: 0 0 0 6px rgba(125, 249, 255, .08), 0 18px 40px rgba(0, 0, 0, .32);
}

.hf-author-spotlight .wp-block-post-author__byline {
  display: block;
  margin: 0 0 3px;
  color: var(--hf-muted);
  font-family: var(--hf-font-mono);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hf-author-spotlight .wp-block-post-author__name {
  margin: 0 !important;
  color: var(--hf-text);
  font-family: var(--hf-font-sans);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 850;
  letter-spacing: 0 !important;
  line-height: 1.05;
}

.hf-author-spotlight .wp-block-post-author__bio {
  max-width: 760px;
  margin: 9px 0 0 !important;
  color: var(--hf-muted);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.72;
}

.hf-author-badges {
  position: relative;
  gap: 10px !important;
  margin-top: 18px !important;
}

.hf-author-badges p {
  margin: 0 !important;
  padding: 8px 11px;
  border: 1px solid rgba(125, 249, 255, .22);
  border-radius: 999px;
  background: rgba(125, 249, 255, .07);
  color: #d6eef8 !important;
  font-family: var(--hf-font-mono);
  font-size: .78rem !important;
  font-weight: 700;
  line-height: 1.2;
}

.hf-author-footer {
  margin-top: clamp(50px, 7vw, 84px) !important;
  padding-top: 28px;
  border-top: 1px solid rgba(125, 249, 255, .18);
}

.hf-author-footer .wp-block-post-author {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px 18px;
  align-items: center;
}

.hf-author-footer .wp-block-post-author__avatar {
  grid-row: 1 / span 3;
  margin: 0;
}

.hf-author-footer .wp-block-post-author__name {
  margin: 0 !important;
  color: var(--hf-text);
  font-size: 1.15rem;
  font-weight: 800;
}

.hf-author-footer .wp-block-post-author__bio {
  margin: 4px 0 0 !important;
  color: var(--hf-muted);
  font-size: .98rem;
  line-height: 1.65;
}

@media (max-width: 700px) {
  .hf-author-spotlight {
    padding: 20px !important;
  }

  .hf-author-spotlight .wp-block-post-author,
  .hf-author-footer .wp-block-post-author {
    grid-template-columns: 1fr;
  }

  .hf-author-spotlight .wp-block-post-author__avatar,
  .hf-author-footer .wp-block-post-author__avatar {
    grid-row: auto;
  }
}
/* Article panel hierarchy cleanup */
.single-post .wp-block-group:has(.wp-block-post-title),
.single-post .hf-article-shell,
.single-post .hf-article-header {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.single-post .wp-block-group:has(.wp-block-post-title)::before {
  display: none !important;
}

.single-post .hf-article-main {
  max-width: 1180px;
  padding-top: clamp(38px, 5vw, 68px) !important;
}

.single-post .hf-article-shell {
  max-width: 1060px;
  padding: 0 clamp(20px, 4vw, 42px) 72px !important;
}

.single-post .hf-article-header {
  max-width: 920px;
  margin: 0 auto clamp(34px, 5vw, 52px) !important;
  padding: 0 0 clamp(24px, 4vw, 38px) !important;
  border-bottom: 1px solid rgba(125, 249, 255, .18) !important;
}

.single-post .hf-article-header .wp-block-post-title {
  padding: 0 !important;
}

.single-post .hf-author-spotlight {
  margin-top: clamp(26px, 4vw, 44px) !important;
}

@media (max-width: 720px) {
  .single-post .hf-article-shell {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
/* Compact top author row */
.single-post .hf-author-strip {
  width: fit-content;
  max-width: 100%;
  margin: 26px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.single-post .hf-author-strip::before {
  display: none !important;
}

.single-post .hf-author-strip .wp-block-post-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 !important;
}

.single-post .hf-author-strip .wp-block-post-author__avatar {
  margin: 0;
  line-height: 0;
}

.single-post .hf-author-strip .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(125, 249, 255, .52);
  box-shadow: 0 0 0 4px rgba(125, 249, 255, .07);
}

.single-post .hf-author-strip .wp-block-post-author__content {
  display: block;
}

.single-post .hf-author-strip .wp-block-post-author__byline,
.single-post .hf-author-strip .wp-block-post-author__bio {
  display: none !important;
}

.single-post .hf-author-strip .wp-block-post-author__name {
  margin: 0 !important;
  color: var(--hf-text);
  font-family: var(--hf-font-sans);
  font-size: .98rem;
  font-weight: 800;
  letter-spacing: 0 !important;
  line-height: 1.15;
}

.single-post .hf-author-strip .wp-block-post-author__name::before {
  content: "By ";
  color: var(--hf-muted);
  font-family: var(--hf-font-mono);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
/* Site pages, home, and footer polish */
.hf-home-main,
.hf-page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 84px) 24px 76px;
}

.hf-home-hero {
  max-width: 1050px;
  margin: 0 auto clamp(42px, 7vw, 76px) !important;
  padding-bottom: clamp(34px, 5vw, 52px);
  border-bottom: 1px solid rgba(125, 249, 255, .18);
}

.hf-home-kicker {
  display: block;
  margin: 0 0 26px !important;
  color: var(--hf-mint) !important;
  font-family: var(--hf-font-mono);
  font-size: .82rem !important;
  font-weight: 800;
  letter-spacing: .14em !important;
  text-transform: uppercase;
}

.hf-home-hero h1 {
  max-width: 860px;
  margin: 0 !important;
  color: var(--hf-text);
  font-family: var(--hf-font-mono);
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 1;
  letter-spacing: 0 !important;
}

.hf-home-lede {
  max-width: 760px;
  margin: 34px 0 0 !important;
  color: #c7d3df !important;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem) !important;
  line-height: 1.65;
}

.hf-home-actions {
  gap: 12px !important;
  margin-top: 40px !important;
}

.hf-home-sections {
  max-width: 1050px;
  margin: 0 auto !important;
}

.hf-home-topics {
  gap: 16px;
  margin-bottom: clamp(38px, 6vw, 64px) !important;
}

.hf-home-topics .wp-block-column {
  padding: 22px;
  border: 1px solid rgba(125, 249, 255, .18);
  border-radius: 8px;
  background: rgba(14, 22, 32, .72);
}

.hf-home-topics h2,
.hf-latest-guides h2,
.hf-page-content h2,
.hf-page-shell .wp-block-post-content h2 {
  color: var(--hf-text);
  font-family: var(--hf-font-mono);
  letter-spacing: 0 !important;
}

.hf-home-topics h2 {
  margin: 0 0 10px !important;
  font-size: 1.2rem;
}

.hf-home-topics p {
  margin: 0 !important;
  color: var(--hf-muted) !important;
  font-size: .98rem !important;
  line-height: 1.65;
}

.hf-latest-guides {
  margin-top: 0 !important;
}

.hf-latest-guides > h2 {
  margin-bottom: 18px !important;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.hf-guide-card {
  margin: 0 0 16px !important;
  padding: 22px 24px !important;
  border: 1px solid rgba(125, 249, 255, .18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 24, 35, .86), rgba(9, 14, 21, .92));
}

.hf-guide-card h3 {
  margin: 18px 0 14px !important;
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  line-height: 1.18;
}

.hf-guide-card h3 a {
  color: var(--hf-text);
  text-decoration: none;
}

.hf-guide-card .wp-block-post-excerpt__excerpt {
  margin-bottom: 12px !important;
}

.hf-guide-card-terms {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--hf-cyan);
  font-family: var(--hf-font-mono);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hf-page-shell {
  max-width: 860px;
  margin: 0 auto !important;
}

.hf-page-header {
  margin-bottom: clamp(24px, 4vw, 40px) !important;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(125, 249, 255, .18);
}

.hf-page-header .wp-block-post-title {
  margin: 0 !important;
  color: var(--hf-text);
  font-family: var(--hf-font-mono);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0 !important;
}

.hf-page-shell .wp-block-post-content p,
.hf-page-shell .wp-block-post-content li {
  color: #bcc6d3;
  font-family: var(--hf-font-sans);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hf-page-lede {
  color: #d9e3ee !important;
  font-size: clamp(1.18rem, 1.8vw, 1.36rem) !important;
  line-height: 1.65 !important;
}

.hf-page-shell .wp-block-post-content h2 {
  margin-top: 2.1em;
  margin-bottom: .55em;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.hf-page-shell .wp-block-post-content h2::before {
  content: "# ";
  color: var(--hf-cyan);
}

.hf-site-footer {
  max-width: none !important;
  margin-top: 32px !important;
  padding: 34px 24px 38px !important;
  border-top: 1px solid rgba(125, 249, 255, .18);
  background: rgba(5, 9, 14, .52);
}

.hf-footer-grid {
  max-width: 1080px;
  margin: 0 auto !important;
}

.hf-footer-brand {
  max-width: 620px;
  margin: 0 !important;
}

.hf-footer-name {
  margin: 0 0 8px !important;
  color: var(--hf-text) !important;
  font-family: var(--hf-font-mono);
  font-size: 1rem !important;
  font-weight: 800;
}

.hf-footer-brand p:not(.hf-footer-name),
.hf-footer-note {
  color: var(--hf-muted) !important;
  font-size: .92rem !important;
  line-height: 1.6;
}

.hf-footer-links {
  gap: 8px 18px !important;
  margin-top: 22px !important;
}

.hf-footer-links p {
  margin: 0 !important;
}

.hf-footer-links a {
  color: #d8e4ef;
  font-family: var(--hf-font-mono);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hf-footer-links a:hover {
  color: var(--hf-cyan);
}

.hf-footer-note {
  margin-top: 24px !important;
  padding-top: 18px;
  border-top: 1px solid rgba(125, 249, 255, .12);
}

@media (max-width: 720px) {
  .hf-home-main,
  .hf-page-main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hf-home-topics .wp-block-column,
  .hf-guide-card {
    padding: 18px !important;
  }
}
/* Site-wide panel hierarchy cleanup */
.home .hf-home-hero,
.home .hf-home-sections,
.home .hf-latest-guides,
.page .hf-page-shell,
.page .hf-page-header,
.page .wp-block-group:has(.wp-block-post-title) {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.home .hf-home-hero::before,
.home .hf-home-sections::before,
.home .hf-latest-guides::before,
.page .hf-page-shell::before,
.page .hf-page-header::before,
.page .wp-block-group:has(.wp-block-post-title)::before {
  display: none !important;
}

.home .hf-home-main {
  padding-top: clamp(76px, 8vw, 118px) !important;
}

.home .hf-home-hero {
  padding: 0 0 clamp(46px, 6vw, 68px) !important;
}

.home .hf-home-sections {
  padding: 0 !important;
}

.home .hf-home-topics {
  align-items: stretch;
}

.home .hf-home-topics .wp-block-column {
  box-shadow: none !important;
}

.home .hf-latest-guides {
  max-width: 900px;
  padding: 0 !important;
}

.home .hf-guide-card {
  max-width: 760px;
  margin-left: 0 !important;
}

.home .hf-guide-card::before {
  display: none !important;
}

.home .hf-guide-card h3 {
  max-width: 680px;
  font-size: clamp(1.65rem, 3vw, 2.45rem) !important;
}

.page .hf-page-main {
  padding-top: clamp(52px, 7vw, 92px) !important;
}

.page .hf-page-shell {
  padding: 0 !important;
}

.page .hf-page-header {
  max-width: 860px;
  padding: 0 0 24px !important;
}

.page .hf-page-header .wp-block-post-title {
  padding: 0 !important;
}
/* Home query card nesting cleanup */
.home .wp-block-group:has(.wp-block-post-title),
.home .wp-block-query .wp-block-post {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.home .wp-block-group:has(.wp-block-post-title)::before,
.home .wp-block-query .wp-block-post::before {
  display: none !important;
}

.home .hf-home-main {
  max-width: 1120px !important;
}

.home .hf-home-topics {
  max-width: 760px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.home .hf-home-topics .wp-block-column {
  padding: 22px !important;
  border: 1px solid rgba(125, 249, 255, .18) !important;
  border-radius: 8px !important;
  background: rgba(14, 22, 32, .72) !important;
}

.home .hf-guide-card {
  position: relative;
  padding: 28px 30px !important;
  border: 1px solid rgba(125, 249, 255, .18) !important;
  border-left: 4px solid var(--hf-cyan) !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg, rgba(16, 24, 35, .86), rgba(9, 14, 21, .92)) !important;
}

.home .hf-guide-card h3 {
  margin-top: 20px !important;
}
/* Home featured guide refinement */
.home .hf-latest-guides {
  max-width: 880px;
  margin-left: 0 !important;
}

.home .hf-guide-card {
  display: grid;
  grid-template-columns: minmax(260px, 42%) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 880px !important;
  padding: 18px !important;
}

.home .hf-guide-thumb {
  align-self: stretch;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(125, 249, 255, .18);
  border-radius: 6px;
  background: rgba(9, 14, 21, .8);
}

.home .hf-guide-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.home .hf-guide-card-copy {
  padding: 10px 8px 10px 0 !important;
}

.home .hf-guide-card-copy::before {
  display: none !important;
}

.home .hf-guide-card h3 {
  max-width: 460px;
  margin: 10px 0 14px !important;
  font-size: clamp(1.35rem, 2vw, 1.95rem) !important;
  line-height: 1.16 !important;
}

.home .hf-guide-card .wp-block-post-excerpt__excerpt {
  font-size: 1rem !important;
  line-height: 1.65;
}

@media (max-width: 820px) {
  .home .hf-guide-card {
    grid-template-columns: 1fr;
  }

  .home .hf-guide-card-copy {
    padding: 0 !important;
  }
}
/* Home featured guide no-overlap fix */
.home .hf-guide-card {
  display: block !important;
  max-width: 760px !important;
  padding: 0 !important;
  overflow: hidden;
}

.home .hf-guide-thumb {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  border: 0 !important;
  border-bottom: 1px solid rgba(125, 249, 255, .18) !important;
  border-radius: 0 !important;
}

.home .hf-guide-thumb img {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home .hf-guide-card-copy {
  padding: 24px 28px 28px !important;
}

.home .hf-guide-card h3 {
  max-width: 620px;
  font-size: clamp(1.35rem, 2.2vw, 2rem) !important;
}

/* Child theme final cleanup */
.wp-site-blocks > footer::after {
  content: none !important;
  display: none !important;
}

.home .wp-block-post-template > li:nth-child(n+2) .hf-guide-thumb {
  display: none !important;
}

.home .wp-block-post-template > li:nth-child(n+2) .hf-guide-card {
  padding: 34px 0 22px !important;
  border: 0 !important;
  background: transparent !important;
}

.home .wp-block-post-template > li + li {
  margin-top: 20px !important;
}

.home .hf-guide-card .wp-block-post-excerpt {
  margin-top: 18px !important;
}

.home .hf-guide-card .wp-block-read-more {
  display: inline-block;
  margin-top: 18px;
}

.wp-block-button__link {
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

/* Archive and category pages */
.hf-archive-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 112px) 24px 78px;
}

.hf-archive-header {
  max-width: 900px;
  margin: 0 auto clamp(38px, 6vw, 64px) !important;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(125, 249, 255, .18);
}

.hf-archive-header .wp-block-query-title {
  margin: 0 !important;
  color: var(--hf-text);
  font-family: var(--hf-font-mono);
  font-size: clamp(2.25rem, 5vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: 0 !important;
}

.hf-archive-query {
  max-width: 1040px;
  margin: 0 auto !important;
}

.hf-archive-list {
  display: grid !important;
  gap: 28px !important;
}

.hf-archive-list > li,
.hf-archive-query .wp-block-post,
.hf-archive-card,
.archive .wp-block-group:has(.wp-block-post-title),
.category .wp-block-group:has(.wp-block-post-title) {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hf-archive-list > li::before,
.hf-archive-query .wp-block-post::before,
.hf-archive-card::before,
.archive .wp-block-group:has(.wp-block-post-title)::before,
.category .wp-block-group:has(.wp-block-post-title)::before {
  display: none !important;
}

.hf-archive-card {
  display: grid !important;
  grid-template-columns: minmax(300px, 42%) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding-bottom: 28px !important;
  border-bottom: 1px solid rgba(125, 249, 255, .14) !important;
}

.hf-archive-thumb {
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(125, 249, 255, .18);
  border-radius: 8px;
  background: rgba(9, 14, 21, .8);
}

.hf-archive-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.hf-archive-card-copy {
  padding: 0 !important;
}

.hf-archive-card-copy h2 {
  margin: 14px 0 14px !important;
  color: var(--hf-text);
  font-family: var(--hf-font-mono);
  font-size: clamp(1.18rem, 1.45vw, 1.5rem);
  line-height: 1.22;
  letter-spacing: 0 !important;
  overflow-wrap: break-word;
  word-break: normal;
}

.hf-archive-card-copy h2 a {
  color: inherit;
  text-decoration: none;
}

.hf-archive-card-copy h2 a:hover {
  color: var(--hf-cyan);
}

.hf-archive-card-copy .wp-block-post-excerpt__excerpt {
  color: var(--hf-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hf-archive-card-copy .wp-block-post-date {
  margin-top: 14px;
  color: var(--hf-cyan);
}

@media (max-width: 760px) {
  .hf-archive-main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hf-archive-card {
    grid-template-columns: 1fr;
  }
}
/* FIXPC Lab brand header */
.wp-site-blocks > header,
.hf-site-header {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(125, 249, 255, .18) !important;
  background: rgba(5, 9, 14, .78) !important;
  backdrop-filter: blur(16px);
}

.hf-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px;
}

.hf-brand,
.hf-footer-brandmark {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--hf-text);
  text-decoration: none;
}

.hf-brand-symbol {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 10px rgba(65, 231, 255, .24));
}

.hf-brand-copy {
  display: grid;
  gap: 3px;
}

.hf-brand-name,
.hf-footer-name {
  display: block;
  color: var(--hf-text);
  font-family: var(--hf-font-mono);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
}

.hf-brand-slogan,
.hf-footer-slogan {
  display: block;
  color: var(--hf-muted);
  font-family: var(--hf-font-sans);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.2;
}

.hf-header-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.hf-header-nav a {
  color: var(--hf-muted);
  font-family: var(--hf-font-mono);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hf-header-nav a:hover {
  color: var(--hf-cyan);
}

.hf-footer-brandmark {
  margin-bottom: 16px;
}

.hf-footer-brandmark .hf-brand-symbol {
  width: 44px;
  height: 44px;
}

.hf-footer-brandmark .hf-footer-name {
  margin: 0 0 3px !important;
}

@media (max-width: 720px) {
  .hf-header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 14px 18px;
  }

  .hf-brand-slogan {
    font-size: .74rem;
  }

  .hf-header-nav {
    gap: 12px;
  }
}
/* Malware guide callouts */
.hf-warning-box {
  margin-top: 1.6rem !important;
  margin-bottom: 1.8rem !important;
  padding: 16px 18px;
  border: 1px solid rgba(255, 107, 107, .36);
  border-left: 4px solid #ff6b6b;
  border-radius: 8px;
  background: rgba(255, 107, 107, .08);
  color: #ffd7d7 !important;
}

.schema-faq-section {
  margin: 1rem 0;
  padding: 16px 18px;
  border: 1px solid rgba(125, 249, 255, .16);
  border-radius: 8px;
  background: rgba(14, 22, 32, .58);
}

/* Header and top-of-page spacing tuning */
.wp-site-blocks {
  padding-top: 0 !important;
}

.hf-header-inner {
  min-height: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.hf-brand-symbol {
  width: 40px;
  height: 40px;
}

.hf-brand-name {
  font-size: .96rem;
}

.hf-brand-slogan {
  font-size: .72rem;
}

.home .hf-home-hero {
  margin-top: clamp(34px, 4vw, 58px) !important;
}

.page .hf-page-shell,
.single .hf-article-shell,
.archive .hf-archive-main {
  margin-top: clamp(24px, 3vw, 42px) !important;
}

/* Home content should use the same visual measure as the footer strip. */
.home .hf-home-main {
  max-width: 1120px !important;
  width: 100%;
}

.home .hf-home-hero,
.home .hf-home-sections,
.home .hf-latest-guides,
.home .hf-latest-guides .wp-block-query,
.home .wp-block-post-template,
.home .wp-block-post-template > li {
  max-width: none !important;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.home .hf-latest-guides > .wp-block-heading {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.home .hf-home-topics {
  max-width: none !important;
  width: 100%;
}

.home .hf-guide-card {
  max-width: none !important;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.home .wp-block-post-template > li:first-child .hf-guide-card {
  display: grid !important;
  grid-template-columns: minmax(360px, 48%) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 18px !important;
}

.home .wp-block-post-template > li:first-child .hf-guide-thumb {
  border: 1px solid rgba(125, 249, 255, .18) !important;
  border-radius: 6px !important;
}

.home .wp-block-post-template > li:first-child .hf-guide-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 18px 14px 0 !important;
}

.home .wp-block-post-template > li:first-child .hf-guide-card h3,
.home .wp-block-post-template > li:nth-child(n+2) .hf-guide-card h3,
.home .wp-block-post-template > li:nth-child(n+2) .wp-block-post-excerpt {
  max-width: 820px !important;
}

@media (max-width: 820px) {
  .home .wp-block-post-template > li:first-child .hf-guide-card {
    grid-template-columns: 1fr;
  }

  .home .wp-block-post-template > li:first-child .hf-guide-card-copy {
    padding: 18px 10px 10px !important;
  }
}

.schema-faq-question {
  display: block;
  margin-bottom: 7px;
  color: var(--hf-text);
}

.schema-faq-answer {
  margin: 0 !important;
}
