/* GFApps Theme - Main Stylesheet */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #3A6FF7;
  --blue-hover: #2E56C7;
  --blue-light: #EEF3FF;
  --violet: #7A5CFF;
  --green: #28A745;
  --green-light: #F0FFF6;
  --orange: #FF9F43;
  --red: #E84545;
  --red-light: #FFF6F6;
  --bg: #FAFAFD;
  --bg-alt: #F7F9FC;
  --bg-hero: #F5F7FE;
  --card: #FFFFFF;
  --border: #E4E6EB;
  --border-light: #EEF1F5;
  --text-dark: #222222;
  --text: #444444;
  --text-light: #6B7280;
  --text-muted: #9CA3AF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-blue: 0 4px 16px rgba(58,111,247,0.25);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --container: 1100px;
  --content-width: 740px;
  --font: 'Manrope', -apple-system, sans-serif;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-hover); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== NAV TABS ===== */
.page-tabs {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  display: none;
}
.page-tabs .container {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.page-tabs .container::-webkit-scrollbar { display: none; }
.page-tab {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.page-tab:hover, .page-tab.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.06); }
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: all var(--transition);
}
.nav a:hover { color: var(--blue); background: var(--blue-light); }
.nav a.active { color: var(--blue); }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text-dark); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  background: var(--bg-hero);
  padding: 64px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(58,111,247,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  position: relative;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 8px rgba(58,111,247,0.2);
}
.btn-primary:hover {
  background: var(--blue-hover);
  color: #fff;
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--card);
  color: var(--blue);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
}
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-visit {
  background: var(--blue);
  color: #fff;
  padding: 8px 18px;
  font-size: 14px;
}
.btn-visit:hover { background: var(--blue-hover); color: #fff; box-shadow: var(--shadow-blue); }
.btn-review {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--border);
  padding: 8px 18px;
  font-size: 14px;
}
.btn-review:hover { border-color: var(--blue); background: var(--blue-light); color: var(--blue); }

/* ===== SECTION ===== */
.section {
  padding: 64px 0;
}
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}
.section-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
}

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  line-height: 1.4;
  white-space: nowrap;
}
.badge-nsfw { background: #FDECEC; color: var(--red); }
.badge-sfw { background: #E8F8ED; color: var(--green); }
.badge-free { background: #E8F8ED; color: #22C55E; }
.badge-freemium { background: var(--blue-light); color: var(--blue); }
.badge-subscription { background: #F0ECFF; color: var(--violet); }
.badge-platform { background: #F1F3F7; color: #6B7280; }
.badge-editor { background: #FFF7E6; color: #D4850D; }
.badge-new { background: var(--blue-light); color: var(--blue); }

/* ===== TOP 3 PICKS ===== */
.top3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pick-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.pick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}
.pick-rank {
  position: absolute;
  top: -8px;
  left: 20px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(58,111,247,0.3);
}
.pick-card.gold .pick-rank { background: linear-gradient(135deg, #F7A419, #F5C842); }
.pick-card.silver .pick-rank { background: linear-gradient(135deg, #94A3B8, #CBD5E1); }
.pick-card.bronze .pick-rank { background: linear-gradient(135deg, #D4850D, #F59E0B); }

.pick-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.pick-logo {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.pick-logo img { width: 100%; height: 100%; object-fit: cover; }
.pick-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}
.pick-tagline {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.4;
  margin-top: 2px;
}
.pick-badges { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 16px; }
.pick-ratings { margin-bottom: 16px; }
.pick-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}
.pick-rating-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
}
.pick-rating-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
}
.pick-rating-value .star { color: #F8C21A; }
.editor-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: var(--blue-light);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 800;
  color: var(--blue);
}
.pick-btns { display: flex; gap: 8px; }
.pick-btns .btn { flex: 1; justify-content: center; }

/* ===== FULL TOP LIST TABLE ===== */
.top-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.top-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.top-table tbody tr {
  transition: background var(--transition);
}
.top-table tbody tr:nth-child(even) { background: #FAFBFD; }
.top-table tbody tr:hover { background: #F0F4FF; }
.top-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
  font-size: 15px;
}
.top-table tbody tr:last-child td { border-bottom: none; }
.rank-num {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  width: 36px;
  text-align: center;
}
.app-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}
.app-cell-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-alt);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.app-cell-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 15px;
}
.app-cell-tag {
  font-size: 13px;
  color: var(--text-light);
}
.score-editor {
  display: inline-flex;
  padding: 4px 10px;
  background: var(--blue-light);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 800;
  color: var(--blue);
}
.score-user {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}
.score-user .star { color: #F8C21A; font-size: 13px; }
.score-user .count { color: var(--text-muted); font-weight: 500; font-size: 13px; }
.nsfw-tag {
  font-size: 13px;
  font-weight: 600;
}
.nsfw-tag.explicit { color: var(--red); }
.nsfw-tag.soft { color: var(--orange); }
.nsfw-tag.sfw { color: var(--green); }
.table-btns { display: flex; gap: 8px; }

/* ===== CATEGORY CARDS ===== */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  opacity: 0;
  transition: opacity 0.3s;
}
.cat-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.cat-card:hover::before { opacity: 1; }
.cat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.cat-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.cat-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}
.cat-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ===== COMPARISONS ===== */
.compare-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.compare-card {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
  cursor: pointer;
}
.compare-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}
.compare-info { display: flex; align-items: center; gap: 12px; }
.compare-logos { display: flex; align-items: center; }
.compare-logo {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.compare-logo:nth-child(2) { margin-left: -8px; }
.compare-vs {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  margin: 0 4px;
}
.compare-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

/* ===== HOW WE RATE ===== */
.rate-section { background: var(--bg-alt); border-radius: 20px; padding: 48px; }
.rate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.rate-item {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}
.rate-item:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.rate-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}
.rate-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.rate-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== AUTHOR E-E-A-T ===== */
.author-block {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
  align-items: center;
}
.author-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), #E8E0FF);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.author-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
}
.author-role {
  font-size: 14px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 6px;
}
.author-bio {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: #CBD5E1; }
.faq-q {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q:hover { color: var(--blue); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  color: var(--text-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: #9CA3AF;
  padding: 48px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { color: #fff; margin-bottom: 12px; }
.footer-brand .logo-icon { opacity: 0.9; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: #9CA3AF; font-size: 14px; }
.footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== PAGE NAVIGATION ===== */





/* ===== REVIEW PAGE SECTIONS ===== */
.review-hero {
  background: var(--bg-hero);
  padding: 48px 0 56px;
}
.review-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.review-hero-logo {
  width: 96px; height: 96px;
  border-radius: 22px;
  background: var(--bg-alt);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  box-shadow: var(--shadow);
}
.review-hero-info { flex: 1; }
.review-hero h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 6px;
}
.review-hero .pick-tagline {
  font-size: 16px;
  margin-bottom: 12px;
}
.review-hero .pick-badges { margin: 12px 0 20px; }
.review-ratings-row {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 20px;
}
.review-editor-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 20px;
  background: var(--card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.review-editor-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
}
.review-editor-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
}
.review-editor-word {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}
.review-user-score {
  display: flex;
  flex-direction: column;
}
.review-user-stars {
  font-size: 20px;
  color: #F8C21A;
  letter-spacing: 2px;
}
.review-user-label {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== CONTENT AREA ===== */
.content-area {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 48px 24px;
}

/* Short Description intro */
.review-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 32px;
}

.content-area h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 56px 0 20px;
  letter-spacing: -0.2px;
}
.content-area h2:first-child { margin-top: 0; }
.content-area h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 36px 0 14px;
}
.content-area p {
  margin-bottom: 20px;
  line-height: 1.65;
}

/* ===== PROS CONS ===== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.pros-block, .cons-block {
  border-radius: var(--radius-sm);
  padding: 24px;
}
.pros-block { background: var(--green-light); }
.cons-block { background: var(--red-light); }
.pros-block h4, .cons-block h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pros-block h4 { color: var(--green); }
.cons-block h4 { color: #D9534F; }
.pc-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.pc-item:last-child { margin-bottom: 0; }
.pc-icon { flex-shrink: 0; font-size: 18px; font-weight: 700; margin-top: 1px; }
.pros-block .pc-icon { color: var(--green); }
.cons-block .pc-icon { color: #D9534F; }

/* ===== KEY FACTS ===== */
.key-facts {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 24px 0;
}
.key-facts h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 16px;
}
.kf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.kf-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  gap: 12px;
}
.kf-row:nth-last-child(-n+2) { border-bottom: none; }
.kf-label { color: var(--text-light); font-weight: 600; white-space: nowrap; flex-shrink: 0; }
.kf-value { color: var(--text-dark); font-weight: 700; text-align: right; word-break: break-word; }
@media (max-width: 640px) { .kf-grid { grid-template-columns: 1fr; } }

/* ===== RATING BARS ===== */
.rating-bars { margin: 24px 0; }
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.rb-label {
  width: 180px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
}
.rb-track {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.rb-fill {
  height: 100%;
  border-radius: var(--radius-pill);
  transition: width 0.8s ease;
}
.rb-fill.good { background: var(--blue); }
.rb-fill.great { background: var(--green); }
.rb-fill.mid { background: var(--orange); }
.rb-value {
  width: 40px;
  text-align: right;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
}
.rb-word {
  width: 80px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

/* ===== USER REVIEWS ===== */
.review-card {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 24px;
  border: 1px solid var(--border-light);
  margin-bottom: 12px;
}
.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.review-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-card-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
}
.review-card-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
}
.review-card-date {
  font-size: 13px;
  color: var(--text-muted);
}
.verified-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  background: #E8F8ED;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.review-card-stars {
  color: #F8C21A;
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.review-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.review-card-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

/* ===== SUBMIT REVIEW FORM ===== */
.review-form {
  background: #F9FAFC;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  margin: 24px 0;
}
.review-form h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 24px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-stars {
  display: flex;
  gap: 4px;
}
.form-star {
  font-size: 24px;
  cursor: pointer;
  color: #C7CBD5;
  transition: color 0.15s;
}
.form-star.active, .form-star:hover { color: #F8C21A; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 15px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--blue); }
textarea.form-input { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}
.form-check input { width: 18px; height: 18px; accent-color: var(--blue); cursor: pointer; }
.star-criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.star-criterion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* ===== APPS FILTER PAGE ===== */
/* Filter apply button — hidden on desktop */
.filter-apply-wrap { display: none; }

/* Filter toggle button — hidden on desktop */
.filter-toggle-btn {
  display: none;
  width: 100%; padding: 14px 24px;
  background: var(--blue); border: none;
  border-radius: 12px; font-family: var(--font); font-size: 16px;
  font-weight: 700; color: #fff; cursor: pointer;
  align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 20px; box-shadow: 0 2px 8px rgba(58,111,247,0.25);
}
.filter-toggle-btn:active { transform: scale(0.98); }

/* Filter sidebar header — hidden on desktop */
.filter-sidebar-header {
  display: none;
  align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border-light);
  font-size: 17px; font-weight: 700; color: var(--text-dark);
}
.filter-close-btn {
  background: none; border: none; font-size: 22px;
  color: var(--text-muted); cursor: pointer; padding: 4px 8px;
}
.filter-close-btn:hover { color: var(--text-dark); }

.filter-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 40px 0;
}
.filter-sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
}
.filter-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.filter-group { margin-bottom: 24px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.filter-search {
  width: 100%;
  padding: 10px 14px 10px 36px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239CA3AF' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242.156a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E") no-repeat 12px center var(--card);
  outline: none;
  transition: border-color var(--transition);
}
.filter-search:focus { border-color: var(--blue); }
.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}
.filter-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
  cursor: pointer;
}
.filter-check .count {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.sort-bar span {
  font-size: 15px;
  color: var(--text-light);
}
.sort-select {
  padding: 8px 14px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  cursor: pointer;
  outline: none;
}
.app-cards-list { display: flex; flex-direction: column; gap: 16px; }
.app-list-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s;
}
.app-list-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.app-list-logo {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--bg-alt);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.app-list-content { flex: 1; min-width: 0; }
.app-list-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.app-list-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-dark);
}
.app-list-tagline {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
}
.app-list-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.app-list-ratings {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}
.app-list-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.app-list-btns { display: flex; gap: 8px; }





/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { display: none; }
  .burger { display: block; }
  .hero h1 { font-size: 30px; }
  .top3 { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .filter-layout { grid-template-columns: 1fr; }
  .filter-toggle-btn { display: none; /* JS shows it on mobile */ }
  .filter-sidebar-header { display: none; /* JS shows it when open */ }
  .filter-apply-wrap { display: none; /* JS shows it when open */ }
  .review-hero-inner { flex-direction: column; align-items: center; text-align: center; }
  .review-ratings-row { justify-content: center; }
  .review-hero .pick-badges { justify-content: center; }
  .star-criteria-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .rate-grid { grid-template-columns: 1fr; }
  .top-table { display: block; overflow-x: auto; }
  .kf-grid { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeUp 0.5s ease forwards;
  opacity: 0;
}
.animate-in:nth-child(1) { animation-delay: 0.05s; }
.animate-in:nth-child(2) { animation-delay: 0.1s; }
.animate-in:nth-child(3) { animation-delay: 0.15s; }
.animate-in:nth-child(4) { animation-delay: 0.2s; }
.animate-in:nth-child(5) { animation-delay: 0.25s; }
.animate-in:nth-child(6) { animation-delay: 0.3s; }

/* ===== WORDPRESS SPECIFIC ===== */
.entry-content h2 { font-size:26px; font-weight:800; color:var(--text-dark); margin:56px 0 20px; }
.entry-content h3 { font-size:21px; font-weight:700; color:var(--text-dark); margin:36px 0 14px; }
.entry-content p { margin-bottom:20px; line-height:1.65; }
.entry-content ul, .entry-content ol { margin:0 0 20px 24px; }
.entry-content li { margin-bottom:8px; line-height:1.6; }
.entry-content a { color:var(--blue); text-decoration:underline; }
.entry-content a:hover { color:var(--blue-hover); }
.entry-content .btn { text-decoration:none; }
.entry-content .btn-primary { color:#fff; }
.entry-content .btn-primary:hover { color:#fff; }
.entry-content img { max-width:100%; height:auto; border-radius:12px; margin:20px 0; display:block; box-shadow:0 2px 12px rgba(0,0,0,0.06); }
.entry-content p > img { margin:28px auto; }

/* Figure with caption (card-style) */
.entry-content figure {
  margin:32px 0; background:#FAFBFD; border-radius:14px;
  overflow:hidden; border:1px solid #E7E9F0;
  box-shadow:0 2px 12px rgba(0,0,0,0.04);
  transition:box-shadow 0.3s;
}
.entry-content figure:hover { box-shadow:0 4px 20px rgba(0,0,0,0.08); }
.entry-content figure img {
  width:100%; border-radius:0; margin:0; display:block;
  box-shadow:none;
}
.entry-content figcaption {
  font-size:13px; color:#8A8F9C; text-align:center;
  padding:14px 24px; font-style:italic; line-height:1.5;
  background:linear-gradient(180deg, #F5F7FA, #FAFBFD);
  border-top:1px solid #E7E9F0;
}

/* Wide image — breaks out of content width */
.entry-content .img-wide {
  margin-left:-40px; margin-right:-40px;
  max-width:calc(100% + 80px); border-radius:var(--radius);
  box-shadow:var(--shadow-lg);
}
.entry-content figure.fig-wide {
  margin-left:-40px; margin-right:-40px;
  max-width:calc(100% + 80px);
  border-radius:16px; box-shadow:0 4px 24px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .entry-content figure.fig-wide,
  .entry-content .img-wide {
    margin-left:-16px; margin-right:-16px;
    max-width:calc(100% + 32px); border-radius:0;
  }
}

/* Image grid — side by side */
.entry-content .img-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:16px; margin:28px 0;
}
.entry-content .img-grid img { margin:0; border-radius:var(--radius-sm); box-shadow:var(--shadow-sm); }
.entry-content .img-grid.cols-3 { grid-template-columns:repeat(3,1fr); }

/* Rounded screenshot with shadow */
.entry-content .img-screenshot {
  border-radius:var(--radius); box-shadow:var(--shadow-lg);
  border:1px solid var(--border-light); margin:28px auto;
}

/* Side image — float right */
.entry-content .img-side {
  float:right; width:45%; margin:0 0 20px 24px; border-radius:var(--radius-sm);
  box-shadow:var(--shadow-sm);
}

@media (max-width: 768px) {
  .entry-content .img-wide,
  .entry-content figure.fig-wide { margin-left:0; margin-right:0; max-width:100%; }
  .entry-content .img-grid { grid-template-columns:1fr; }
  .entry-content .img-grid.cols-3 { grid-template-columns:1fr; }
  .entry-content .img-side { float:none; width:100%; margin:16px 0; }
}
.entry-content blockquote { border-left:4px solid var(--blue); padding:16px 24px; margin:24px 0; background:var(--bg-alt); border-radius:0 12px 12px 0; font-style:italic; }

/* Table responsive wrapper */
.table-responsive { overflow-x:auto; -webkit-overflow-scrolling:touch; margin-bottom:16px; }

/* Pagination */
.pagination { display:flex; justify-content:center; gap:4px; margin-top:32px; padding-bottom:32px; }
.pagination a, .pagination span { display:inline-flex; align-items:center; justify-content:center; min-width:40px; height:40px; padding:0 12px; border-radius:10px; font-size:14px; font-weight:600; border:1.5px solid var(--border); color:var(--text); transition:all var(--transition); }
.pagination a:hover { border-color:var(--blue); color:var(--blue); background:var(--blue-light); }
.pagination .current { background:var(--blue); color:#fff; border-color:var(--blue); }
.pagination .dots { border:none; min-width:auto; padding:0 4px; color:var(--text-light); }

/* No results */
.no-results { text-align:center; padding:48px 24px; }
.no-results p { color:var(--text-light); font-size:16px; }

/* Nav menu items from wp_nav_menu */
.nav .menu-item a { padding:8px 14px; font-size:15px; font-weight:600; color:var(--text); border-radius:8px; transition:all var(--transition); display:block; }
.nav .menu-item a:hover { color:var(--blue); background:var(--blue-light); }
.nav .current-menu-item a { color:var(--blue); }
.nav ul { list-style:none; display:flex; gap:4px; margin:0; padding:0; }

/* Mobile nav overlay */
@media (max-width: 768px) {
    .nav { display:none; position:absolute; top:64px; left:0; right:0; background:var(--card); padding:16px; border-bottom:1px solid var(--border); box-shadow:var(--shadow-lg); flex-direction:column; z-index:100; }
    .nav.open { display:flex; }
    .nav ul { flex-direction:column; }
    .nav .menu-item a { padding:12px 16px; font-size:16px; }
}


/* =================================================================
   GUIDES & ARTICLES
   ================================================================= */

/* ===== GUIDE TABS ===== */
.guide-tabs {
  display:flex; gap:0; overflow-x:auto; scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}
.guide-tabs::-webkit-scrollbar { display:none; }
.guide-tab {
  padding:14px 20px; font-size:14px; font-weight:600; color:var(--text-light);
  white-space:nowrap; border-bottom:2px solid transparent;
  transition:all var(--transition); display:inline-flex; align-items:center; gap:6px;
}
.guide-tab:hover { color:var(--blue); }
.guide-tab.active { color:var(--blue); border-bottom-color:var(--blue); }
.guide-tab-count {
  font-size:11px; font-weight:700; background:var(--bg-alt); padding:2px 6px;
  border-radius:var(--radius-pill); color:var(--text-muted);
}
.guide-tab.active .guide-tab-count { background:var(--blue-light); color:var(--blue); }

/* ===== CATEGORY BADGE ===== */
.guide-cat-badge {
  display:inline-block; padding:4px 12px; font-size:12px; font-weight:700;
  background:var(--blue); color:#fff; border-radius:var(--radius-pill);
  letter-spacing:0.3px; text-transform:uppercase;
}

/* ===== GUIDE GRID ===== */
.guide-grid {
  display:grid; grid-template-columns:repeat(3, 1fr); gap:24px;
}
@media (max-width: 900px) { .guide-grid { grid-template-columns:repeat(2, 1fr); } }
@media (max-width: 600px) { .guide-grid { grid-template-columns:1fr; } }

/* ===== GUIDE CARD ===== */
.guide-card {
  display:flex; flex-direction:column;
  background:var(--card); border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow-sm);
  border:1px solid var(--border-light);
  transition:all 0.3s; text-decoration:none; color:inherit;
}
.guide-card:hover {
  transform:translateY(-4px); box-shadow:var(--shadow-lg);
  border-color:var(--border); color:inherit;
}
.guide-card-img {
  position:relative; height:180px; overflow:hidden; background:var(--bg-alt);
}
.guide-card-img img {
  width:100%; height:100%; object-fit:cover; transition:transform 0.4s;
}
.guide-card:hover .guide-card-img img { transform:scale(1.04); }
.guide-card-img .guide-cat-badge {
  position:absolute; top:12px; left:12px; z-index:2;
}
.guide-card-img-placeholder {
  width:100%; height:100%;
  background:linear-gradient(135deg, var(--blue-light), #E8E0FF);
  display:flex; align-items:center; justify-content:center;
}
.guide-card-img-placeholder span {
  font-size:40px; font-weight:800; color:var(--blue); opacity:0.3;
}
.guide-card-body { padding:20px 20px 24px; flex:1; display:flex; flex-direction:column; }
.guide-card-title {
  font-size:17px; font-weight:700; color:var(--text-dark); line-height:1.35;
  margin-bottom:8px;
}
.guide-card-excerpt {
  font-size:14px; color:var(--text-light); line-height:1.55;
  margin-bottom:auto; padding-bottom:12px;
}
.guide-card-meta {
  display:flex; align-items:center; gap:6px; font-size:13px; color:var(--text-muted); font-weight:500;
}
.guide-card-dot { font-size:8px; }

/* ===== FEATURED GUIDES ===== */
.guide-featured-grid { display:grid; grid-template-columns:1.4fr 1fr; gap:20px; }
@media (max-width: 768px) { .guide-featured-grid { grid-template-columns:1fr; } }

.guide-featured-card {
  display:block; border-radius:var(--radius); overflow:hidden;
  text-decoration:none; color:#fff; position:relative;
}
.guide-featured-img {
  width:100%; height:280px; background-size:cover; background-position:center;
  background-color:var(--text-dark); position:relative;
  transition:transform 0.4s;
}
.guide-featured-card.large .guide-featured-img { height:360px; }
.guide-featured-card:hover .guide-featured-img { transform:scale(1.02); }
.guide-featured-overlay {
  position:absolute; bottom:0; left:0; right:0;
  background:linear-gradient(transparent, rgba(0,0,0,0.8));
  padding:32px 24px 24px; display:flex; flex-direction:column; gap:8px;
}
.guide-featured-overlay h2 {
  font-size:22px; font-weight:800; color:#fff; line-height:1.25;
}
.guide-featured-card.large .guide-featured-overlay h2 { font-size:26px; }
.guide-featured-meta {
  display:flex; gap:8px; font-size:13px; color:rgba(255,255,255,0.7); font-weight:500;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display:flex; align-items:center; gap:8px; flex-wrap:wrap;
  font-size:14px; color:var(--text-muted);
}
.breadcrumb a { color:var(--text-light); font-weight:500; }
.breadcrumb a:hover { color:var(--blue); }
.breadcrumb-sep { font-size:12px; color:var(--border); }
.breadcrumb-current { color:var(--text-dark); font-weight:600; }

/* ===== ARTICLE HERO ===== */
.article-hero { padding:40px 0 32px; background:var(--bg-hero); }
.article-hero-inner { max-width:var(--content-width); margin:0 auto; }
.article-title {
  font-size:36px; font-weight:800; color:var(--text-dark);
  line-height:1.2; letter-spacing:-0.5px; margin-bottom:12px;
}
.article-subtitle {
  font-size:18px; color:var(--text-light); line-height:1.55; margin-bottom:20px;
}
.article-meta { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.article-meta-author { display:flex; align-items:center; gap:12px; }
.article-meta-avatar { width:36px !important; height:36px !important; border-radius:50% !important; }
.article-meta-name { font-size:15px; font-weight:700; color:var(--text-dark); display:block; }
.article-meta-details { font-size:13px; color:var(--text-muted); display:block; }

/* ===== ARTICLE FEATURED IMAGE ===== */
.article-featured-img {
  width:100%; max-width:var(--content-width); border-radius:16px;
  box-shadow:0 8px 32px rgba(0,0,0,0.10); margin-top:24px;
  border:1px solid rgba(0,0,0,0.06);
}

/* ===== ARTICLE CONTENT ===== */
.article-content { padding-top:40px; }

/* ===== CONTENT BLOCKS: INFO, WARNING, TIP, SUCCESS, NOTE ===== */
.content-block {
  padding:20px 24px; margin:28px 0; border-radius:var(--radius-sm);
  border-left:4px solid; font-size:15px; line-height:1.65;
}
.content-block p { margin-bottom:8px; }
.content-block p:last-child { margin-bottom:0; }
.content-block-title {
  display:flex; align-items:center; gap:8px;
  font-size:14px; font-weight:800; text-transform:uppercase;
  letter-spacing:0.4px; margin-bottom:8px;
}

/* Info block (blue) */
.block-info { background:#EBF3FF; border-color:var(--blue); }
.block-info .content-block-title { color:var(--blue); }

/* Warning block (orange) */
.block-warning { background:#FFF8ED; border-color:var(--orange); }
.block-warning .content-block-title { color:#D4850D; }

/* Danger/alert block (red) */
.block-danger { background:#FFF0F0; border-color:var(--red); }
.block-danger .content-block-title { color:var(--red); }

/* Tip block (green) */
.block-tip { background:#F0FFF6; border-color:var(--green); }
.block-tip .content-block-title { color:#1B8A3B; }

/* Success block */
.block-success { background:#ECFDF5; border-color:#059669; }
.block-success .content-block-title { color:#059669; }

/* Note block (grey/neutral) */
.block-note { background:var(--bg-alt); border-color:#94A3B8; }
.block-note .content-block-title { color:#64748B; }

/* ===== STYLED TABLE IN ARTICLES ===== */
.entry-content table {
  width:100%; border-collapse:separate; border-spacing:0;
  background:var(--card); border-radius:var(--radius-sm);
  overflow:hidden; margin:24px 0;
  border:1px solid var(--border);
  font-size:15px;
}
.entry-content table thead th {
  padding:14px 16px; text-align:left;
  font-size:13px; font-weight:700; color:var(--text-light);
  text-transform:uppercase; letter-spacing:0.4px;
  background:var(--bg-alt); border-bottom:1px solid var(--border);
}
.entry-content table tbody td {
  padding:13px 16px; border-bottom:1px solid var(--border-light);
  vertical-align:top;
}
.entry-content table tbody tr:last-child td { border-bottom:none; }
.entry-content table tbody tr:nth-child(even) { background:#FAFBFD; }
.entry-content table tbody tr:hover { background:#F0F4FF; }

/* ===== STYLED LISTS IN ARTICLES ===== */
.entry-content ul.styled-list,
.entry-content ol.styled-list,
.entry-content .styled-list {
  list-style:none; margin:20px 0; padding:0;
}
.entry-content .styled-list li {
  padding:10px 0 10px 32px; position:relative;
  border-bottom:1px solid var(--border-light); font-size:15px; line-height:1.6;
}
.entry-content .styled-list li:last-child { border-bottom:none; }
.entry-content .styled-list li::before {
  content:'✓'; position:absolute; left:0; top:10px;
  color:var(--green); font-weight:700; font-size:15px;
}
.entry-content ol.styled-list { counter-reset:styled-counter; }
.entry-content ol.styled-list li { counter-increment:styled-counter; }
.entry-content ol.styled-list li::before {
  content:counter(styled-counter); background:var(--blue);
  color:#fff; width:22px; height:22px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:12px; font-weight:800; position:absolute; left:0; top:11px;
}

/* Checklist */
.entry-content .checklist li::before { content:'☑'; color:var(--blue); }
.entry-content .cross-list li::before { content:'✗'; color:var(--red); }

/* ===== KEY TAKEAWAY BOX ===== */
.key-takeaway {
  background:linear-gradient(135deg, var(--blue-light), #F0ECFF);
  border-radius:var(--radius); padding:28px 32px; margin:28px 0;
  border:1px solid rgba(58,111,247,0.15);
}
.key-takeaway-title {
  font-size:16px; font-weight:800; color:var(--blue); margin-bottom:12px;
  display:flex; align-items:center; gap:8px;
}
.key-takeaway p { font-size:15px; color:var(--text); margin-bottom:0; }

/* ===== COMPARISON TABLE IN ARTICLES ===== */
.comparison-table { margin:24px 0; }
.comparison-table table { width:100%; }
.comparison-table th:first-child { width:30%; }
.comparison-table .winner { color:var(--green); font-weight:700; }
.comparison-table .loser { color:var(--text-muted); }

/* ===== IN-ARTICLE CTA BOX ===== */
.article-cta {
  background:var(--bg-hero); border-radius:var(--radius);
  padding:28px 32px; margin:32px 0;
  border:1px solid var(--border-light);
  text-align:center;
}
.article-cta h4 { font-size:18px; font-weight:800; color:var(--text-dark); margin-bottom:8px; }
.article-cta p { font-size:15px; color:var(--text-light); margin-bottom:16px; }

/* ===== STEP-BY-STEP ===== */
.steps-list { margin:24px 0; padding:0; list-style:none; counter-reset:step-counter; }
.step-item {
  display:flex; gap:20px; padding:20px 0;
  border-bottom:1px solid var(--border-light);
}
.step-item:last-child { border-bottom:none; }
.step-number {
  flex-shrink:0; width:40px; height:40px;
  background:linear-gradient(135deg, var(--blue), var(--violet));
  color:#fff; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:16px; font-weight:800;
}
.step-content h4 { font-size:16px; font-weight:700; color:var(--text-dark); margin-bottom:6px; }
.step-content p { font-size:15px; color:var(--text); margin-bottom:0; line-height:1.6; }

/* ===== ARTICLE AUTHOR BLOCK ===== */
.article-author-block {
  display:flex; gap:24px; align-items:flex-start;
  background:var(--card); border-radius:var(--radius); padding:28px 32px;
  box-shadow:var(--shadow); margin:48px 0 40px; border:1px solid var(--border-light);
}
.article-author-avatar { flex-shrink:0; }
.article-author-avatar img { width:72px; height:72px; border-radius:50%; box-shadow:var(--shadow-sm); }
.author-avatar-placeholder {
  width:72px; height:72px; border-radius:50%;
  background:linear-gradient(135deg, var(--blue-light), var(--violet-light, #EDE9FE));
  display:flex; align-items:center; justify-content:center;
  font-size:28px; font-weight:800; color:var(--blue);
}
.article-author-label { font-size:12px; font-weight:700; color:var(--blue); text-transform:uppercase; letter-spacing:0.5px; margin-bottom:2px; }
a.article-author-name, .article-author-name { font-size:18px; font-weight:700; color:var(--text-dark); margin-bottom:2px; display:block; }
a.article-author-name:hover { color:var(--blue); }
.article-author-title { font-size:13px; font-weight:600; color:var(--blue); margin-bottom:8px; }
.article-author-bio { font-size:14px; color:var(--text-light); line-height:1.55; margin-bottom:12px; }
.article-author-footer { display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.article-author-socials { display:flex; gap:6px; }
.article-author-socials .author-social-link {
  width:30px; height:30px; border-radius:50%; background:var(--bg-alt);
  display:inline-flex; align-items:center; justify-content:center;
  color:var(--text-light); transition:all 0.2s; font-size:0;
}
.article-author-socials .author-social-link:hover { background:var(--blue); color:#fff; }
.article-author-profile-link { font-size:13px; font-weight:600; color:var(--blue); }

/* ===== ARTICLE TAGS ===== */
.article-tags { display:flex; flex-wrap:wrap; gap:8px; margin:32px 0 0; padding-top:24px; border-top:1px solid var(--border-light); }
.article-tag {
  display:inline-block; padding:6px 14px; font-size:13px; font-weight:600;
  color:var(--text-light); background:var(--bg-alt); border-radius:var(--radius-pill);
  border:1px solid var(--border-light); transition:all var(--transition);
}
.article-tag:hover { color:var(--blue); border-color:var(--blue); background:var(--blue-light); }

/* ===== RELATED ARTICLES ===== */
.article-related { margin-top:48px; padding-top:40px; border-top:1px solid var(--border-light); }
.article-related-title { font-size:22px; font-weight:800; color:var(--text-dark); margin-bottom:24px; }

/* (figure/img CSS moved to entry-content section above) */

/* ===== CODE BLOCKS IN ARTICLES ===== */
.entry-content code {
  background:var(--bg-alt); padding:2px 6px; border-radius:5px;
  font-size:14px; font-family:'SFMono-Regular', Consolas, monospace;
  color:var(--violet);
}
.entry-content pre {
  background:#1E293B; color:#E2E8F0; padding:24px; border-radius:var(--radius-sm);
  overflow-x:auto; margin:24px 0; font-size:14px; line-height:1.7;
}
.entry-content pre code {
  background:none; padding:0; color:inherit; border-radius:0;
}

/* ===== SEPARATOR / DIVIDER ===== */
.entry-content hr {
  border:none; height:1px; background:var(--border);
  margin:40px 0;
}
.entry-content .fancy-divider {
  text-align:center; margin:40px 0; position:relative;
}
.entry-content .fancy-divider::before {
  content:''; position:absolute; top:50%; left:0; right:0;
  height:1px; background:var(--border);
}
.entry-content .fancy-divider span {
  background:var(--bg); padding:0 16px; position:relative; z-index:1;
  color:var(--text-muted); font-size:14px; font-weight:600;
}

/* ===== RESPONSIVE ARTICLE ===== */
@media (max-width: 768px) {
  .article-title { font-size:26px; }
  .article-subtitle { font-size:16px; }
  .article-author-block { flex-direction:column; text-align:center; align-items:center; }
  .article-author-footer { justify-content:center; }
  .article-author-socials { justify-content:center; }
  .content-block { padding:16px 18px; }
  .step-item { flex-direction:column; gap:12px; }
  .article-related .guide-grid { grid-template-columns:1fr !important; }
  .guide-featured-grid { grid-template-columns:1fr; }
  .guide-featured-card.large .guide-featured-img { height:240px; }
}


/* =================================================================
   BEST HUB PAGE
   ================================================================= */
.best-hub-grid {
  display:grid; grid-template-columns:repeat(2, 1fr); gap:20px;
}
@media (max-width: 768px) { .best-hub-grid { grid-template-columns:1fr; } }

.best-hub-card {
  display:flex; gap:20px; align-items:flex-start;
  background:var(--card); border-radius:var(--radius);
  padding:24px 28px; border:1px solid var(--border-light);
  box-shadow:var(--shadow-sm); transition:all 0.3s;
  text-decoration:none; color:inherit;
}
.best-hub-card:hover {
  transform:translateY(-3px); box-shadow:var(--shadow-lg);
  border-color:var(--blue); color:inherit;
}
.best-hub-icon {
  font-size:32px; flex-shrink:0;
  width:56px; height:56px;
  display:flex; align-items:center; justify-content:center;
  background:var(--bg-alt); border-radius:14px;
}
.best-hub-content h3 {
  font-size:17px; font-weight:700; color:var(--text-dark); margin-bottom:4px;
}
.best-hub-content p {
  font-size:14px; color:var(--text-light); line-height:1.5; margin-bottom:8px;
}
.best-hub-link {
  font-size:13px; font-weight:700; color:var(--blue);
}

/* =================================================================
   BEST LIST CARDS
   ================================================================= */
.best-list-header {
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:24px;
}
.best-list-count {
  font-size:14px; color:var(--text-muted); font-weight:600;
}
.best-list { display:flex; flex-direction:column; gap:16px; }

.best-list-card {
  display:flex; gap:20px; align-items:flex-start;
  background:var(--card); border-radius:var(--radius);
  padding:24px; border:1px solid var(--border-light);
  box-shadow:var(--shadow-sm); transition:all 0.3s;
  position:relative;
}
.best-list-card:hover { box-shadow:var(--shadow); border-color:var(--border); }
.best-list-card.rank-gold { border-left:4px solid #FFD700; }
.best-list-card.rank-silver { border-left:4px solid #C0C0C0; }
.best-list-card.rank-bronze { border-left:4px solid #CD7F32; }

.best-list-rank {
  flex-shrink:0; width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  font-size:18px; font-weight:800; color:var(--text-dark);
  background:var(--bg-alt); border-radius:12px;
}
.rank-gold .best-list-rank { background:#FFF8E1; color:#B8860B; }
.rank-silver .best-list-rank { background:#F5F5F5; color:#808080; }
.rank-bronze .best-list-rank { background:#FFF0E0; color:#CD7F32; }

.best-list-logo {
  flex-shrink:0; width:72px; height:72px;
  border-radius:16px; overflow:hidden;
  box-shadow:var(--shadow-sm); border:1px solid var(--border-light);
}
.best-list-logo img { width:100%; height:100%; object-fit:cover; }

.best-list-body { flex:1; min-width:0; }

.best-list-top {
  display:flex; justify-content:space-between; align-items:flex-start; gap:16px;
  margin-bottom:8px;
}
.best-list-name a {
  font-size:19px; font-weight:700; color:var(--text-dark);
  text-decoration:none;
}
.best-list-name a:hover { color:var(--blue); }
.best-list-tagline { font-size:14px; color:var(--text-light); margin-top:2px; }

.best-list-score {
  flex-shrink:0; text-align:center;
  background:linear-gradient(135deg, var(--blue), var(--violet));
  color:#fff; border-radius:12px; padding:8px 14px;
  min-width:60px;
}
.best-list-score-num { font-size:22px; font-weight:800; line-height:1; }
.best-list-score-label { font-size:11px; font-weight:600; opacity:0.8; }

.best-list-badges { margin-bottom:8px; }

.best-list-desc {
  font-size:14px; color:var(--text); line-height:1.55;
  margin-bottom:12px;
}

.best-list-meta {
  display:flex; flex-wrap:wrap; gap:12px;
  font-size:13px; color:var(--text-light); font-weight:500;
  margin-bottom:12px;
}
.best-list-meta-item { white-space:nowrap; }

.best-list-actions { display:flex; gap:8px; }

/* SEO BLOCKS STYLES */
.seo-header-text { margin-bottom:32px; }
.seo-header-text .entry-content { max-width:none; }
.seo-footer-text { margin-top:40px; padding-top:32px; border-top:1px solid var(--border-light); }

/* SEO Block Headings */
.seo-block-heading {
    display:flex; align-items:center; gap:10px;
    font-size:22px; font-weight:800; color:var(--text-dark);
    margin:0 0 20px; padding:0;
}
.seo-block-icon { font-size:22px; }

/* FAQ Section */
.seo-faq-section {
    margin:48px 0; padding:32px;
    background:var(--bg-alt); border-radius:16px;
    border:1px solid var(--border-light);
}
.seo-faq-section .faq-item {
    background:#fff;
}

/* Trust Section */
.seo-trust-section { margin:40px 0; }

/* Trust Paragraph */
.trust-paragraph {
    display:flex; align-items:flex-start; gap:12px;
    background:linear-gradient(135deg, #f0faf3, #e8f5ec); border:1px solid #c8e6d0;
    border-radius:12px; padding:20px 24px; margin:40px 0 24px;
    font-size:15px; line-height:1.6; color:var(--text);
}
.trust-paragraph .trust-icon { font-size:20px; flex-shrink:0; margin-top:1px; }
.trust-paragraph p { margin:0; }

/* Date Badge */
.date-badge {
    display:inline-flex; align-items:center; gap:8px;
    font-size:13px; color:var(--text-muted);
    margin-top:16px;
}
.date-badge time { display:inline-flex; align-items:center; gap:4px; }
.date-badge-updated { color:var(--green); font-weight:600; }
.date-badge-sep { color:var(--border); }
.date-badge-checked { color:#3A6FF7; font-weight:600; }

/* TOP 3 PROMO IN-PAGE */
.top3-promo { margin-bottom:40px; }
.top3-promo .top3 { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
@media (max-width: 768px) { .top3-promo .top3 { grid-template-columns:1fr; } }

/* RESPONSIVE BEST LIST */
@media (max-width: 768px) {
  .best-list-card { flex-wrap:wrap; gap:12px; padding:16px; }
  .best-list-top { flex-direction:column; }
  .best-list-score { align-self:flex-start; }
  .best-list-logo { width:56px; height:56px; }
}



/* =================================================================
   AUTHOR PAGE
   ================================================================= */
.author-hero { background:var(--bg-hero); padding:40px 0; }
.author-hero-inner { display:flex; align-items:center; gap:32px; }
.author-hero-avatar img { width:128px; height:128px; border-radius:50%; box-shadow:var(--shadow); }
.author-hero-name { font-size:32px; font-weight:800; color:var(--text-dark); margin-bottom:4px; }
.author-hero-title { font-size:16px; color:var(--blue); font-weight:600; margin-bottom:12px; }
.author-hero-stats { display:flex; gap:24px; margin-bottom:12px; }
.author-stat strong { font-size:20px; font-weight:800; color:var(--text-dark); display:block; }
.author-stat span { font-size:13px; color:var(--text-muted); }
.author-hero-social { display:flex; gap:8px; }
.author-social-link {
  width:36px; height:36px; border-radius:50%; background:var(--bg-alt);
  display:inline-flex; align-items:center; justify-content:center;
  color:var(--text-light); transition:all 0.2s;
}
.author-social-link:hover { background:var(--blue); color:#fff; }

.author-page-layout { display:grid; grid-template-columns:1fr 340px; gap:40px; }
@media (max-width: 900px) { .author-page-layout { grid-template-columns:1fr; } }

.author-bio-block { margin-bottom:32px; }
.author-bio-block h2, .author-bio-block h3 { font-size:20px; font-weight:700; color:var(--text-dark); margin-bottom:12px; }

.author-expertise { display:flex; flex-wrap:wrap; gap:8px; }
.author-expertise-tag {
  padding:6px 14px; font-size:13px; font-weight:600;
  background:var(--blue-light); color:var(--blue); border-radius:var(--radius-pill);
}

.author-section { margin-top:40px; padding-top:32px; border-top:1px solid var(--border-light); }
.author-section h2 { font-size:20px; font-weight:700; color:var(--text-dark); margin-bottom:20px; }

.author-posts-grid { display:flex; flex-direction:column; gap:12px; }
.author-review-card {
  display:flex; align-items:center; gap:16px; padding:16px;
  background:var(--card); border:1px solid var(--border-light);
  border-radius:var(--radius-sm); transition:all 0.2s; color:inherit;
}
.author-review-card:hover { border-color:var(--blue); box-shadow:var(--shadow-sm); color:inherit; }
.author-review-logo { width:48px; height:48px; border-radius:12px; }
.author-review-name { font-size:15px; font-weight:600; color:var(--text-dark); margin-bottom:4px; }

.author-contact-card {
  background:var(--card); border:1px solid var(--border-light);
  border-radius:var(--radius); padding:28px; position:sticky; top:100px;
}
.author-contact-card h3 { font-size:18px; font-weight:700; color:var(--text-dark); margin-bottom:8px; }
.author-contact-card > p { font-size:14px; color:var(--text-light); margin-bottom:16px; }
.author-contact-form .form-input { margin-bottom:12px; }

@media (max-width: 768px) {
  .author-hero-inner { flex-direction:column; text-align:center; }
  .author-hero-stats { justify-content:center; }
  .author-hero-social { justify-content:center; }
}


/* =================================================================
   ABOUT PAGE
   ================================================================= */
.about-stats {
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
  text-align:center; margin-bottom:20px;
}
.about-stat-item {
  padding:28px 16px; background:var(--card); border-radius:var(--radius);
  border:1px solid var(--border-light); box-shadow:var(--shadow-sm);
}
.about-stat-num { font-size:32px; font-weight:800; color:var(--blue); margin-bottom:4px; }
.about-stat-label { font-size:14px; color:var(--text-light); font-weight:500; }

.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.team-card {
  display:flex; flex-direction:column; align-items:center;
  padding:32px 24px; background:var(--card); border:1px solid var(--border-light);
  border-radius:var(--radius); text-align:center; transition:all 0.3s;
  color:inherit; text-decoration:none;
}
.team-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:var(--border); color:inherit; }
.team-card-avatar { margin-bottom:16px; }
.team-card-avatar img { width:96px; height:96px; border-radius:50%; box-shadow:var(--shadow-sm); }
.team-card-name { font-size:18px; font-weight:700; color:var(--text-dark); margin-bottom:2px; }
.team-card-title { font-size:14px; color:var(--blue); font-weight:600; margin-bottom:8px; }
.team-card-bio { font-size:14px; color:var(--text-light); line-height:1.5; margin-bottom:12px; }
.team-card-social { display:flex; gap:8px; justify-content:center; margin-bottom:12px; }
.team-card-stats { font-size:13px; color:var(--text-muted); display:flex; gap:6px; margin-bottom:12px; }
.team-card-link { font-size:14px; font-weight:600; color:var(--blue); }

.about-values-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.about-value-card {
  padding:24px; background:var(--card); border:1px solid var(--border-light);
  border-radius:var(--radius); text-align:center;
}
.about-value-icon { font-size:32px; margin-bottom:12px; }
.about-value-card h4 { font-size:16px; font-weight:700; margin-bottom:8px; color:var(--text-dark); }
.about-value-card p { font-size:14px; color:var(--text-light); line-height:1.5; }

@media (max-width: 768px) {
  .about-stats { grid-template-columns:repeat(2,1fr); }
  .team-grid { grid-template-columns:1fr; }
  .about-values-grid { grid-template-columns:repeat(2,1fr); }
}


/* =================================================================
   COMPARISON PAGE
   ================================================================= */
.compare-table-wrap { margin:0 0 40px; overflow-x:auto; }
.compare-table {
  width:100%; border-collapse:separate; border-spacing:0;
  border:1px solid #E7E9F0; border-radius:12px; overflow:hidden;
}
.compare-table thead th {
  background:#F0F4FF; padding:14px 20px; font-size:13px;
  font-weight:700; text-transform:uppercase; letter-spacing:0.5px;
  color:#3A6FF7; border-bottom:2px solid #D5DFFA;
}
.compare-table thead th:first-child { color:#8A8F9C; }
.compare-table td {
  padding:16px 20px; border-bottom:1px solid #F0F2F5;
  font-size:15px; color:#3A3D47; vertical-align:middle;
}
.compare-table td:first-child { font-weight:600; color:#1A1D26; background:#FAFBFD; min-width:140px; }
.compare-table tbody tr:last-child td { border-bottom:none; }
.compare-table tbody tr:hover td { background:#F8FAFF; }
.compare-table tbody tr:hover td:first-child { background:#F0F4FF; }

.compare-score {
  display:inline-block; padding:4px 12px; border-radius:8px;
  font-weight:700; font-size:14px;
  background:#F0F2F5; color:#3A3D47;
}
.compare-score-winner { background:#EBF5FF; color:#3A6FF7; }
.compare-stars { color:#F5A623; font-weight:600; }
.compare-count { color:#B0B4BD; font-size:13px; }

/* Feature-by-Feature visual bars */
.compare-features {
  background:#fff; border:1px solid #E7E9F0; border-radius:12px;
  overflow:hidden; margin:0 0 40px;
}
.compare-feature-row {
  display:grid; grid-template-columns:180px 1fr 140px;
  align-items:center; padding:20px 24px;
  border-bottom:1px solid #F0F2F5; gap:20px;
}
.compare-feature-row:last-child { border-bottom:none; }
.compare-feature-total { background:#F8FAFF; border-top:2px solid #E7E9F0; }
.compare-feature-label { font-size:15px; font-weight:600; color:#1A1D26; }
.compare-feature-bars { display:flex; flex-direction:column; gap:8px; }
.compare-bar-group { display:flex; align-items:center; gap:12px; }
.compare-bar-track {
  flex:1; height:10px; background:#F0F2F5; border-radius:5px; overflow:hidden;
}
.compare-bar-fill {
  height:100%; border-radius:5px; transition:width 0.6s ease;
  background:linear-gradient(90deg, #93B5FC, #3A6FF7);
}
.compare-bar-fill.bar-app2 {
  background:linear-gradient(90deg, #C4B5FD, #8B5CF6);
}
.compare-bar-fill.bar-winner { opacity:1; }
.compare-bar-fill:not(.bar-winner) { opacity:0.5; }
.compare-bar-value {
  font-size:14px; font-weight:700; color:#B0B4BD;
  min-width:32px; text-align:right;
}
.compare-bar-value.value-winner { color:#1A1D26; }
.compare-overall-score {
  font-size:18px; font-weight:800; color:#3A6FF7;
}
.compare-feature-winner { text-align:center; }
.winner-badge {
  display:inline-block; padding:4px 12px; border-radius:100px;
  font-size:12px; font-weight:700;
}
.winner-badge.winner-app1 { background:#EBF5FF; color:#3A6FF7; }
.winner-badge.winner-app2 { background:#EDE9FE; color:#8B5CF6; }
.winner-badge.winner-tie { background:#F0F2F5; color:#8A8F9C; }

@media (max-width: 768px) {
  .compare-feature-row { grid-template-columns:1fr; gap:10px; }
  .compare-feature-winner { text-align:left; }
}


/* =================================================================
   CONTACT PAGE
   ================================================================= */
.contact-layout { display:grid; grid-template-columns:1fr 360px; gap:40px; }
@media (max-width: 900px) { .contact-layout { grid-template-columns:1fr; } }

.contact-form-card {
  background:var(--card); border:1px solid var(--border-light);
  border-radius:var(--radius); padding:36px;
}
.contact-form-card h2 { font-size:22px; font-weight:700; margin-bottom:20px; color:var(--text-dark); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width: 600px) { .form-row { grid-template-columns:1fr; } }
.form-group { margin-bottom:16px; }
.form-label { display:block; font-size:14px; font-weight:600; color:var(--text); margin-bottom:6px; }

.contact-sidebar { display:flex; flex-direction:column; gap:20px; }
.contact-info-card {
  background:var(--card); border:1px solid var(--border-light);
  border-radius:var(--radius); padding:24px;
}
.contact-info-card h3 { font-size:17px; font-weight:700; color:var(--text-dark); margin-bottom:12px; }
.contact-info-card > p { font-size:14px; color:var(--text-light); margin-bottom:12px; }
.contact-info-item {
  padding:12px 0; border-bottom:1px solid var(--border-light);
}
.contact-info-item:last-of-type { border-bottom:none; }
.contact-info-item strong { display:block; font-size:13px; color:var(--text-muted); margin-bottom:2px; }
.contact-info-item a { font-size:15px; font-weight:600; color:var(--blue); }
.contact-response-time { font-size:13px; color:var(--text-muted); font-style:italic; margin-top:12px; margin-bottom:0; }

.contact-team-link {
  display:flex; align-items:center; gap:12px; padding:10px 0;
  border-bottom:1px solid var(--border-light); color:inherit;
}
.contact-team-link:last-child { border-bottom:none; }
.contact-team-link img { width:32px; height:32px; border-radius:50%; }
.contact-team-link strong { display:block; font-size:14px; color:var(--text-dark); }
.contact-team-link span { display:block; font-size:12px; color:var(--text-muted); }
.contact-team-link:hover strong { color:var(--blue); }
