﻿/* ===== Header sizing (logo & brand) ===== */
#header .navbar-brand {
  width: auto !important;
  flex: 0 0 auto;
  margin-right: 5rem;
}
#header .navbar-brand .brand-logo img {
  height: 32px;
  width: auto;
  display: block;
}
#header .navbar-collapse { flex: 1 1 auto; }

@media (max-width: 991.98px) {
  #header.navbar {
    min-height: 4rem;
    padding-block: 0.5rem;
  }

  #header > .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  #header .navbar-brand {
    min-width: 0;
    margin-right: 1rem;
  }

  #header .navbar-brand .brand-logo img {
    height: 30px;
    max-width: min(68vw, 250px);
  }

  #header .navbar-toggler {
    flex: 0 0 auto;
    margin-left: auto;
  }

  #header .navbar-collapse {
    flex-basis: 100%;
    order: 3;
  }
}

/* Hover-to-open desktop dropdowns (optional) */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu { display: block; }
}

/* Make dropdown section headings stand out */
.dropdown-menu .dropdown-header {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--bs-primary);
  padding: .375rem .75rem;
  margin-top: .25rem;
}

/* ===== Section theming with CSS variables ===== */

:root{
  /* tweak these two to control the subtle alternation */
  --ag-sec-alt-1: #ffffff;
  --ag-sec-alt-2: #e8eaec; /* light slate-ish off-white */
}

/* Consume tokens on any section */
.section {
  background: var(--sec-bg, var(--auto-bg, transparent));
  color: var(--sec-text, #212529);
}
.section p,
.section .text-muted,
.section .small { color: var(--sec-muted, rgba(33,37,41,.7)); }

/* Theme shortcuts when you explicitly set data-theme */
.section[data-theme="dark"] {
  --sec-bg: #0f172a;
  --sec-text: #fff;
  --sec-muted: rgba(255,255,255,.85);
}

/* Alternate backgrounds automatically per band */
.page-main > .section:nth-of-type(odd)  { --auto-bg: var(--ag-sec-alt-1); }
.page-main > .section:nth-of-type(even) { --auto-bg: var(--ag-sec-alt-2); }

/* ===== Hero specifics ===== */

/* Map hero tokens to generic section tokens so copy renders correctly */
.section-hero {
  --sec-text:  var(--hero-text, var(--sec-text));
  --sec-muted: var(--hero-text-muted, var(--sec-muted));
}
.section-hero .hero-copy,
.section-hero .hero-copy * { color: inherit; }
.section-hero .hero-copy p,
.section-hero .hero-copy .small { color: var(--sec-muted); }

/* Stronger primary CTA on dark imagery */
.section-hero .btn-theme{
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--ag-brand-hero, #0d6efd);
  --bs-btn-border-color: var(--ag-brand-hero, #0d6efd);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: color-mix(in srgb, var(--ag-brand-hero) 90%, #000 10%);
  --bs-btn-hover-border-color: color-mix(in srgb, var(--ag-brand-hero) 90%, #000 12%);
  --bs-btn-focus-shadow-rgb: 13,110,253;
  --bs-btn-active-bg: color-mix(in srgb, var(--ag-brand-hero) 85%, #000 15%);
  --bs-btn-active-border-color: color-mix(in srgb, var(--ag-brand-hero) 85%, #000 18%);
}

/* Optional panel behind hero copy */
.section-hero .hero-copy {
  background: var(--hero-panel-bg, transparent);
  border-radius: var(--hero-panel-radius, 0);
  padding: 1.25rem 1.5rem;
  -webkit-backdrop-filter: blur(var(--hero-panel-blur, 0));
  backdrop-filter: blur(var(--hero-panel-blur, 0));
}

/* Split hero: remove 100vh and use padding rhythm */
.section.section-hero.section-hero-split { min-height: auto !important; }
.section-hero.section-hero-split { padding-block: var(--hero-py, 3rem); }
.section-hero.section-hero-split[data-height="sm"] { --hero-py: 2.5rem; }
.section-hero.section-hero-split[data-height="md"] { --hero-py: 4rem; }
.section-hero.section-hero-split[data-height="lg"] { --hero-py: 6rem; }
@media (min-width: 992px) {
  .section-hero.section-hero-split { padding-block: var(--hero-py, 4rem); }
}



/* Chat page theme variables */
body.chat-page {
  /* Overall content vs sidebar */
  --authgate-chat-bg:        #0b1120; /* chat area, darker than header */
  --authgate-chat-sidebar-bg:#020617; /* left sidebar, slightly darker */

  /* Optional: colors passed into ChatKit */
  --authgate-chat-text:      #e5e7eb;
  --authgate-chat-accent:    #22d3ee;
}


/* Darker chat area */
body.chat-page .app-content {
  background-color: var(--authgate-chat-bg);
}

/* Left sidebar even darker */
body.chat-page .app-sidebar {
  background-color: var(--authgate-chat-sidebar-bg);
}


/* ChatKit theming */
body.chat-page openai-chatkit {
  /* Main panel background (should match app-content) */
  --ck-background:     var(--authgate-chat-bg);

  /* â€œSurfaceâ€ color â€“ used for internal panels and often the sidebar.
     Make this slightly darker to get the contrast you want. */
  --ck-surface-color:  var(--authgate-chat-sidebar-bg);

  /* Text and accent to fit AuthGateâ€™s brand */
  --ck-text-primary:   var(--authgate-chat-text);
  --ck-accent-color:   var(--authgate-chat-accent);

  /* Layout density (optional) */
  --ck-density:        compact;
}


--ck-background:     var(--authgate-chat-sidebar-bg);
--ck-surface-color:  var(--authgate-chat-bg);

/* Blog and article templates */
.section-blog-index,
.section-article-page {
  position: relative;
}

/* AuthGate Assist page shell */
.assist-page-shell {
  position: relative;
  box-sizing: border-box;
  height: calc(100vh - 60px);
  min-height: 0;
  overflow: hidden;
  background: #f4f7fb;
  padding: 0.75rem;
}

.assist-sidebar-toggle {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 4;
  display: inline-grid;
  grid-template-columns: 1rem auto;
  gap: 0.4rem;
  align-items: center;
  min-height: 1.85rem;
  border: 1px solid rgba(13, 36, 64, 0.12);
  border-radius: 0.5rem;
  padding: 0.25rem 0.55rem;
  background: rgba(255, 255, 255, 0.94);
  color: #203248;
  box-shadow: 0 0.35rem 1rem rgba(13, 36, 64, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.assist-sidebar-toggle:hover,
.assist-sidebar-toggle:focus {
  color: #0a5bff;
  border-color: rgba(10, 91, 255, 0.28);
}

.assist-page-grid {
  width: min(1440px, 100%);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: stretch;
  min-height: 0;
}

.assist-page-shell.is-sidebar-collapsed .assist-page-grid {
  grid-template-columns: minmax(0, 1fr);
}

.assist-page-shell.is-sidebar-collapsed .assist-sidebar {
  display: none;
}

.assist-page-shell.is-sidebar-collapsed .assist-sidebar-toggle {
  grid-template-columns: 1rem auto;
}

.assist-sidebar,
.assist-chat-panel {
  border: 1px solid rgba(13, 36, 64, 0.10);
  background: #ffffff;
  box-shadow: 0 0.75rem 2rem rgba(13, 36, 64, 0.08);
}

.assist-sidebar {
  border-radius: 0.5rem;
  padding: 3rem 0.75rem 0.75rem;
  overflow: hidden;
  min-height: 0;
}

.assist-sidebar-header h1 {
  margin: 0;
  color: #0d2440;
  letter-spacing: 0;
}

.assist-sidebar-header h1 {
  font-size: 1.15rem;
  line-height: 1.15;
}

.assist-sidebar-header p {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  line-height: 1.3;
}

.assist-sidebar-header p,
.assist-topic-card p {
  color: #526174;
}

.assist-eyebrow {
  margin: 0 0 0.35rem;
  color: #0a5bff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.assist-sidebar-action {
  margin-top: 0.65rem;
}

.assist-sidebar-primary,
.assist-sidebar-link {
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr);
  gap: 0.45rem;
  align-items: center;
  width: 100%;
  border: 0;
  border-radius: 0.5rem;
  text-align: left;
  text-decoration: none;
  letter-spacing: 0;
}

.assist-sidebar-primary {
  min-height: 2rem;
  padding: 0.35rem 0.6rem;
  background: #0a5bff;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

.assist-sidebar-nav {
  display: grid;
  gap: 0.42rem;
  margin-top: 0.65rem;
}

.assist-sidebar-group h2 {
  margin: 0 0 0.18rem;
  color: #637083;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.assist-sidebar-links {
  display: grid;
  gap: 0.08rem;
}

.assist-sidebar-link {
  min-height: 1.52rem;
  padding: 0.2rem 0.4rem;
  background: transparent;
  color: #203248;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.assist-sidebar-link:hover,
.assist-sidebar-link:focus {
  background: #f2f5fa;
  color: #0a5bff;
}

.assist-sidebar-primary i,
.assist-sidebar-link i,
.assist-topic-card-icon {
  color: #0a5bff;
}

.assist-sidebar-primary i {
  color: #ffffff;
}

.assist-chat-panel {
  min-width: 0;
  min-height: 0;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.assist-dev-badge {
  flex: 0 0 auto;
  align-self: flex-end;
  margin: 0.55rem 1rem 0;
  border: 1px solid rgba(10, 91, 255, 0.18);
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  background: #eef5ff;
  color: #264d80;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.3;
}

.assist-topic-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  flex: 0 0 auto;
  padding: 0.75rem 1rem 0;
}

.assist-page-shell.is-sidebar-collapsed .assist-topic-cards {
  padding-left: 4.4rem;
}

.assist-topic-card {
  min-width: 0;
  border: 1px solid rgba(13, 36, 64, 0.08);
  border-radius: 0.5rem;
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 0.45rem;
  align-items: center;
  min-height: 3rem;
  padding: 0.5rem 0.65rem;
  background: #ffffff;
}

.assist-topic-card-icon {
  font-size: 0.9rem;
}

.assist-topic-card h3 {
  margin: 0;
  color: #0d2440;
  font-size: 0.86rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.assist-topic-card p {
  display: none;
}

.assist-chatkit-wrap {
  flex: 1 1 auto;
  min-height: 0;
  padding: 0.5rem 1rem 1rem;
}

.assist-chatkit-wrap openai-chatkit {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
}

@media (max-width: 1199.98px) {
  .assist-topic-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .assist-page-shell {
    height: calc(100vh - 60px);
    min-height: 0;
    overflow: hidden;
  }

  .assist-page-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    height: 100%;
  }

  .assist-page-shell.is-sidebar-collapsed .assist-page-grid {
    grid-template-rows: minmax(0, 1fr);
  }

  .assist-sidebar {
    position: static;
    overflow: auto;
    max-height: 35vh;
  }

  .assist-sidebar-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assist-sidebar-action {
    max-width: 18rem;
  }

  .assist-topic-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .assist-chatkit-wrap {
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  .assist-page-shell {
    padding: 0.5rem;
  }

  .assist-page-grid {
    width: 100%;
  }

  .assist-sidebar-toggle {
    top: 0.75rem;
    left: 0.75rem;
  }

  .assist-topic-cards,
  .assist-page-shell.is-sidebar-collapsed .assist-topic-cards {
    padding: 0.65rem 0.75rem 0 3.9rem;
  }

  .assist-page-shell:not(.is-sidebar-collapsed) .assist-topic-cards {
    display: none;
  }

  .assist-chat-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .assist-status {
    white-space: normal;
  }

  .assist-topic-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
  }

  .assist-topic-card {
    grid-template-columns: 1fr;
    min-height: 2.4rem;
    padding: 0.4rem 0.35rem;
  }

  .assist-topic-card-icon {
    display: none;
  }

  .assist-topic-card h3 {
    font-size: 0.68rem;
    text-align: center;
  }

  .assist-chatkit-wrap {
    min-height: 0;
    height: auto;
    padding: 0.5rem 0.75rem 0.75rem;
  }
}

.section-blog-index {
  background:
    radial-gradient(circle at top right, rgba(10, 91, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 55%, #f4f7fb 100%);
}

.blog-index-intro {
  border: 1px solid rgba(13, 36, 64, 0.08);
  border-radius: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 60px rgba(13, 36, 64, 0.08);
}

.blog-index-intro h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(13, 36, 64, 0.08);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 60px rgba(13, 36, 64, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 91, 255, 0.22);
  box-shadow: 0 24px 70px rgba(13, 36, 64, 0.14);
}

.blog-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 91, 255, 0.14), rgba(10, 36, 64, 0.12)),
    #eaf1fb;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(33, 37, 41, 0.72);
}

.blog-chip,
.article-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: rgba(10, 91, 255, 0.1);
  color: #0a3d94;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.blog-card-title {
  color: #0d2440;
}

.blog-card-summary {
  color: rgba(33, 37, 41, 0.78);
}

.blog-card-tags,
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.section-article-page {
  background:
    radial-gradient(circle at top left, rgba(10, 91, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #f4f7fb 0%, #ffffff 42%, #f9fbfd 100%);
}

.article-shell {
  padding-block: 4rem;
}

.article-hero {
  margin-bottom: 2rem;
}

.article-title {
  color: #0d2440;
  line-height: 1.1;
}

.article-summary {
  font-size: 1.15rem;
  color: rgba(13, 36, 64, 0.76);
  max-width: 48rem;
}

.article-byline {
  font-size: 0.95rem;
  color: rgba(33, 37, 41, 0.72);
}

.article-hero-media {
  border-radius: 1.5rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(10, 91, 255, 0.12), rgba(10, 36, 64, 0.12)),
    #ffffff;
  border: 1px solid rgba(13, 36, 64, 0.08);
  box-shadow: 0 20px 70px rgba(13, 36, 64, 0.12);
  padding: 1rem;
}

.article-hero-media img {
  width: 100%;
  height: auto;
}

.article-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #243447;
}

.article-body p {
  margin-bottom: 1.25rem;
}

.article-body h2,
.article-body h3 {
  color: #0d2440;
  margin-top: 2.25rem;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.25rem;
}

.article-body li + li {
  margin-top: 0.5rem;
}

.article-callout,
.article-quote,
.article-sidebar-card {
  border: 1px solid rgba(13, 36, 64, 0.08);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 60px rgba(13, 36, 64, 0.08);
}

.article-callout,
.article-quote {
  padding: 1.5rem;
  margin-block: 1.75rem;
}

.article-callout-title {
  display: block;
  margin-bottom: 0.5rem;
  color: #0d2440;
}

.article-quote p {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.article-quote footer {
  color: rgba(33, 37, 41, 0.72);
  font-size: 0.9rem;
}

.article-sidebar-card {
  padding: 1.5rem;
}

.article-sidebar-card + .article-sidebar-card {
  margin-top: 1rem;
}

.article-sidebar-title {
  font-size: 1rem;
  color: #0d2440;
  margin-bottom: 0.75rem;
}

.article-related-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-related-links li + li {
  margin-top: 0.75rem;
}

.article-related-links a {
  color: #0a5bff;
  text-decoration: none;
}

@media (min-width: 992px) {
  .article-sidebar {
    position: sticky;
    top: 5.5rem;
  }
}

.section-hero.section-hero-cover {
  padding-block: 1.5rem;
}

.section-hero.section-hero-cover .hero-cover-frame {
  min-height: clamp(24rem, 56vw, 38rem);
  box-shadow: 0 24px 70px rgba(13, 36, 64, 0.14);
}

.section-hero.section-hero-cover .section-bg {
  position: absolute;
  inset: 0;
}

.section-hero.section-hero-cover .section-bg.with-cover {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-hero.section-hero-cover .section-hero-content {
  display: flex;
  align-items: center;
  min-height: clamp(24rem, 56vw, 38rem);
  padding: clamp(2rem, 4vw, 4rem);
}

@media (min-width: 992px) {
  .section-hero.section-hero-cover .section-hero-content {
    padding: clamp(3rem, 4vw, 5rem);
  }
}

/* Full-page provisional homepage hero */
.section-hero.section-hero-cover[data-height="full"] {
  padding-block: 0;
  min-height: 100svh;
  background: #07101d;
}

.section-hero.section-hero-cover[data-height="full"] > .container {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.section-hero.section-hero-cover[data-height="full"] .hero-cover-frame {
  min-height: 100svh;
  border-radius: 0 !important;
  box-shadow: none;
}

.section-hero.section-hero-cover[data-height="full"] .section-bg.with-cover {
  background-position: center center;
}

.section-hero.section-hero-cover[data-height="full"] .section-bg.bg-gray-800 {
  background:
    linear-gradient(90deg, rgba(4, 12, 24, 0.90) 0%, rgba(7, 16, 29, 0.72) 42%, rgba(7, 16, 29, 0.24) 100%);
}

.section-hero.section-hero-cover[data-height="full"] .section-hero-content {
  min-height: 100svh;
  padding: 6rem 1.25rem 3rem;
}

.section-hero.section-hero-cover[data-height="full"] .hero-copy {
  max-width: 42rem;
  padding: 1.1rem 1.25rem;
}

.section-hero.section-hero-cover[data-height="full"] .hero-copy .h1 {
  font-size: clamp(2.6rem, 4.1vw, 3.35rem);
  line-height: 1.06;
}

.hero-audience-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  margin-top: 1.15rem;
}

.hero-audience-link {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  line-height: 1.2;
}

.hero-audience-link + .hero-audience-link::before {
  content: "";
  width: 1px;
  height: 1rem;
  margin-right: 0.8rem;
  background: rgba(255,255,255,0.22);
}

.hero-audience-link:hover,
.hero-audience-link:focus {
  background: transparent;
  color: #fff;
}

@media (max-width: 575.98px) {
  .section-hero.section-hero-cover[data-height="full"] .section-hero-content {
    padding: 6.25rem 1rem 2.5rem;
  }

  .section-hero.section-hero-cover[data-height="full"] .hero-copy {
    padding: 1.25rem 1rem;
  }

  .section-hero.section-hero-cover[data-height="full"] .hero-copy .h1 {
    font-size: clamp(2rem, 10vw, 2.45rem);
    line-height: 1.08;
  }

  .hero-audience-links {
    gap: 0.55rem;
  }

  .hero-audience-link {
    min-height: 2.25rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    color: #fff;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-audience-link + .hero-audience-link::before {
    content: none;
  }
}

@media (min-width: 768px) {
  .section-hero.section-hero-cover[data-height="full"] .section-hero-content {
    padding: 6rem 2.5rem 3rem;
  }
}

@media (min-width: 1200px) {
  .section-hero.section-hero-cover[data-height="full"] .section-hero-content {
    padding: 6.25rem 4rem 3.25rem;
  }
}



/* In-page constrained cover hero */
.section.section-hero.section-hero-cover-inline {
  padding-block: 0 !important;
  min-height: auto !important;
  height: auto !important;
}

.section.section-hero.section-hero-cover-inline .container {
  min-height: auto !important;
  height: auto !important;
}

.section-hero.section-hero-cover-inline .hero-inline-frame {
  background: #07101d;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(13, 36, 64, 0.12);
  min-height: auto !important;
  height: auto !important;
}

.section-hero.section-hero-cover-inline .hero-inline-image {
  display: block;
  width: 100%;
  height: auto;
}

.section-hero.section-hero-cover-inline .hero-inline-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,16,29,0.72) 0%, rgba(7,16,29,0.48) 38%, rgba(7,16,29,0.18) 100%);
  pointer-events: none;
}

.section.section-hero.section-hero-cover-inline .section-hero-content {
  min-height: auto !important;
  height: auto !important;
  padding: 1.25rem 1.5rem !important;
}

.section-hero.section-hero-cover-inline .hero-copy {
  max-width: 36rem;
  padding: 1rem 1.15rem;
}

@media (min-width: 992px) {
  .section.section-hero.section-hero-cover-inline .section-hero-content {
    padding: 1.75rem 2rem !important;
  }

  .section-hero.section-hero-cover-inline .hero-copy {
    padding: 1.1rem 1.35rem;
  }
}

