/*
Theme Name: Founders Theme
Theme URI: 
Description: A minimal, speed-optimized single-column theme for reviews and comparison content
Version: 1.0
*/

:root {
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #eef7fb;
  --soft2: #f9fafb;
  --link: #1d4ed8;
  --accent: #0f766e;
  --accent2: #1e40af;
  --star: #f4b400;
  --maxWide: 1080px;
  --maxNarrow: 780px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.75;
  font-size: 18px;
}

/* Top navigation */
.topnav {
  max-width: var(--maxWide);
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.topnav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  font-family: 'Nunito Sans', -apple-system, sans-serif;
  font-size: 14px;
}

.topnav li {
  margin: 0;
  padding: 0;
}

.topnav a {
  color: var(--muted);
  text-decoration: none;
}

.topnav a:hover {
  text-decoration: underline;
}

/* Hero/Header band */
.heroBand {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.heroInner {
  max-width: var(--maxWide);
  margin: 0 auto;
  padding: 34px 18px 30px;
  display: grid;
  grid-template-columns: 1.6fr 0.4fr;
  gap: 22px;
  align-items: center;
}

@media (max-width: 820px) {
  .heroInner {
    grid-template-columns: 1fr;
  }
}

/* Typography */
h1 {
  margin: 0 0 10px;
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #1f2a37;
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
}

h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 26px;
  margin: 0 0 10px;
  line-height: 1.25;
  color: #2a3442;
  font-weight: 400;
}

h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 22px;
  margin: 20px 0 10px;
  line-height: 1.3;
}

.heroP {
  margin: 0;
  color: #364152;
  font-size: 17px;
  line-height: 1.85;
}

.authorImg {
  width: 170px;
  height: 170px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #fff;
  justify-self: end;
}

@media (max-width: 820px) {
  .authorImg {
    justify-self: start;
  }
}

.highlightLink {
  background: #fff176;
  padding: 0 0.15em;
  border-radius: 2px;
  color: inherit;
  text-decoration: none;
}

.highlightLink:hover {
  text-decoration: underline;
}

.disclosure {
  margin-top: 12px;
  font-size: 12.5px;
  color: #475569;
}

/* Main content container */
.container {
  max-width: var(--maxNarrow);
  margin: 0 auto;
  padding: 28px 18px 80px;
}

.centerTitle {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 12px;
}

/* Winner/Feature boxes */
.winnerBox {
  border: 1.5px solid #1f2937;
  padding: 16px 16px 12px;
  margin: 10px auto 14px;
  background: #fff;
}

.winnerLine {
  font-size: 26px;
  margin: 0 0 6px;
  line-height: 1.25;
}

.winnerSub {
  margin: 0;
  font-style: italic;
  color: #3f4b5a;
}

/* Star ratings */
.stars {
  color: var(--star);
  letter-spacing: 1px;
  font-size: 18px;
  vertical-align: middle;
}

.score {
  color: #111827;
  font-weight: 700;
  font-size: 18px;
  margin-left: 6px;
}

/* Lists */
.ratingList {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  font-size: 19px;
  line-height: 1.65;
  color: #2b3442;
}

.ratingList li {
  margin: 4px 0;
}

.small {
  font-size: 18px;
}

ul {
  margin: 8px 0 14px;
  padding-left: 22px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 18px;
}

li {
  margin: 6px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 800;
  font-size: 16px;
  padding: 9px 12px;
  background: #2e7cad;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 0;
  line-height: 1.2;
  border: none;
  cursor: pointer;
}

.btn  a{
  display: inline-block;
  font-weight: 800;
  font-size: 16px;
  padding: 9px 12px;
  background: #2e7cad;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 0;
  line-height: 1.2;
  border: none;
  cursor: pointer;
}

.btn:hover, .btn  a:hover {
  opacity: 0.92;
  color: #fff !important;
  text-decoration: none !important;
}

.btnRow {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* Separators */
hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0 0 40px;
}

/* Review sections */
.reviewTitle {
  font-size: 26px;
  margin: 0;
  line-height: 1.25;
}

.reviewMeta {
  margin: 6px 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.logoRow {
  margin: 12px 0 12px;
}

.logoImg {
  max-width: 220px;
  height: auto;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
  display: inline-block;
}

.label {
  font-weight: 900;
  margin-top: 10px;
  margin-bottom: 6px;
}

.section p,
.sectionP {
  margin: 10px 0;
}

section {
  padding-bottom: 40px;
}

/* Images */
.image,
img {
  max-width: 100%;
  height: auto;
}

.image {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--soft2);
  margin-top: 14px;
  margin-bottom: 40px;
}

.caption {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

.endHeader {
  font-size: 28px;
  margin: 0 0 10px;
}

/* Footer */
.footerNote {
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.footerNote p {
  margin: 4px 0;
}

/* WordPress specific */
.wp-block-image {
  margin: 14px 0 40px;
}

.wp-block-image img {
  border: 1px solid var(--line);
  background: var(--soft2);
}

/* Alignments */
.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Links */
a {
  color: var(--link);
  text-decoration: underline;
}

a:hover {
  opacity: 0.8;
}

/* Accessibility */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Comments (minimal) */
.comments-area {
  margin-top: 40px;
}

.comment-list {
  list-style: none;
  padding: 0;
}

.comment {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

/* Entry meta */
.entry-meta {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.entry-meta a {
  color: var(--muted);
  text-decoration: none;
}

.entry-meta a:hover {
  text-decoration: underline;
}