/* Import modern fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Reset and base rules */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Palette (HSL Tailored) */
  --primary-deep: hsl(222, 80%, 8%);
  --primary-medium: hsl(220, 85%, 15%);
  --brand-blue: hsl(217, 90%, 48%);
  --brand-light: hsl(205, 95%, 55%);
  --accent-teal: hsl(182, 85%, 42%);
  --text-dark: hsl(220, 40%, 18%);
  --text-muted: hsl(220, 15%, 50%);
  --bg-light: hsl(210, 40%, 98%);
  --bg-white: hsl(0, 0%, 100%);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.05);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Sizing and spacings */
  --header-height: 85px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  font-size: 16px;
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

/* Common Layout Components */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--brand-blue);
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(39, 124, 234, 0.4);
}

.btn-primary:hover {
  background-color: var(--primary-medium);
  box-shadow: 0 6px 20px rgba(39, 124, 234, 0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--bg-white);
  border-color: var(--bg-white);
}

.btn-outline:hover {
  background-color: var(--bg-white);
  color: var(--primary-deep);
  transform: translateY(-2px);
}

/* Sticky Header with Glassmorphism */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header-top {
  background-color: var(--primary-medium);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-info {
  display: flex;
  gap: 24px;
}

.header-top-info a:hover {
  color: var(--brand-light);
}

.main-header {
  display: flex;
  align-items: center;
  height: var(--header-height);
  background-color: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  background-color: var(--primary-deep);
  height: 75px;
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 50px;
  width: auto;
  transition: var(--transition-smooth);
}

.main-header.scrolled .logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--bg-white);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand-light);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--brand-light);
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--bg-white);
  transition: var(--transition-smooth);
}

/* Hero Section with Slider/Video Background */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  color: var(--bg-white);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(1, 15, 51, 0.85) 0%, rgba(1, 15, 51, 0.4) 100%);
  z-index: 2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomOut 20s infinite alternate;
}

@keyframes zoomOut {
  from { transform: scale(1.15); }
  to { transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-text {
  max-width: 800px;
}

.hero h1 {
  font-size: calc(2.5rem + 2vw);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero h3 {
  font-size: calc(1.1rem + 0.5vw);
  font-weight: 400;
  color: var(--brand-light);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Callout and video section */
.video-banner-section {
  position: relative;
  padding: 120px 0;
  color: var(--bg-white);
  text-align: center;
  overflow: hidden;
}

.video-banner-section .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-banner-section .video-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 15, 51, 0.8);
  z-index: 2;
}

.video-banner-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-banner-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.video-banner-content h3 {
  font-size: calc(1.5rem + 1vw);
  line-height: 1.3;
}

/* Section Title */
.section-title-wrap {
  margin-bottom: 60px;
  position: relative;
}

.section-title-wrap h2 {
  font-size: 2.5rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.section-title-wrap h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--brand-blue);
  border-radius: 2px;
}

.section-title-wrap.left h2::after {
  left: 0;
  transform: none;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Two Column Welcome Section */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.welcome-text h3 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--primary-deep);
}

.welcome-text p {
  margin-bottom: 20px;
  color: var(--text-dark);
}

.welcome-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background-image: url('https://aquafindconsultores.cl/wp-content/uploads/2026/05/Captura-de-pantalla-2025-09-08-165527.png');
  background-size: cover;
  background-position: center;
  min-height: 350px;
}

.welcome-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(49, 127, 245, 0.15);
  mix-blend-mode: multiply;
}

/* Services Grid and Cards */
.services-section {
  background-color: var(--bg-white);
}

.services-list-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-row-card {
  display: flex;
  background-color: var(--bg-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.service-row-card:nth-child(even) {
  flex-direction: row-reverse;
}

.service-row-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-row-card-img {
  width: 42%;
  background-size: cover;
  background-position: center;
  min-height: 380px;
}

.service-row-card-content {
  width: 58%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-row-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--primary-deep);
  text-transform: uppercase;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.service-row-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-row-card ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px 24px;
}

.service-row-card li {
  font-size: 0.9rem;
  position: relative;
  padding-left: 22px;
  line-height: 1.4;
  color: var(--text-dark);
}

.service-row-card li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent-teal);
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 0.8rem;
}

/* Nosotros Page Specifics */
.nosotros-intro {
  background-color: var(--bg-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-box {
  background-color: var(--bg-white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(39, 124, 234, 0.2);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: rgba(39, 124, 234, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--brand-blue);
  font-size: 1.5rem;
}

.feature-box h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary-deep);
}

.feature-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact form glassmorphism */
.contact-section-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 50px;
  align-items: start;
}

.contact-info-panel {
  background-color: var(--primary-deep);
  color: var(--bg-white);
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.contact-info-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-light);
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.contact-info-text p, .contact-info-text a {
  font-size: 1.05rem;
}

.contact-form-panel {
  background-color: var(--bg-white);
  padding: 50px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid hsl(220, 15%, 85%);
  border-radius: 8px;
  background-color: var(--bg-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-blue);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(39, 124, 234, 0.15);
}

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

/* Client logos slider in Footer */
.logos-carousel-section {
  background-color: var(--bg-white);
  padding: 50px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.logos-track {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 50px;
  flex-wrap: wrap;
}

.logo-item {
  height: 50px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(1);
  transition: var(--transition-fast);
}

.logo-item:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* Call to action section */
.cta-banner {
  background-color: var(--brand-blue);
  color: var(--bg-white);
  padding: 80px 0;
  text-align: center;
}

.cta-banner-h {
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

/* Footer styles */
footer {
  background-color: var(--primary-deep);
  color: rgba(255, 255, 255, 0.6);
  padding-top: 80px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo img {
  height: 60px;
  margin-bottom: 24px;
}

.footer-desc {
  max-width: 320px;
  font-size: 0.95rem;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--bg-white);
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--brand-light);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--brand-light);
  margin-top: 4px;
}

.footer-bottom {
  padding: 30px 0;
  font-size: 0.9rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Internal Banner for Subpages */
.subpage-banner {
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--bg-white);
  padding-top: var(--header-height);
  background-size: cover;
  background-position: center;
}

.subpage-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(1, 15, 51, 0.9), rgba(1, 15, 51, 0.6));
  z-index: 1;
}

.subpage-banner .container {
  position: relative;
  z-index: 2;
}

.subpage-banner h1 {
  font-size: 3rem;
  font-weight: 800;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .contact-section-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .service-row-card,
  .service-row-card:nth-child(even) {
    flex-direction: column;
  }
  .service-row-card-img {
    width: 100%;
    min-height: 280px;
    height: 280px;
  }
  .service-row-card-content {
    width: 100%;
    padding: 30px 24px;
  }
  .service-row-card ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .header-top {
    display: none;
  }
  .menu-btn {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - var(--header-height));
    background-color: var(--primary-medium);
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    transition: var(--transition-smooth);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  .nav-links.active {
    right: 0;
  }
  .menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .form-group-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-panel {
    padding: 30px 20px;
  }
}

/* ═══════════════════════════════════════════
   Blog Page
   ═══════════════════════════════════════════ */

/* Blog Layout */
.blog-page {
  background-color: var(--bg-light);
}

.blog-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Post list / index */
.blog-index {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 80px 0 100px;
}

/* Individual article card */
.blog-article {
  background-color: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.blog-article:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Article header with category + title */
.blog-article-header {
  padding: 36px 40px 0;
}

.blog-category {
  display: inline-block;
  background-color: hsl(182, 85%, 92%);
  color: hsl(182, 85%, 30%);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.blog-article-header h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-deep);
  line-height: 1.25;
  margin-bottom: 14px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta i {
  color: var(--brand-blue);
  font-size: 0.8rem;
}

/* Featured image with caption */
.blog-featured-figure {
  margin: 0 40px 28px;
  border-radius: 12px;
  overflow: hidden;
}

.blog-featured-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.blog-featured-figure figcaption {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  padding: 10px 14px;
  background-color: var(--bg-light);
  border-top: 1px solid hsl(220, 15%, 92%);
  font-style: italic;
}

/* Article body */
.blog-body {
  padding: 0 40px 40px;
}

.blog-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.blog-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin: 32px 0 14px;
  padding-left: 16px;
  border-left: 4px solid var(--accent-teal);
}

.blog-body ul {
  list-style: none;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-body ul li {
  font-size: 0.95rem;
  color: var(--text-dark);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.blog-body ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent-teal);
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 0.8rem;
}

.blog-body .highlight-box {
  background: linear-gradient(135deg, hsl(217, 90%, 96%) 0%, hsl(205, 95%, 92%) 100%);
  border-left: 4px solid var(--brand-blue);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 0.95rem;
  color: var(--primary-medium);
  line-height: 1.7;
}

/* Article footer: tags + read-more */
.blog-article-footer {
  padding: 20px 40px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid hsl(220, 15%, 93%);
  flex-wrap: wrap;
  gap: 16px;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
  background-color: var(--bg-light);
  border: 1px solid hsl(220, 15%, 88%);
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 500;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brand-blue);
  transition: var(--transition-fast);
}

.blog-read-more:hover {
  color: var(--primary-deep);
  gap: 12px;
}

/* Blog Responsive */
@media (max-width: 768px) {
  .blog-article-header,
  .blog-body,
  .blog-article-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .blog-featured-figure {
    margin: 0 24px 24px;
  }

  .blog-article-header h2 {
    font-size: 1.4rem;
  }

  .blog-article-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
