/* ============================================================
   3 Dogs Advisory — Shared Stylesheet
   ============================================================ */

/* Google Fonts loaded in each HTML file:
   EB Garamond 700 (headings, matches logo)
   Inter 400/500/600/700 (body)
*/

/* ------------------------------------------------------------
   Design Tokens
   ------------------------------------------------------------ */
:root {
  --navy:    #1E3A5F;
  --blue:    #5B9BD5;
  --red:     #BE3A2A;
  --white:   #FFFFFF;
  --surface: #F4F6F9;
  --text:    #2C3E50;
  --muted:   #6B7280;
  --border:  #E5E7EB;

  --font-heading: 'EB Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w:  1100px;
  --radius: 8px;
  --shadow: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);

  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ------------------------------------------------------------
   Typography
   ------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }

p {
  line-height: 1.75;
  color: var(--text);
}

/* ------------------------------------------------------------
   Utility
   ------------------------------------------------------------ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad {
  padding: 5rem 2rem;
}

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

.text-muted { color: var(--muted); }

.section-sub {
  color: var(--muted);
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: opacity var(--transition), background var(--transition), transform var(--transition);
  text-decoration: none;
}

.btn:hover { opacity: 0.88; }

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-primary:active,
.btn-outline-white:active,
.btn-white:active {
  transform: scale(0.97);
  opacity: 1;
}

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

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

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  opacity: 1;
}

.btn-white {
  background: var(--white);
  color: var(--red);
}

.btn-white:hover { opacity: 0.92; }

/* ------------------------------------------------------------
   Navigation
   ------------------------------------------------------------ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 2.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.2;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: color var(--transition);
}

.nav-links a:not(.nav-cta) {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
  border-radius: 2px;
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.nav-links a.active {
  font-weight: 700;
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 0.9rem;
  transition: opacity var(--transition) !important;
}

.nav-cta:hover { opacity: 0.88; }

/* Hamburger — mobile only */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

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

/* Mobile nav open state */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------
   Page Header (inner pages)
   ------------------------------------------------------------ */
.page-header {
  background: var(--navy);
  padding: 3.5rem 2rem;
  color: var(--white);
}

.page-header h1 { color: var(--white); }
.page-header p   { color: #94A3B8; margin-top: 0.5rem; }

/* ------------------------------------------------------------
   Hero (home page)
   ------------------------------------------------------------ */
.hero {
  background: linear-gradient(135deg, rgba(18,34,58,0.84) 0%, rgba(30,58,95,0.72) 100%),
              url('../images/hero.png') center/cover no-repeat;
  color: var(--white);
  padding: 6rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  height: 130px;
  width: auto;
  margin-bottom: 2rem;
  mix-blend-mode: screen;
}

.hero-logo {
  margin-bottom: 1.5rem;
}
.hero-logo img {
  height: 110px;
  width: auto;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 6px;
}

.hero-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.85rem;
  color: var(--blue);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .hero-brand-llc { display: none; }
}

.hero h1 {
  color: var(--white);
  max-width: 720px;
  margin-bottom: 1.25rem;
}

.hero p:not(.hero-brand) {
  color: #CBD5E1;
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 2.25rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ------------------------------------------------------------
   Value Props (home)
   ------------------------------------------------------------ */
.value-props {
  background: var(--surface);
  padding: 4rem 2rem;
}

.value-props h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.prop-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.prop-icon {
  margin: 0 auto 1.25rem;
  color: var(--blue);
  background: rgba(91, 155, 213, 0.12);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prop-icon svg {
  width: 30px;
  height: 30px;
}

.prop-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.prop-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ------------------------------------------------------------
   Services Overview Grid (home)
   ------------------------------------------------------------ */
.services-overview {
  padding: 5rem 2rem;
}

.services-overview h2,
.services-overview .section-sub {
  text-align: center;
}

.services-overview .section-sub {
  margin-bottom: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: block;
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(0,0,0,0.13);
  transform: translateY(-5px);
}

.service-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 0.4rem;
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ------------------------------------------------------------
   Stats Bar (home)
   ------------------------------------------------------------ */
.stats-bar {
  background: var(--navy);
  padding: 4rem 2rem;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 5rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat-header {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
}

.stat-accent { color: var(--red); }

.stat-label {
  color: #94A3B8;
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

/* ------------------------------------------------------------
   Industries (home + about)
   ------------------------------------------------------------ */
.industries {
  background: var(--surface);
  padding: 4rem 2rem;
}

.industries h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.industry-tag {
  background: var(--white);
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.875rem;
}

/* ------------------------------------------------------------
   CTA Banner (shared)
   ------------------------------------------------------------ */
.cta-banner {
  background: var(--red);
  padding: 4.5rem 2rem;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(255,255,255,0.9); margin-bottom: 2rem; font-size: 1rem; }

/* ------------------------------------------------------------
   Footer (shared)
   ------------------------------------------------------------ */
.site-footer {
  background: var(--navy);
  padding: 2.5rem 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-logo img {
  height: 36px;
  width: auto;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.875rem;
  transition: color var(--transition);
}

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

.footer-copy {
  color: #64748B;
  font-size: 0.8rem;
}

/* ------------------------------------------------------------
   Services Page — Accordion
   ------------------------------------------------------------ */
.accordion-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: var(--white);
  transition: background var(--transition);
  user-select: none;
}

.accordion-header:hover { background: var(--surface); }

.accordion-icon {
  flex-shrink: 0;
  color: var(--blue);
}

.accordion-icon svg {
  width: 24px;
  height: 24px;
}

.accordion-meta { flex: 1; }

.accordion-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 0.2rem;
}

.accordion-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 700;
}

.accordion-teaser {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.accordion-chevron {
  color: var(--muted);
  font-size: 0.9rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.accordion-item.open .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding: 1rem 1.5rem 1.5rem 4rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.accordion-item.open .accordion-body { display: block; }

.accordion-body ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.accordion-body li {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 0.15rem;
}

/* ------------------------------------------------------------
   About Page
   ------------------------------------------------------------ */
.bio-section {
  padding: 5rem 2rem;
}

.bio-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.bio-logo img {
  max-width: 260px;
  margin: 0 auto;
}

.bio-text h2 { margin-bottom: 1rem; }
.bio-text p  { margin-bottom: 1rem; }
.bio-text a  { color: var(--blue); font-weight: 600; }
.bio-text a:hover { text-decoration: underline; }

/* Industry Cards */
.industry-cards {
  background: var(--surface);
  padding: 4rem 2rem;
}

.industry-cards h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.industry-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-left: 4px solid var(--blue);
}

.industry-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.industry-card ul {
  list-style: disc;
  padding-left: 1.1rem;
}

.industry-card li {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Tech Depth */
.tech-section {
  padding: 4rem 2rem;
}

.tech-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.tech-section h2 { margin-bottom: 0.5rem; }

.tech-category { margin-bottom: 1.5rem; }

.tech-category-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tech-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Career Timeline */
.career-section {
  background: var(--surface);
  padding: 4rem 2rem;
}

.career-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.career-list {
  max-width: 680px;
  margin: 0 auto;
}

.career-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.career-item:last-child { border-bottom: none; }

.career-dot {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.career-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.career-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* Thought Leadership */
.thought-section {
  padding: 4rem 2rem;
  text-align: center;
}

.thought-section h2 { margin-bottom: 1rem; }
.thought-section p  { color: var(--muted); margin-bottom: 0.4rem; font-size: 0.95rem; }

/* Education */
.edu-section {
  background: var(--navy);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--white);
}

.edu-section h2 { color: var(--white); margin-bottom: 0.4rem; font-size: 1.4rem; }
.edu-section p  { color: #94A3B8; }

/* ------------------------------------------------------------
   Contact Page
   ------------------------------------------------------------ */
.contact-section {
  padding: 5rem 2rem;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}

.contact-left h2 { margin-bottom: 1rem; }
.contact-left p  { color: var(--muted); margin-bottom: 1rem; font-size: 0.95rem; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.linkedin-block {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.linkedin-block h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.linkedin-block p  { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }

.linkedin-btns { display: flex; flex-direction: column; gap: 0.5rem; }

.btn-linkedin,
.btn-linkedin-outline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: opacity var(--transition);
}

.btn-linkedin {
  background: #0A66C2;
  color: var(--white);
}

.btn-linkedin-outline {
  border: 2px solid #0A66C2;
  color: #0A66C2;
}

.btn-linkedin:hover,
.btn-linkedin-outline:hover { opacity: 0.82; }

/* Form */
.contact-form-box {
  background: var(--surface);
  border-radius: 12px;
  padding: 2.5rem;
}

.contact-form-box h2 { margin-bottom: 1.5rem; font-size: 1.5rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(91,155,213,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity var(--transition);
}

.form-submit:hover { opacity: 0.88; }

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.75rem;
}

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

.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.form-success svg {
  margin-bottom: 1rem;
}
.form-success h2 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.form-success p {
  color: var(--muted);
  font-size: 1rem;
}

/* ------------------------------------------------------------
   Responsive — Tablet (≤ 900px)
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .nav-logo-text   { display: none; }
  .props-grid      { grid-template-columns: 1fr 1fr; }
  .services-grid   { grid-template-columns: 1fr 1fr; }
  .industry-grid   { grid-template-columns: 1fr 1fr; }
  .bio-inner       { grid-template-columns: 1fr; gap: 2rem; }
  .bio-logo img    { max-width: 200px; margin: 0 auto; }
  .contact-inner   { grid-template-columns: 1fr; gap: 3rem; }
  .form-row        { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   Responsive — Mobile (≤ 600px)
   ------------------------------------------------------------ */
@media (max-width: 600px) {
  .props-grid    { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .stats-grid    { flex-direction: column; align-items: center; gap: 2.5rem; }
  .hero          { padding: 4rem 1.5rem; }
  .hero-btns     { flex-direction: column; align-items: center; }
  .section-pad   { padding: 3rem 1.5rem; }

  /* Mobile nav */
  .nav-logo-text { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 2rem;
    gap: 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .nav-inner { position: relative; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-direction: column; gap: 0.75rem; }

  .accordion-body { padding-left: 1.5rem; }
}

/* ------------------------------------------------------------
   Scroll-Triggered Entrance Animations
   ------------------------------------------------------------ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ------------------------------------------------------------
   Section Heading Accent (red rule under key h2s)
   ------------------------------------------------------------ */
.section-heading {
  position: relative;
  padding-bottom: 0.9rem;
}

.section-heading::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--red);
  margin: 0.65rem auto 0;
  border-radius: 2px;
}
