/*
 * amoell Relaunch 2026
 * Custom CSS for Joomla / Template Creator CK / Page Builder CK
 * First design layer based on the known color system.
 */

:root {
  --amoell-bg: #0e1012;
  --amoell-surface: #141619;
  --amoell-surface-elevated: #191c20;
  --amoell-page-gradient-size: 96rem;
  --amoell-text: #ece7de;
  --amoell-text-muted: #b8b1a8;
  --amoell-text-soft: #8d867d;
  --amoell-border: rgba(236, 231, 222, 0.18);
  --amoell-border-strong: rgba(236, 231, 222, 0.42);
  --amoell-button-bg: rgba(236, 231, 222, 0.03);
  --amoell-button-hover: rgba(236, 231, 222, 0.03);
  --amoell-focus: rgba(236, 231, 222, 0.58);
  --amoell-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  --amoell-radius: 0;
  --amoell-radius-sm: 0;
  --amoell-button-radius: 0;
  --amoell-max-width: 1180px;
  --amoell-section-y: clamp(3rem, 7vw, 7rem);
  --amoell-gap: clamp(1rem, 2.2vw, 1.75rem);
  --amoell-header-height: clamp(4.25rem, 6vw, 5.75rem);
  --amoell-font-ui: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --amoell-font-weight-regular: 400;
  --amoell-font-weight-medium: 500;
  --amoell-font-weight-semibold: 600;
  --amoell-font-weight-bold: 700;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  color-scheme: dark;
  font-size: 16px;
  background:
    linear-gradient(
      180deg,
      var(--amoell-bg) 0,
      var(--amoell-surface-elevated) 50%,
      var(--amoell-bg) 100%
    );
  background-repeat: repeat-y;
  background-size: 100% var(--amoell-page-gradient-size);
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background:
    linear-gradient(
      180deg,
      var(--amoell-bg) 0,
      var(--amoell-surface-elevated) 50%,
      var(--amoell-bg) 100%
    );
  background-repeat: repeat-y;
  background-size: 100% var(--amoell-page-gradient-size);
  color: var(--amoell-text);
  font-family: var(--amoell-font-ui);
  font-size: 1rem;
  font-weight: var(--amoell-font-weight-regular);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

::selection {
  background: rgba(236, 231, 222, 0.22);
  color: var(--amoell-text);
}

a {
  color: var(--amoell-text);
  text-decoration: none;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

a:hover,
a:focus-visible {
  color: var(--amoell-text);
  text-decoration: none;
}

:where(a, a:hover, a:focus-visible) {
  text-decoration-line: none;
}

:focus-visible {
  outline: 2px solid var(--amoell-focus);
  outline-offset: 3px;
}

p,
ul,
ol,
dl,
blockquote,
figure {
  margin-block-start: 0;
  margin-block-end: 1.1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block-start: 0;
  margin-block-end: 0.75rem;
  color: var(--amoell-text);
  font-weight: var(--amoell-font-weight-semibold);
  line-height: 1.1;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  letter-spacing: 0;
}

h2 {
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 3.75rem);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p,
li {
  color: var(--amoell-text-muted);
  font-size: 1rem;
  font-weight: var(--amoell-font-weight-regular);
}

small,
.small,
.text-muted,
.muted,
.caption,
figcaption {
  color: var(--amoell-text-soft);
  font-weight: var(--amoell-font-weight-medium);
}

strong,
b {
  color: var(--amoell-text);
  font-weight: var(--amoell-font-weight-semibold);
}

.amoell-weight-regular {
  font-weight: var(--amoell-font-weight-regular);
}

.amoell-weight-medium {
  font-weight: var(--amoell-font-weight-medium);
}

.amoell-weight-semibold {
  font-weight: var(--amoell-font-weight-semibold);
}

.amoell-weight-bold {
  font-weight: var(--amoell-font-weight-bold);
}

hr {
  border: 0;
  border-top: 1px solid var(--amoell-border);
  margin: clamp(2rem, 4vw, 4rem) 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: var(--amoell-text-muted);
}

th,
td {
  border-bottom: 1px solid var(--amoell-border);
  padding: 0.85rem 1rem;
  text-align: left;
}

th {
  color: var(--amoell-text);
  font-weight: var(--amoell-font-weight-semibold);
}

/* Joomla and Template Creator CK base surfaces */
.site,
.site-grid,
.body,
.wrapper,
#wrapper,
#main,
#content,
main,
.com-content-article {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  background: transparent;
  color: var(--amoell-text);
}

.container,
.container-fluid,
.tck-wrapper,
.tck-container,
.tck-container-fluid,
.inner,
#wrapper > .inner,
#maincontent,
#maincontent > .inner,
.amoell-container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}

.pagebuilderck,
.pagebuilderck-section,
.pbck-section,
.ck-section,
.rowck,
.ckrow {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.blog,
.item-page,
.category-list,
.contact,
.finder,
.newsfeed,
.tag-category {
  color: var(--amoell-text-muted);
}

.page-header,
.componentheading,
.contentheading {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--amoell-border);
  padding-bottom: 1rem;
}

.page-header h1,
.page-header h2 {
  margin-bottom: 0;
}

.item-image,
.article-info,
.icons,
.pager,
.pagination,
.com-content-category-blog__navigation {
  color: var(--amoell-text-soft);
}

.article-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.88rem;
}

/* Header and navigation */
.amoell-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--amoell-text);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease,
    -webkit-backdrop-filter 180ms ease;
}

.amoell-header.is-scrolled,
.amoell-header.is-menu-open {
  border-bottom-color: var(--amoell-border);
  background: rgba(14, 16, 18, 0.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.amoell-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--amoell-header-height);
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: 0 clamp(1.25rem, 4vw, 5rem);
  gap: clamp(1rem, 3vw, 2.25rem);
}

.amoell-header__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  color: var(--amoell-text);
  text-decoration: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

body.homepage .amoell-header:not(.is-logo-visible) .amoell-header__brand {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.35rem);
}

.amoell-header__logo {
  width: auto;
  height: clamp(1.7rem, 3vw, 2.6rem);
  max-width: min(42vw, 20rem);
  object-fit: contain;
}

.amoell-header__menu {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.amoell-header__menu :where(.tck-module, .tck-module-text) {
  display: flex;
  align-items: center;
  min-width: 0;
}

.amoell-header__menu :where(.navbar, .nav, .mod-menu, .menu, ul) {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amoell-header__menu ul.mod-menu,
.amoell-header__menu ul.nav,
.amoell-header__menu ul.menu {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.2rem;
  width: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amoell-header__menu ul.mod-menu > li,
.amoell-header__menu ul.nav > li,
.amoell-header__menu ul.menu > li {
  display: flex;
  flex: 0 0 auto;
  width: auto;
  margin: 0;
  padding: 0;
}

.amoell-header__menu :where(li) {
  color: inherit;
}

.amoell-header__menu :where(a, .nav-link, .separator, span) {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  border: 1px solid transparent;
  border-radius: var(--amoell-button-radius);
  color: var(--amoell-text-muted);
  font-size: 0.95rem;
  font-weight: var(--amoell-font-weight-medium);
  line-height: 1.1;
  padding: 0.56rem 0.75rem;
  text-decoration: none;
  white-space: nowrap;
}

.amoell-header__menu :where(a:hover, a:focus-visible, .nav-link:hover, .nav-link:focus-visible),
.amoell-header__menu :where(.current > a, .active > a, .active > .nav-link, .nav-link.active) {
  border-color: transparent;
  color: var(--amoell-text);
  background: transparent;
}

.amoell-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.75rem;
  min-height: 2.75rem;
  border: 1px solid transparent;
  border-radius: var(--amoell-button-radius);
  background: rgba(236, 231, 222, 0.035);
  color: var(--amoell-text);
  padding: 0;
}

.amoell-menu-toggle:hover,
.amoell-menu-toggle:focus-visible {
  border-color: var(--amoell-border-strong);
  background: rgba(236, 231, 222, 0.055);
  transform: none;
}

.amoell-menu-toggle__line,
.amoell-menu-toggle__line::before,
.amoell-menu-toggle__line::after {
  display: block;
  width: 1.15rem;
  height: 1px;
  background: currentColor;
  content: "";
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.amoell-menu-toggle__line {
  position: relative;
}

.amoell-menu-toggle__line::before,
.amoell-menu-toggle__line::after {
  position: absolute;
  left: 0;
}

.amoell-menu-toggle__line::before {
  transform: translateY(-0.42rem);
}

.amoell-menu-toggle__line::after {
  transform: translateY(0.42rem);
}

.amoell-header.is-menu-open .amoell-menu-toggle__line {
  background: transparent;
}

.amoell-header.is-menu-open .amoell-menu-toggle__line::before {
  background: var(--amoell-text);
  transform: rotate(45deg);
}

.amoell-header.is-menu-open .amoell-menu-toggle__line::after {
  background: var(--amoell-text);
  transform: rotate(-45deg);
}

body.amoell-menu-lock {
  overflow: hidden;
}

/* Buttons and common CTA links */
.btn,
.button,
button,
input[type="submit"],
input[type="button"],
.readmore a,
.pagenav a,
.amoell-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border: 1px solid var(--amoell-border);
  border-radius: var(--amoell-button-radius);
  background: var(--amoell-button-bg);
  color: var(--amoell-text);
  cursor: pointer;
  font: inherit;
  font-weight: var(--amoell-font-weight-semibold);
  line-height: 1.2;
  padding: 0.78rem 1rem;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.btn:hover,
.btn:focus-visible,
.button:hover,
.button:focus-visible,
button:hover,
button:focus-visible,
input[type="submit"]:hover,
input[type="submit"]:focus-visible,
input[type="button"]:hover,
input[type="button"]:focus-visible,
.readmore a:hover,
.readmore a:focus-visible,
.pagenav a:hover,
.pagenav a:focus-visible,
.amoell-button:hover,
.amoell-button:focus-visible {
  border-color: var(--amoell-border-strong);
  background: var(--amoell-button-hover);
  color: var(--amoell-text);
  transform: translateY(-1px);
}

.btn-primary,
.amoell-button-primary {
  background: var(--amoell-text);
  border-color: var(--amoell-text);
  color: var(--amoell-bg);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.amoell-button-primary:hover,
.amoell-button-primary:focus-visible {
  background: var(--amoell-text);
  border-color: var(--amoell-text);
  color: var(--amoell-bg);
}

.amoell-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Forms */
input,
select,
textarea,
.form-control,
.inputbox {
  width: 100%;
  border: 1px solid var(--amoell-border);
  border-radius: var(--amoell-radius-sm);
  background: rgba(236, 231, 222, 0.035);
  color: var(--amoell-text);
  font: inherit;
  padding: 0.78rem 0.9rem;
}

input::placeholder,
textarea::placeholder {
  color: var(--amoell-text-soft);
  opacity: 1;
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus,
.inputbox:focus {
  border-color: var(--amoell-border-strong);
  box-shadow: 0 0 0 3px rgba(236, 231, 222, 0.09);
  outline: 0;
}

label,
legend,
.control-label {
  color: var(--amoell-text-muted);
  font-size: 0.94rem;
  font-weight: var(--amoell-font-weight-medium);
}

fieldset {
  border: 1px solid var(--amoell-border);
  border-radius: var(--amoell-radius);
  padding: 1rem;
}

/* Cards, modules and elevated content */
.card,
.well,
.module,
.moduletable,
.newsflash,
.latestnews,
.amoell-card,
.amoell-tile {
  border: 1px solid var(--amoell-border);
  border-radius: var(--amoell-radius);
  background: var(--amoell-surface-elevated);
  color: var(--amoell-text-muted);
}

.card,
.well,
.module,
.moduletable,
.amoell-card,
.amoell-tile {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.card:hover,
.amoell-card:hover,
.amoell-tile:hover {
  border-color: var(--amoell-border-strong);
}

.card-title,
.module-title,
.moduletable > h3,
.amoell-card-title {
  color: var(--amoell-text);
  margin-bottom: 0.55rem;
}

.amoell-card p:last-child,
.amoell-tile p:last-child,
.module p:last-child,
.moduletable p:last-child {
  margin-bottom: 0;
}

/* Page Builder CK reusable sections */
.amoell-section,
.pagebuilderck .amoell-section {
  padding-block: var(--amoell-section-y);
}

.amoell-section-surface,
.pagebuilderck .amoell-section-surface {
  background: var(--amoell-surface);
  border-block: 1px solid var(--amoell-border);
}

.amoell-section-compact,
.pagebuilderck .amoell-section-compact {
  padding-block: clamp(2rem, 4vw, 4rem);
}

.amoell-hero,
.pagebuilderck .amoell-hero {
  display: grid;
  align-items: end;
  min-height: min(760px, calc(100svh - 5rem));
  padding-block: clamp(5rem, 12vw, 10rem) clamp(3rem, 7vw, 6rem);
}

.amoell-hero-content {
  max-width: 62rem;
}

.amoell-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--amoell-text-soft);
  font-size: 0.78rem;
  font-weight: var(--amoell-font-weight-medium);
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.amoell-lead {
  max-width: 48rem;
  color: var(--amoell-text-muted);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

.amoell-kicker {
  color: var(--amoell-text-soft);
  font-size: 0.9rem;
}

.amoell-grid,
.pagebuilderck .amoell-grid {
  display: grid;
  gap: var(--amoell-gap);
}

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

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

.amoell-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.amoell-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.amoell-stack {
  display: grid;
  gap: 1rem;
}

.amoell-stack-lg {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.amoell-media {
  overflow: hidden;
  border: 1px solid var(--amoell-border);
  border-radius: var(--amoell-radius);
  background: var(--amoell-surface-elevated);
}

.amoell-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amoell-divider {
  width: 100%;
  height: 1px;
  background: var(--amoell-border);
}

.amoell-meta {
  color: var(--amoell-text-soft);
  font-size: 0.86rem;
  font-weight: var(--amoell-font-weight-medium);
  letter-spacing: 0.02em;
}

.amoell-invert {
  background: var(--amoell-text);
  color: var(--amoell-bg);
}

.amoell-invert h1,
.amoell-invert h2,
.amoell-invert h3,
.amoell-invert h4,
.amoell-invert h5,
.amoell-invert h6,
.amoell-invert p,
.amoell-invert li,
.amoell-invert a {
  color: var(--amoell-bg);
}

/* Page Builder CK common generated wrappers */
.pagebuilderck,
[class*="pagebuilderck"],
[class*="pbck"] {
  color: var(--amoell-text-muted);
}

.pagebuilderck h1,
.pagebuilderck h2,
.pagebuilderck h3,
.pagebuilderck h4,
.pagebuilderck h5,
.pagebuilderck h6,
[class*="pagebuilderck"] h1,
[class*="pagebuilderck"] h2,
[class*="pagebuilderck"] h3,
[class*="pagebuilderck"] h4,
[class*="pagebuilderck"] h5,
[class*="pagebuilderck"] h6,
[class*="pbck"] h1,
[class*="pbck"] h2,
[class*="pbck"] h3,
[class*="pbck"] h4,
[class*="pbck"] h5,
[class*="pbck"] h6 {
  color: var(--amoell-text);
}

.pagebuilderck p,
.pagebuilderck li,
[class*="pagebuilderck"] p,
[class*="pagebuilderck"] li,
[class*="pbck"] p,
[class*="pbck"] li {
  color: var(--amoell-text-muted);
}

/* Messages, alerts and Joomla system UI */
.alert,
#system-message-container .alert,
.message,
.notice {
  border: 1px solid var(--amoell-border);
  border-radius: var(--amoell-radius);
  background: var(--amoell-surface-elevated);
  color: var(--amoell-text-muted);
  padding: 1rem;
}

.alert-heading,
.alert h4 {
  color: var(--amoell-text);
}

.breadcrumb,
.breadcrumbs {
  color: var(--amoell-text-soft);
  font-size: 0.88rem;
}

.breadcrumb a,
.breadcrumbs a {
  color: var(--amoell-text-muted);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.pagination a,
.pagination span,
.page-link {
  border: 1px solid var(--amoell-border);
  border-radius: var(--amoell-button-radius);
  background: var(--amoell-button-bg);
  color: var(--amoell-text-muted);
  padding: 0.55rem 0.75rem;
  text-decoration: none;
}

.pagination a:hover,
.pagination a:focus-visible,
.page-link:hover,
.page-link:focus-visible,
.page-item.active .page-link {
  border-color: var(--amoell-border-strong);
  color: var(--amoell-text);
}

/* Footer */
.footer,
.site-footer,
#footer {
  border-top: 1px solid var(--amoell-border);
  border-bottom: 0;
  background: var(--amoell-surface);
  color: var(--amoell-text-muted);
  padding-block: clamp(1rem, 2vw, 1.6rem);
}

#footer .inner,
#footer .footer,
#footer .tck-container,
#footer .tck-module,
#footer .tck-module-text,
#footer .pagebuilderck,
#footer .pagebuilderck-section,
#footer .pbck-section,
#footer .ck-section,
#footer .rowck,
#footer .ckrow {
  border-top: 0;
  border-bottom: 0;
  margin-block: 0;
}

#footer :where([class*="border"], [class*="divider"], hr) {
  border-top: 0;
  border-bottom: 0;
}

#footer .tck-module,
#footer .tck-module-text {
  padding-block: 0;
}

#footer .pagebuilderck-section,
#footer .pbck-section,
#footer .ck-section {
  padding-block: 0;
}

#footer p,
#footer ul,
#footer ol {
  margin-block-end: 0;
}

.footer a,
.site-footer a,
#footer a {
  color: var(--amoell-text-muted);
}

.footer a:hover,
.site-footer a:hover,
#footer a:hover {
  color: var(--amoell-text);
}

/* Responsive refinements */
@media (max-width: 880px) {
  .amoell-header__inner {
    width: 100%;
    padding-inline: clamp(1.25rem, 4vw, 5rem);
  }

  .amoell-header__logo {
    height: clamp(1.45rem, 5vw, 2rem);
    max-width: min(58vw, 18rem);
  }

  .amoell-menu-toggle {
    display: inline-flex;
  }

  .amoell-header__menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: 0;
    display: block;
    max-height: calc(100svh - var(--amoell-header-height) - 1rem);
    overflow: auto;
    border: 1px solid var(--amoell-border);
    border-radius: var(--amoell-radius);
    background: rgba(20, 22, 25, 0.96);
    box-shadow: var(--amoell-shadow);
    opacity: 0;
    padding: 0.45rem;
    pointer-events: none;
    transform: translateY(-0.35rem);
    visibility: hidden;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .amoell-header.is-menu-open .amoell-header__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .amoell-header__menu :where(.tck-module, .tck-module-text),
  .amoell-header__menu :where(.navbar, .nav, .mod-menu, .menu, ul) {
    display: grid;
    width: 100%;
    gap: 0.15rem;
  }

  .amoell-header__menu ul.mod-menu,
  .amoell-header__menu ul.nav,
  .amoell-header__menu ul.menu {
    display: grid !important;
    flex-direction: column !important;
    justify-content: stretch;
    width: 100%;
    gap: 0.15rem;
  }

  .amoell-header__menu :where(li) {
    width: 100%;
  }

  .amoell-header__menu ul.mod-menu > li,
  .amoell-header__menu ul.nav > li,
  .amoell-header__menu ul.menu > li {
    width: 100%;
  }

  .amoell-header__menu :where(a, .nav-link, .separator, span) {
    justify-content: space-between;
    width: 100%;
    min-height: 3rem;
    padding: 0.85rem 0.95rem;
    white-space: normal;
  }
}

@media (max-width: 960px) {
  .amoell-grid-3,
  .amoell-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amoell-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container,
  .container-fluid,
  .tck-wrapper,
  .tck-container,
  .tck-container-fluid,
  .inner,
  #wrapper > .inner,
  #maincontent,
  #maincontent > .inner,
  .amoell-container {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: 0;
  }

  .pagebuilderck,
  .pagebuilderck-section,
  .pbck-section,
  .ck-section,
  .rowck,
  .ckrow {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  h1 {
    max-width: 100%;
  }

  .amoell-grid-2,
  .amoell-grid-3,
  .amoell-grid-4 {
    grid-template-columns: 1fr;
  }

  .amoell-hero {
    min-height: auto;
    padding-block: 4.5rem 3rem;
  }

  .amoell-button-row,
  .btn,
  .button,
  .amoell-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
