:root {
  --page-max-width: 1200px;
  --page-gutter: clamp(20px, 4vw, 48px);
  --section-space: clamp(56px, 8vw, 112px);
  --surface: #ffffff;
  --surface-alt: #f5f7fb;
  --surface-strong: #0f172a;
  --surface-strong-2: #162133;
  --text: #111827;
  --text-muted: #52607a;
  --text-soft: rgba(248, 250, 252, 0.8);
  --line: #d7e0ea;
  --accent: #1664d3;
  --accent-2: #0f2f64;
  --shadow-lg: 0 22px 60px rgba(15, 23, 42, 0.12);
  --shadow-md: 0 16px 36px rgba(15, 23, 42, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --sqs-site-max-width: var(--page-max-width);
  --sqs-site-gutter: var(--page-gutter);
  --sqs-mobile-site-gutter: var(--page-gutter);
  --white-hsl: 0, 0%, 100%;
  --black-hsl: 221, 39%, 11%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface-alt);
  overflow-x: hidden;
}

body.collection-type-blog-side-by-side {
  font-family: "Noto Sans TC", "PingFang HK", "PingFang TC", "Microsoft JhengHei", "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
}

body.collection-type-blog-side-by-side .blog-title,
body.collection-type-blog-side-by-side .blog-title a,
body.collection-type-blog-side-by-side .blog-excerpt,
body.collection-type-blog-side-by-side .blog-excerpt p,
body.collection-type-blog-side-by-side .blog-meta-section,
body.collection-type-blog-side-by-side .blog-author,
body.collection-type-blog-side-by-side .blog-date,
body.collection-type-blog-side-by-side .header-nav-item a,
body.collection-type-blog-side-by-side .header-title-text,
body.collection-type-blog-side-by-side .sqs-html-content {
  font-family: "Noto Sans TC", "PingFang HK", "PingFang TC", "Microsoft JhengHei", "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
  letter-spacing: normal;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding-left: 1.25rem;
}

.hidden {
  display: none !important;
}

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

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

#floatingCart,
.sqs-announcement-bar-dropzone,
.header-border,
.header-dropshadow,
.header-menu,
.header-burger,
.background-pause-button {
  display: none !important;
}

/* Mobile hamburger toggle */
.mobile-toggle-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-toggle-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.mobile-toggle-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-drawer {
  display: none;
  padding: 8px 0 16px;
  border-top: 1px solid var(--line);
}

.mobile-nav-drawer.open {
  display: block;
}

.mobile-nav-drawer .header-nav,
.mobile-nav-drawer .header-nav-wrapper,
.mobile-nav-drawer .header-nav-list {
  width: 100%;
}

.mobile-nav-drawer .header-nav-item a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}

.header-actions-action--social a[href=""] {
  display: none !important;
}

.theme-col--primary,
.theme-bg--primary {
  color: inherit;
  background: transparent;
}

.showOnMobile {
  display: none !important;
}

.showOnDesktop {
  display: block !important;
}

#siteWrapper,
#page,
.site-wrapper,
.sections {
  position: relative;
}

.container,
.container--fluid,
.content {
  width: min(var(--page-max-width), calc(100vw - var(--page-gutter) * 2));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.header-background {
  display: none !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 0;
}

.header-display-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

.header-display-mobile {
  display: none;
  width: 100%;
}

.header-title-nav-wrapper {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  min-width: 0;
}

.header-title,
.header-title a,
.header-title-logo,
.header-mobile-logo {
  display: flex;
  align-items: center;
}

.header-title-logo img,
.header-mobile-logo img {
  width: auto;
  height: auto !important;
  max-height: 64px;
  object-fit: contain;
}

.header-nav,
.header-nav-wrapper,
.header-nav-list {
  min-width: 0;
}

.header-nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px clamp(12px, 1.6vw, 26px);
}

.header-nav-item a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.header-nav-item--active a,
.header-nav-item a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions-action--social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--surface-strong);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.header-icon:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 100, 211, 0.35);
}

.header-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
}

.header-skip-link {
  position: absolute;
  left: -9999px;
  top: 16px;
  z-index: 100;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
}

.header-skip-link:focus {
  left: 16px;
}

.page-section {
  position: relative;
  padding-block: var(--section-space);
  background: var(--surface);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.page-section.has-background,
.page-section.black,
.page-section.dark {
  color: #f8fafc;
  background: linear-gradient(135deg, var(--surface-strong), var(--surface-strong-2));
}

.page-section .section-border {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-section .section-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-section .section-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-background-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.2));
}

.page-section .content-wrapper {
  position: relative;
  z-index: 1;
}

.page-section.has-background .content-wrapper {
  padding-block: clamp(84px, 15vw, 180px);
}

[data-fluid-engine="true"] {
  position: relative;
}

.fluid-engine {
  width: 100%;
}

.fe-block {
  min-width: 0;
  min-height: 0;
}

.fe-block > .sqs-block,
.sqs-block,
.sqs-block-content {
  width: 100%;
  height: 100%;
}

.sqs-block-content {
  position: relative;
}

.sqs-html-content {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.sqs-html-content h1,
.sqs-html-content h2,
.sqs-html-content h3 {
  font-family: "Poppins", "Manrope", "Segoe UI", sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}

.sqs-html-content h1 {
  font-size: clamp(2.7rem, 7vw, 5.3rem);
}

.sqs-html-content h2 {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
}

.sqs-html-content h3 {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.sqs-html-content p,
.sqs-html-content li {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
}

.page-section.has-background .sqs-html-content p,
.page-section.black .sqs-html-content p,
.page-section.dark .sqs-html-content p,
.page-section.has-background .sqs-html-content li,
.page-section.black .sqs-html-content li,
.page-section.dark .sqs-html-content li {
  color: var(--text-soft);
}

.sqs-html-content strong {
  color: inherit;
}

.sqs-block-button-container {
  display: flex;
}

.sqs-block-button-container--center,
.form-button-wrapper--align-center {
  justify-content: center;
}

.sqs-block-button-element,
.button,
.sqs-system-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 36px rgba(22, 100, 211, 0.24);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sqs-block-button-element:hover,
.button:hover,
.sqs-system-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(22, 100, 211, 0.3);
}

.page-section.has-background .sqs-block-button-element,
.page-section.black .sqs-block-button-element,
.page-section.dark .sqs-block-button-element {
  background: #ffffff;
  color: var(--surface-strong);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.image-block-outer-wrapper,
.fluid-image-animation-wrapper,
.sqs-image,
.sqs-block-alignment-wrapper,
.layout-caption-below,
.design-layout-fluid {
  height: 100%;
}

.fluid-image-container {
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  border-radius: var(--radius-md) !important;
  background: #eef3f8;
  box-shadow: var(--shadow-md);
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.page-section.black .fluid-image-container,
.page-section.dark .fluid-image-container,
.page-section.has-background .fluid-image-container {
  background: rgba(255, 255, 255, 0.08);
}

.content-fit,
.content-fill,
.sqs-block-image-link.content-fit,
.sqs-block-image-link.content-fill {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  padding: clamp(10px, 1.6vw, 18px);
}

.content-fit > img,
.sqs-block-image-link.content-fit > img,
.stable-image-frame img[data-small-source="true"] {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}

.content-fill > img,
.sqs-block-image-link.content-fill > img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

.fluidImageOverlay {
  display: none !important;
}

.form-wrapper,
.summary-block-wrapper {
  width: 100%;
}

.form-wrapper {
  padding: clamp(20px, 3vw, 34px);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.page-section.dark .form-wrapper,
.page-section.black .form-wrapper,
.page-section.has-background .form-wrapper {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.form-inner-wrapper {
  display: block;
}

.field-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.form-item.field,
fieldset.form-item.field {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.form-item.textarea,
fieldset.checkbox {
  grid-column: 1 / -1;
}

.form-item .title,
fieldset .title {
  display: block;
  margin-bottom: 10px;
  color: var(--surface-strong);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.page-section.dark .form-item .title,
.page-section.dark fieldset .title,
.page-section.black .form-item .title,
.page-section.black fieldset .title,
.page-section.has-background .form-item .title,
.page-section.has-background fieldset .title {
  color: #ffffff;
}

.field-element,
.field-element[type="text"],
.field-element[type="email"],
.field-element[type="tel"],
.field-element[type="number"],
textarea.field-element {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fafc;
  color: var(--text);
  outline: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

textarea.field-element {
  min-height: 140px;
  resize: vertical;
}

.field-element:focus,
textarea.field-element:focus {
  border-color: rgba(22, 100, 211, 0.45);
  background: #ffffff;
}

.page-section.dark .field-element,
.page-section.dark textarea.field-element,
.page-section.black .field-element,
.page-section.black textarea.field-element,
.page-section.has-background .field-element,
.page-section.has-background textarea.field-element {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.page-section.dark .field-element::placeholder,
.page-section.dark textarea.field-element::placeholder,
.page-section.black .field-element::placeholder,
.page-section.black textarea.field-element::placeholder,
.page-section.has-background .field-element::placeholder,
.page-section.has-background textarea.field-element::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

fieldset.checkbox {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

fieldset.checkbox .title,
fieldset.checkbox legend {
  grid-column: 1 / -1;
}

.option {
  display: flex;
  min-width: 0;
}

.option label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text-muted);
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
}

.option input {
  margin-top: 0.25rem;
}

.page-section.dark .option label,
.page-section.black .option label,
.page-section.has-background .option label {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
}

.form-button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.summary-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.summary-header-text {
  font-family: "Poppins", "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.summary-carousel-pager,
.sqs-gallery-controls {
  display: none !important;
}

.summary-item-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.summary-item {
  min-width: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  width: 100% !important;
}

.page-section.dark .summary-item,
.page-section.black .summary-item,
.page-section.has-background .summary-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.summary-thumbnail-container {
  display: block;
}

.summary-thumbnail {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #e8eef9;
}

.summary-thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.summary-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 22px 24px;
}

.summary-metadata-container--above-title,
.summary-metadata-container--below-title {
  display: none;
}

.summary-metadata-item--date {
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.page-section.dark .summary-metadata-item--date,
.page-section.black .summary-metadata-item--date,
.page-section.has-background .summary-metadata-item--date {
  color: #93c5fd;
}

.summary-title-link {
  display: inline-block;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
}

.page-section.dark .summary-title-link,
.page-section.black .summary-title-link,
.page-section.has-background .summary-title-link {
  color: #ffffff;
}

.summary-excerpt p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.page-section.dark .summary-excerpt p,
.page-section.black .summary-excerpt p,
.page-section.has-background .summary-excerpt p {
  color: rgba(255, 255, 255, 0.78);
}

.sadl-home-meta-focus {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.sadl-home-meta-focus__heading {
  margin-bottom: clamp(24px, 4vw, 40px);
  text-align: center;
}

.sadl-home-meta-focus__heading h2 {
  margin: 0;
  color: #4b5563;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.sadl-home-meta-focus__card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff, #f7f8fb);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.sadl-home-meta-focus__media {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #eef2f7;
  aspect-ratio: 5 / 4;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.sadl-home-meta-focus__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% 49%;
}

.sadl-home-meta-focus__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sadl-home-meta-focus__content h3 {
  margin: 0;
  color: var(--surface-strong);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.sadl-home-meta-focus__content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.sadl-home-meta-focus__content strong {
  color: var(--accent-2);
}

.sadl-home-meta-focus__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.sadl-home-meta-focus__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 170px);
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.sadl-home-meta-focus__badge img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.sadl-home-meta-focus__cta {
  min-width: 180px;
  justify-content: center;
}

.sadl-home-meta-focus + [data-fluid-engine="true"] {
  display: none !important;
}

.collection-type-blog-side-by-side .blog-side-by-side.collection-content-wrapper {
  width: min(var(--page-max-width), calc(100vw - var(--page-gutter) * 2));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px) 0 clamp(56px, 7vw, 80px);
}

.blog-side-by-side-wrapper {
  display: grid;
  gap: clamp(26px, 3.4vw, 36px);
}

.blog-side-by-side a[href=""] {
  pointer-events: none;
  cursor: default;
}

.blog-item {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: clamp(22px, 3vw, 36px);
  padding: clamp(20px, 2.6vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.blog-image-wrapper {
  display: flex;
  min-width: 0;
}

.blog-image-wrapper .image-wrapper {
  position: relative !important;
  display: block;
  width: 100%;
  min-height: clamp(260px, 34vw, 380px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #dbe8fb 0%, #eef4ff 100%);
}

.blog-image-wrapper .image {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: translateZ(0);
}

.blog-item-summary {
  display: flex;
  align-items: center;
  min-width: 0;
}

.blog-item-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.blog-meta-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-meta-primary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.blog-meta-delimiter,
.blog-meta-secondary {
  display: none;
}

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

.blog-date {
  color: var(--accent);
  font-weight: 800;
}

.blog-title {
  font-family: "Poppins", "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 2.7vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.blog-title a {
  display: inline-block;
  color: var(--surface-strong);
  word-break: break-word;
}

.blog-excerpt,
.blog-excerpt-wrapper {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.blog-excerpt p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.blog-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-list-pagination {
  display: flex;
  justify-content: flex-end;
  margin-top: 36px;
}

.blog-list-pagination .newer:empty,
.blog-list-pagination .older:empty {
  display: none;
}

.blog-list-pagination .older a,
.blog-list-pagination .newer a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: #ffffff;
  color: var(--surface-strong);
  box-shadow: var(--shadow-md);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-list-pagination-icon {
  width: 18px;
  height: 18px;
}

.blog-list-pagination-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.item-pagination.item-pagination--prev-next {
  display: none;
}

.move-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
}

.move-to-top span {
  border-radius: 999px !important;
  background: rgba(17, 24, 39, 0.85) !important;
  backdrop-filter: blur(8px);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 89;
}

.whatsapp-btn {
  width: 88px !important;
  height: auto !important;
}

.page-section.dark .sqs-html-content a,
.page-section.black .sqs-html-content a,
.page-section.has-background .sqs-html-content a {
  color: #ffffff;
}

#footer-sections.sadl-site-footer {
  padding: clamp(48px, 7vw, 80px) var(--page-gutter);
  background: #171e31;
}

#footer-sections.sadl-site-footer > section {
  display: none !important;
}

.sadl-footer-rebuild {
  width: min(1080px, calc(100vw - var(--page-gutter) * 2));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 48px);
  color: #e5e7eb;
}

.sadl-footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(180px, 240px);
  justify-content: space-between;
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
}

.sadl-footer-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100%;
}

.sadl-footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 196px;
  padding: 28px 30px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.sadl-footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.sadl-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
  color: rgba(229, 231, 235, 0.92);
  font-size: 0.98rem;
  line-height: 1.8;
}

.sadl-footer-address,
.sadl-footer-contact-line,
.sadl-footer-copyright {
  margin: 0;
}

.sadl-footer-contact-line a {
  color: #ffffff;
  font-weight: 700;
}

.sadl-footer-partners {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 100%;
  justify-self: end;
}

.sadl-partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sadl-partner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.18);
}

.sadl-partner-card--google {
  width: min(100%, 220px);
}

.sadl-partner-card--meta {
  width: min(100%, 180px);
}

.sadl-partner-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.sadl-footer-copyright {
  color: rgba(229, 231, 235, 0.76);
  font-size: 0.92rem;
}

.header-title-logo{
  display: none;
}

@media (max-width: 991px) {
  .header-display-desktop {
    display: none;
  }

  .header-display-mobile {
    display: block;
  }

  .header-display-mobile .header-title-nav-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }

  .header-display-mobile .header-actions {
    display: none;
  }

  .header-display-mobile .header-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .showOnMobile {
    display: block !important;
  }

  .showOnDesktop {
    display: none !important;
  }

  .sadl-footer-main {
    grid-template-columns: 1fr;
  }

  .sadl-footer-brand {
    justify-content: center;
  }

  .sadl-footer-partners {
    align-items: center;
  }

  .blog-item {
    grid-template-columns: 1fr;
  }

  .blog-image-wrapper .image-wrapper {
    min-height: 320px;
    aspect-ratio: 16 / 10;
  }

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

  .sadl-home-meta-focus__card {
    grid-template-columns: 1fr;
  }

  .sadl-home-meta-focus__heading,
  .sadl-home-meta-focus__content {
    text-align: center;
  }

  .sadl-home-meta-focus__actions {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .container,
  .container--fluid,
  .content {
    width: min(var(--page-max-width), calc(100vw - var(--page-gutter) * 2));
  }

  .header-inner {
    padding: 14px 0;
  }

  .header-title-logo img,
  .header-mobile-logo img {
    max-height: 52px;
  }

  .header-display-mobile .header-nav-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 14px;
    width: 100%;
    text-align: center;
  }

  .header-display-mobile .header-nav-item a {
    justify-content: center;
  }

  .page-section {
    padding-block: 52px;
  }

  .page-section.has-background .content-wrapper {
    padding-block: 72px;
  }

  .collection-type-blog-side-by-side .blog-side-by-side.collection-content-wrapper {
    padding-top: 18px;
  }

  .sadl-footer-logo {
    width: min(100%, 240px);
    min-height: 160px;
    padding: 20px 22px;
    border-radius: 22px;
  }

  .sadl-footer-bottom {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .sadl-partner-card--google,
  .sadl-partner-card--meta {
    width: min(100%, 220px);
  }

  .sadl-home-meta-focus__card {
    padding: 18px;
    border-radius: 24px;
  }

  .sadl-home-meta-focus__media {
    border-radius: 20px;
    aspect-ratio: 16 / 11;
  }

  .sadl-home-meta-focus__badge,
  .sadl-home-meta-focus__cta {
    width: 100%;
  }

  .blog-item {
    gap: 18px;
    padding: 16px;
    border-radius: 22px;
  }

  .blog-image-wrapper .image-wrapper {
    min-height: 220px;
    border-radius: 18px;
  }

  .blog-title {
    font-size: 1.32rem;
  }

  .blog-excerpt,
  .blog-excerpt-wrapper {
    font-size: 0.94rem;
  }

  .blog-list-pagination {
    justify-content: center;
  }

  .blog-list-pagination .older a,
  .blog-list-pagination .newer a {
    width: 100%;
    justify-content: center;
  }

  .summary-item-list,
  .field-list,
  fieldset.checkbox {
    grid-template-columns: 1fr;
  }

  .summary-item {
    border-radius: 20px;
  }

  .summary-content {
    padding: 18px 18px 20px;
  }

  .form-wrapper {
    padding: 18px;
    border-radius: 22px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 78px;
  }

  .whatsapp-btn {
    width: 70px !important;
  }

  .move-to-top {
    right: 14px;
    bottom: 14px;
  }
}
