/*
Theme Name: ReviewzLocker
Theme URI: https://reviewzlocker.com/
Author: ReviewzLocker
Author URI: https://reviewzlocker.com/
Description: A clean, fast editorial theme for product review and buying-guide sites. Card-based homepage with a featured grid, ranked popular row and sidebar, plus category archives, long-form article layouts and ready-made legal page styling.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: reviewzlocker
Tags: blog, news, two-columns, right-sidebar, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/
/* ReviewzLocker — site stylesheet */

:root {
  --ink: #212529;
  --ink-soft: #495057;
  --muted: #6c757d;
  --line: #e9ecef;
  --line-strong: #ced4da;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --brand: #1f7a8c;
  --brand-dark: #175f6d;
  --brand-tint: #e8f3f5;
  --accent: #ffc720;
  --radius: 6px;
  --shadow: 0 1px 3px rgba(16, 24, 40, .06), 0 1px 2px rgba(16, 24, 40, .04);
  --shadow-lg: 0 8px 24px rgba(16, 24, 40, .10);
  --serif: "PT Serif", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); text-decoration: underline; }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 .6rem;
  font-weight: 700;
}

h1 { font-size: 2.1rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */

.topbar {
  background: var(--ink);
  color: #cfd4d8;
  font-size: .8rem;
  letter-spacing: .02em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 38px;
  flex-wrap: wrap;
}
.topbar a { color: #cfd4d8; }
.topbar a:hover { color: #fff; }
.topbar-links { display: flex; gap: 18px; }

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  flex: 0 0 auto;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}
.brand-tag {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--ink);
  font-size: .9rem;
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.is-active {
  color: var(--brand);
  border-bottom-color: var(--brand);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 8px 10px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

/* ---------- Buttons + tags ---------- */

.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}
.btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; text-decoration: none; }
.btn-block { display: block; width: 100%; }
.btn-outline { background: transparent; color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }

.tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brand);
  background: var(--brand-tint);
  padding: 4px 9px;
  border-radius: 3px;
}
.tag:hover { text-decoration: none; background: var(--brand); color: #fff; }

.readmore {
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brand);
}

.meta {
  font-size: .78rem;
  color: var(--muted);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---------- Section headings ---------- */

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 8px;
  margin: 0 0 22px;
}
.section-head h2 { margin: 0; font-size: 1.32rem; }
.section-head a { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }

/* ---------- Featured grid ---------- */

.featured { padding: 34px 0 6px; }
.grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card { display: flex; flex-direction: column; }
.card-thumb {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-alt);
  aspect-ratio: 16 / 10;
}
.card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.card:hover .card-thumb img { transform: scale(1.04); }
.card-body { padding: 12px 0 0; }
.card-title { font-size: 1.08rem; margin: 8px 0 6px; }
.card-title a { color: var(--ink); }
.card-title a:hover { color: var(--brand); text-decoration: none; }
.card-excerpt { font-size: .9rem; color: var(--ink-soft); margin: 0 0 10px; }

/* ---------- Popular list ---------- */

.popular { padding: 40px 0; }
.popular-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; list-style: none; margin: 0; padding: 0; }
.popular-item .card-thumb { aspect-ratio: 4 / 3; }
.popular-rank {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--line-strong);
  line-height: 1;
}
.popular-item h3 { font-size: .98rem; margin: 6px 0 4px; }
.popular-item h3 a { color: var(--ink); }
.popular-item h3 a:hover { color: var(--brand); text-decoration: none; }

/* ---------- Main layout with sidebar ---------- */

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 46px;
  padding: 10px 0 50px;
  align-items: start;
}

/* ---------- Feed (horizontal article cards) ---------- */

.feed { display: flex; flex-direction: column; gap: 30px; }
.feed-item {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.feed-item:last-child { border-bottom: 0; }
.feed-item .card-thumb { aspect-ratio: 4 / 3; }
.feed-item h3 { font-size: 1.3rem; margin: 8px 0 8px; }
.feed-item h3 a { color: var(--ink); }
.feed-item h3 a:hover { color: var(--brand); text-decoration: none; }
.feed-item p { font-size: .92rem; color: var(--ink-soft); }

.feed-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.share { display: flex; gap: 8px; }
.share a {
  width: 30px; height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
}
.share a:hover { background: var(--brand); border-color: var(--brand); color: #fff; text-decoration: none; }

/* ---------- Sidebar ---------- */

.sidebar { display: flex; flex-direction: column; gap: 32px; position: sticky; top: 98px; }
.widget { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.widget-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--sans);
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--ink);
}

.newsletter-widget { background: var(--brand-tint); border-color: transparent; }
.newsletter-widget p { font-size: .88rem; color: var(--ink-soft); }
.field {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font: inherit;
  font-size: .9rem;
  margin-bottom: 10px;
  background: #fff;
  color: var(--ink);
}
.field:focus { outline: 2px solid var(--brand); outline-offset: -1px; border-color: var(--brand); }
.form-note { font-size: .74rem; color: var(--muted); margin: 10px 0 0; }

.picks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pick-thumb { border-radius: var(--radius); overflow: hidden; background: var(--bg-alt); aspect-ratio: 1 / 1; }
.pick-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pick h4 { font-size: .85rem; margin: 8px 0 2px; font-family: var(--sans); font-weight: 600; }
.pick h4 a { color: var(--ink); }
.pick-price { font-size: .84rem; font-weight: 700; color: var(--brand); }
.pick-price s { color: var(--muted); font-weight: 400; margin-left: 6px; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.gallery a { aspect-ratio: 1 / 1; overflow: hidden; border-radius: 3px; background: var(--bg-alt); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: opacity .25s ease; }
.gallery a:hover img { opacity: .8; }

.cat-list { list-style: none; margin: 0; padding: 0; }
.cat-list li { border-bottom: 1px solid var(--line); }
.cat-list li:last-child { border-bottom: 0; }
.cat-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 600;
}
.cat-list a:hover { color: var(--brand); text-decoration: none; }
.cat-count { color: var(--muted); font-weight: 400; font-size: .82rem; }

/* ---------- Page header ---------- */

.page-head {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
  margin-bottom: 34px;
}
.page-head h1 { margin-bottom: 8px; }
.page-head p { color: var(--ink-soft); max-width: 680px; margin: 0; }

.crumbs { font-size: .78rem; color: var(--muted); margin-bottom: 12px; }
.crumbs a { color: var(--muted); }
.crumbs span { margin: 0 6px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.chip {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
}
.chip:hover, .chip.is-active { background: var(--brand); border-color: var(--brand); color: #fff; text-decoration: none; }

/* ---------- Archive list ---------- */

.archive { display: flex; flex-direction: column; }
.archive-item {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.archive-item .card-thumb { aspect-ratio: 4 / 3; }
.archive-item h3 { font-size: 1.15rem; margin: 8px 0 6px; }
.archive-item h3 a { color: var(--ink); }
.archive-item h3 a:hover { color: var(--brand); text-decoration: none; }
.archive-item p { font-size: .9rem; color: var(--ink-soft); margin: 0 0 8px; }

/* ---------- Pagination ---------- */

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 34px 0 10px;
}
.pagination a, .pagination span {
  min-width: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  text-align: center;
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.pagination a:hover { background: var(--brand); border-color: var(--brand); color: #fff; text-decoration: none; }
.pagination .is-current { background: var(--brand); border-color: var(--brand); color: #fff; }
.pagination .is-disabled { color: var(--line-strong); }

/* ---------- Article ---------- */

.article-head { padding: 30px 0 0; max-width: 820px; }
.article-head h1 { font-size: 2.3rem; margin: 12px 0 14px; }
.article-lede { font-size: 1.08rem; color: var(--ink-soft); font-family: var(--serif); }
.article-hero { margin: 24px 0 10px; border-radius: var(--radius); overflow: hidden; background: var(--bg-alt); }
.article-hero img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.figure-caption { font-size: .78rem; color: var(--muted); padding: 8px 2px 0; }

.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin: 34px 0 12px; }
.prose h3 { font-size: 1.16rem; margin: 26px 0 10px; }
.prose p { font-size: 1.02rem; color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1rem; color: var(--ink-soft); }
.prose li { margin-bottom: .5rem; font-size: 1.02rem; }
.prose strong { color: var(--ink); }

.callout {
  border-left: 4px solid var(--brand);
  background: var(--brand-tint);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.callout p { margin: 0; font-size: .95rem; color: var(--ink-soft); }
.callout strong { color: var(--ink); }

.spec-table { width: 100%; border-collapse: collapse; margin: 20px 0 24px; font-size: .92rem; }
.spec-table th, .spec-table td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.spec-table th { background: var(--bg-alt); font-weight: 700; color: var(--ink); }
.spec-table td { color: var(--ink-soft); }
.table-wrap { overflow-x: auto; }

.disclosure {
  font-size: .82rem;
  color: var(--muted);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin: 24px 0;
}

.author-box {
  display: flex;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin: 34px 0;
}
.author-box img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
.author-box h4 { margin: 0 0 4px; font-family: var(--sans); font-size: .95rem; }
.author-box p { margin: 0; font-size: .86rem; color: var(--muted); }

.related { padding: 8px 0 50px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

/* ---------- Static/legal pages ---------- */

.legal { max-width: 800px; padding-bottom: 50px; }
.legal h2 { margin-top: 32px; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { padding-left: 22px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: #b6bcc2;
  padding: 50px 0 0;
  margin-top: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 36px;
  padding-bottom: 40px;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
}
.site-footer p { font-size: .88rem; }
.site-footer a { color: #b6bcc2; }
.site-footer a:hover { color: #fff; }
.footer-about img { border-radius: var(--radius); margin-bottom: 14px; aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 9px; font-size: .88rem; }
.footer-form .field { margin-bottom: 8px; }

.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 34px; height: 34px;
  border: 1px solid #3a4046;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 700;
}
.socials a:hover { background: var(--brand); border-color: var(--brand); color: #fff; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid #343a40;
  padding: 20px 0 26px;
  font-size: .8rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { margin: 0; }

/* ---------- Responsive ---------- */

@media (max-width: 992px) {
  .layout { grid-template-columns: 1fr; gap: 40px; }
  .sidebar { position: static; }
  .grid-6, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .popular-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 8px 20px 16px;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { border-bottom: 1px solid var(--line); }
  .main-nav li:last-child { border-bottom: 0; }
  .main-nav a { display: block; padding: 13px 0; border-bottom: 0; }
  .site-header { position: relative; }
  .header-inner { position: relative; min-height: 66px; }

  h1 { font-size: 1.7rem; }
  .article-head h1 { font-size: 1.75rem; }

  .grid-6, .grid-3, .popular-list { grid-template-columns: 1fr; }
  .feed-item, .archive-item { grid-template-columns: 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .topbar .container { justify-content: center; min-height: 0; padding-top: 8px; padding-bottom: 8px; }
}

/* ================================================================
   WordPress core classes
   ================================================================ */

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
  clip: auto !important;
  clip-path: none;
  color: var(--brand);
  display: block;
  font-size: .9rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.skip-link { position: absolute; }

.alignleft {
  float: left;
  margin: .4rem 1.5rem 1rem 0;
}
.alignright {
  float: right;
  margin: .4rem 0 1rem 1.5rem;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignwide { max-width: 100%; }
.alignfull { max-width: 100%; }

.wp-caption { max-width: 100%; margin-bottom: 1.5rem; }
.wp-caption img { margin: 0; }
.wp-caption-text,
.wp-element-caption,
.wp-block-image figcaption {
  font-size: .78rem;
  color: var(--muted);
  padding-top: 8px;
  text-align: left;
}

.sticky .card-title:before,
.sticky .entry-title:before {
  content: "\2605 ";
  color: var(--brand);
}

.bypostauthor > .comment-body { border-left: 3px solid var(--brand); padding-left: 12px; }

.gallery-caption { font-size: .78rem; color: var(--muted); }

.prose img,
.prose iframe,
.prose embed,
.prose object,
.prose video {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.prose figure { margin: 24px 0; }
.prose blockquote {
  border-left: 4px solid var(--brand);
  background: var(--brand-tint);
  margin: 24px 0;
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--serif);
  font-size: 1.05rem;
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose pre {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  overflow-x: auto;
  font-size: .88rem;
}
.prose code {
  background: var(--bg-alt);
  border-radius: 3px;
  padding: 2px 5px;
  font-size: .9em;
}
.prose pre code { background: none; padding: 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .92rem; }
.prose table th,
.prose table td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.prose table th { background: var(--bg-alt); font-weight: 700; }

/* Custom logo support */
.custom-logo-link { display: block; max-width: 190px; }
.custom-logo { width: auto; max-height: 52px; }

/* Widgets rendered by WordPress */
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget ul li { border-bottom: 1px solid var(--line); }
.widget ul li:last-child { border-bottom: 0; }
.widget ul li a {
  display: block;
  padding: 10px 0;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 600;
}
.widget ul li a:hover { color: var(--brand); text-decoration: none; }
.widget select { width: 100%; padding: 10px; border: 1px solid var(--line-strong); border-radius: var(--radius); font: inherit; }
.widget .search-field { width: 100%; }

/* Search form */
.search-form { display: flex; gap: 8px; }
.search-form .field { margin-bottom: 0; }

/* Comments */
.comments-area { max-width: 760px; padding: 10px 0 40px; }
.comments-area h2 { font-size: 1.4rem; margin-bottom: 20px; }
.comment-list { list-style: none; margin: 0 0 30px; padding: 0; }
.comment-list li { margin-bottom: 24px; }
.comment-list .children { list-style: none; padding-left: 24px; margin-top: 20px; }
.comment-body { border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.comment-meta { font-size: .82rem; color: var(--muted); margin-bottom: 8px; }
.comment-author img { border-radius: 50%; margin-right: 8px; vertical-align: middle; }
.comment-reply-link {
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.comment-respond textarea,
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"] {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font: inherit;
  font-size: .9rem;
  margin-bottom: 10px;
}
.comment-respond .submit {
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
}
.comment-respond .submit:hover { background: var(--brand-dark); }

/* Empty state / 404 */
.notice-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  text-align: center;
  margin-bottom: 40px;
}
.notice-block h2 { margin-bottom: 10px; }
.notice-block p { color: var(--ink-soft); }

/* Admin bar offset for the sticky header */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}
@media (max-width: 760px) {
  body.admin-bar .site-header { top: 0; }
}
