/*
Theme Name: Jasper First Methodist
Theme URI: https://jasperfirstmethodist.com
Author: JFMC
Description: Official theme for Jasper First Methodist Church, Jasper, Alabama. A Global Methodist Congregation since 1833.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: jfmc
Tags: church, one-column, two-columns, custom-menu, featured-images, footer-widgets, full-width-template
*/

/* =========================================================
   CSS CUSTOM PROPERTIES
   ========================================================= */
:root {
  --color-navy:       #1a2744;
  --color-navy-dark:  #111b33;
  --color-gold:       #c9a84c;
  --color-gold-light: #e2c47a;
  --color-white:      #ffffff;
  --color-off-white:  #f5f3ee;
  --color-gray:       #6b6b6b;
  --color-gray-light: #e8e6e1;
  --color-text:       #2c2c2c;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;
  --font-nav:     'Raleway', 'Helvetica Neue', Arial, sans-serif;

  --nav-height: 80px;
  --max-width:  1200px;

  --transition: 0.3s ease;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.14);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-navy);
}

p { margin-bottom: 1rem; }

ul { list-style: none; }

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

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

/* =========================================================
   TOP BAR
   ========================================================= */
.site-topbar {
  background: var(--color-navy-dark);
  padding: 8px 0;
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-topbar .container {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  align-items: center;
}

.site-topbar a {
  color: var(--color-gold-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.site-topbar a:hover { color: var(--color-white); }

.topbar-icon {
  width: 16px; height: 16px;
  fill: currentColor;
}

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.site-header {
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.site-logo img { height: 60px; width: auto; }

.site-logo .logo-text {
  display: flex;
  flex-direction: column;
}
.site-logo .logo-text .church-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.1;
}
.site-logo .logo-text .church-sub {
  font-family: var(--font-nav);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.main-navigation ul {
  display: flex;
  gap: 4px;
  align-items: center;
}

.main-navigation ul li a {
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-navy);
  padding: 8px 14px;
  border-radius: 3px;
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.main-navigation ul li a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.main-navigation ul li a:hover { color: var(--color-gold); }
.main-navigation ul li a:hover::after { transform: scaleX(1); }

.main-navigation ul li.give-link a {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-radius: 4px;
  padding: 8px 18px;
}
.main-navigation ul li.give-link a:hover {
  background: var(--color-navy);
  color: var(--color-gold);
}
.main-navigation ul li.give-link a::after { display: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero-slider {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: var(--color-navy-dark);
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slider .slide.active { opacity: 1; }

.hero-slider .slide-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,27,51,0.72) 0%,
    rgba(17,27,51,0.45) 50%,
    rgba(17,27,51,0.3) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 24px;
  color: var(--color-white);
}

.hero-logo {
  width: 140px;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
  animation: fadeUp 1s ease 0.3s both;
}

.hero-tagline {
  font-family: var(--font-nav);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 16px;
  animation: fadeUp 1s ease 0.5s both;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  line-height: 1.1;
  margin-bottom: 16px;
  animation: fadeUp 1s ease 0.7s both;
}

.hero-content p {
  font-size: 16px;
  max-width: 600px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-style: italic;
  animation: fadeUp 1s ease 0.9s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  animation: fadeUp 1s ease 1.1s both;
  flex-wrap: wrap;
  justify-content: center;
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition);
}
.slider-dot.active {
  background: var(--color-gold);
  transform: scale(1.3);
}

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

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-block;
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 3px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--color-gold);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.btn-dark {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}
.btn-dark:hover {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
}

/* =========================================================
   SERVICE TIMES BANNER
   ========================================================= */
.service-banner {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 24px 0;
  text-align: center;
}

.service-banner .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.service-item .service-label {
  font-family: var(--font-nav);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.service-item .service-time {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}

.service-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.2);
}

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

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--color-navy);
  margin-bottom: 16px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-gray);
  font-size: 17px;
  line-height: 1.8;
}

/* =========================================================
   CALENDARS / EVENTS
   ========================================================= */
.calendars-section { background: var(--color-off-white); }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.calendar-card {
  background: var(--color-white);
  border-radius: 6px;
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--color-gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.calendar-card h3 {
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
  font-weight: 700;
}

.calendar-event {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-gray-light);
}
.calendar-event:last-child { border-bottom: none; padding-bottom: 0; }

.calendar-event .event-name {
  font-weight: 700;
  color: var(--color-navy);
  font-size: 15px;
}

.calendar-event .event-time {
  font-size: 13px;
  color: var(--color-gray);
  margin-top: 2px;
}

/* =========================================================
   MISSION BANNER
   ========================================================= */
.mission-banner {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.mission-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.mission-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.mission-logo { width: 100px; flex-shrink: 0; }
.mission-logo img { width: 100%; filter: brightness(0) invert(1); }

.mission-text h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-white);
  margin-bottom: 12px;
}

.mission-text p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  line-height: 1.6;
  max-width: 700px;
}

/* =========================================================
   HISTORY SECTION
   ========================================================= */
.history-section { background: var(--color-white); }

.history-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.history-image {
  position: relative;
}

.history-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}

.history-image .history-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-gold);
  color: var(--color-navy-dark);
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.history-badge .badge-year { font-size: 26px; line-height: 1; }
.history-badge .badge-label { font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-nav); }

.history-content h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 16px;
}

.history-content p { color: var(--color-gray); font-size: 16px; line-height: 1.8; }

/* =========================================================
   QUOTE SECTION
   ========================================================= */
.quote-section {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: var(--color-white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 280px;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 32px);
  font-style: italic;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.95);
}

.quote-services {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 40px;
}

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

.quote-service .qs-label {
  font-family: var(--font-nav);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 4px;
}

.quote-service .qs-time {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-white);
}

/* =========================================================
   LOCATION SECTION
   ========================================================= */
.location-section { background: var(--color-off-white); }

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.location-info h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

.location-info address {
  font-style: normal;
  color: var(--color-gray);
  font-size: 16px;
  line-height: 2;
  margin-bottom: 24px;
}

.location-info address strong { color: var(--color-navy); }

.location-services { margin: 24px 0 32px; }
.location-services h3 {
  font-size: 14px;
  font-family: var(--font-nav);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.location-services p { margin-bottom: 4px; font-size: 15px; color: var(--color-gray); }
.location-services strong { color: var(--color-navy); }

.map-embed iframe {
  width: 100%;
  height: 380px;
  border-radius: 6px;
  border: none;
  box-shadow: var(--shadow-md);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  width: 80px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) opacity(0.8);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
}

.footer-brand .gmc-logo {
  width: 120px;
  margin-top: 24px;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.footer-brand .gmc-logo:hover { opacity: 1; }

.footer-col h4 {
  font-family: var(--font-nav);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition);
}
.social-links a:hover {
  background: var(--color-gold);
  color: var(--color-navy-dark);
}
.social-links svg { width: 16px; height: 16px; fill: currentColor; }

/* =========================================================
   INNER PAGES
   ========================================================= */
.page-hero {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, transparent 60%);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.page-hero .page-hero-sub {
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 12px;
  display: block;
  position: relative;
  z-index: 1;
}

.content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}

.content-area h2 { font-size: 28px; margin: 32px 0 12px; }
.content-area h3 { font-size: 22px; margin: 24px 0 10px; }
.content-area p  { color: var(--color-gray); font-size: 16px; line-height: 1.8; }
.content-area ul { list-style: disc; padding-left: 24px; }
.content-area ul li { margin-bottom: 8px; color: var(--color-gray); }

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  padding: 64px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.team-card {
  background: var(--color-off-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.team-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--color-gray-light);
}

.team-card-body { padding: 24px; }
.team-card-body h3 { font-size: 20px; margin-bottom: 4px; }
.team-card-body .team-role {
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
  font-weight: 700;
}
.team-card-body p { font-size: 14px; color: var(--color-gray); line-height: 1.6; }

/* =========================================================
   WIDGETS
   ========================================================= */
.widget { margin-bottom: 40px; }
.widget-title {
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-gray-light);
}
.widget ul li { padding: 8px 0; border-bottom: 1px solid var(--color-gray-light); font-size: 14px; }
.widget ul li:last-child { border-bottom: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .history-inner { grid-template-columns: 1fr; }
  .location-inner { grid-template-columns: 1fr; }
  .history-image { max-width: 500px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .site-topbar { display: none; }

  .main-navigation {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--color-white);
    padding: 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .main-navigation.open { transform: translateY(0); }

  .main-navigation ul { flex-direction: column; gap: 4px; }
  .main-navigation ul li a { display: block; padding: 12px 16px; }

  .nav-toggle { display: flex; }

  .hero-slider { height: 480px; }

  .service-banner .container { gap: 24px; }
  .service-divider { display: none; }

  .mission-banner .container { flex-direction: column; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .quote-services { gap: 24px; }

  .calendar-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 28px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .section { padding: 56px 0; }
}
