/* ==========================================================================
   VIOLET PRESS — Portal Theme
   Inspired by Mailler SaaS Template visual DNA
   Color DNA: pink (#f74780) + purple (#6610f2) on light base
   Typography: geometric sans-serif (Plus Jakarta Sans / Rubik style)
   Layout: spacious full-width sections, generous padding, split layouts
   ========================================================================== */

/* --- CSS Custom Properties --- */
:root {
  --c-primary: #f74780;
  --c-primary-light: rgba(247, 71, 128, 0.08);
  --c-primary-hover: #e0306a;
  --c-secondary: #6610f2;
  --c-secondary-light: rgba(102, 16, 242, 0.06);
  --c-dark: #1a1a2e;
  --c-text: #3d3d56;
  --c-text-muted: #6e6e87;
  --c-light: #f8f5ff;
  --c-white: #ffffff;
  --c-border: #e8e3f3;
  --c-bg-tinted: linear-gradient(135deg, rgba(102, 16, 242, 0.04) 0%, rgba(247, 71, 128, 0.04) 100%);

  --f-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --f-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --r-pill: 50px;
  --r-card: 14px;
  --r-small: 8px;

  --shadow-card: 0 4px 32px rgba(102, 16, 242, 0.08);
  --shadow-hover: 0 8px 40px rgba(247, 71, 128, 0.14);
  --shadow-nav: 0 2px 20px rgba(0, 0, 0, 0.06);

  --max-w: 1200px;
  --section-py: 6rem;
  --section-py-sm: 3.5rem;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-white);
  overflow-x: hidden;
}

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

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--c-primary-hover);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-heading);
  color: var(--c-dark);
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
}

ul, ol {
  list-style: none;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: var(--section-py) 0;
}

.section--tinted {
  background: var(--c-bg-tinted);
}

.section--light {
  background: var(--c-light);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: var(--r-small);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
  color: var(--c-white);
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: var(--shadow-nav);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--c-secondary);
  text-decoration: none;
}

.brand:hover {
  color: var(--c-secondary);
}

.brand img {
  height: 36px;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  color: var(--c-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  position: relative;
  text-decoration: none;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-primary);
  border-radius: 2px;
  transition: width 0.3s;
}

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

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-white);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0;
  z-index: 999;
  overflow-y: auto;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: var(--c-dark);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-border);
  text-decoration: none;
}

.nav-mobile a:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .hamburger {
    display: none;
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 10rem 0 var(--section-py);
  overflow: hidden;
  background: var(--c-bg-tinted);
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 60px solid rgba(247, 71, 128, 0.06);
  animation: floatOrb 18s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 50px solid rgba(102, 16, 242, 0.05);
  animation: floatOrb 22s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 25px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  margin-bottom: 1rem;
  padding: 0.35rem 1rem;
  background: var(--c-primary-light);
  border-radius: var(--r-pill);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1.25rem;
  color: var(--c-dark);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--c-text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-subtitle p {
  margin-bottom: 0;
}

/* --- Pill Button --- */
.btn-pill {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--f-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: all 0.35s;
  text-decoration: none;
  text-align: center;
}

.btn-pill--primary {
  background: var(--c-primary);
  color: var(--c-white);
}

.btn-pill--primary:hover {
  background: var(--c-primary-hover);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(247, 71, 128, 0.3);
}

.btn-pill--ghost {
  background: transparent;
  color: var(--c-primary);
  border: 2px solid var(--c-primary);
}

.btn-pill--ghost:hover {
  background: var(--c-primary);
  color: var(--c-white);
  transform: translateY(-2px);
}

.btn-pill--light {
  background: var(--c-white);
  color: var(--c-primary);
  border: 1px solid var(--c-border);
}

.btn-pill--light:hover {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--c-text-muted);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   TOPICS / THEMATIC AREAS
   ========================================================================== */
.topics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.topic-card {
  position: relative;
  background: var(--c-white);
  border-radius: var(--r-card);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s, box-shadow 0.35s;
  border-left: 4px solid transparent;
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--c-primary);
}

.topic-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--c-dark);
}

.topic-card .topic-desc {
  color: var(--c-text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.topic-card .topic-desc p:last-child {
  margin-bottom: 0;
}

/* Decorative number */
.topic-card::before {
  content: attr(data-index);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(102, 16, 242, 0.06);
  line-height: 1;
  font-family: var(--f-heading);
}

@media (min-width: 600px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* ==========================================================================
   LATEST POSTS
   ========================================================================== */
.posts-section .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.posts-section .section-header .section-desc {
  margin-bottom: 0;
}

.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s, box-shadow 0.35s;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.post-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--c-secondary-light);
}

.post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.post-card:hover .post-card__img img {
  transform: scale(1.06);
}

.post-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__date {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.post-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.post-card__title a {
  color: var(--c-dark);
  text-decoration: none;
}

.post-card__title a:hover {
  color: var(--c-primary);
}

.post-card__excerpt {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  flex: 1;
}

.post-card__excerpt p:last-child {
  margin-bottom: 0;
}

.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-primary);
  margin-top: 1rem;
  text-decoration: none;
}

.post-card__link:hover {
  gap: 0.7rem;
}

.post-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.post-card:hover .post-card__link svg {
  transform: translateX(3px);
}

/* Featured post - first child large */
@media (min-width: 768px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .posts-grid .post-card:first-child {
    grid-column: 1 / -1;
    flex-direction: row;
  }
  .posts-grid .post-card:first-child .post-card__img {
    flex: 0 0 45%;
    aspect-ratio: auto;
    min-height: 280px;
  }
  .posts-grid .post-card:first-child .post-card__body {
    padding: 2rem;
    justify-content: center;
  }
  .posts-grid .post-card:first-child .post-card__title {
    font-size: 1.4rem;
  }
}

@media (min-width: 960px) {
  .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .posts-grid .post-card:first-child {
    grid-column: 1 / 3;
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 50px solid rgba(247, 71, 128, 0.04);
  pointer-events: none;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.faq-layout .faq-intro {
  position: relative;
  z-index: 1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: var(--c-white);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-dark);
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--c-primary);
}

.faq-question:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: -2px;
}

.faq-chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
}

.faq-chevron svg {
  width: 14px;
  height: 14px;
  color: var(--c-primary);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--c-primary);
}

.faq-item.open .faq-chevron svg {
  color: var(--c-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--c-text-muted);
  font-size: 0.93rem;
  line-height: 1.8;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .faq-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--c-bg-tinted);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--c-border);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--c-secondary);
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-brand:hover {
  color: var(--c-secondary);
}

.footer-brand img {
  height: 32px;
  width: auto;
}

.footer-tagline {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-nav-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-dark);
  margin-bottom: 1rem;
}

.footer-nav a {
  display: block;
  color: var(--c-text-muted);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color 0.3s, padding-left 0.3s;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--c-primary);
  padding-left: 0.4rem;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-text-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--c-primary);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr;
  }
}

/* ==========================================================================
   BLOG INDEX PAGE
   ========================================================================== */
.page-header {
  position: relative;
  padding: 9rem 0 3rem;
  background: var(--c-bg-tinted);
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 60px solid rgba(102, 16, 242, 0.04);
  pointer-events: none;
  animation: floatOrb 20s ease-in-out infinite;
}

.page-header::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 50px solid rgba(247, 71, 128, 0.04);
  pointer-events: none;
  animation: floatOrb 16s ease-in-out infinite reverse;
}

.page-header h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  position: relative;
  z-index: 1;
}

.page-header p {
  position: relative;
  z-index: 1;
}

/* Blog listing - alternating layout */
.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 600px) {
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .blog-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.75rem;
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  text-decoration: none;
  transition: all 0.3s;
}

.pagination a:hover,
.pagination a.active {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}

.pagination a.active {
  pointer-events: none;
}

/* ==========================================================================
   SINGLE POST
   ========================================================================== */
.post-single {
  padding: 9rem 0 var(--section-py);
}

.post-single .post-meta {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.post-single h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1.5rem;
  max-width: 780px;
}

.post-single .post-excerpt {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  line-height: 1.8;
  border-left: 3px solid var(--c-primary);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
  max-width: 780px;
}

.post-single .post-excerpt p:last-child {
  margin-bottom: 0;
}

.post-cover {
  margin-bottom: 2.5rem;
  border-radius: var(--r-card);
  overflow: hidden;
}

.post-cover img {
  width: 100%;
}

/* Content HTML styling */
.content-body {
  max-width: 780px;
  font-size: 1.05rem;
  line-height: 1.85;
}

.content-body h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
}

.content-body h3 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
}

.content-body h4 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem;
}

.content-body p {
  margin-bottom: 1.25rem;
}

.content-body ul,
.content-body ol {
  margin: 1rem 0 1.25rem 1.5rem;
}

.content-body ul {
  list-style: disc;
}

.content-body ol {
  list-style: decimal;
}

.content-body li {
  margin-bottom: 0.4rem;
}

.content-body blockquote {
  border-left: 3px solid var(--c-primary);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: var(--c-primary-light);
  border-radius: 0 var(--r-small) var(--r-small) 0;
  font-style: italic;
  color: var(--c-text);
}

.content-body a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-body img {
  border-radius: var(--r-small);
  margin: 1.5rem 0;
}

.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.content-body th,
.content-body td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--c-border);
  text-align: left;
}

.content-body th {
  background: var(--c-light);
  font-weight: 600;
}

/* ==========================================================================
   STATIC PAGE
   ========================================================================== */
.static-page {
  padding: 9rem 0 var(--section-py);
}

.static-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 2rem;
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 800;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--c-primary-hover);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 767px) {
  .hero {
    padding: 8rem 0 3.5rem;
  }
  .section {
    padding: var(--section-py-sm) 0;
  }
  .site-footer {
    padding: 3rem 0 0;
  }
  .page-header {
    padding: 7.5rem 0 2.5rem;
  }
  .post-single, .static-page {
    padding: 7.5rem 0 3rem;
  }
  .posts-grid .post-card:first-child {
    flex-direction: column;
  }
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 2px;
}
