/*
Theme Name: Ulfbage Consulting Dark
Theme URI: https://ulfbage.se
Author: Ulfbåge Consulting
Description: Mörkt cybersäkerhetstema för Ulfbåge Consulting - strategisk rådgivning inom informations- och IT-säkerhet.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: ulfbage-dark
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --bg-darkest: #060a14;
  --bg-dark: #080c16;
  --bg-medium: #0a0e1a;
  --bg-light: #0d1220;
  --bg-card: #0f1528;
  --accent: #00bcd4;
  --accent-dim: rgba(0, 188, 212, 0.3);
  --accent-subtle: rgba(0, 188, 212, 0.1);
  --accent-faint: rgba(0, 188, 212, 0.06);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.55);
  --text-muted: rgba(255, 255, 255, 0.35);
  --text-faint: rgba(255, 255, 255, 0.25);
  --border: rgba(0, 188, 212, 0.1);
  --border-hover: rgba(0, 188, 212, 0.3);
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 10px;
  --radius-sm: 6px;
  --transition: 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  background-image: url('images/network-bg.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a:hover {
  color: #4dd0e1;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 12, 22, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--border);
  transition: background var(--transition);
}

.site-nav .logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.site-nav .logo a {
  color: inherit;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-menu li a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
  color: var(--accent);
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-menu li a:hover::after {
  width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  margin: 5px 0;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  background-color: var(--bg-medium);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

/* Dark overlay so text remains readable */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 12, 22, 0.88) 0%,
    rgba(10, 14, 26, 0.75) 50%,
    rgba(8, 12, 22, 0.85) 100%
  );
  z-index: 0;
}

/* Subtle animated ring (decorative) */
.hero-section::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border: 1px solid var(--accent-faint);
  border-radius: 50%;
  animation: pulse-ring 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.6; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-tag {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--font-main);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: #4dd0e1;
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 188, 212, 0.25);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--accent-dim);
  color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent-subtle);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ============================================
   SECTIONS - GENERAL
   ============================================ */
.section {
  padding: 80px 48px;
}

.section-tag {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================
   ABOUT / PARTNER SECTION
   ============================================ */
.about-section {
  background: rgba(13, 18, 32, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.about-inner {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  max-width: 900px;
}

.about-icon-box {
  min-width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-icon-box svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.about-text h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-section {
  background: rgba(8, 12, 22, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.service-card {
  background: var(--bg-light);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

a.service-card {
  display: block;
  color: inherit;
  position: relative;
}

a.service-card:hover {
  color: inherit;
}

.card-arrow {
  display: block;
  margin-top: 12px;
  font-size: 18px;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
}

.service-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   THREE PILLARS
   ============================================ */
.pillars-section {
  background: rgba(13, 18, 32, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.pillar-card {
  background: var(--bg-dark);
  border-left: 3px solid var(--accent);
  padding: 28px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: background var(--transition);
}

.pillar-card:hover {
  background: var(--bg-medium);
}

.pillar-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   WHY US
   ============================================ */
.why-section {
  background: rgba(8, 12, 22, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.why-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}

.why-card:hover {
  transform: translateY(-2px);
}

.why-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-card h3::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.why-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 18px;
}

/* ============================================
   NEWS / BLOG PREVIEW
   ============================================ */
.news-section {
  background: rgba(13, 18, 32, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.news-card {
  background: var(--bg-dark);
  border-radius: var(--radius);
  overflow: hidden;
  border: 0.5px solid var(--border);
  transition: all var(--transition);
}

.news-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.news-card a {
  color: inherit;
}

.news-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-medium));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-body {
  padding: 20px 24px;
}

.news-tag {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.news-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.news-date {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 12px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: rgba(8, 12, 22, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid var(--accent-faint);
  border-radius: 50%;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.contact-row strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-row span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  background: var(--bg-light);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: var(--font-main);
  outline: none;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-dim);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-faint);
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form .btn {
  align-self: flex-start;
}

/* ============================================
   ENTRY CONTENT (inlägg / single.php)
   ============================================ */
.entry-content p {
  margin-bottom: 1.5em;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.9;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2em;
  margin-bottom: 0.6em;
}

.entry-content h1 { font-size: clamp(24px, 3vw, 36px); }
.entry-content h2 { font-size: clamp(20px, 2.5vw, 28px); color: var(--accent); }
.entry-content h3 { font-size: clamp(17px, 2vw, 22px); }
.entry-content h4 { font-size: 18px; }
.entry-content h5 { font-size: 16px; }
.entry-content h6 { font-size: 14px; color: var(--text-muted); }

.entry-content ul,
.entry-content ol {
  margin: 0 0 1.5em 1.5em;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.9;
}

.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }

.entry-content li {
  margin-bottom: 0.4em;
}

.entry-content li > ul,
.entry-content li > ol {
  margin-top: 0.4em;
  margin-bottom: 0;
}

.entry-content blockquote {
  border-left: 3px solid var(--accent);
  margin: 2em 0;
  padding: 16px 24px;
  background: var(--accent-faint);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-secondary);
  font-style: italic;
}

.entry-content blockquote p {
  margin-bottom: 0;
}

.entry-content strong,
.entry-content b {
  color: var(--text-primary);
  font-weight: 600;
}

.entry-content em,
.entry-content i {
  font-style: italic;
}

.entry-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content a:hover {
  color: #4dd0e1;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 1.5em 0;
}

.entry-content figure {
  margin: 1.5em 0;
}

.entry-content figcaption {
  font-size: 13px;
  color: var(--text-faint);
  text-align: center;
  margin-top: 8px;
}

.entry-content hr {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 2.5em 0;
}

.entry-content code {
  font-family: var(--font-mono);
  font-size: 14px;
  background: var(--bg-card);
  color: var(--accent);
  padding: 2px 7px;
  border-radius: 4px;
}

.entry-content pre {
  font-family: var(--font-mono);
  font-size: 14px;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  overflow-x: auto;
  margin: 1.5em 0;
  line-height: 1.7;
}

.entry-content pre code {
  background: none;
  padding: 0;
  color: var(--text-secondary);
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 15px;
}

.entry-content th,
.entry-content td {
  padding: 10px 16px;
  text-align: left;
  border-bottom: 0.5px solid var(--border);
}

.entry-content th {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.entry-content td {
  color: var(--text-secondary);
}

/* Gutenberg-block: separator */
.entry-content .wp-block-separator {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 2.5em 0;
}

/* Gutenberg-block: quote */
.entry-content .wp-block-quote {
  border-left: 3px solid var(--accent);
  margin: 2em 0;
  padding: 16px 24px;
  background: var(--accent-faint);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Gutenberg-block: code */
.entry-content .wp-block-code {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: rgba(6, 10, 20, 0.88);
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid var(--border);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-faint);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

/* ============================================
   FEATURED POST (AI-blogg archive)
   ============================================ */
.featured-post {
  margin-top: 20px;
}

.featured-post-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  background: var(--bg-dark);
  border-radius: var(--radius);
  overflow: hidden;
  border: 0.5px solid var(--border);
  color: inherit;
  transition: all var(--transition);
}

.featured-post-inner:hover {
  border-color: var(--border-hover);
  color: inherit;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.featured-post-image {
  height: 320px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-medium));
  overflow: hidden;
}

.featured-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-post-content {
  padding: 32px 32px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-post-content h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  margin: 8px 0 12px;
  line-height: 1.3;
}

.featured-post-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* 3-column news grid for archive pages */
.news-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Pagination */
.pagination-wrap {
  margin-top: 48px;
  text-align: center;
}

.pagination-wrap .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-light);
  border: 0.5px solid var(--border);
  transition: all var(--transition);
}

.pagination-wrap .page-numbers:hover {
  border-color: var(--border-hover);
  color: var(--accent);
}

.pagination-wrap .page-numbers.current {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
}

/* AI-blogg daily badge */
.ai-daily-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--accent-subtle);
  border: 0.5px solid var(--accent-dim);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

.ai-daily-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .services-grid,
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-section,
  .section {
    padding-left: 28px;
    padding-right: 28px;
  }
  .site-nav {
    padding: 0 28px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(8, 12, 22, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 28px;
    gap: 16px;
    border-bottom: 0.5px solid var(--border);
  }
  .nav-menu.active {
    display: flex;
  }
  .services-grid,
  .pillars-grid,
  .why-grid,
  .news-grid,
  .news-grid-3 {
    grid-template-columns: 1fr;
  }
  .contact-inner,
  .featured-post-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .featured-post-image {
    height: 200px;
  }
  .featured-post-content {
    padding: 24px;
  }
  .about-inner {
    flex-direction: column;
  }
  .hero-title {
    font-size: 28px;
  }
  /* iOS doesn't support background-attachment: fixed */
  .hero-section,
  body {
    background-attachment: scroll;
    background-size: cover;
  }
  .site-footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 28px;
  }
}
