:root {
  --glp-ink: #0b1e2f;
  --glp-deep: #061522;
  --glp-blue: #2c78a8;
  --glp-sky: #78b8d8;
  --glp-gold: #bd9d62;
  --glp-paper: #f5f2ec;
  --glp-white: #fff;
  --glp-line: rgba(11, 30, 47, .14);
  --glp-shadow: 0 24px 70px rgba(6, 21, 34, .14);
  --glp-radius: 26px;
  --glp-header: 78px;
}

html:has(.glp-shell) {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--glp-header) + 18px);
}

body.apt44-glp-active {
  margin: 0;
  padding: 0 0 calc(86px + env(safe-area-inset-bottom));
  overflow-x: clip;
  color: var(--glp-ink);
  background: var(--glp-paper);
  font-family: "Pretendard Variable", Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
}

.apt44-glp-active *,
.apt44-glp-active *::before,
.apt44-glp-active *::after {
  box-sizing: border-box;
}

.apt44-glp-active img {
  max-width: 100%;
  height: auto;
}

.apt44-glp-active a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .2em;
}

.apt44-glp-active :focus-visible {
  outline: 3px solid #f7c95d;
  outline-offset: 4px;
}

.glp-shell {
  min-height: 100vh;
  overflow: clip;
  background:
    radial-gradient(circle at 92% 8%, rgba(120, 184, 216, .16), transparent 28rem),
    var(--glp-paper);
}

.glp-skip-link {
  position: fixed;
  z-index: 99999;
  top: 8px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: #000;
  border-radius: 8px;
  transform: translateY(-180%);
}

.glp-skip-link:focus {
  transform: translateY(0);
}

.glp-header {
  position: sticky;
  z-index: 9000;
  top: 0;
  width: 100%;
  height: var(--glp-header);
  color: var(--glp-white);
  background: rgba(5, 20, 32, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px) saturate(130%);
  transition: box-shadow .25s ease, background .25s ease;
}

.glp-header.is-scrolled {
  background: rgba(4, 17, 28, .985);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .23);
}

.glp-header__inner {
  width: min(100% - 40px, 1540px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.glp-brand {
  min-width: 238px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  text-decoration: none;
}

.glp-brand__mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .52);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: .08em;
}

.glp-brand__name {
  display: grid;
  line-height: 1.15;
}

.glp-brand__name strong {
  font-size: 15px;
  letter-spacing: -.02em;
}

.glp-brand__name small {
  margin-top: 5px;
  color: rgba(255, 255, 255, .62);
  font-size: 9px;
  letter-spacing: .16em;
}

.glp-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.glp-nav > a {
  position: relative;
  padding: 28px 0 25px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  text-decoration: none;
}

.glp-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--glp-sky);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.glp-nav > a:hover,
.glp-nav > a[aria-current="page"] {
  color: #fff;
}

.glp-nav > a:hover::after,
.glp-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.glp-nav > .glp-nav__call {
  min-width: 132px;
  margin-left: 3px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  color: #fff;
  text-align: center;
  line-height: 1.15;
}

.glp-nav > .glp-nav__call::after {
  display: none;
}

.glp-nav__call small {
  display: block;
  margin-bottom: 3px;
  color: var(--glp-sky);
  font-size: 9px;
}

.glp-menu-toggle {
  display: none;
  min-width: 58px;
  min-height: 48px;
  margin-left: auto;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 12px;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.glp-menu-toggle span {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
}

.glp-menu-toggle i {
  display: block;
  width: 24px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .2s ease;
}

.glp-menu-toggle[aria-expanded="true"] i:first-of-type {
  transform: translateY(2.5px) rotate(45deg);
}

.glp-menu-toggle[aria-expanded="true"] i:last-of-type {
  transform: translateY(-2.5px) rotate(-45deg);
}

.glp-main {
  min-height: 55vh;
}

.glp-main > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

.glp-hero {
  position: relative;
  min-height: clamp(680px, 82vh, 900px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--glp-deep);
}

.glp-hero__picture,
.glp-hero > .glp-hero__picture {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
}

.glp-hero__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 14, 24, .88) 0%, rgba(3, 18, 30, .56) 47%, rgba(3, 18, 30, .08) 74%),
    linear-gradient(0deg, rgba(3, 17, 28, .74) 0%, transparent 46%);
}

.glp-hero__content {
  width: min(100% - 42px, 1200px);
  margin: 0 auto;
  padding: 94px 0 100px;
  color: #fff;
}

.glp-kicker {
  margin: 0 0 17px;
  color: var(--glp-sky);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.glp-hero__title {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(40px, 6.1vw, 92px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.glp-hero__copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(16px, 1.55vw, 21px);
  line-height: 1.75;
}

.glp-buttons {
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.glp-btn .wp-block-button__link,
.wp-block-button.glp-btn .wp-block-button__link {
  min-height: 48px;
  padding: 14px 24px;
  border: 1px solid var(--glp-ink);
  border-radius: 999px;
  color: #fff;
  background: var(--glp-ink);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.glp-btn .wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(6, 21, 34, .2);
}

.glp-btn--accent .wp-block-button__link {
  border-color: var(--glp-gold);
  color: var(--glp-deep);
  background: #d3b879;
}

.glp-btn--outline .wp-block-button__link {
  border-color: currentColor;
  color: var(--glp-ink);
  background: transparent;
}

.glp-hero .glp-btn--outline .wp-block-button__link,
.glp-section--dark .glp-btn--outline .wp-block-button__link {
  color: #fff;
}

.glp-intro {
  padding: 46px 22px;
  color: rgba(255, 255, 255, .88);
  background: var(--glp-deep);
}

.glp-lead {
  width: min(100%, 990px);
  margin: 0 auto;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.8;
  text-align: center;
}

.glp-toc {
  width: min(100% - 40px, 1120px);
  margin: 34px auto 0;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--glp-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 14px 42px rgba(11, 30, 47, .07);
}

.glp-toc__title {
  margin: 0;
  font-size: 15px;
  white-space: nowrap;
}

.glp-toc ol {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  list-style-position: inside;
}

.glp-toc a {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.glp-section {
  width: min(100% - 40px, 1200px);
  margin: 34px auto;
  padding: clamp(48px, 7vw, 92px);
  border-radius: var(--glp-radius);
  background: #fff;
  box-shadow: var(--glp-shadow);
}

.glp-section--sand {
  background: #e9e3d8;
}

.glp-section--dark {
  color: rgba(255, 255, 255, .83);
  background:
    radial-gradient(circle at 90% 0, rgba(75, 153, 198, .22), transparent 28rem),
    var(--glp-deep);
}

.glp-section--accent {
  color: rgba(255, 255, 255, .9);
  background: linear-gradient(135deg, #16567d, #0a2438 68%);
}

.glp-section--dark .glp-section__title,
.glp-section--accent .glp-section__title,
.glp-section--dark h3,
.glp-section--accent h3 {
  color: #fff;
}

.glp-section__title {
  max-width: 920px;
  margin: 0 0 30px;
  color: var(--glp-ink);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(30px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.glp-section p {
  max-width: 920px;
}

.glp-grid {
  margin: 30px 0 0;
  display: grid;
  gap: 18px;
}

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

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

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

.glp-grid > .wp-block-column {
  min-width: 0;
}

.glp-card {
  height: 100%;
  padding: 28px;
  border: 1px solid var(--glp-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .76);
}

.glp-section--dark .glp-card,
.glp-section--accent .glp-card {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .075);
}

.glp-card__number {
  margin: 0 0 22px;
  color: var(--glp-blue);
  font-family: Georgia, serif;
  font-size: 37px;
  line-height: 1;
}

.glp-section--dark .glp-card__number,
.glp-section--accent .glp-card__number {
  color: var(--glp-sky);
}

.glp-card__title {
  margin: 0 0 12px;
  color: var(--glp-ink);
  font-size: 20px;
  line-height: 1.35;
}

.glp-card__copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}

.glp-figure {
  margin: 30px 0 0;
}

.glp-figure img {
  display: block;
  width: 100%;
  border-radius: 20px;
  background: #edf0f2;
  box-shadow: 0 16px 46px rgba(6, 21, 34, .12);
}

.glp-figure figcaption {
  margin-top: 12px;
  color: #5c6870;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.glp-section--dark .glp-figure figcaption,
.glp-section--accent .glp-figure figcaption {
  color: rgba(255, 255, 255, .66);
}

.glp-gallery {
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.glp-gallery .glp-figure {
  margin: 0;
}

.glp-gallery .glp-figure:nth-child(3n) {
  grid-column: 1 / -1;
}

.glp-gallery .glp-figure img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.glp-unit-grid .glp-figure img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 10px;
  background: #fff;
}

.glp-callout {
  margin: 28px 0 0;
  padding: 20px 24px;
  border-left: 4px solid var(--glp-blue);
  border-radius: 0 14px 14px 0;
  background: rgba(44, 120, 168, .09);
}

.glp-section--dark .glp-callout {
  border-left-color: var(--glp-sky);
  background: rgba(120, 184, 216, .11);
}

.glp-check-list {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.glp-check-list li {
  position: relative;
  padding-left: 27px;
}

.glp-check-list li::before {
  position: absolute;
  left: 0;
  color: var(--glp-blue);
  content: "✓";
  font-weight: 900;
}

.glp-vr-wrap {
  width: min(100% - 40px, 1280px);
  margin: 34px auto;
  padding: 18px;
  border-radius: 24px;
  color: #fff;
  background: var(--glp-deep);
  box-shadow: 0 30px 80px rgba(2, 13, 22, .28);
}

.glp-vr-toolbar {
  min-height: 54px;
  padding: 4px 6px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.glp-vr-toolbar span {
  padding: 5px 9px;
  border: 1px solid rgba(120, 184, 216, .48);
  border-radius: 999px;
  color: var(--glp-sky);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
}

.glp-vr-toolbar strong {
  font-size: 14px;
}

.glp-vr-toolbar a {
  margin-left: auto;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.glp-vr-frame {
  --glp-vr-scale: 1;
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
  border-radius: 15px;
  background: #000;
}

.glp-vr-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 1280px;
  height: 720px;
  border: 0;
  transform: scale(var(--glp-vr-scale));
  transform-origin: 0 0;
}

.glp-vr-note {
  margin: 14px 7px 2px;
  color: rgba(255, 255, 255, .63);
  font-size: 11px;
  line-height: 1.65;
}

.glp-scroll-hint {
  margin: 22px 0 8px;
  color: #4a5b66;
  font-size: 12px;
  font-weight: 750;
}

.glp-scroll-region {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border: 1px solid var(--glp-line);
  border-radius: 16px;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.glp-data-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: var(--glp-ink);
  background: #fff;
  font-size: 13px;
}

.glp-data-table th,
.glp-data-table td {
  padding: 15px 17px;
  border-bottom: 1px solid #dde3e7;
  text-align: left;
  vertical-align: top;
}

.glp-data-table th {
  color: #fff;
  background: #10324b;
  font-weight: 750;
}

.glp-data-table tbody tr:nth-child(even) {
  background: #f4f7f8;
}

.glp-source-list {
  margin: 24px 0 0;
  padding-left: 20px;
}

.glp-source-list li {
  margin: 8px 0;
}

.glp-blog-body {
  padding: 44px 20px 0;
}

.glp-blog-article {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.glp-blog-article > .glp-article-head {
  position: relative;
  min-height: clamp(560px, 76vh, 780px);
  padding: clamp(38px, 6vw, 74px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--glp-radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 21, 34, .96), rgba(18, 76, 111, .91)),
    var(--glp-deep);
  box-shadow: var(--glp-shadow);
}

.glp-article-head > p,
.glp-article-head > h1 {
  position: relative;
  z-index: 1;
}

.glp-article-head__picture {
  object-position: 52% 50%;
}

.glp-article-head h1 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(34px, 5.4vw, 67px);
  line-height: 1.12;
  letter-spacing: -.05em;
}

.glp-article-head .glp-lead {
  width: auto;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, .82);
  text-align: left;
}

.glp-blog-article .glp-section {
  width: 100%;
}

.glp-experience-note {
  border: 1px dashed #9c7c41;
  background: #fff8e8;
}

.glp-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.glp-hashtags span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #124362;
  background: #dfeef5;
  font-size: 12px;
  font-weight: 700;
}

.glp-footer {
  margin-top: 70px;
  padding: 62px 24px 24px;
  color: rgba(255, 255, 255, .74);
  background: #03111c;
}

.glp-footer__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .7fr 1.35fr;
  gap: 44px;
}

.glp-footer__eyebrow {
  margin: 0 0 12px;
  color: var(--glp-sky);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.glp-footer__logo {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 27px;
  line-height: 1.35;
}

.glp-footer address {
  font-size: 12px;
  font-style: normal;
  line-height: 1.9;
}

.glp-footer-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.glp-footer-menu a {
  min-height: 42px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 10px;
  font-size: 11px;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
  animation: glp-footer-nudge 6s ease-in-out infinite;
}

.glp-footer-menu a:nth-child(2n) {
  animation-delay: -3s;
}

.glp-footer-menu a:hover {
  border-color: var(--glp-sky);
  transform: translateY(-2px);
}

.glp-footer__notice {
  width: min(100%, 1200px);
  margin: 42px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .44);
  font-size: 10px;
  line-height: 1.7;
}

.glp-floating-call {
  position: fixed;
  z-index: 9500;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  min-width: 182px;
  min-height: 58px;
  padding: 10px 21px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  color: #fff;
  background: #123f5d;
  box-shadow: 0 15px 38px rgba(4, 17, 28, .35);
  text-align: center;
  line-height: 1.15;
  text-decoration: none;
  animation: glp-call-breathe 2.9s ease-in-out infinite;
}

.glp-floating-call small {
  margin-bottom: 4px;
  color: #add7e9;
  font-size: 9px;
  font-weight: 700;
}

.glp-floating-call strong {
  font-size: 17px;
  letter-spacing: .025em;
}

.glp-motion-ready .glp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .75, .25, 1);
}

.glp-motion-ready .glp-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes glp-call-breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.018); }
}

@keyframes glp-footer-nudge {
  0%, 88%, 100% { transform: translateY(0); }
  93% { transform: translateY(-2px); }
}

@media (max-width: 1320px) {
  .glp-menu-toggle {
    display: block;
    animation: glp-call-breathe 4.4s ease-in-out infinite;
  }

  body.glp-menu-open {
    overflow: hidden;
  }

  .glp-nav {
    position: fixed;
    z-index: 8999;
    top: var(--glp-header);
    right: 0;
    bottom: 0;
    width: min(390px, 88vw);
    padding: 22px 20px calc(110px + env(safe-area-inset-bottom));
    display: block;
    overflow-y: auto;
    background: rgba(3, 16, 27, .99);
    box-shadow: -24px 30px 60px rgba(0, 0, 0, .34);
    transform: translateX(106%);
    transition: transform .25s ease;
  }

  .glp-nav.is-open {
    transform: translateX(0);
  }

  .glp-nav > a {
    min-height: 48px;
    padding: 14px 8px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 14px;
  }

  .glp-nav > a::after {
    display: none;
  }

  .glp-nav > .glp-nav__call {
    margin: 18px 0 0;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, .28);
  }
}

@media (max-width: 840px) {
  :root {
    --glp-header: 70px;
  }

  .glp-header__inner {
    width: min(100% - 24px, 1540px);
  }

  .glp-brand {
    min-width: 0;
  }

  .glp-brand__mark {
    width: 54px;
    height: 36px;
    font-size: 8px;
  }

  .glp-brand__name strong {
    font-size: 13px;
  }

  .glp-brand__name small {
    font-size: 7px;
  }

  .glp-hero {
    min-height: 700px;
  }

  .glp-hero__picture {
    object-position: 58% 50%;
  }

  .glp-hero__shade {
    background:
      linear-gradient(0deg, rgba(2, 14, 24, .93) 0%, rgba(2, 14, 24, .34) 72%, rgba(2, 14, 24, .14) 100%),
      linear-gradient(90deg, rgba(2, 14, 24, .5), transparent 90%);
  }

  .glp-hero__content {
    width: min(100% - 30px, 1200px);
    padding: 100px 0 65px;
  }

  .glp-hero__title {
    font-size: clamp(38px, 12.2vw, 62px);
  }

  .glp-toc {
    width: calc(100% - 24px);
    padding: 20px;
    display: block;
  }

  .glp-toc ol {
    margin-top: 12px;
  }

  .glp-section {
    width: calc(100% - 24px);
    margin: 20px auto;
    padding: 44px 22px;
    border-radius: 20px;
  }

  .glp-section__title {
    font-size: clamp(29px, 9vw, 44px);
  }

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

  .glp-gallery .glp-figure:nth-child(3n) {
    grid-column: auto;
  }

  .glp-card {
    padding: 22px;
  }

  .glp-vr-wrap {
    width: calc(100% - 16px);
    margin: 18px auto;
    padding: 8px;
    border-radius: 16px;
  }

  .glp-vr-toolbar {
    padding: 8px 5px 12px;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }

  .glp-vr-toolbar a {
    width: 100%;
    margin-left: 0;
  }

  .glp-blog-body {
    padding: 20px 12px 0;
  }

  .glp-blog-article > .glp-article-head {
    min-height: 650px;
    padding: 38px 24px;
    border-radius: 20px;
  }

  .glp-article-head__picture {
    object-position: 58% 50%;
  }

  .glp-footer {
    margin-top: 44px;
    padding: 44px 18px 22px;
  }

  .glp-footer__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .glp-floating-call {
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 12px;
    min-width: 0;
    min-height: 56px;
  }
}

@media (max-width: 390px) {
  .glp-brand__name small {
    display: none;
  }

  .glp-menu-toggle {
    min-width: 54px;
  }

  .glp-footer-menu {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:has(.glp-shell) {
    scroll-behavior: auto;
  }

  .glp-shell *,
  .glp-shell *::before,
  .glp-shell *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .glp-motion-ready .glp-reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .glp-header,
  .glp-floating-call,
  .glp-footer-menu,
  .glp-vr-wrap {
    display: none !important;
  }

  body.apt44-glp-active {
    padding: 0;
    background: #fff;
  }

  .glp-section {
    box-shadow: none;
    break-inside: avoid;
  }
}
