@charset "UTF-8";
/* _common/_common\default\common.scss */
@keyframes monthly-scroll-float {
  from {
    translate: var(--float-from-x, 0) var(--float-from-y, 0);
  }
  to {
    translate: var(--float-to-x, 1rem) var(--float-to-y, 1rem);
  }
}
@keyframes monthly-image-reveal-load {
  from {
    opacity: 0;
    transform: translate3d(var(--reveal-from-x, 0), var(--reveal-from-y, 8%), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(var(--reveal-to-x, 0), var(--reveal-to-y, 0), 0);
  }
}
@keyframes quoteRotateLeft {
  0% {
    opacity: 0;
    transform: rotate(60deg);
  }
  50% {
    opacity: 1;
    transform: rotate(-8deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}
@keyframes quoteRotateRight {
  0% {
    opacity: 0;
    transform: rotate(-60deg);
  }
  50% {
    opacity: 1;
    transform: rotate(8deg);
  }
  75% {
    transform: rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}
.monthly {
  --color-eyebrow: #fff;
  --color-headline: #fff;
  --color-text: #000;
  --container-width: 100%;
  --container-padding: 1rem;
  overflow-x: clip;
  background-color: #fff;
  line-height: normal;
}
.monthly * {
  font-family: "LGEI Text", "Segoe UI", "Microsoft Sans Serif", sans-serif;
}
.monthly sup {
  font-size: 60%;
}
@media all and (min-width: 93rem) {
  .monthly .only-mo {
    display: none !important;
  }
}
.monthly .only-pc {
  display: none !important;
}
@media all and (min-width: 93rem) {
  .monthly .only-pc {
    display: revert !important;
  }
}
.monthly .hidden-mo {
  display: none !important;
}
@media all and (min-width: 48.0625rem) {
  .monthly .hidden-mo {
    display: revert !important;
  }
}
@media all and (min-width: 48.0625rem) {
  .monthly .hidden-ta {
    display: none !important;
  }
}
.monthly .headline {
  font-family: "LGEI Headline", "Segoe UI", "Microsoft Sans Serif", sans-serif;
}
.monthly .headline p,
.monthly .headline span {
  font-family: inherit;
}
.monthly .handwriting {
  font-family: "Courgette", cursive;
  font-size: 1.25rem;
  line-height: 1.2;
}
.monthly .handwriting p,
.monthly .handwriting span {
  font-family: inherit;
  padding-block-end: 0.25rem;
  text-align: center;
}
.monthly .i-quote {
  display: inline-block;
  width: 1.875rem;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='102' height='64' viewBox='0 0 102 64'%3E%3Cpath d='M0 64V29.3633L12.2247 0H37.5131L29.603 28.2846H44.824V64H0ZM56.2097 64V29.3633L68.4345 0H93.7228L85.8127 28.2846H101.034V64H56.2097Z' fill='%23fff'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  aspect-ratio: 1.5789473684;
  opacity: 0;
}
.monthly .i-quote.is-animated {
  transform-origin: left top; /* 위쪽(여는 따옴표)은 왼쪽 상단 기준 */
  animation: quoteRotateLeft 0.6s ease-out forwards;
  animation-delay: 0.2s;
}
.monthly .i-quote--left {
  text-align: left;
}
.monthly .i-quote--right {
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="38" viewBox="0 0 60 38" fill="none"><path d="M60 -0.000282288V20.5691L52.7402 38.0068H37.7224L42.4199 21.2097H33.3808V-0.000282288H60ZM26.6192 -0.000282288V20.5691L19.3594 38.0068H4.34164L9.03915 21.2097H0V-0.000282288H26.6192Z" fill="%2343000E"/></svg>');
  opacity: 0;
  text-align: right;
}
.monthly .i-quote--right.is-animated {
  transform-origin: right top; /* 아래쪽(닫는 따옴표)은 오른쪽 상단 기준 */
  animation: quoteRotateRight 0.6s ease-out forwards;
  animation-delay: 0.2s;
}
.monthly__container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}
.monthly__section {
  margin-inline: auto;
}
.monthly__title {
  font-size: 1.75rem;
  line-height: 1.1429;
  font-weight: 800;
  color: var(--color-headline);
}
.monthly__eyebrow {
  font-size: 0.75rem;
  line-height: 1.6;
  font-weight: 700;
  color: var(--color-eyebrow);
}
.monthly__text {
  font-size: 1rem;
  line-height: 1.25;
  color: var(--color-text);
}
.monthly__disclaimer {
  font-size: 0.75rem;
  line-height: 1.1667;
  color: var(--color-disclaimer);
}
.monthly .highlight {
  font-weight: 700;
  color: var(--color-highlight-color);
  text-decoration: none;
}
.monthly__image img {
  max-width: 100%;
  vertical-align: top;
}
.monthly [data-split=lines] .split-line {
  display: block;
  overflow: hidden;
}
.monthly [data-split=lines] .split-line-inner {
  display: block;
  transform: translateY(120%);
  transition: transform 0.7s ease;
  transition-delay: calc(var(--i, 0) * 0.2s);
}
.monthly [data-split=lines].is-animated .split-line-inner {
  transform: translateY(0);
}
.monthly [data-animate][data-reveal]:not([data-reveal=load]) {
  opacity: 0;
  transform: translate3d(var(--reveal-from-x, 0), var(--reveal-from-y, 8%), 0);
  will-change: transform opacity;
  transition: opacity var(--reveal-opacity-duration, var(--reveal-duration, 0.8s)) var(--reveal-opacity-ease, var(--reveal-ease, ease)), transform var(--reveal-duration, 0.8s) var(--reveal-ease, ease);
  transition-delay: var(--reveal-delay, 0s);
}
.monthly [data-animate][data-reveal]:not([data-reveal=load]).is-animated {
  opacity: 1;
  transform: translate3d(var(--reveal-to-x, 0), var(--reveal-to-y, 0), 0);
}
@media (prefers-reduced-motion: reduce) {
  .monthly [data-animate][data-reveal]:not([data-reveal=load]) {
    opacity: 1;
    transform: none;
    will-change: auto;
    transition: none;
  }
}
.monthly [data-reveal=load] {
  opacity: 0;
  transform: translate3d(var(--reveal-from-x, 0), var(--reveal-from-y, 8%), 0);
  animation-name: monthly-image-reveal-load;
  animation-duration: var(--reveal-duration, 0.8s);
  animation-timing-function: var(--reveal-ease, ease);
  animation-delay: var(--reveal-delay, 0s);
  animation-fill-mode: both;
}
@media (prefers-reduced-motion: reduce) {
  .monthly [data-reveal=load] {
    opacity: 1;
    transform: none;
    will-change: auto;
    transition: none;
    animation: none;
  }
}
.monthly [data-float] {
  --float-distance: 2rem;
  --float-from-x: 0;
  --float-from-y: 0;
  --float-to-x: 1rem;
  --float-to-y: 1rem;
  translate: none;
}
@supports (animation-timeline: view()) {
  .monthly [data-float] {
    translate: var(--float-from-x) var(--float-from-y);
    will-change: translate;
    animation-name: monthly-scroll-float;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .monthly [data-float] {
    animation: none;
    translate: none;
    will-change: auto;
  }
}
@media all and (min-width: 48.0625rem) {
  .monthly [data-float] {
    --float-distance: 3rem;
  }
}
@media all and (min-width: 93rem) {
  .monthly [data-float] {
    --float-distance: 4rem;
  }
}
.monthly [data-float][data-float=from-left] {
  --float-from-x: 0;
  --float-from-y: 0;
  --float-to-x: var(--float-distance);
  --float-to-y: 0;
}
.monthly [data-float][data-float=from-right] {
  --float-from-x: 0;
  --float-from-y: 0;
  --float-to-x: calc(var(--float-distance) * -1);
  --float-to-y: 0;
}
.monthly [data-float][data-float=from-top] {
  --float-from-x: 0;
  --float-from-y: 0;
  --float-to-x: 0;
  --float-to-y: var(--float-distance);
}
.monthly [data-float][data-float=from-bottom] {
  --float-from-x: 0;
  --float-from-y: 0;
  --float-to-x: 0;
  --float-to-y: calc(var(--float-distance) * -1);
}
.monthly [data-float][data-float=from-left-top] {
  --float-from-x: 0;
  --float-from-y: 0;
  --float-to-x: var(--float-distance);
  --float-to-y: var(--float-distance);
}
.monthly [data-float][data-float=from-right-top] {
  --float-from-x: 0;
  --float-from-y: 0;
  --float-to-x: calc(var(--float-distance) * -1);
  --float-to-y: var(--float-distance);
}
.monthly [data-float][data-float=from-left-bottom] {
  --float-from-x: 0;
  --float-from-y: 0;
  --float-to-x: var(--float-distance);
  --float-to-y: calc(var(--float-distance) * -1);
}
.monthly [data-float][data-float=from-right-bottom] {
  --float-from-x: 0;
  --float-from-y: 0;
  --float-to-x: calc(var(--float-distance) * -1);
  --float-to-y: calc(var(--float-distance) * -1);
}
@media all and (min-width: 48.0625rem) {
  .monthly {
    --container-padding: 1.5rem;
  }
  .monthly .handwriting {
    font-size: 1.625rem;
    line-height: 1.1538;
  }
  .monthly .i-quote {
    width: 2.8125rem;
  }
  .monthly__title {
    font-size: 2.875rem;
    line-height: 1.1304;
    font-weight: 800;
  }
  .monthly__eyebrow {
    font-size: 1.125rem;
    line-height: 1.3333;
    font-weight: 700;
  }
  .monthly__text {
    font-size: 1.25rem;
    line-height: 1.2;
  }
  .monthly__disclaimer {
    font-size: 0.875rem;
    line-height: 1.2143;
  }
}
@media all and (min-width: 93rem) {
  .monthly {
    --container-width: 93rem;
  }
  .monthly .handwriting {
    font-size: 2rem;
    line-height: 1.125;
  }
  .monthly .i-quote {
    width: 3.75rem;
  }
  .monthly__eyebrow {
    font-size: 1.5rem;
    line-height: 1.1667;
    font-weight: 700;
  }
  .monthly__title {
    font-size: 4rem;
    line-height: 1.125;
    font-weight: 800;
  }
  .monthly__text {
    font-size: 1.5rem;
    line-height: 1.1667;
  }
  .monthly__disclaimer {
    font-size: 1rem;
    line-height: 1.25;
  }
}

/* -------------------------------------------------------- */
.ST0016 {
  padding-block: 2.5rem !important;
}
.ST0016 .c-text-contents__interviewee-name,
.ST0016 .c-text-contents__interviewee-info,
.ST0016 .c-text-contents__bodycopy {
  display: none !important;
}
.ST0016 .c-text-contents__headline {
  margin-top: 0 !important;
}
.ST0016 .c-folding__text {
  display: none !important;
  padding-bottom: 2.5rem !important;
}
.ST0016 .c-folding__under {
  margin-top: 0.5rem !important;
}
.ST0016 .c-text-contents__disclaimer p {
  line-height: 1.167 !important;
}
.ST0016 .c-text-contents__disclaimer p + p {
  margin-block-start: 0.5rem !important;
}
@media all and (min-width: 48.0625rem) {
  .ST0016 {
    padding-block: 6.25rem !important;
  }
  .ST0016 .c-folding__text {
    padding-bottom: 3.25rem !important;
  }
  .ST0016 .c-folding__under {
    margin-top: 1rem !important;
  }
  .ST0016 .c-folding__under .c-text-contents {
    padding-inline: 1.5rem !important;
  }
  .ST0016 .c-text-contents__disclaimer p {
    line-height: 1.146 !important;
  }
}
@media all and (min-width: 93rem) {
  .ST0016 {
    padding-block: 10rem !important;
  }
  .ST0016 .c-text-contents__interviewee-name,
  .ST0016 .c-text-contents__interviewee-info,
  .ST0016 .c-text-contents__bodycopy {
    display: none !important;
  }
  .ST0016 .c-text-contents__headline {
    margin-top: 0 !important;
  }
  .ST0016 .c-folding__text {
    padding-bottom: 4rem !important;
  }
  .ST0016 .c-folding__under {
    margin-top: 1rem !important;
  }
  .ST0016 .c-folding__under .c-text-contents {
    padding-inline: 1.5rem !important;
  }
  .ST0016 .c-text-contents__disclaimer p {
    line-height: 1.125 !important;
  }
}

body .c-wrapper.bg-default.MT0004,
body .c-wrapper.bg-default.MT0004 .bg-default,
body .c-wrapper.PR0019,
body .c-wrapper.PR0019 .bg-default,
.monthly .monthly-offer {
  background-color: #fff;
}

.MT0004 .component > .cmp-container .cmp-contents-layer .monthly-area .c-text-contents__disclaimer {
  display: none !important;
}

.c-wrapper.PR0019 {
  padding-block: 1.5rem !important;
}
@media all and (min-width: 48.0625rem) {
  .c-wrapper.PR0019 {
    padding-block: 3rem !important;
  }
}

.monthly .monthly-offer__layer {
  padding-block: 2.5rem !important;
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly-offer__layer {
    padding-block: 5rem !important;
  }
}

.embed:has(.monthly) ~ .PR0019:not(:has(.showcase-title)) .showcase-swiper ul li {
  border: 1px solid #cbc8c2;
}

/* offer-sticky-bar */
.monthly .monthly__section--offer-sticky-bar[hidden] {
  display: none;
}
.monthly .monthly__section--offer-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 99;
  width: 100%;
  max-width: 100%;
  background: #000;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s linear;
  padding-bottom: env(safe-area-inset-bottom);
}
.monthly .monthly__section--offer-sticky-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section {
  width: 100%;
  max-width: 120rem;
  padding: 0.53125rem 4.25rem 0.53125rem 2.75rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  position: relative;
  color: #fff;
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section .hidden-ta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section .hidden-ta button {
  border: 0;
  cursor: pointer;
  appearance: none;
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section {
    max-width: 100rem;
    padding: 0.875rem 2.5rem;
    gap: 0.75rem;
  }
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section .monthly__icon {
  display: none;
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section .monthly__icon {
    display: block;
  }
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section .monthly__icon {
  width: 1.5625rem;
  height: 1.5625rem;
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section .monthly__icon img {
  width: 100%;
  height: auto;
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section .monthly__icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section .monthly__icon--white {
  display: none;
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section-text {
  display: flex;
  gap: 0.75rem;
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section-title, .monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section-description {
  font-size: 1.25rem;
  line-height: 1rem;
  font-weight: 700;
  text-align: center;
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section-title, .monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section-description {
    font-size: 1.5rem;
    line-height: normal;
  }
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section-title:after {
  content: "";
  display: block;
  width: 0.0625rem;
  height: 1rem;
  background: #fff;
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section-description {
  white-space: pre-line;
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section .button-wrap {
  position: absolute;
  top: 50%;
  left: 0rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section .button-wrap {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    gap: 0.8125rem;
    padding-inline-start: 1.75rem;
  }
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section .button-wrap button {
  border: 0;
  cursor: pointer;
  appearance: none;
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section .button-wrap > button {
  background: none;
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section-button {
  height: 2.0625rem;
  padding: 0.5625rem 0.984375rem;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1;
  transition: background 0.3s, color 0.2s, border-color 0.3s;
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section-button:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: 0.125rem;
}
@media (min-width: 22.5rem) {
  .monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section-button {
    white-space: nowrap;
  }
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section-button {
    height: 2.75rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
  }
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section-button:hover {
  background: #ea1917;
  color: #fff;
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section-close {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section-close:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: -0.125rem;
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section-close {
    width: 2.75rem;
    height: 2.75rem;
  }
}
.monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section-close svg {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly__section--offer-sticky-bar .offer-sticky-bar__section-close svg {
    width: 0.875rem;
    height: 0.875rem;
  }
}
.monthly .monthly__section--offer-sticky-bar.red {
  background: #ea1917;
}
.monthly .monthly__section--offer-sticky-bar.white {
  background: #fff;
  border-top: 0.1875rem solid #ea1917;
}
.monthly .monthly__section--offer-sticky-bar.white .offer-sticky-bar__section {
  padding: 0.34375rem 4.25rem 0.53125rem 2.75rem;
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly__section--offer-sticky-bar.white .offer-sticky-bar__section {
    max-width: 100rem;
    padding: 0.6875rem 2.5rem 0.875rem;
    gap: 0.75rem;
  }
}
.monthly .monthly__section--offer-sticky-bar.white .offer-sticky-bar__section .monthly__icon--default {
  display: none;
}
.monthly .monthly__section--offer-sticky-bar.white .offer-sticky-bar__section .monthly__icon--white {
  display: block;
}
.monthly .monthly__section--offer-sticky-bar.white .offer-sticky-bar__section-title {
  color: #ea1917;
}
.monthly .monthly__section--offer-sticky-bar.white .offer-sticky-bar__section-title:after {
  background: #aba8a2;
}
.monthly .monthly__section--offer-sticky-bar.white .offer-sticky-bar__section-description {
  color: #000;
}
.monthly .monthly__section--offer-sticky-bar.white .offer-sticky-bar__section-button {
  background: #ea1917;
  color: #fff;
}
.monthly .monthly__section--offer-sticky-bar.white .offer-sticky-bar__section-close svg path {
  fill: #000;
}

@media all and (max-width: 48.061875rem) {
  body:has(.monthly__section--offer-sticky-bar.is-visible) .CM0007 {
    width: 3.25rem;
  }
  body:has(.monthly__section--offer-sticky-bar.is-visible) .CM0007 .al-proactive-msg {
    pointer-events: none;
  }
}
body:not(:has(.MT0004)) .monthly__section--offer-sticky-bar {
  display: none !important;
}

/* spot-layer */
.monthly .monthly-gallery-spot {
  position: relative;
  max-width: 120rem;
  margin: 0 auto;
}
.monthly .monthly-gallery-spot .arrow {
  display: none;
}
.monthly .monthly-gallery-spot__image {
  width: 100%;
}
.monthly .monthly-gallery-spot__image img {
  width: 100%;
}
.monthly .monthly-gallery-spot__cta,
.monthly .monthly__container .monthly-gallery-spot__cta {
  --spot-cta-scale: 1;
  --spot-cta-before-scale: 1;
  --spot-cta-after-scale: 1;
  position: absolute;
  width: 1.875rem;
  height: 1.875rem;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 35;
}
.monthly .monthly-gallery-spot__cta-visual {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: #a50034;
  transform: scale(var(--spot-cta-scale));
  transform-origin: center center;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  pointer-events: none;
}
.monthly .monthly-gallery-spot__cta-visual::before, .monthly .monthly-gallery-spot__cta-visual::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.3s ease-in-out, width 0.3s ease-in-out, height 0.3s ease-in-out;
  pointer-events: none;
}
.monthly .monthly-gallery-spot__cta-visual::before {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(165, 0, 52, 0.2);
  filter: blur(5px);
  z-index: -1;
  transform: translate(-50%, -50%) scale(var(--spot-cta-before-scale));
}
.monthly .monthly-gallery-spot__cta-visual::after {
  width: 0.625rem;
  height: 0.625rem;
  background: #fff;
  transform: translate(-50%, -50%) scale(var(--spot-cta-after-scale));
}
.monthly .monthly-gallery-spot-layer {
  display: none;
  position: fixed;
  max-width: 31.625rem;
  width: 20.5rem;
  z-index: 30;
  transform: translateY(2rem);
  padding-top: 3.375rem;
  margin-top: -3.375rem;
}
.monthly .monthly-gallery-spot-layer .arrow {
  position: absolute;
  bottom: calc(100% - 3.5rem);
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-width: 1.375rem 1rem;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  z-index: 11;
}
.monthly .monthly-gallery-spot-layer__inner {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 100%;
  width: min(100vw - 2rem, 100dvw - 2rem);
  padding: 1.75rem 1.875rem 1.875rem;
  border-radius: 1.25rem;
  box-shadow: 0.125rem 0.125rem 0.5rem rgba(99, 98, 95, 0.2);
  background-color: #fff;
}
.monthly .monthly-gallery-spot-layer__image {
  flex: 0 0 42%;
  max-width: 42%;
  min-width: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.monthly .monthly-gallery-spot-layer__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.monthly .monthly-gallery-spot-layer__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0.625rem;
  padding-right: 2.25rem;
}
.monthly .monthly-gallery-spot-layer__content .sku {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.875rem;
  line-height: 1.25;
  color: #767676;
}
.monthly .monthly-gallery-spot-layer__content .name {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.875rem;
  line-height: 1.1666666667;
  color: #000;
}
.monthly .monthly-gallery-spot-layer .cta-wrap {
  margin-top: 0.75rem;
}
.monthly .monthly-gallery-spot-layer .cta-wrap .c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 5rem;
  height: 2.25rem;
  min-height: 2.25rem;
  padding: 0 1rem;
  border: 0.0625rem solid #94928d;
  border-radius: 0.375rem;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 600;
}
.monthly .monthly-gallery-spot-layer .cta-wrap .c-button .cmp-button__text,
.monthly .monthly-gallery-spot-layer .cta-wrap .c-button .c-button__text {
  font: inherit;
}
.monthly .monthly-gallery-spot-layer .cta-wrap .c-button {
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .monthly .monthly-gallery-spot-layer .cta-wrap .c-button:hover {
    background-color: #ea1917;
    border-color: #ea1917;
    color: #fff;
  }
}
.monthly .monthly-gallery-spot-layer .cta-wrap .c-button:focus-visible {
  outline: 0.125rem solid #ea1917;
  outline-offset: 0.125rem;
}
@media (min-width: 48.0625rem) {
  .monthly .monthly-gallery-spot-layer .cta-wrap .c-button {
    min-width: 6.25rem;
    height: 2.25rem;
    min-height: 2.25rem;
    padding: 0 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 600;
  }
}
.monthly .monthly-gallery-spot-layer__close {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.monthly .monthly-gallery-spot-layer__close:before {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("https://www.lg.com/etc.clientlibs/lge/clientlibs/clientlib-site/resources/images/icon/icon-close-black-12-12.svg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media (max-width: 360px) {
  .monthly .monthly-gallery-spot-layer__image {
    width: 50%;
  }
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly-gallery-spot {
    max-width: 100%;
  }
  .monthly .monthly-gallery-spot__cta,
  .monthly .monthly__container .monthly-gallery-spot__cta {
    --spot-cta-size: clamp(2.8125rem, 4.375vw, 4.375rem);
    --spot-cta-size-hover: 3.125rem;
    --spot-cta-before-size: clamp(3.4375rem, 5vw, 5rem);
    --spot-cta-before-size-hover: 3.75rem;
    --spot-cta-after-size: clamp(1rem, 1.5625vw, 1.5625rem);
    --spot-cta-after-size-hover: 0.9375rem;
    width: var(--spot-cta-size);
    height: var(--spot-cta-size);
  }
}
@media (min-width: 48.0625rem) and (hover: hover) and (pointer: fine) {
  .monthly .monthly-gallery-spot__cta:hover,
  .monthly .monthly__container .monthly-gallery-spot__cta:hover {
    --spot-cta-scale: calc(var(--spot-cta-size-hover) / var(--spot-cta-size));
    --spot-cta-before-scale: calc(
      (var(--spot-cta-before-size-hover) / var(--spot-cta-before-size)) / var(--spot-cta-scale)
    );
    --spot-cta-after-scale: calc(
      (var(--spot-cta-after-size-hover) / var(--spot-cta-after-size)) / var(--spot-cta-scale)
    );
  }
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly-gallery-spot__cta-visual::before {
    width: var(--spot-cta-before-size);
    height: var(--spot-cta-before-size);
  }
  .monthly .monthly-gallery-spot__cta-visual::after {
    width: var(--spot-cta-after-size);
    height: var(--spot-cta-after-size);
  }
  .monthly .monthly-gallery-spot-layer {
    max-width: none;
    width: 30rem;
    transform: translate(-50%, 6.5625rem);
    padding-top: 1.875rem;
    margin-top: -1.875rem;
  }
  .monthly .monthly-gallery-spot-layer .arrow {
    bottom: calc(100% - 2rem);
  }
  .monthly .monthly-gallery-spot-layer--left {
    width: 35rem;
    transform: translate(calc(-100% + 2.375rem), calc(-50% + 1.875rem));
    padding-top: 0;
    margin-top: 0;
    padding-right: 5rem;
    margin-right: -5rem;
  }
  .monthly .monthly-gallery-spot-layer--left .arrow {
    left: 100%;
    bottom: 50%;
    transform: translate(-5.125rem, 50%);
    border-width: 1rem 1.375rem;
    border-color: transparent transparent transparent #fff;
  }
  .monthly .monthly-gallery-spot-layer--right {
    width: 35rem;
    transform: translate(6.375rem, calc(-50% + 1.875rem));
    padding-left: 5rem;
    margin-left: -5rem;
    padding-top: 0;
    margin-top: 0;
  }
  .monthly .monthly-gallery-spot-layer--right .arrow {
    left: 0;
    bottom: 50%;
    transform: translate(calc(-100% + 5rem), 50%);
    margin-left: 0.125rem;
    border-width: 1rem 1.375rem;
    border-color: transparent #fff transparent transparent;
  }
  .monthly .monthly-gallery-spot-layer__inner {
    align-items: center;
    max-width: 27.5rem;
    width: auto;
    padding: 2.5rem 1.875rem 1.875rem;
    border-radius: 1.25rem;
    box-shadow: 0.25rem 0.25rem 0.75rem rgba(99, 98, 95, 0.2);
  }
  .monthly .monthly-gallery-spot-layer__image {
    flex: 0 0 8.75rem;
    max-width: 8.75rem;
    width: 8.75rem;
    min-width: auto;
  }
  .monthly .monthly-gallery-spot-layer__image img {
    max-height: 6.5625rem;
  }
  .monthly .monthly-gallery-spot-layer__content {
    flex: 1 1 0;
    min-width: 0;
    padding-left: 1.25rem;
    padding-right: 2.75rem;
  }
  .monthly .monthly-gallery-spot-layer__content .sku {
    font-size: 0.875rem;
  }
  .monthly .monthly-gallery-spot-layer__content .name {
    font-size: 1rem;
    line-height: 1.167;
  }
  .monthly .monthly-gallery-spot-layer .cta-wrap {
    margin-top: 1.25rem;
  }
  .monthly .monthly-gallery-spot-layer__close {
    right: 0.5rem;
    top: 0.5rem;
    width: 2.75rem;
    height: 2.75rem;
  }
  .monthly .monthly-gallery-spot-layer__close:before {
    width: 0.75rem;
    height: 0.75rem;
  }
}

/* wave */
@keyframes monthly-scroll-float {
  from {
    translate: var(--float-from-x, 0) var(--float-from-y, 0);
  }
  to {
    translate: var(--float-to-x, 1rem) var(--float-to-y, 1rem);
  }
}
@keyframes monthly-image-reveal-load {
  from {
    opacity: 0;
    transform: translate3d(var(--reveal-from-x, 0), var(--reveal-from-y, 8%), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(var(--reveal-to-x, 0), var(--reveal-to-y, 0), 0);
  }
}
@keyframes monthly-wave-deepen {
  0% {
    -webkit-mask-size: 100% 85%, 100% 40%;
    mask-size: 100% 85%, 100% 40%;
  }
  50% {
    -webkit-mask-size: 100% 0%, 100% 100%;
    mask-size: 100% 0%, 100% 100%;
  }
  100% {
    -webkit-mask-size: 100% 0%, 100% 160%;
    mask-size: 100% 0%, 100% 160%;
  }
}
.monthly__section--wave {
  --color-disclaimer: #4a4946;
  --color-highlight-color: #fb5c0b;
  timeline-scope: --wave-bg;
}
.monthly__section--wave .wave__bg {
  max-width: 160rem;
  margin-inline: auto;
  view-timeline-name: --wave-bg;
  view-timeline-axis: block;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--wave .wave__bg {
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
  }
}
.monthly__section--wave .wave__bg .monthly__image {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 720 780' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M101.477 589.292C49.4773 545.326 -30 569.795 -30 589.292V0H750V589.292C750 659.969 673.5 774.249 576.888 779.6C503.378 783.671 448.636 756.409 414.659 710.424C380.682 664.439 361.477 628.548 281.705 613.967C201.932 599.386 166.477 644.25 101.477 589.292Z'/%3E%3C/svg%3E");
  -webkit-mask-position: center bottom;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 720 780' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M101.477 589.292C49.4773 545.326 -30 569.795 -30 589.292V0H750V589.292C750 659.969 673.5 774.249 576.888 779.6C503.378 783.671 448.636 756.409 414.659 710.424C380.682 664.439 361.477 628.548 281.705 613.967C201.932 599.386 166.477 644.25 101.477 589.292Z'/%3E%3C/svg%3E");
  mask-position: center bottom;
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--wave .wave__bg .monthly__image {
    flex-shrink: 0;
    aspect-ratio: 2560/780;
    height: 31.25rem;
    width: auto;
    max-width: none;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2560 780' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M599.725 701.968C349.232 698.99 0 589.595 0 589.595V0H2560V589.595C2560 589.595 2381.71 780 2027.67 780C1719.28 780 1479.62 633.081 1186.78 614.282C959.53 599.694 808.707 704.453 599.725 701.968Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2560 780' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M599.725 701.968C349.232 698.99 0 589.595 0 589.595V0H2560V589.595C2560 589.595 2381.71 780 2027.67 780C1719.28 780 1479.62 633.081 1186.78 614.282C959.53 599.694 808.707 704.453 599.725 701.968Z'/%3E%3C/svg%3E");
  }
}
@media (min-width: 64rem) {
  .monthly__section--wave .wave__bg .monthly__image {
    height: 52.4193548387vw;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--wave .wave__bg .monthly__image {
    height: 48.75rem;
  }
}
@supports (animation-timeline: view()) {
  .monthly__section--wave .wave__bg .monthly__image {
    -webkit-mask-image: linear-gradient(#fff 0 0), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 720 780' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M101.477 589.292C49.4773 545.326 -30 569.795 -30 589.292V0H750V589.292C750 659.969 673.5 774.249 576.888 779.6C503.378 783.671 448.636 756.409 414.659 710.424C380.682 664.439 361.477 628.548 281.705 613.967C201.932 599.386 166.477 644.25 101.477 589.292Z'/%3E%3C/svg%3E");
    -webkit-mask-position: top left, center bottom;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 85%, 100% 40%;
    -webkit-mask-composite: source-over;
    mask-image: linear-gradient(#fff 0 0), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 720 780' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M101.477 589.292C49.4773 545.326 -30 569.795 -30 589.292V0H750V589.292C750 659.969 673.5 774.249 576.888 779.6C503.378 783.671 448.636 756.409 414.659 710.424C380.682 664.439 361.477 628.548 281.705 613.967C201.932 599.386 166.477 644.25 101.477 589.292Z'/%3E%3C/svg%3E");
    mask-position: top left, center bottom;
    mask-repeat: no-repeat;
    mask-size: 100% 85%, 100% 40%;
    mask-composite: add;
    animation-name: monthly-wave-deepen;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: --wave-bg;
    animation-range: entry 0% cover 80%;
  }
  @media all and (min-width: 48.0625rem) {
    .monthly__section--wave .wave__bg .monthly__image {
      -webkit-mask-image: linear-gradient(#fff 0 0), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2560 780' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M599.725 701.968C349.232 698.99 0 589.595 0 589.595V0H2560V589.595C2560 589.595 2381.71 780 2027.67 780C1719.28 780 1479.62 633.081 1186.78 614.282C959.53 599.694 808.707 704.453 599.725 701.968Z'/%3E%3C/svg%3E");
      mask-image: linear-gradient(#fff 0 0), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2560 780' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M599.725 701.968C349.232 698.99 0 589.595 0 589.595V0H2560V589.595C2560 589.595 2381.71 780 2027.67 780C1719.28 780 1479.62 633.081 1186.78 614.282C959.53 599.694 808.707 704.453 599.725 701.968Z'/%3E%3C/svg%3E");
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  .monthly__section--wave .wave__bg .monthly__image {
    animation: none;
  }
}
.monthly__section--wave .wave__bg .monthly__image img {
  display: block;
  width: 100%;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--wave .wave__bg .monthly__image img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
  }
}
.monthly__section--wave .wave__body {
  margin-block-start: -32.2222222222vw;
  padding-block-end: 2.5rem;
  position: relative;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--wave .wave__body {
    margin-block-start: -12.5rem;
    padding-block-end: clamp(3.75rem, 6.7204301075vw, 6.25rem);
  }
}
@media (min-width: 64rem) {
  .monthly__section--wave .wave__body {
    margin-block-start: clamp(-22.5rem, -24.1935483871vw, -15rem);
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--wave .wave__body {
    margin-block-start: -13.3125rem;
    padding-block-end: 6.25rem;
  }
}
.monthly__section--wave .wave__body-image .monthly__image img {
  width: 100%;
}
.monthly__section--wave .wave__body-image .monthly__image--1 {
  width: 46.9444444444vw;
  aspect-ratio: 338/338;
  margin-inline-start: 5vw;
  border-radius: 50%;
  border: 1.6666666667vw solid #f7f30c;
  box-sizing: border-box;
}
.monthly__section--wave .wave__body-image .monthly__image--2 {
  position: absolute;
  right: 16.6666666667vw;
  top: 23.3333333333vw;
  width: 21.3888888889vw;
  aspect-ratio: 154/175;
  rotate: -15deg;
  pointer-events: none;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--wave .wave__body-image .monthly__image--1 {
    width: clamp(15rem, 24.5967741935vw, 22.875rem);
    margin-inline-start: 0;
    border-width: clamp(0.5rem, 0.8064516129vw, 0.75rem);
  }
  .monthly__section--wave .wave__body-image .monthly__image--2 {
    right: clamp(18.75rem, 20.1612903226vw, 25rem);
    width: clamp(7.5rem, 12.7688172043vw, 11.875rem);
    top: 3.75rem;
  }
}
@media (min-width: 64rem) {
  .monthly__section--wave .wave__body-image .monthly__image--2 {
    right: initial;
    width: clamp(7.5rem, 12.7688172043vw, 11.875rem);
    top: clamp(3.75rem, 4.0322580645vw, 6.25rem);
    left: clamp(26.25rem, 37.6344086022vw, 45rem);
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--wave .wave__body-image .monthly__image--1 {
    width: 22.875rem;
    margin-inline-start: 0;
    border-width: 0.75rem;
  }
  .monthly__section--wave .wave__body-image .monthly__image--2 {
    position: absolute;
    left: calc(50% - 960 / 16 * 1rem + 900 / 16 * 1rem);
    top: -2.5rem;
    width: 11.875rem;
  }
}
.monthly__section--wave .wave__body-content {
  width: calc(100% + var(--container-padding) * 2);
  margin-inline: calc(var(--container-padding) * -1);
  position: relative;
  padding-block: 1.25rem 1.75rem;
  padding-inline: 6.25rem 1rem;
}
.monthly__section--wave .wave__body-content .monthly__image {
  position: absolute;
  left: -2.25rem;
  bottom: 3.75rem;
  width: 8.125rem;
  aspect-ratio: 205/256;
  rotate: 30deg;
  pointer-events: none;
}
.monthly__section--wave .wave__body-content .monthly__disclaimer {
  margin-block-start: 0.75rem;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--wave .wave__body-content {
    width: 100%;
    margin-inline: 0;
    max-width: clamp(42.5rem, 64.5161290323vw, 60rem);
    margin-inline: auto;
    margin-block-start: 0;
    padding-block: clamp(1.5rem, 2.688172043vw, 2.5rem) clamp(1.75rem, 2.688172043vw, 2.5rem);
    padding-inline: clamp(9.375rem, 20.1612903226vw, 18.75rem) clamp(1.5rem, 3.2258064516vw, 3rem);
  }
  .monthly__section--wave .wave__body-content .monthly__image {
    width: clamp(10rem, 14.7849462366vw, 13.75rem);
    bottom: 0.625rem;
  }
  .monthly__section--wave .wave__body-content .monthly__disclaimer {
    margin-block-start: clamp(1rem, 1.6129032258vw, 1.5rem);
  }
}
@media (min-width: 64rem) {
  .monthly__section--wave .wave__body-content {
    margin-block-start: clamp(-6.25rem, -6.7204301075vw, -3.125rem);
    padding-inline-start: clamp(6.25rem, 13.4408602151vw, 12.5rem);
  }
  .monthly__section--wave .wave__body-content .monthly__image {
    left: calc(100% + clamp(3.75rem, 5.376344086vw, 5rem));
    bottom: initial;
    top: calc(100% - clamp(1.5rem, 2.688172043vw, 2.5rem));
    width: clamp(12.5rem, 17.4059139785vw, 16.1875rem);
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--wave .wave__body-content {
    width: 100%;
    margin-inline: 0;
    max-width: none;
    margin-block-start: -7.5rem;
    padding-block: 0 2.5rem;
    padding-inline-start: 29.0625rem;
  }
  .monthly__section--wave .wave__body-content .monthly__image {
    left: calc(100% - 6.25rem);
    right: initial;
    bottom: initial;
    top: calc(100% + 2.5rem);
    width: 16.1875rem;
  }
  .monthly__section--wave .wave__body-content .monthly__disclaimer {
    margin-block-start: 1.5rem;
  }
}
.monthly__section--wave .wave__body .handwriting {
  max-width: 60rem;
  margin-inline: auto;
  padding-inline: 2.125rem 2.375rem;
  position: relative;
}
.monthly__section--wave .wave__body .handwriting .i-quote--left {
  margin-block-end: 0.5rem;
}
.monthly__section--wave .wave__body .handwriting .i-quote--right {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--wave .wave__body .handwriting {
    max-width: clamp(42.5rem, 64.5161290323vw, 60rem);
    padding-inline: clamp(3rem, 5.1075268817vw, 4.75rem);
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--wave .wave__body .handwriting {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 60rem;
    padding-inline: 0;
    margin-block-start: 5rem;
  }
  .monthly__section--wave .wave__body .handwriting .i-quote--left {
    margin-block-end: 0;
  }
  .monthly__section--wave .wave__body .handwriting .i-quote--right {
    position: static;
    margin-inline-start: auto;
  }
}

/* family */
.monthly__section--family {
  --color-text: #fff;
  --color-highlight-color: #fb5c0b;
}
.monthly__section--family .family__header {
  position: relative;
  margin-block-start: 13.8888888889vw;
  padding-block-end: 2.5rem;
  background-color: #000;
}
.monthly__section--family .family__header::before {
  content: "";
  display: block;
  width: 100%;
  height: 13.8888888889vw;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-block-end: -1px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-image: url("/content/dam/channel/wcms/cz/2026-monthly-lg/26-aug/feature/images/mobile/monthly-lg-2026-aug-cz-05-family-divider-mobile.png");
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--family .family__header {
    margin-block-start: 5.5rem;
    padding-block-end: clamp(3.75rem, 6.7204301075vw, 6.25rem);
  }
  .monthly__section--family .family__header::before {
    width: 100%;
    max-width: 100%;
    height: 5.5rem;
    background-image: url("/content/dam/channel/wcms/cz/2026-monthly-lg/26-aug/feature/images/desktop/monthly-lg-2026-aug-cz-05-family-divider-desktop.png");
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--family .family__header {
    padding-block-end: 6.25rem;
  }
}
@media (min-width: 160rem) {
  .monthly__section--family .family__header {
    margin-block-start: 3.4375vw;
  }
  .monthly__section--family .family__header::before {
    height: 3.4375vw;
  }
}
.monthly__section--family .family__header-title {
  padding-block: 1.25rem 1rem;
  text-align: center;
  position: relative;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--family .family__header-title {
    padding-inline: 6rem;
    padding-block: clamp(3.25rem, 6.7204301075vw, 6.25rem) clamp(1.5625rem, 3.2258064516vw, 3rem);
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--family .family__header-title {
    padding-inline: 0;
    padding-block: 6.25rem 3rem;
  }
}
.monthly__section--family .family__header-content {
  position: relative;
}
.monthly__section--family .family__header-content .monthly__text {
  margin-block-start: 1.25rem;
  margin-inline: 3.8888888889vw;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--family .family__header-content .monthly__text {
    margin-block-start: clamp(1.75rem, 3.2258064516vw, 3rem);
    margin-inline: 1.5rem;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--family .family__header-content .monthly__text {
    margin-block-start: 3rem;
    margin-inline: 0;
  }
}
.monthly__section--family .family__header-image {
  margin-inline: auto;
  position: relative;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--family .family__header-image {
    max-width: clamp(42.5rem, 64.5161290323vw, 60rem);
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--family .family__header-image {
    max-width: 60rem;
  }
}
.monthly__section--family .family__header-image .monthly__image--1, .monthly__section--family .family__header-image .monthly__image--3 {
  position: absolute;
  pointer-events: none;
}
.monthly__section--family .family__header-image .monthly__image--1 img, .monthly__section--family .family__header-image .monthly__image--3 img {
  width: 100%;
}
.monthly__section--family .family__header-image .monthly__image--2 {
  margin-inline: 3.8888888889vw;
}
.monthly__section--family .family__header-image .monthly__image--1 {
  width: 19.1666666667vw;
  aspect-ratio: 438/543;
  top: 11.1111111111vw;
  left: -0.625rem;
}
.monthly__section--family .family__header-image .monthly__image--3 {
  width: 7.2222222222vw;
  aspect-ratio: 70/164;
  top: 29.4444444444vw;
  right: 0;
  rotate: -30deg;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--family .family__header .monthly__image--2 {
    width: calc(100% - 3rem);
    margin-inline: auto;
  }
  .monthly__section--family .family__header .monthly__image--1 {
    width: clamp(9rem, 21.5053763441vw, 20rem);
    top: 2.625rem;
    left: clamp(-6.25rem, -6.7204301075vw, -2.5rem);
  }
  .monthly__section--family .family__header .monthly__image--3 {
    width: clamp(2.25rem, 3.6290322581vw, 3.375rem);
    top: clamp(13.75rem, 23.5215053763vw, 21.875rem);
    right: clamp(-5rem, -5.376344086vw, -1.5rem);
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--family .family__header .monthly__image--2 {
    width: 100%;
    margin-inline: 0;
  }
  .monthly__section--family .family__header .monthly__image--1 {
    width: 20rem;
    top: 2.625rem;
    left: -8.3125rem;
  }
  .monthly__section--family .family__header .monthly__image--3 {
    width: 3.375rem;
    top: 21.875rem;
    right: initial;
    left: calc(100% + 4.375rem);
  }
}

/* monitor */
@keyframes monthly-scroll-float {
  from {
    translate: var(--float-from-x, 0) var(--float-from-y, 0);
  }
  to {
    translate: var(--float-to-x, 1rem) var(--float-to-y, 1rem);
  }
}
@keyframes monthly-image-reveal-load {
  from {
    opacity: 0;
    transform: translate3d(var(--reveal-from-x, 0), var(--reveal-from-y, 8%), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(var(--reveal-to-x, 0), var(--reveal-to-y, 0), 0);
  }
}
.monthly__section--handling + .monthly__section--monitor {
  padding-block-start: 2.5rem;
}
.monthly__section--handling + .monthly__section--monitor .monitor__body-media {
  background-color: transparent;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--handling + .monthly__section--monitor {
    padding-block-start: 3.75rem;
  }
}
@media (min-width: 64rem) {
  .monthly__section--handling + .monthly__section--monitor {
    padding-block-start: 5rem;
  }
}

.monthly__section--monitor {
  margin-block-start: -1px;
  padding-block-start: calc(1.25rem + 1px);
  padding-block-end: 2.5rem;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--monitor {
    padding-block-end: 3.75rem;
    padding-block-start: calc(2.5rem + 1px);
  }
}
@media (min-width: 64rem) {
  .monthly__section--monitor {
    padding-block-end: 5rem;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--monitor {
    padding-block-end: 6.25rem;
    padding-block-start: calc(5rem + 1px);
  }
}
.monthly__section--monitor .monitor__header {
  --color-headline: #fff;
  position: relative;
  margin-block-start: 13.8888888889vw;
  margin-block-end: -1px;
  background-color: #000;
}
.monthly__section--monitor .monitor__header::before {
  content: "";
  display: block;
  width: 100%;
  height: 13.8888888889vw;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-block-end: -1px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-image: url("/content/dam/channel/wcms/cz/2026-monthly-lg/26-aug/feature/images/mobile/monthly-lg-2026-aug-cz-04-monitor-divider-mobile.png");
}
.monthly__section--monitor .monitor__header .monthly__container {
  padding-block: 1.25rem 1rem;
}
.monthly__section--monitor .monitor__header .monthly__title {
  text-align: center;
}
@media (min-width: 64rem) {
  .monthly__section--monitor .monitor__header {
    margin-block-start: 5.5rem;
  }
  .monthly__section--monitor .monitor__header::before {
    width: 100%;
    max-width: 100%;
    height: 5.5rem;
    background-image: url("/content/dam/channel/wcms/cz/2026-monthly-lg/26-aug/feature/images/desktop/monthly-lg-2026-aug-cz-04-monitor-divider-desktop.png");
  }
  .monthly__section--monitor .monitor__header .monthly__container {
    padding-block: 5rem 11.25rem;
  }
  .monthly__section--monitor .monitor__header + .monitor__body {
    margin-block-start: -7.5rem;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--monitor .monitor__header .monthly__container {
    padding-block: 6.25rem 15rem;
  }
  .monthly__section--monitor .monitor__header + .monitor__body {
    margin-block-start: -10rem;
  }
}
@media (min-width: 160rem) {
  .monthly__section--monitor .monitor__header {
    margin-block-start: 3.4375vw;
  }
  .monthly__section--monitor .monitor__header::before {
    height: 3.4375vw;
  }
}
.monthly__section--monitor .monitor__body {
  --color-text: #000;
  --color-disclaimer: #4a4946;
  --color-highlight-color: #3ca300;
}
@media (min-width: 64rem) {
  .monthly__section--monitor .monitor__body {
    padding-block-end: 1.25rem;
  }
}
.monthly__section--monitor .monitor__layout {
  display: flex;
  flex-direction: column;
}
@media (min-width: 64rem) {
  .monthly__section--monitor .monitor__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 3.5rem;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--monitor .monitor__layout {
    gap: 5rem;
  }
}
.monthly__section--monitor .monitor__col--visual {
  display: contents;
}
@media (min-width: 64rem) {
  .monthly__section--monitor .monitor__col--visual {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    gap: 5rem;
    min-width: 0;
    order: 2;
  }
}
.monthly__section--monitor .monitor__col--copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-block-start: 1.25rem;
  order: 2;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--monitor .monitor__col--copy {
    margin-block-start: 3.75rem;
  }
}
@media (min-width: 64rem) {
  .monthly__section--monitor .monitor__col--copy {
    flex: 0 0 40%;
    gap: 3.5rem;
    min-width: 0;
    margin-block-start: clamp(3.75rem, 5.376344086vw, 5rem);
    order: 1;
  }
}
@media (min-width: 80rem) {
  .monthly__section--monitor .monitor__col--copy {
    flex: 0 0 35rem;
    width: 35rem;
    max-width: 35rem;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--monitor .monitor__col--copy {
    gap: 5rem;
    margin-block-start: 7.5rem;
  }
}
.monthly__section--monitor .monitor__body-media {
  position: relative;
  order: 1;
  width: calc(100% + var(--container-padding) * 2);
  margin-inline: calc(var(--container-padding) * -1);
  background-color: #000;
}
@media (min-width: 64rem) {
  .monthly__section--monitor .monitor__body-media {
    order: unset;
    width: 100%;
    margin-inline: 0;
    background-color: transparent;
  }
}
.monthly__section--monitor .monitor__body-image {
  position: relative;
  z-index: 3;
  width: 100%;
  aspect-ratio: 1;
}
.monthly__section--monitor .monitor__body-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.monthly__section--monitor .monitor__inset {
  position: relative;
  width: 68.3333333333%;
  margin-inline: auto;
}
@media (min-width: 64rem) {
  .monthly__section--monitor .monitor__inset {
    width: 22.5rem;
    margin-inline: 0;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--monitor .monitor__inset {
    width: 30.75rem;
  }
}
.monthly__section--monitor .monitor__inset .monthly__image--1 {
  position: absolute;
  z-index: 2;
  --float-distance: 1rem;
  left: -25.6944444444vw;
  top: -25.8333333333vw;
  width: 43.0555555556vw;
  aspect-ratio: 310/372.722;
  rotate: 90deg;
  pointer-events: none;
}
.monthly__section--monitor .monitor__inset .monthly__image--1 img {
  width: 100%;
}
@media (min-width: 64rem) {
  .monthly__section--monitor .monitor__inset .monthly__image--1 {
    --float-distance: 2rem;
    left: -12.5rem;
    top: -5rem;
    width: 13.75rem;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--monitor .monitor__inset .monthly__image--1 {
    left: -18.125rem;
    top: -10.625rem;
    width: 19.375rem;
  }
}
.monthly__section--monitor .monitor__inset-image {
  width: 100%;
  aspect-ratio: 2.3428571429;
  position: relative;
  z-index: 3;
}
.monthly__section--monitor .monitor__inset-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.monthly__section--monitor .monitor__body-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.monthly__section--monitor .monitor__body-text .highlight {
  color: var(--color-highlight-color);
  font-weight: 700;
}
@media (min-width: 64rem) {
  .monthly__section--monitor .monitor__body-text {
    gap: 3.5rem;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--monitor .monitor__body-text {
    gap: 5rem;
  }
}
.monthly__section--monitor .monitor__body-lead-block {
  position: relative;
  padding-inline: 6.25rem 0;
}
.monthly__section--monitor .monitor__body-lead-block .monitor__body-lead {
  min-height: 9.375rem;
}
@media all and (min-width: 26.25rem) {
  .monthly__section--monitor .monitor__body-lead-block .monitor__body-lead {
    min-height: 6.25rem;
  }
}
@media (min-width: 64rem) {
  .monthly__section--monitor .monitor__body-lead-block .monitor__body-lead {
    min-height: 0;
  }
}
@media all and (min-width: 26.25rem) {
  .monthly__section--monitor .monitor__body-lead-block {
    padding-inline: clamp(11.875rem, 24.1935483871vw, 22.5rem) 0;
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5.376344086vw, 5rem);
  }
}
@media (min-width: 64rem) {
  .monthly__section--monitor .monitor__body-lead-block {
    padding-inline: 0;
    gap: clamp(3.5rem, 5.376344086vw, 5rem);
    min-height: 35.7421875vw;
  }
}
@media (min-width: 80rem) {
  .monthly__section--monitor .monitor__body-lead-block {
    min-height: clamp(22.875rem, 29.5698924731vw, 27.5rem);
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--monitor .monitor__body-lead-block {
    gap: 5rem;
    min-height: 24.875rem;
  }
}
.monthly__section--monitor .monitor__props {
  display: contents;
  pointer-events: none;
}
.monthly__section--monitor .monitor__props .monthly__image {
  --float-distance: 2.5rem;
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.monthly__section--monitor .monitor__props .monthly__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media all and (min-width: 26.25rem) {
  .monthly__section--monitor .monitor__props .monthly__image {
    --float-distance: 4rem;
    position: relative;
  }
}
.monthly__section--monitor .monitor__props .monthly__image--2 {
  top: calc(-1.25rem - calc(var(--float-to-y, 0px) / 2));
  left: calc(-4.0625rem - calc(var(--float-to-x, 0px) / 2));
  width: 8.25rem;
  aspect-ratio: 296.4/182;
  rotate: 24deg;
}
@media all and (min-width: 26.25rem) {
  .monthly__section--monitor .monitor__props .monthly__image--2 {
    top: auto;
    left: auto;
    width: clamp(7.5rem, 15.7258064516vw, 14.625rem);
    aspect-ratio: 234/152;
    margin-inline-start: calc(-1 * clamp(0.5rem, 1.0752688172vw, 1rem));
    rotate: none;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--monitor .monitor__props .monthly__image--2 {
    width: 14.625rem;
    margin-inline-start: -1rem;
  }
}
.monthly__section--monitor .monitor__props .monthly__image--3 {
  top: calc(5.3125rem - calc(var(--float-to-y, 0px) / 2));
  left: calc(0rem - calc(var(--float-to-x, 0px) / 2));
  width: 3.125rem;
  aspect-ratio: 100/98;
  rotate: 16deg;
}
@media all and (min-width: 26.25rem) {
  .monthly__section--monitor .monitor__props .monthly__image--3 {
    top: auto;
    left: auto;
    width: clamp(3rem, 5.376344086vw, 5rem);
    aspect-ratio: 80/72;
    margin-inline-start: calc(-1 * clamp(0.5rem, 1.0752688172vw, 1rem));
    rotate: none;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--monitor .monitor__props .monthly__image--3 {
    width: 5rem;
    margin-inline-start: -1rem;
  }
}
@media all and (min-width: 26.25rem) {
  .monthly__section--monitor .monitor__props {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    position: absolute;
    left: -2.5rem;
    top: 0.9375rem;
    gap: 0.75rem;
  }
}
@media (min-width: 64rem) {
  .monthly__section--monitor .monitor__props {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 0.75rem;
    position: static;
  }
}
.monthly__section--monitor .monitor__quote {
  position: relative;
  order: 3;
  max-width: 60rem;
  margin-inline: auto;
  padding-inline: 2.125rem 2.375rem;
  margin-block-start: 2.5rem;
}
.monthly__section--monitor .monitor__quote .i-quote--left {
  margin-block-end: 0.5rem;
}
.monthly__section--monitor .monitor__quote .i-quote--right {
  position: absolute;
  right: 0;
  bottom: 0;
}
.monthly__section--monitor .monitor__quote .monthly__image--4 {
  position: absolute;
  z-index: 2;
  --float-distance: 1rem;
  top: calc(-3.125rem - calc(var(--float-to-y, 0px) / 2));
  right: calc(-1.25rem + calc(var(--float-to-x, 0px) / 2));
  width: min(18.6111111111vw, 67px);
  aspect-ratio: 134/157.564;
  rotate: 30deg;
  pointer-events: none;
}
.monthly__section--monitor .monitor__quote .monthly__image--4 img {
  width: 100%;
}
@media (min-width: 64rem) {
  .monthly__section--monitor .monitor__quote .monthly__image--4 {
    --float-distance: 2rem;
    top: calc(-2.5rem - calc(var(--float-to-y, 0px) / 2));
    right: calc(-3.75rem + calc(var(--float-to-x, 0px) / 2));
    width: 5rem;
    aspect-ratio: 114/134;
    rotate: 38deg;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--monitor .monitor__quote .monthly__image--4 {
    top: calc(-3.125rem - calc(var(--float-to-y, 0px) / 2));
    right: calc(-6.25rem + calc(var(--float-to-x, 0px) / 2));
    width: 7.125rem;
  }
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--monitor .monitor__quote {
    max-width: clamp(42.5rem, 64.5161290323vw, 60rem);
    margin-inline: auto;
    margin-block-start: 5rem;
    padding-inline: clamp(3rem, 5.1075268817vw, 4.75rem);
  }
}
@media (min-width: 64rem) {
  .monthly__section--monitor .monitor__quote {
    order: unset;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: none;
    margin-inline: 0;
    margin-block-start: 0;
    padding-inline: 5rem;
  }
  .monthly__section--monitor .monitor__quote .i-quote--left {
    margin-block-end: 0;
  }
  .monthly__section--monitor .monitor__quote .i-quote--right {
    position: static;
    margin-inline-start: auto;
  }
}
@media (min-width: 64rem) {
  .monthly__section--monitor .monitor__disclaimer {
    width: clamp(30rem, 45.6989247312vw, 42.5rem);
    max-width: clamp(30rem, 45.6989247312vw, 42.5rem);
    margin-block-start: -1.5rem;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--monitor .monitor__disclaimer {
    width: 42.5rem;
    max-width: 42.5rem;
    margin-block-start: -2rem;
  }
}

/* special-offer */
.monthly-offer-toast {
  position: fixed;
  right: 1rem;
  bottom: 1.5rem;
  left: 1rem;
  z-index: 1005;
  max-width: 36.25rem;
}
@media all and (min-width: 48.0625rem) {
  .monthly-offer-toast {
    left: 50%;
    right: auto;
    width: 36.25rem;
    transform: translateX(-50%);
  }
}
.monthly-offer-toast__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.375rem;
  padding: 0.75rem 1rem;
  border-radius: 62.4375rem;
  background-color: #006a63;
  color: #fff;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.05);
}
.monthly-offer-toast__body {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
.monthly-offer-toast__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 10.5L7.5 14.5L16.5 5.5' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.monthly-offer-toast__message {
  font-size: 0.75rem;
  line-height: 1.3333;
  font-weight: 600;
}
@media all and (min-width: 48.0625rem) {
  .monthly-offer-toast__message {
    font-size: 0.875rem;
    line-height: 1.1429;
    font-weight: 600;
  }
}
.monthly-offer-toast__close {
  flex-shrink: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.5;
  width: 1.25rem;
  height: 1.25rem;
}
.monthly-offer-toast__close::after {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  margin: auto;
  background: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L11 11M11 1L1 11' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
@media (hover: hover) and (pointer: fine) {
  .monthly-offer-toast__close:hover {
    opacity: 1;
  }
}

.monthly .monthly-offer {
  position: relative;
  width: 100%;
}
.monthly .monthly-offer__layer {
  padding: 5rem 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.monthly .monthly-offer__inner {
  max-width: 93rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly-offer__inner {
    padding-inline: 1.5rem;
  }
}
.monthly .monthly-offer__inner--large {
  max-width: 103rem;
}
.monthly .monthly-offer__card {
  position: relative;
  z-index: 1;
  list-style: none;
}
.monthly .monthly-offer__card--side {
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
  padding: 1.5rem 1rem;
  border-radius: 1.25rem;
  background-color: #fff;
}
@media (min-width: 64rem) {
  .monthly .monthly-offer__card--side {
    flex-flow: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 2rem;
    border-radius: 2.5rem;
  }
}
@media (min-width: 90rem) {
  .monthly .monthly-offer__card--side {
    gap: 5rem;
    padding: 3rem 3.5rem;
  }
}
.monthly .monthly-offer--has-bg .monthly .monthly-offer__card--side {
  box-shadow: 0 0.25rem 0.75rem 0 rgba(0, 0, 0, 0.08);
}
.monthly .monthly-offer__title {
  margin: 0 0 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 1.75rem;
  line-height: 1.1429;
  font-weight: 600;
  color: #000;
  font-family: "LGEI Headline", "Segoe UI", "Microsoft Sans Serif", sans-serif;
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly-offer__title {
    font-size: 3rem;
    line-height: 1;
    font-weight: 600;
  }
}
@media (min-width: 90rem) {
  .monthly .monthly-offer__title {
    margin-bottom: 1rem;
    font-size: 3.5rem;
    line-height: 1.0714;
    font-weight: 600;
  }
}
.monthly .monthly-offer__date {
  margin: 0.25rem 0;
  color: #333;
  font-size: 0.875rem;
  line-height: 1.2857;
  font-weight: 400;
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly-offer__date {
    margin: 0.5rem 0;
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 400;
  }
}
.monthly .monthly-offer__desc {
  margin: 0;
  color: #262626;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  font-size: 0.875rem;
  line-height: 1.2857;
  font-weight: 400;
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly-offer__desc {
    -webkit-line-clamp: 3;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 400;
  }
}
.monthly .monthly-offer__disclaimer {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  color: #666;
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly-offer__disclaimer {
    margin-top: 1.5rem;
  }
}
.monthly .monthly-offer__disclaimer li {
  white-space: pre-line;
  font-size: 0.875rem;
  line-height: 1.1429;
  font-weight: 400;
}
.monthly .monthly-offer__disclaimer li::before {
  content: none;
  display: none;
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly-offer__disclaimer li {
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 400;
  }
}
.monthly .monthly-offer__disclaimer li:not(:last-child) {
  padding-bottom: 0.375rem;
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly-offer__disclaimer li:not(:last-child) {
    padding-bottom: 0.5rem;
  }
}
.monthly .monthly-offer__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.monthly .monthly-offer .monthly-offer__product-area {
  position: relative;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  width: 8.75rem;
  height: 8.75rem;
  padding: 0.5rem 0.5rem 0.875rem;
  overflow: hidden;
  border: 0.0625rem solid #cbc8c2;
  border-radius: 1.25rem;
  background-color: #fff;
}
@media (min-width: 22.5rem) and (max-width: 27.4375rem) {
  .monthly .monthly-offer .monthly-offer__product-area {
    width: 10.625rem;
    height: 10.625rem;
  }
}
@media (min-width: 27.5rem) and (max-width: 79.9375rem) {
  .monthly .monthly-offer .monthly-offer__product-area {
    width: 12.5rem;
    height: 12.5rem;
  }
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly-offer .monthly-offer__product-area {
    border-radius: 1.75rem;
  }
}
@media (min-width: 80rem) and (max-width: 89.9375rem) {
  .monthly .monthly-offer .monthly-offer__product-area {
    width: 18.75rem;
    height: 18.75rem;
    padding: 1rem 1rem 1.5rem;
  }
}
@media (min-width: 90rem) {
  .monthly .monthly-offer .monthly-offer__product-area {
    width: 21.875rem;
    height: 21.875rem;
    padding: 1rem 1rem 1.5rem;
  }
}
.monthly .monthly-offer .monthly-offer__carousel {
  position: static;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.monthly .monthly-offer .monthly-offer__carousel .swiper-wrapper {
  height: 100%;
  align-items: center;
}
.monthly .monthly-offer .monthly-offer__product-area .monthly-offer__carousel .swiper-wrapper {
  align-items: normal;
  margin-bottom: 0;
  padding-left: 0 !important;
}
.monthly .monthly-offer .monthly-offer__product-area .monthly-offer__carousel .swiper-slide {
  display: block;
  height: 100%;
}
.monthly .monthly-offer .monthly-offer__product-area .monthly-offer__carousel-link {
  display: block;
  width: 100%;
  height: calc(100% - 0.4375rem);
}
@media (min-width: 90rem) {
  .monthly .monthly-offer .monthly-offer__product-area .monthly-offer__carousel-link {
    height: 100%;
  }
}
.monthly .monthly-offer .monthly-offer__product-area .monthly-offer__carousel-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.monthly .monthly-offer .monthly-offer__carousel .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.monthly .monthly-offer .monthly-offer__carousel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.monthly .monthly-offer .monthly-offer__carousel-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.monthly .monthly-offer .monthly-offer__product-area .monthly-offer__carousel-btn {
  display: none !important;
}
.monthly .monthly-offer .monthly-offer__carousel-handler {
  position: absolute;
  left: 0;
  bottom: 0.375rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: 100%;
  margin: 0;
  pointer-events: none;
}
.monthly .monthly-offer .monthly-offer__carousel-handler > * {
  pointer-events: auto;
}
@media (min-width: 90rem) {
  .monthly .monthly-offer .monthly-offer__carousel-handler {
    bottom: 0.5rem;
  }
}
.monthly .monthly-offer .monthly-offer__product-area .monthly-offer__carousel-handler {
  height: 1rem;
  gap: 0.625rem;
}
.monthly .monthly-offer .monthly-offer__product-area .monthly-offer__carousel-pagination {
  position: static !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: auto !important;
  flex-shrink: 0;
  min-height: 1rem;
}
.monthly .monthly-offer .monthly-offer__product-area .monthly-offer__carousel-control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
}
.monthly .monthly-offer .monthly-offer__product-area .monthly-offer__carousel-control::after {
  width: 1rem;
  height: 1rem;
}
.monthly .monthly-offer .monthly-offer__carousel:has(.swiper-slide:only-child) .monthly-offer__carousel-handler {
  display: none;
}
.monthly .monthly-offer .monthly-offer__carousel-btn {
  flex-shrink: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
}
.monthly .monthly-offer .monthly-offer__carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.monthly .monthly-offer .monthly-offer__carousel-control {
  flex-shrink: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
}
.monthly .monthly-offer .monthly-offer__carousel-control::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.monthly .monthly-offer .monthly-offer__carousel-control--pause::after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 2C3.44772 2 3 2.44772 3 3V13C3 13.5523 3.44772 14 4 14H6C6.55228 14 7 13.5523 7 13V3C7 2.44772 6.55228 2 6 2H4ZM10 2C9.44772 2 9 2.44772 9 3V13C9 13.5523 9.44772 14 10 14H12C12.5523 14 13 13.5523 13 13V3C13 2.44772 12.5523 2 12 2H10Z' fill='%234A4946'/%3E%3C/svg%3E");
}
.monthly .monthly-offer .monthly-offer__carousel-control--play::after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8L6 2L6 14L14 8Z' fill='%234A4946' stroke='%234A4946' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.monthly .monthly-offer .monthly-offer__carousel-control:disabled {
  display: none;
}
.monthly .monthly-offer .monthly-offer__carousel-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  min-height: 0.5rem;
  width: auto !important;
}
.monthly .monthly-offer .monthly-offer__carousel-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 !important;
  border-radius: 0.25rem;
  background: #cbc8c2;
  opacity: 1;
  transition: width 0.3s, background-color 0.3s;
}
.monthly .monthly-offer .monthly-offer__carousel-pagination .swiper-pagination-bullet-active {
  width: 1.5rem;
  background: #ea1917;
}
.monthly .monthly-offer--type1 .monthly-offer__inner {
  max-width: 93rem;
}
@media (min-width: 48.0625rem) {
  .monthly .monthly-offer--type1 .monthly-offer__inner {
    padding-inline: 1.5rem;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__inner--large {
  max-width: 103rem;
}
.monthly .monthly-offer--type1 .monthly-offer__card--side {
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
  padding: 1.5rem 1rem;
  border-radius: 1.25rem;
  background-color: #fff;
}
@media (min-width: 64rem) {
  .monthly .monthly-offer--type1 .monthly-offer__card--side {
    flex-flow: row;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: 2.5rem;
  }
}
@media (min-width: 64rem) and (max-width: 89.9375rem) {
  .monthly .monthly-offer--type1 .monthly-offer__card--side {
    gap: 2.5rem;
    padding: 2rem;
  }
}
@media (min-width: 90rem) {
  .monthly .monthly-offer--type1 .monthly-offer__card--side {
    gap: 5rem;
    padding: 3rem 3.5rem;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__info {
  flex: 1;
  min-width: 0;
  max-width: 64rem;
}
.monthly .monthly-offer--type1 .monthly-offer__title {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  line-height: 1.1429;
  font-weight: 600;
  color: #000;
}
@media (min-width: 64rem) and (max-width: 89.9375rem) {
  .monthly .monthly-offer--type1 .monthly-offer__title {
    font-size: 3rem;
    line-height: 1;
    font-weight: 600;
  }
}
@media (min-width: 90rem) {
  .monthly .monthly-offer--type1 .monthly-offer__title {
    margin-bottom: 1rem;
    font-size: 3.5rem;
    line-height: 1.0714;
    font-weight: 600;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__date {
  margin: 0.25rem 0;
  font-size: 0.875rem;
  line-height: 1.2857;
  font-weight: 400;
}
@media (min-width: 48.0625rem) {
  .monthly .monthly-offer--type1 .monthly-offer__date {
    margin: 0.5rem 0;
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 400;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__desc {
  -webkit-line-clamp: 4;
  font-size: 0.875rem;
  line-height: 1.2857;
  font-weight: 400;
}
@media (min-width: 48.0625rem) {
  .monthly .monthly-offer--type1 .monthly-offer__desc {
    -webkit-line-clamp: 3;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 400;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__disclaimer {
  margin-top: 0.75rem;
}
@media (min-width: 48.0625rem) {
  .monthly .monthly-offer--type1 .monthly-offer__disclaimer {
    margin-top: 1.5rem;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__disclaimer li {
  font-size: 0.875rem;
  line-height: 1.1429;
  font-weight: 400;
}
@media (min-width: 48.0625rem) {
  .monthly .monthly-offer--type1 .monthly-offer__disclaimer li {
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 400;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__disclaimer li:not(:last-child) {
  padding-bottom: 0.375rem;
}
@media (min-width: 48.0625rem) {
  .monthly .monthly-offer--type1 .monthly-offer__disclaimer li:not(:last-child) {
    padding-bottom: 0.5rem;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__side {
  align-items: flex-start;
  gap: 0.5rem;
  min-width: 0;
  max-width: 100%;
}
@media (min-width: 80rem) {
  .monthly .monthly-offer--type1 .monthly-offer__side {
    gap: 1rem;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__product-area {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  align-self: flex-start;
}
.monthly .monthly-offer--type1 .monthly-offer__coupon {
  flex: 0 0 auto;
  flex-shrink: 0;
  align-self: stretch;
}
.monthly .monthly-offer--type1 .monthly-offer__sku-box {
  margin-top: 0.75rem;
}
@media (min-width: 64rem) {
  .monthly .monthly-offer--type1 .monthly-offer__sku-box {
    margin-top: 1.5rem;
  }
}
@media (min-width: 64rem) {
  .monthly .monthly-offer--type1 .monthly-offer__sku-list li {
    padding: 0.5rem 1rem;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__sku-list button,
.monthly .monthly-offer--type1 .monthly-offer__sku-list a {
  font-size: 0.75rem;
  line-height: 1.1667;
  font-weight: 600;
}
@media (min-width: 64rem) and (max-width: 89.9375rem) {
  .monthly .monthly-offer--type1 .monthly-offer__sku-list button,
  .monthly .monthly-offer--type1 .monthly-offer__sku-list a {
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 600;
  }
}
@media (min-width: 90rem) {
  .monthly .monthly-offer--type1 .monthly-offer__sku-list button,
  .monthly .monthly-offer--type1 .monthly-offer__sku-list a {
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 600;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__cta-wrap {
  gap: 0.625rem 0.5rem;
  margin-top: 0.75rem;
}
@media (min-width: 64rem) {
  .monthly .monthly-offer--type1 .monthly-offer__cta-wrap {
    gap: 0.9375rem 0.5rem;
    margin-top: 1.5rem;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__cta {
  min-width: 5rem;
  height: 2.25rem;
  padding: 0 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 600;
}
@media (min-width: 48.0625rem) {
  .monthly .monthly-offer--type1 .monthly-offer__cta {
    min-width: 6.25rem;
    height: 2.75rem;
    padding: 0 1.25rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    line-height: 1;
    font-weight: 600;
  }
}
@media (min-width: 48.0625rem) {
  .monthly .monthly-offer--type1 .monthly-offer__cta--external-link::after {
    width: 1rem;
    height: 1rem;
    background-image: url("https://www.lg.com/etc.clientlibs/lge/clientlibs/clientlib-site/resources/images/icon/icon-arrow-black-external-link-16-16.svg");
  }
}
@media (min-width: 80rem) and (max-width: 89.9375rem) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon-top p.monthly-offer__discount-value {
    font-size: 3.75rem;
    line-height: 1;
    font-weight: 700;
  }
  .monthly .monthly-offer--type1 .monthly-offer__coupon-top p.monthly-offer__discount-value span {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 700;
  }
}
@media (min-width: 90rem) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon-top p.monthly-offer__discount-value {
    font-size: 5rem;
    line-height: 1;
    font-weight: 700;
  }
  .monthly .monthly-offer--type1 .monthly-offer__coupon-top p.monthly-offer__discount-value span {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 700;
  }
}
@media (min-width: 90rem) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon-top p:not(.monthly-offer__discount-value) {
    font-size: 1.5rem;
    line-height: 1.1667;
    font-weight: 600;
  }
}
@media (min-width: 80rem) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon-expired p {
    padding: 1.5rem;
    border-radius: 1.75rem;
    font-size: 1.5rem;
    line-height: 1.1667;
    font-weight: 600;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__side {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-shrink: 1;
  min-width: 0;
  max-width: 100%;
}
@media (min-width: 80rem) {
  .monthly .monthly-offer--type1 .monthly-offer__side {
    gap: 1rem;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__coupon {
  position: relative;
  flex: 0 0 auto;
  flex-shrink: 0;
  align-self: stretch;
  width: 6.75rem;
  text-align: center;
  border-radius: 1.25rem;
  box-sizing: border-box;
  max-height: 100%;
}
@media (min-width: 22.5rem) and (max-width: 27.4375rem) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon {
    width: 7.375rem;
  }
}
@media (min-width: 27.5rem) and (max-width: 63.9375rem) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon {
    width: 10.5rem;
  }
}
@media all and (min-width: 48.0625rem) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon {
    border-radius: 1.75rem;
  }
}
@media (min-width: 64rem) and (max-width: 79.9375rem) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon {
    min-width: 8.6875rem;
    width: 8.6875rem;
  }
}
@media (min-width: 80rem) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon {
    width: 15rem;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__coupon--red {
  color: #fff;
  background: #c72c48;
}
.monthly .monthly-offer--type1 .monthly-offer__coupon--red .monthly-offer__coupon-top::before, .monthly .monthly-offer--type1 .monthly-offer__coupon--red .monthly-offer__coupon-top::after {
  background-color: #fff;
}
.monthly .monthly-offer--type1 .monthly-offer__coupon--red .monthly-offer__copy-btn {
  background: #262626;
  border-color: #262626;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon--red .monthly-offer__copy-btn:hover {
    background: #fff;
    border-color: #646464;
    color: #000;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__coupon--red .monthly-offer__coupon-bottom {
  border-top: 0.125rem dashed rgba(0, 0, 0, 0.1);
}
.monthly .monthly-offer--type1 .monthly-offer__coupon-inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  overflow: hidden;
}
.monthly .monthly-offer--type1 .monthly-offer__coupon-top {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  padding: 0.5rem 1.25rem 0.625rem;
  border-radius: 1rem 1rem 0 0;
  box-sizing: border-box;
}
.monthly .monthly-offer--type1 .monthly-offer__coupon-top::before, .monthly .monthly-offer--type1 .monthly-offer__coupon-top::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  z-index: 1;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #fff;
}
.monthly .monthly-offer--type1 .monthly-offer__coupon-top::before {
  left: -0.5rem;
}
.monthly .monthly-offer--type1 .monthly-offer__coupon-top::after {
  right: -0.5rem;
}
.monthly .monthly-offer--type1 .monthly-offer__coupon-top p:not(.monthly-offer__discount-value) {
  margin: 0;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
}
@media (min-width: 80rem) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon-top {
    flex: 1 1 0;
    min-height: 0;
    height: auto;
    padding: 2rem 1.25rem;
    border-radius: 1.75rem 1.75rem 0 0;
    box-sizing: border-box;
  }
  .monthly .monthly-offer--type1 .monthly-offer__coupon-top::before, .monthly .monthly-offer--type1 .monthly-offer__coupon-top::after {
    width: 2rem;
    height: 2rem;
    bottom: -1rem;
  }
  .monthly .monthly-offer--type1 .monthly-offer__coupon-top::before {
    left: -1rem;
  }
  .monthly .monthly-offer--type1 .monthly-offer__coupon-top::after {
    right: -1rem;
  }
}
@media (min-width: 90rem) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon-top p:not(.monthly-offer__discount-value) {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.1667;
  }
}
@media (max-width: 79.9375rem) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon-top {
    min-height: 4.0625rem;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__coupon-top p.monthly-offer__discount-value {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.1429;
  font-weight: 700;
}
.monthly .monthly-offer--type1 .monthly-offer__coupon-top p.monthly-offer__discount-value span {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
}
@media (min-width: 80rem) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon-top p.monthly-offer__discount-value {
    font-size: 3.75rem;
    line-height: 1;
    font-weight: 700;
  }
  .monthly .monthly-offer--type1 .monthly-offer__coupon-top p.monthly-offer__discount-value span {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 700;
  }
}
@media (min-width: 90rem) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon-top p.monthly-offer__discount-value {
    font-size: 5rem;
    line-height: 1;
    font-weight: 700;
  }
  .monthly .monthly-offer--type1 .monthly-offer__coupon-top p.monthly-offer__discount-value span {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 700;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__coupon-bottom {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  flex-shrink: 1;
  min-height: 5.625rem;
  padding: 0.625rem 0.5rem 0.5rem;
  border-top: 0.125rem dashed #cbc8c2;
  border-radius: 0 0 1rem 1rem;
  box-sizing: border-box;
}
.monthly .monthly-offer--type1 .monthly-offer__coupon-bottom p:not(.monthly-offer__coupon-code) {
  margin: 0;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 0.75rem;
}
@media (min-width: 80rem) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon-bottom {
    flex: 0 0 9.75rem;
    flex-shrink: 0;
    min-height: 9.75rem;
    height: 9.75rem;
    padding: 1.5rem;
    border-radius: 0 0 1.75rem 1.75rem;
    box-sizing: border-box;
  }
  .monthly .monthly-offer--type1 .monthly-offer__coupon-bottom p:not(.monthly-offer__coupon-code) {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
@media (max-width: 47.9375rem) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon-top {
    border-radius: 1.25rem 1.25rem 0 0;
  }
  .monthly .monthly-offer--type1 .monthly-offer__coupon-bottom {
    border-radius: 0 0 1.25rem 1.25rem;
  }
  .monthly .monthly-offer--type1 .monthly-offer__coupon-expired p {
    border-radius: 1.25rem;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__coupon-bottom p.monthly-offer__coupon-code {
  margin: 0;
  width: 100%;
  text-align: center;
  word-break: break-all;
  font-size: 0.75rem;
  line-height: 0.875rem;
  font-weight: 600;
}
@media (min-width: 80rem) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon-bottom p.monthly-offer__coupon-code {
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-weight: 600;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__coupon-btn {
  width: 100%;
  margin-top: 0.5rem;
}
@media (min-width: 80rem) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon-btn {
    margin-top: 1rem;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.25rem;
  margin: 0;
  padding: 0 0.625rem;
  border: 0.0625rem solid #262626;
  border-radius: 0.25rem;
  background: #262626;
  color: #fff;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 0.875rem;
  font-weight: 600;
}
.monthly .monthly-offer--type1 .monthly-offer__copy-btn .monthly-offer__copy-label {
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .monthly .monthly-offer--type1 .monthly-offer__copy-btn:hover {
    background: #fff;
    border-color: #646464;
    color: #000;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__copy-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
@media (min-width: 48.0625rem) {
  .monthly .monthly-offer--type1 .monthly-offer__copy-btn {
    height: 2.75rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    line-height: 1rem;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__coupon-expired {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  border-radius: inherit;
}
.monthly .monthly-offer--type1 .monthly-offer__coupon-expired p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0;
  padding: 1rem;
  text-align: center;
  border-radius: 1rem;
  backdrop-filter: blur(0.9375rem);
  -webkit-backdrop-filter: blur(0.9375rem);
  background-color: rgba(244, 244, 244, 0.8);
  color: #000;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 600;
}
@media (min-width: 80rem) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon-expired p {
    padding: 1.5rem;
    border-radius: 1.75rem;
    font-size: 1.5rem;
    line-height: 1.1667;
    font-weight: 600;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__coupon--white {
  color: #000;
  background: #fff;
}
.monthly .monthly-offer--type1 .monthly-offer__coupon--white .monthly-offer__coupon-top,
.monthly .monthly-offer--type1 .monthly-offer__coupon--white .monthly-offer__coupon-bottom {
  background-color: #fff;
}
.monthly .monthly-offer--type1 .monthly-offer__coupon--white .monthly-offer__coupon-top {
  border: 0.0625rem solid #cbc8c2;
  border-bottom: none;
}
.monthly .monthly-offer--type1 .monthly-offer__coupon--white .monthly-offer__coupon-top::before, .monthly .monthly-offer--type1 .monthly-offer__coupon--white .monthly-offer__coupon-top::after {
  border: 0.0625rem solid #cbc8c2;
}
.monthly .monthly-offer--type1 .monthly-offer__coupon--white .monthly-offer__coupon-bottom {
  border: 0.0625rem solid #cbc8c2;
  border-top: 0.125rem dashed #cbc8c2;
}
.monthly .monthly-offer--type1 .monthly-offer__coupon--white .monthly-offer__copy-btn {
  background: #ea1917;
  border-color: #ea1917;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .monthly .monthly-offer--type1 .monthly-offer__coupon--white .monthly-offer__copy-btn:hover {
    opacity: 0.92;
  }
}
.monthly .monthly-offer--type1.is-expired .monthly-offer__coupon-inner {
  pointer-events: none;
}
.monthly .monthly-offer--type1:not(.is-expired) .monthly-offer__coupon-expired {
  display: none;
}
.monthly .monthly-offer--type1 .monthly-offer__sku-list {
  display: none;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.monthly .monthly-offer--type1 .monthly-offer__sku-list:only-child, .monthly .monthly-offer--type1 .monthly-offer__sku-list.is-active {
  display: flex;
}
.monthly .monthly-offer--type1 .monthly-offer__sku-list li {
  display: flex;
  align-items: center;
  padding: 0.3125rem 0.75rem;
  border-radius: 6.25rem;
  border: 0.0625rem solid #cbc8c2;
  background: rgba(0, 0, 0, 0.05);
}
.monthly .monthly-offer--type1 .monthly-offer__sku-list button,
.monthly .monthly-offer--type1 .monthly-offer__sku-list a {
  border: 0;
  background: transparent;
  color: #333;
  text-decoration: none;
  cursor: pointer;
}
.monthly .monthly-offer--type1 .monthly-offer__sku-list button:focus-visible,
.monthly .monthly-offer--type1 .monthly-offer__sku-list a:focus-visible {
  outline: 0.125rem solid #000;
  outline-offset: 0.4375rem;
  border-radius: 6.25rem;
}
@media (max-width: 63.9375rem) {
  .monthly .monthly-offer--type1 .monthly-offer__card--side:not(:has(.monthly-offer__coupon)) {
    flex-flow: column-reverse;
  }
}
@media (max-width: 63.9375rem) {
  .monthly .monthly-offer--type1 .monthly-offer__side:not(:has(.monthly-offer__coupon)) {
    justify-content: center;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__side:not(:has(.monthly-offer__coupon)) .monthly-offer__product-area {
  border: none;
}
.monthly .monthly-offer--type1 .monthly-offer__cta-wrap {
  display: flex;
  flex-wrap: wrap;
}
.monthly .monthly-offer--type1 .monthly-offer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.0625rem solid #94928d;
  background: #fff;
  color: #000;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .monthly .monthly-offer--type1 .monthly-offer__cta:hover {
    opacity: 0.9;
  }
}
.monthly .monthly-offer--type1 .monthly-offer__cta--highlight {
  border-color: #ea1917;
  background: #ea1917;
  color: #fff;
}
.monthly .monthly-offer--type1 .monthly-offer__cta--external-link {
  column-gap: 0.25rem;
}
.monthly .monthly-offer--type1 .monthly-offer__cta--external-link::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  background: url("https://www.lg.com/etc.clientlibs/lge/clientlibs/clientlib-site/resources/images/icon/icon-arrow-black-external-link-12-12.svg") center/contain no-repeat;
}

/* handling */
@keyframes monthly-scroll-float {
  from {
    translate: var(--float-from-x, 0) var(--float-from-y, 0);
  }
  to {
    translate: var(--float-to-x, 1rem) var(--float-to-y, 1rem);
  }
}
@keyframes monthly-image-reveal-load {
  from {
    opacity: 0;
    transform: translate3d(var(--reveal-from-x, 0), var(--reveal-from-y, 8%), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(var(--reveal-to-x, 0), var(--reveal-to-y, 0), 0);
  }
}
@keyframes handling-wheel-rotate {
  from {
    rotate: -90deg;
  }
  to {
    rotate: 180deg;
  }
}
.monthly__section--handling .handling__header {
  position: relative;
  z-index: 1;
  margin-block-start: 13.8888888889vw;
  padding-block-end: 8.125rem;
  background-color: #000;
  background-image: url("/content/dam/channel/wcms/cz/2026-monthly-lg/26-aug/feature/images/mobile/monthly-lg-2026-aug-cz-03-handling-header-background-bottom-mobile.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 8.125rem;
  margin-block-end: 6.25rem;
}
.monthly__section--handling .handling__header::before {
  content: "";
  display: block;
  width: 100%;
  height: 13.8888888889vw;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-block-end: -1px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-image: url("/content/dam/channel/wcms/cz/2026-monthly-lg/26-aug/feature/images/mobile/monthly-lg-2026-aug-cz-03-handling-divider-mobile.png");
}
@media (min-width: 64rem) {
  .monthly__section--handling .handling__header {
    margin-block-start: 5.5rem;
    padding-block-end: 0;
    background-image: url("/content/dam/channel/wcms/cz/2026-monthly-lg/26-aug/feature/images/desktop/monthly-lg-2026-aug-cz-03-handling-header-background-bottom-desktop.png");
    background-size: 100% 6.1875rem;
  }
  .monthly__section--handling .handling__header::before {
    width: 100%;
    max-width: 100%;
    height: 5.5rem;
    background-image: url("/content/dam/channel/wcms/cz/2026-monthly-lg/26-aug/feature/images/desktop/monthly-lg-2026-aug-cz-03-handling-divider-desktop.png");
  }
}
@media (min-width: 160rem) {
  .monthly__section--handling .handling__header {
    margin-block-start: 3.4375vw;
  }
  .monthly__section--handling .handling__header::before {
    height: 3.4375vw;
  }
}
.monthly__section--handling .handling__header .monthly__container {
  position: relative;
  z-index: 1;
}
.monthly__section--handling .handling__header-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-block: 1.25rem 0;
}
.monthly__section--handling .handling__header-content .monthly__title {
  color: #fff;
}
@media (min-width: 64rem) {
  .monthly__section--handling .handling__header-content {
    position: relative;
    flex-direction: row;
    align-items: start;
    gap: 2.5rem;
    padding-block: 6.25rem 11.1875rem;
    padding-inline-end: 37.5rem;
  }
  .monthly__section--handling .handling__header-content .monthly__title {
    flex: 1;
    text-align: left;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--handling .handling__header-content {
    padding-inline-end: 52.5rem;
  }
  .monthly__section--handling .handling__header-content .monthly__title {
    padding-block-end: 5rem;
  }
}
.monthly__section--handling .handling__header-image {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-inline: auto;
  margin-block-end: -12.5rem;
  overflow: hidden;
  border-radius: 50% 50% 0 0;
  aspect-ratio: 1.2148148148;
  transform: translateY(-3.625rem);
}
.monthly__section--handling .handling__header-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 64rem) {
  .monthly__section--handling .handling__header-image {
    position: absolute;
    bottom: -6.25rem;
    right: 0;
    width: 35rem;
    max-width: none;
    margin-inline: 0;
    margin-block-end: 0;
    transform: none;
    aspect-ratio: 1.2158054711;
  }
}
@media (min-width: 80rem) {
  .monthly__section--handling .handling__header-image {
    bottom: -6.25rem;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--handling .handling__header-image {
    bottom: -6.25rem;
    width: 50rem;
  }
}
.monthly__section--handling .handling__body {
  --color-text: #000;
  --color-highlight-color: #3856ea;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  margin-block-start: 2.5rem;
}
@media (min-width: 64rem) {
  .monthly__section--handling .handling__body {
    padding-block-start: clamp(2.5rem, 5.376344086vw, 5rem);
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--handling .handling__body {
    margin-block-start: 0rem;
  }
}
.monthly__section--handling .handling__body .handwriting {
  position: relative;
  max-width: 60rem;
  margin-inline: auto;
  padding-inline: 2.125rem 2.375rem;
  margin-block-start: 2.5rem;
}
.monthly__section--handling .handling__body .handwriting .i-quote--left {
  margin-block-end: 0.5rem;
}
.monthly__section--handling .handling__body .handwriting .i-quote--right {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--handling .handling__body .handwriting {
    max-width: clamp(42.5rem, 64.5161290323vw, 60rem);
    padding-inline: clamp(3rem, 5.1075268817vw, 4.75rem);
  }
}
@media (min-width: 64rem) {
  .monthly__section--handling .handling__body .handwriting {
    margin-block-start: 3.5rem;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--handling .handling__body .handwriting {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 60rem;
    margin-block-start: 5rem;
    padding-inline: 0;
  }
  .monthly__section--handling .handling__body .handwriting .i-quote--left {
    margin-block-end: 0;
  }
  .monthly__section--handling .handling__body .handwriting .i-quote--right {
    position: static;
    margin-inline-start: auto;
  }
}
.monthly__section--handling .handling__body-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 64rem) {
  .monthly__section--handling .handling__body-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 3.5rem;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--handling .handling__body-content {
    gap: 5rem;
  }
}
.monthly__section--handling .handling__body-media {
  position: relative;
  width: 100%;
}
@media (min-width: 64rem) {
  .monthly__section--handling .handling__body-media {
    flex: 0 0 39.0625vw;
    max-width: 25rem;
    margin-inline-start: 0;
  }
}
@media (min-width: 80rem) {
  .monthly__section--handling .handling__body-media {
    flex: 0 0 35rem;
    max-width: 35rem;
    margin-inline-start: 0;
  }
}
.monthly__section--handling .handling__body-media .monthly__image--1 {
  position: absolute;
  z-index: 2;
  --float-distance: 2rem;
  width: min(21.6666666667vw, 156px);
  aspect-ratio: 156/159.961;
  top: calc(8.3333333333vw - calc(var(--float-to-y, 0px) / 2));
  left: calc(11.1111111111vw - calc(var(--float-to-x, 0px) / 2));
  pointer-events: none;
}
.monthly__section--handling .handling__body-media .monthly__image--1 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  rotate: 30deg;
}
@supports (animation-timeline: view()) {
  .monthly__section--handling .handling__body-media .monthly__image--1 img {
    animation: handling-wheel-rotate linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .monthly__section--handling .handling__body-media .monthly__image--1 img {
    animation: none;
    rotate: 30deg;
  }
}
@media (min-width: 64rem) {
  .monthly__section--handling .handling__body-media .monthly__image--1 {
    --float-distance: 4rem;
    width: 9.75rem;
    top: calc(2rem - calc(var(--float-to-y, 0px) / 2));
    left: calc(-5rem - calc(var(--float-to-x, 0px) / 2));
  }
}
.monthly__section--handling .handling__body-image {
  margin-inline-start: min(27.7777777778vw, 200px);
  width: calc(100% - min(27.7777777778vw, 200px));
  aspect-ratio: 1.6486486486;
  overflow: hidden;
}
.monthly__section--handling .handling__body-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 64rem) {
  .monthly__section--handling .handling__body-image {
    width: 100%;
    margin-inline-start: 0;
    aspect-ratio: 1.6470588235;
  }
}
.monthly__section--handling .handling__body-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.monthly__section--handling .handling__body-text .highlight {
  color: var(--color-highlight-color);
  font-weight: 700;
  text-underline-offset: 0.125rem;
}
.monthly__section--handling .handling__body-text > p:first-child {
  padding-inline-end: 0.625rem;
}
@media all and (min-width: 26.25rem) {
  .monthly__section--handling .handling__body-text > p:first-child {
    padding-inline-end: 1.25rem;
  }
}
@media (min-width: 64rem) {
  .monthly__section--handling .handling__body-text {
    flex: 1;
    min-width: 0;
    gap: 1.0625rem;
  }
  .monthly__section--handling .handling__body-text > p:first-child {
    padding-inline-end: 2.5rem;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--handling .handling__body-text {
    gap: 1.5rem;
  }
}
.monthly__section--handling .handling__body-mid {
  position: relative;
}
@media all and (min-width: 26.25rem) {
  .monthly__section--handling .handling__body-mid {
    min-height: 2.1875rem;
  }
}
@media (min-width: 64rem) {
  .monthly__section--handling .handling__body-mid {
    min-height: 3.5rem;
  }
}
.monthly__section--handling .handling__body-mid > p {
  padding-inline-end: min(25vw, 120px);
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--handling .handling__body-mid > p {
    padding-inline-end: 10rem;
  }
}
@media (min-width: 64rem) {
  .monthly__section--handling .handling__body-mid > p {
    padding-inline-end: 9.375rem;
  }
}
.monthly__section--handling .handling__body-mid .monthly__image--2 {
  position: absolute;
  z-index: 2;
  --float-distance: 1rem;
  top: calc(-0.8125rem - calc(var(--float-to-y, 0px) / 2));
  right: calc(-0.9375rem + calc(var(--float-to-x, 0px) / 2));
  width: min(13.6111111111vw, 49px);
  aspect-ratio: 97.71/110.04;
  translate: 0 -50%;
  rotate: 33.441deg;
  pointer-events: none;
}
.monthly__section--handling .handling__body-mid .monthly__image--2 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media all and (max-width: 26.25rem) {
  .monthly__section--handling .handling__body-mid .monthly__image--2 {
    top: calc(0rem - calc(var(--float-to-y, 0px) / 2));
    right: calc(0rem + calc(var(--float-to-x, 0px) / 2));
  }
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--handling .handling__body-mid .monthly__image--2 {
    width: 3rem;
    top: calc(-0.625rem - calc(var(--float-to-y, 0px) / 2));
    right: calc(-0.75rem + calc(var(--float-to-x, 0px) / 2));
  }
}
@media (min-width: 64rem) {
  .monthly__section--handling .handling__body-mid .monthly__image--2 {
    --float-distance: 1.5rem;
    top: calc(-0.5rem - calc(var(--float-to-y, 0px) / 2));
    right: calc(-1rem + calc(var(--float-to-x, 0px) / 2));
    width: 4.25rem;
  }
}
@media (min-width: 80rem) {
  .monthly__section--handling .handling__body-mid .monthly__image--2 {
    top: calc(-0.9375rem - calc(var(--float-to-y, 0px) / 2));
    right: calc(0.5rem + calc(var(--float-to-x, 0px) / 2));
    width: 3.5rem;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--handling .handling__body-mid .monthly__image--2 {
    --float-distance: 2rem;
    top: calc(-2.5rem - calc(var(--float-to-y, 0px) / 2));
    right: calc(-1.5rem + calc(var(--float-to-x, 0px) / 2));
    width: 6.0625rem;
  }
}

/* intro */
@keyframes monthly-scroll-float {
  from {
    translate: var(--float-from-x, 0) var(--float-from-y, 0);
  }
  to {
    translate: var(--float-to-x, 1rem) var(--float-to-y, 1rem);
  }
}
@keyframes monthly-image-reveal-load {
  from {
    opacity: 0;
    transform: translate3d(var(--reveal-from-x, 0), var(--reveal-from-y, 8%), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(var(--reveal-to-x, 0), var(--reveal-to-y, 0), 0);
  }
}
.monthly__section--intro .intro__body {
  --color-headline: #000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-block: 0 2.5rem;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--intro .intro__body {
    gap: clamp(1.5rem, 4.3010752688vw, 4rem);
    padding-block: clamp(1.25rem, 2.688172043vw, 2.5rem) clamp(3.75rem, 6.7204301075vw, 6.25rem);
  }
}
@media (min-width: 64rem) {
  .monthly__section--intro .intro__body {
    flex-direction: row;
    gap: clamp(3rem, 5.376344086vw, 5rem);
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--intro .intro__body {
    flex-direction: row;
    gap: 5rem;
    padding-block: 2.5rem 6.25rem;
  }
}
.monthly__section--intro .intro__body-image {
  width: 76.6666666667vw;
  margin-inline: auto;
  position: relative;
}
.monthly__section--intro .intro__body-image .monthly__image--1 {
  aspect-ratio: 552/552;
}
.monthly__section--intro .intro__body-image .monthly__image--2 {
  width: 15vw;
  aspect-ratio: 106/125;
  position: absolute;
  rotate: 16.565deg;
  top: calc(-1rem - calc(var(--float-to-y, 0px) / 2));
  right: calc(0.25rem + calc(var(--float-to-x, 0px) / 2));
  pointer-events: none;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--intro .intro__body-image {
    max-width: 30rem;
  }
  .monthly__section--intro .intro__body-image .monthly__image--2 {
    width: clamp(5.625rem, 7.7956989247vw, 7.25rem);
  }
}
@media (min-width: 64rem) {
  .monthly__section--intro .intro__body-image {
    flex: 0 0 clamp(21.25rem, 26.8817204301vw, 25rem);
    margin-inline: 0;
  }
  .monthly__section--intro .intro__body-image .monthly__image--2 {
    width: clamp(4.5rem, 5.376344086vw, 5rem);
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--intro .intro__body-image {
    flex: 0 0 34.5rem;
    width: 34.5rem;
    max-width: 34.5rem;
  }
  .monthly__section--intro .intro__body-image .monthly__image--2 {
    width: 6.625rem;
    top: calc(-1rem - calc(var(--float-to-y, 0px) / 2));
    right: calc(0.25rem + calc(var(--float-to-x, 0px) / 2));
  }
}
.monthly__section--intro .intro__body-content {
  margin-block-start: 0.75rem;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--intro .intro__body-content {
    width: 100%;
    margin-block-start: 0;
    margin-inline: auto;
  }
}
@media (min-width: 64rem) {
  .monthly__section--intro .intro__body-content {
    max-width: none;
    margin-inline: 0;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--intro .intro__body-content {
    max-width: none;
    margin-block-start: 0;
    margin-inline: 0;
  }
}
.monthly__section--intro .intro__body-content .monthly__text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-block-start: 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 600;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--intro .intro__body-content .monthly__text {
    gap: clamp(1rem, 1.6129032258vw, 1.5rem);
    margin-block-start: clamp(1rem, 1.6129032258vw, 1.5rem);
    font-size: 1.5rem;
    line-height: 1.1667;
    font-weight: 600;
  }
}
@media (min-width: 64rem) {
  .monthly__section--intro .intro__body-content .monthly__text {
    gap: 1.25rem;
    margin-block-start: 1.25rem;
    font-size: 1.5rem;
    line-height: 1.3333;
    font-weight: 600;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--intro .intro__body-content .monthly__text {
    gap: 1.5rem;
    margin-block-start: 1.5rem;
    font-size: 1.75rem;
    line-height: 1.2857;
    font-weight: 600;
  }
}

/* keyvisual */
@keyframes monthly-scroll-float {
  from {
    translate: var(--float-from-x, 0) var(--float-from-y, 0);
  }
  to {
    translate: var(--float-to-x, 1rem) var(--float-to-y, 1rem);
  }
}
@keyframes monthly-image-reveal-load {
  from {
    opacity: 0;
    transform: translate3d(var(--reveal-from-x, 0), var(--reveal-from-y, 8%), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(var(--reveal-to-x, 0), var(--reveal-to-y, 0), 0);
  }
}
.monthly__section--keyvisual {
  overflow: hidden;
}
.monthly__section--keyvisual .keyvisual__bg .monthly__image {
  position: absolute;
}
.monthly__section--keyvisual .keyvisual__bg .monthly__image img {
  width: 100%;
}
.monthly__section--keyvisual .keyvisual__header {
  --color-text: #fff;
  --color-highlight-color: #f3ff44;
  padding-block: 34.7222222222vw 16.6666666667vw;
  background-color: #000;
  position: relative;
}
.monthly__section--keyvisual .keyvisual__header [data-split=lines] .split-line {
  padding-block-end: 0.2em;
  margin-block-end: -0.2em;
}
.monthly__section--keyvisual .keyvisual__header::after {
  content: "";
  display: block;
  width: 100%;
  height: 13.8888888889vw;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-block-start: -1px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-image: url("/content/dam/channel/wcms/cz/2026-monthly-lg/26-aug/feature/images/mobile/monthly-lg-2026-aug-cz-01-keyvisual-divider-mobile.png");
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--keyvisual .keyvisual__header {
    padding-block: clamp(11.25rem, 14.7849462366vw, 13.75rem) clamp(6.25rem, 9.4086021505vw, 8.75rem);
  }
  .monthly__section--keyvisual .keyvisual__header::after {
    width: 100%;
    max-width: 100%;
    height: 5.5rem;
    background-image: url("/content/dam/channel/wcms/cz/2026-monthly-lg/26-aug/feature/images/desktop/monthly-lg-2026-aug-cz-01-keyvisual-divider-desktop.png");
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--keyvisual .keyvisual__header {
    padding-block: 7.5rem 10rem;
  }
  .monthly__section--keyvisual .keyvisual__header::after {
    width: 100%;
    max-width: 100%;
    height: 5.5rem;
    background-image: url("/content/dam/channel/wcms/cz/2026-monthly-lg/26-aug/feature/images/desktop/monthly-lg-2026-aug-cz-01-keyvisual-divider-desktop.png");
  }
}
@media (min-width: 160rem) {
  .monthly__section--keyvisual .keyvisual__header::after {
    height: 3.4375vw;
  }
}
.monthly__section--keyvisual .keyvisual__header .keyvisual__bg .monthly__image img {
  width: 100%;
}
.monthly__section--keyvisual .keyvisual__header .keyvisual__bg .monthly__image--1 {
  width: 69.1666666667vw;
  max-width: 31.125rem;
  aspect-ratio: 498/353;
  top: -15.5555555556vw;
  left: -10.5555555556vw;
}
.monthly__section--keyvisual .keyvisual__header .keyvisual__bg .monthly__image--2, .monthly__section--keyvisual .keyvisual__header .keyvisual__bg .monthly__image--3 {
  --float-distance: 1rem;
  animation-range: exit 0% exit 100%;
  pointer-events: none;
}
.monthly__section--keyvisual .keyvisual__header .keyvisual__bg .monthly__image--2 {
  width: 18.0555555556vw;
  max-width: 8.125rem;
  aspect-ratio: 152/157;
  top: calc(7.2222222222vw - calc(var(--float-to-y, 0px) / 2));
  left: calc(46.9444444444vw - calc(var(--float-to-x, 0px) / 2));
  rotate: 158deg;
}
.monthly__section--keyvisual .keyvisual__header .keyvisual__bg .monthly__image--3 {
  width: 16.6666666667vw;
  max-width: 7.5rem;
  aspect-ratio: 140/118;
  top: calc(13.8888888889vw - calc(var(--float-to-y, 0px) / 2));
  left: calc(62.2222222222vw - calc(var(--float-to-x, 0px) / 2));
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--keyvisual .keyvisual__header .keyvisual__bg .monthly__image--1 {
    width: clamp(22.5rem, 37.6344086022vw, 35rem);
    max-width: initial;
    top: clamp(-6.25rem, -8.064516129vw, -3.75rem);
    left: clamp(-6.25rem, -5.376344086vw, -2rem);
  }
  .monthly__section--keyvisual .keyvisual__header .keyvisual__bg .monthly__image--2, .monthly__section--keyvisual .keyvisual__header .keyvisual__bg .monthly__image--3 {
    --float-distance: 1.5rem;
    animation-range: exit 0% exit 100%;
  }
  .monthly__section--keyvisual .keyvisual__header .keyvisual__bg .monthly__image--2 {
    width: clamp(5.625rem, 9.4086021505vw, 8.75rem);
    max-width: initial;
    left: initial;
    top: calc(clamp(4.375rem, 6.7204301075vw, 6.25rem) - calc(var(--float-to-y, 0px) / 2));
    right: calc(clamp(5rem, 9.6774193548vw, 11.5rem) + calc(var(--float-to-x, 0px) / 2));
  }
  .monthly__section--keyvisual .keyvisual__header .keyvisual__bg .monthly__image--3 {
    width: clamp(5rem, 8.7365591398vw, 8.125rem);
    max-width: initial;
    left: initial;
    top: calc(clamp(6.875rem, 10.0806451613vw, 9.375rem) - calc(var(--float-to-y, 0px) / 2));
    right: calc(clamp(0.5rem, 1.6129032258vw, 3.5rem) + calc(var(--float-to-x, 0px) / 2));
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--keyvisual .keyvisual__header .keyvisual__bg .monthly__image--1 {
    width: 46.25rem;
    top: -11rem;
    left: calc(50% - 960 / 16 * 1rem - 210 / 16 * 1rem);
  }
  .monthly__section--keyvisual .keyvisual__header .keyvisual__bg .monthly__image--2 {
    width: 9.5rem;
    left: initial;
    top: calc(6.25rem - calc(var(--float-to-y, 0px) / 2));
    right: calc(calc(50% - 960 / 16 * 1rem + 320 / 16 * 1rem) + calc(var(--float-to-x, 0px) / 2));
  }
  .monthly__section--keyvisual .keyvisual__header .keyvisual__bg .monthly__image--3 {
    width: 8.75rem;
    left: initial;
    top: calc(10rem - calc(var(--float-to-y, 0px) / 2));
    right: calc(calc(50% - 960 / 16 * 1rem + 204 / 16 * 1rem) + calc(var(--float-to-x, 0px) / 2));
  }
}
.monthly__section--keyvisual .keyvisual__header-content {
  max-width: 30rem;
  margin-inline: auto;
  text-align: center;
}
.monthly__section--keyvisual .keyvisual__header-content .monthly__title {
  margin-block-start: 0.25rem;
  padding-inline: 4.4444444444vw;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 800;
}
.monthly__section--keyvisual .keyvisual__header-content .monthly__text {
  margin-block-start: 0.75rem;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--keyvisual .keyvisual__header-content {
    max-width: 59.2592592593vw;
  }
  .monthly__section--keyvisual .keyvisual__header-content .monthly__title {
    margin-block-start: clamp(0.375rem, 0.5376344086vw, 0.5rem);
    padding-inline: 0;
    font-size: 4rem;
    line-height: 1;
    font-weight: 800;
  }
  .monthly__section--keyvisual .keyvisual__header-content .monthly__text {
    margin-block-start: clamp(0.75rem, 1.0752688172vw, 1rem);
  }
}
@media (min-width: 64rem) {
  .monthly__section--keyvisual .keyvisual__header-content {
    max-width: 48.3870967742vw;
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--keyvisual .keyvisual__header-content {
    max-width: 55rem;
  }
  .monthly__section--keyvisual .keyvisual__header-content .monthly__title {
    margin-block-start: 0.5rem;
    padding-inline: 0;
    font-size: 6.25rem;
    line-height: 1;
    font-weight: 800;
  }
  .monthly__section--keyvisual .keyvisual__header-content .monthly__text {
    margin-block-start: 1rem;
  }
}
.monthly__section--keyvisual .keyvisual__body {
  --color-headline: #000;
  padding-block: 63.3333333333vw 2.5rem;
  position: relative;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--keyvisual .keyvisual__body {
    padding-block: clamp(11.25rem, 20.1612903226vw, 18.75rem) clamp(2.5rem, 5.376344086vw, 5rem);
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--keyvisual .keyvisual__body {
    padding-block: 14.25rem 6.25rem;
  }
}
.monthly__section--keyvisual .keyvisual__body .keyvisual__bg .monthly__image--1 {
  width: 98.8888888889vw;
  max-width: 44.5rem;
  aspect-ratio: 712/509;
  top: -13.8888888889vw;
  right: -15.5555555556vw;
}
.monthly__section--keyvisual .keyvisual__body .keyvisual__bg .monthly__image--2 {
  width: 30.5555555556vw;
  max-width: 13.75rem;
  aspect-ratio: 220/168;
  top: calc(26.3888888889vw - calc(var(--float-to-y, 0px) / 2));
  left: calc(5.5555555556vw - calc(var(--float-to-x, 0px) / 2));
  pointer-events: none;
}
.monthly__section--keyvisual .keyvisual__body .keyvisual__bg .monthly__image--3 {
  aspect-ratio: 260/171;
  pointer-events: none;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--keyvisual .keyvisual__body .keyvisual__bg .monthly__image--1 {
    width: clamp(26.25rem, 45.6989247312vw, 42.5rem);
    max-width: initial;
    top: clamp(-6.25rem, -8.064516129vw, -3.75rem);
    right: clamp(-5rem, -3.2258064516vw, -1rem);
  }
  .monthly__section--keyvisual .keyvisual__body .keyvisual__bg .monthly__image--2 {
    width: clamp(10rem, 17.4731182796vw, 16.25rem);
    max-width: initial;
    aspect-ratio: 220/168;
    top: calc(clamp(-3.75rem, -5.376344086vw, -1.5rem) - calc(var(--float-to-y, 0px) / 2));
    left: calc(clamp(1rem, 2.688172043vw, 5rem) - calc(var(--float-to-x, 0px) / 2));
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--keyvisual .keyvisual__body .keyvisual__bg .monthly__image--1 {
    width: 59.3125rem;
    top: -11.75rem;
    right: calc(50% - 960 / 16 * 1rem - 109 / 16 * 1rem);
  }
  .monthly__section--keyvisual .keyvisual__body .keyvisual__bg .monthly__image--2 {
    width: 19.5rem;
    aspect-ratio: 220/168;
    top: calc(-9.375rem - calc(var(--float-to-y, 0px) / 2));
    left: calc(calc(50% - 960 / 16 * 1rem + 160 / 16 * 1rem) - calc(var(--float-to-x, 0px) / 2));
  }
  .monthly__section--keyvisual .keyvisual__body .keyvisual__bg .monthly__image--3 {
    width: 18.1875rem;
    rotate: -34deg;
    right: calc(calc(50% - 960 / 16 * 1rem + 112 / 16 * 1rem) + calc(var(--float-to-x, 0px) / 2));
    bottom: calc(10rem + calc(var(--float-to-y, 0px) / 2));
  }
}
.monthly__section--keyvisual .keyvisual__body-content .monthly__title {
  font-size: 1.5rem;
  line-height: 1.1667;
  font-weight: 800;
}
.monthly__section--keyvisual .keyvisual__body-content .monthly__text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-block-start: 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 600;
}
@media all and (min-width: 48.0625rem) {
  .monthly__section--keyvisual .keyvisual__body-content .monthly__title {
    padding-inline-end: clamp(20rem, 32.2580645161vw, 30rem);
    font-size: 2.5rem;
    line-height: 1.07;
    font-weight: 800;
  }
  .monthly__section--keyvisual .keyvisual__body-content .monthly__text {
    gap: clamp(1rem, 1.6129032258vw, 1.5rem);
    margin-block-start: clamp(1.5rem, 2.688172043vw, 2.5rem);
    font-size: 1.5rem;
    line-height: 1.1667;
    font-weight: 600;
  }
}
@media (min-width: 64rem) {
  .monthly__section--keyvisual .keyvisual__body-content .monthly__title {
    padding-inline-end: clamp(30rem, 37.6344086022vw, 35rem);
  }
}
@media all and (min-width: 93rem) {
  .monthly__section--keyvisual .keyvisual__body-content .monthly__title {
    padding-inline-end: 42.4375rem;
    font-size: 3.5rem;
    line-height: 1.0714;
    font-weight: 800;
  }
  .monthly__section--keyvisual .keyvisual__body-content .monthly__text {
    gap: 1.5rem;
    padding-inline-end: 12.5rem;
    margin-block-start: 2.5rem;
    font-size: 1.75rem;
    line-height: 1.2857;
    font-weight: 600;
  }
  .monthly__section--keyvisual .keyvisual__body-content .monthly__text p:first-child {
    padding-inline-end: 13.75rem;
  }
}