/* ===== БЛОК 1 ===== */
.ml-block1 {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  background-color: #f3f3f3;
  padding: 40px;
}

.ml-block1__img-wrap {
  flex: 0 0 45%;
  max-width: 45%;
}

.ml-block1__img-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}

.ml-block1__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.ml-block1__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ml-block1__title {
  margin: 0;
  color: #0a1b2d;
  font-size: 32px;
  line-height: 1.2;
  font-family: Lora, serif;
  font-weight: 400;
}

.ml-block1__text {
  color: #0a1b2d;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  font-family: Inter, sans-serif;
  font-weight: 400;
}

.ml-block1__text p {
  margin: 0 0 12px 0;
}

.ml-block1__text p:last-child {
  margin-bottom: 0;
}

.ml-block1__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: #698aa9;
  color: #f3f3f3;
  text-decoration: none;
  border-radius: 0;
  font-size: 16px;
  font-family: Inter, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.ml-block1__btn:hover {
  background-color: #0a1b2d;
  color: #f3f3f3 !important;
  text-decoration: none;
}

/* ===== БЛОК 2 ===== */
.ml-block2 {
  background-color: #f3f3f3;
  border-top: 1px solid rgba(10, 27, 45, 0.15);
  border-bottom: 1px solid rgba(10, 27, 45, 0.15);
  padding: 40px 20px;
}

.ml-block2__inner {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: 0 auto;
}

.ml-block2__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 0 32px;
}

.ml-block2__text {
  color: #0a1b2d;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  font-family: Inter, sans-serif;
}

.ml-block2__dots {
  display: none;
}

/* ===== БЛОК 3 ===== */
.ml-block3 {
  background-color: #f3f3f3;
  border-top: 1px solid rgba(10, 27, 45, 0.15);
  padding: 48px 20px;
  text-align: center;
}

.ml-block3__title {
  font-family: Lora, serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin: 0;
  color: #0a1b2d;
}

/* ===== БЛОК 4 ===== */
.ml-block4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.ml-block4__item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ml-block4__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ml-block4__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  z-index: 2;
}

.ml-block4__overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.ml-block4__heading {
  color: #ffffff !important;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 8px 0;
  text-decoration: none !important;
  transition: opacity 0.3s ease;
  font-family: Inter, sans-serif;
}

.ml-block4__heading:hover {
  opacity: 0.8;
  color: #ffffff !important;
  text-decoration: none !important;
}

.ml-block4__sub {
  color: #ffffff !important;
  font-size: 12px;
  margin: 0;
  opacity: 0.9;
  font-family: Inter, sans-serif;
}

/* ===== БЛОК 5 ===== */
.ml-block5 {
  background-color: #f3f3f3;
  border-top: 1px solid rgba(10, 27, 45, 0.15);
  padding: 48px 20px;
}

.ml-block5__inner {
  max-width: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.ml-block5__text {
  color: #0a1b2d;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  font-family: Inter, sans-serif;
}

/* ===== МОБІЛЬНА ВЕРСІЯ ===== */
@media screen and (max-width: 749px) {
  .ml-block1 {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .ml-block1__img-wrap {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .ml-block1__title {
    font-size: calc(32px * 0.8);
  }

  .ml-block1__text {
    font-size: calc(16px * 0.9);
  }

  .ml-block1__btn {
    align-self: flex-start;
  }

  .ml-block2 {
    padding: 40px 0;
    overflow: hidden;
  }

  .ml-block2__inner {
    display: flex;
    flex-direction: row;
    transition: transform 0.3s ease;
    width: 300%;
    max-width: none;
  }

  .ml-block2__item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 24px;
  }

  .ml-block2__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }

  .ml-block2__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(10, 27, 45, 0.2);
    cursor: pointer;
    border: none;
    padding: 0;
  }

  .ml-block2__dot.active {
    background-color: #0a1b2d;
  }

  .ml-block4 {
    grid-template-columns: 1fr;
  }

  .ml-block4__item {
    aspect-ratio: 3 / 2;
  }

  .ml-block4__heading {
    font-size: 19.2px;
  }

  .ml-block4__sub {
    font-size: 9.6px;
  }
}


/* ===== Стаття: догляд за шовком ===== */
.ml-care-article {
  max-width: 1280px;
  margin: 0 auto;
  color: inherit;
  font-family: Inter, sans-serif;
  font-size: 17px;
  line-height: 1.72;
}

.ml-care-article p {
  margin: 0 0 18px;
}

.ml-care-article strong {
  font-weight: 700;
}

.ml-care-article em {
  font-style: italic;
}

/* Посилання: не міняємо колір, тільки підкреслюємо */
.ml-care-article a,
.ml-care-article a:visited,
.ml-care-article a:hover,
.ml-care-article a:focus {
  color: inherit !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* Верхнє фото */
.ml-care-hero {
  display: flex;
  justify-content: center;
  margin: 0 0 28px;
}

.ml-care-hero img,
.ml-care-hero__img {
  display: block !important;
  width: 480px !important;
  max-width: 100% !important;
  height: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: 0 !important;
}

/* Лід-абзац під першим фото */
.ml-care-lead {
  margin: 0 0 18px !important;
  font-size: 17px;
  line-height: 1.72;
}

/* Перший h2 — "Значення сертифікатів" */
.ml-care-article h2:first-of-type {
  margin: 42px 0 18px;
  color: inherit;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
}

/* Наступні h2 — великий FAQ */
.ml-care-article h2:not(:first-of-type) {
  margin: 58px 0 22px;
  color: inherit;
  font-family: Lora, Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Питання 1, 2, 3, 4, 5 */
.ml-care-article h3 {
  margin: 30px 0 12px;
  color: inherit;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

/* "Додаткові рекомендації" після першої таблиці */
.ml-care-table-wrap + h3 {
  margin: 24px 0 14px;
  font-family: Lora, Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
}

/* Заголовки таблиць */
.ml-care-article h4 {
  margin: 34px 0 18px;
  color: inherit;
  font-family: Lora, Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.22;
  text-align: center;
}

/* Фото Silky Way */
.ml-care-product {
  display: flex;
  justify-content: center;
  margin: 28px 0 18px;
}

.ml-care-product img,
.ml-care-product__img {
  display: block !important;
  width: 364px !important;
  max-width: 100% !important;
  height: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: 0 !important;
}

/* Списки */
.ml-care-article ul {
  margin: 0 0 28px 22px;
  padding: 0;
}

.ml-care-article li {
  margin: 0 0 10px;
  padding-left: 2px;
}

/* Таблиці */
.ml-care-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 18px 0 28px;
  -webkit-overflow-scrolling: touch;
}

.ml-care-table {
  width: 100%;
  min-width: 920px;
  table-layout: fixed;
  border-collapse: collapse;
  border-left: none !important;
  border-right: none !important;
  color: inherit;
  font-size: 17px;
  line-height: 1.55;
}

.ml-care-table--small {
  min-width: 680px;
}

.ml-care-table th,
.ml-care-table td {
  padding: 20px 16px;
  text-align: left;
  vertical-align: middle;
  background: transparent !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: 1px solid rgba(10, 27, 45, 0.12) !important;
  border-left: none !important;
}

.ml-care-table thead th {
  padding-top: 12px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(10, 27, 45, 0.12) !important;
  color: rgba(10, 27, 45, 0.62);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

/* Вертикальні лінії тільки між колонками, без зовнішніх країв */
.ml-care-table th + th,
.ml-care-table td + td {
  border-left: 1px solid rgba(10, 27, 45, 0.10) !important;
}

.ml-care-table th:first-child,
.ml-care-table td:first-child {
  border-left: none !important;
}

.ml-care-table th:last-child,
.ml-care-table td:last-child {
  border-right: none !important;
}

/* Ширини колонок першої таблиці */
.ml-care-table:not(.ml-care-table--small) th:nth-child(1),
.ml-care-table:not(.ml-care-table--small) td:nth-child(1) {
  width: 23%;
}

.ml-care-table:not(.ml-care-table--small) th:nth-child(2),
.ml-care-table:not(.ml-care-table--small) td:nth-child(2) {
  width: 10%;
}

.ml-care-table:not(.ml-care-table--small) th:nth-child(3),
.ml-care-table:not(.ml-care-table--small) td:nth-child(3) {
  width: 18%;
}

.ml-care-table:not(.ml-care-table--small) th:nth-child(4),
.ml-care-table:not(.ml-care-table--small) td:nth-child(4) {
  width: 22%;
}

.ml-care-table:not(.ml-care-table--small) th:nth-child(5),
.ml-care-table:not(.ml-care-table--small) td:nth-child(5) {
  width: 27%;
}

/* Маленька таблиця температур */
.ml-care-table--small th:nth-child(1),
.ml-care-table--small td:nth-child(1) {
  width: 35%;
}

.ml-care-table--small th:nth-child(2),
.ml-care-table--small td:nth-child(2) {
  width: 65%;
}

/* Мобільна */
@media screen and (max-width: 749px) {
  .ml-care-article {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.68;
  }

  .ml-care-article p {
    margin-bottom: 16px;
  }

  .ml-care-hero {
    margin-bottom: 24px;
  }

  .ml-care-hero img,
  .ml-care-hero__img {
    width: 320px !important;
  }

  .ml-care-product img,
  .ml-care-product__img {
    width: 260px !important;
  }

  .ml-care-article h2:first-of-type {
    margin-top: 34px;
    font-size: 17px;
  }

  .ml-care-article h2:not(:first-of-type) {
    margin-top: 42px;
    font-size: 30px;
    line-height: 1.18;
  }

  .ml-care-article h3 {
    margin-top: 24px;
    font-size: 16px;
  }

  .ml-care-table-wrap + h3 {
    font-size: 24px;
  }

  .ml-care-article h4 {
    margin-top: 28px;
    font-size: 24px;
    line-height: 1.25;
  }

  .ml-care-table {
    min-width: 760px;
    font-size: 14px;
  }

  .ml-care-table--small {
    min-width: 520px;
  }

  .ml-care-table th,
  .ml-care-table td {
    padding: 13px 12px;
  }

  .ml-care-table thead th {
    font-size: 13px;
  }
}

/* ===== Заголовки секцій для статті Silky Way ===== */
.ml-care-article h3 {
  margin: 34px 0 14px !important;
  font-family: Lora, Georgia, serif !important;
  font-size: 32px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: inherit !important;
}

@media screen and (max-width: 749px) {
  .ml-care-article h3 {
    margin: 28px 0 12px !important;
    font-size: 26px !important;
    line-height: 1.22 !important;
  }
}




/* ===== Hair Care Guide ===== */
.ml-hair-page,
.ml-hair-page * {
  box-sizing: border-box;
}

.ml-hair-page {
  background-color: #f3f3f3;
  color: #0a1b2d;
  font-family: Inter, sans-serif;
  overflow: hidden;
}

.ml-hair-page a {
  color: inherit;
}

/* ===== Hero ===== */
.ml-hair-hero {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  background-color: #f3f3f3;
  padding: 20px;
}

.ml-hair-hero__image-wrap {
  flex: 0 0 40%;
  max-width: 40%;
}

.ml-hair-hero__image-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}

.ml-hair-hero__image-container img,
.ml-hair-hero__image {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 10px !important;
}

.ml-hair-hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ml-hair-hero__title {
  margin: 0;
  color: #0a1b2d;
  font-size: 32px;
  line-height: 1.2;
  font-family: Lora, serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.ml-hair-hero__text {
  color: #0a1b2d;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  font-family: Inter, sans-serif;
  font-weight: 400;
}

.ml-hair-hero__text p {
  margin: 0;
}

/* ===== Buttons ===== */
.ml-hair-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: #698aa9;
  color: #f3f3f3 !important;
  text-decoration: none !important;
  border-radius: 18px;
  font-size: 16px;
  font-family: Inter, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.ml-hair-btn:hover {
  background-color: #0a1b2d;
  color: #f3f3f3 !important;
  text-decoration: none !important;
}

/* ===== Icons ===== */
.ml-hair-icons {
  background-color: #f3f3f3;
  border-top: 1px solid rgba(10, 27, 45, 0.15);
  border-bottom: 1px solid rgba(10, 27, 45, 0.15);
  padding: 56px 20px;
}

.ml-hair-icons__inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}

.ml-hair-icons__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  padding: 0 42px;
}

.ml-hair-icons__item svg {
  width: 24px;
  height: 24px;
  color: #0a1b2d;
}

.ml-hair-icons__item p {
  margin: 0;
  color: #0a1b2d;
  font-size: 16px;
  line-height: 1.55;
  font-family: Inter, sans-serif;
}

/* ===== Title section ===== */
.ml-hair-title-section {
  background-color: #f3f3f3;
  padding: 56px 20px 34px;
  text-align: center;
}

.ml-hair-title-section h2 {
  margin: 0 0 16px;
  color: #0a1b2d;
  font-size: 40px;
  line-height: 1.2;
  font-family: Lora, serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.ml-hair-title-section p {
  margin: 0;
  color: #0a1b2d;
  font-family: Lora, serif;
  font-size: 17px;
  line-height: 1.5;
}

/* ===== Download buttons ===== */
.ml-hair-download {
  background-color: #f3f3f3;
  text-align: center;
}

.ml-hair-download .ml-hair-btn {
  align-self: center;
}

.ml-hair-download--top {
  padding: 0 20px 40px;
}

.ml-hair-download--bottom {
  padding: 28px 20px 40px;
}

/* ===== Accordion ===== */
.ml-hair-accordion {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 60px 0 40px;
  background-color: #f3f3f3;
}

.ml-hair-accordion__container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.ml-hair-accordion__image-wrap {
  width: 100%;
  max-width: 520px;
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
}

.ml-hair-accordion__image-wrap img,
.ml-hair-accordion__image {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px !important;
  transition: opacity 0.25s ease;
}

.ml-hair-accordion__content {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.ml-hair-accordion__item {
  width: 100%;
  max-width: 100%;
  border-bottom: 1px solid rgba(10, 27, 45, 0.1);
}

.ml-hair-accordion__header {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 20px;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
}

.ml-hair-accordion__number {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ml-hair-accordion__number img {
  display: block !important;
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  object-fit: contain;
}

.ml-hair-accordion__title {
  min-width: 0;
  margin: 0;
  color: #0a1b2d;
  font-family: Lora, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.ml-hair-accordion__arrow {
  justify-self: end;
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
}

.ml-hair-accordion__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  stroke: #0a1b2d;
  stroke-width: 2;
}

.ml-hair-accordion__item.active .ml-hair-accordion__arrow {
  transform: rotate(180deg);
}

.ml-hair-accordion__body {
  max-height: 0;
  overflow: hidden;
  padding-left: 48px;
  padding-right: 36px;
  transition: max-height 0.25s ease;
}

.ml-hair-accordion__item.active .ml-hair-accordion__body {
  max-height: 500px;
  padding-bottom: 20px;
}

.ml-hair-accordion__body p {
  margin: 0;
  color: #0a1b2d;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

/* ===== Tablet ===== */
@media screen and (max-width: 991px) {
  .ml-hair-accordion__container {
    grid-template-columns: 1fr;
    max-width: 720px;
    gap: 34px;
  }

  .ml-hair-accordion__image-wrap {
    max-width: 100%;
  }

  .ml-hair-accordion__image-wrap img,
  .ml-hair-accordion__image {
    aspect-ratio: 4 / 3;
  }
}

/* ===== Mobile ===== */
@media screen and (max-width: 749px) {
  .ml-hair-hero {
    flex-direction: column;
    gap: 24px;
    padding: 20px;
  }

  .ml-hair-hero__image-wrap {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .ml-hair-hero__title {
    font-size: 25.6px;
  }

  .ml-hair-hero__text {
    font-size: 14.4px;
  }

  .ml-hair-btn {
    font-size: 14.4px;
    padding: 11.2px 25.6px;
  }

  .ml-hair-icons {
    padding: 40px 20px;
  }

  .ml-hair-icons__inner {
    flex-direction: column;
    gap: 34px;
  }

  .ml-hair-icons__item {
    padding: 0;
  }

  .ml-hair-icons__item p {
    font-size: 14px;
  }

  .ml-hair-title-section {
    padding: 42px 20px 26px;
  }

  .ml-hair-title-section h2 {
    font-size: 32px;
  }

  .ml-hair-accordion {
    padding: 40px 0 28px;
  }

  .ml-hair-accordion__container {
    padding: 0 16px;
  }

  .ml-hair-accordion__header {
    grid-template-columns: 30px minmax(0, 1fr) 18px;
    gap: 12px;
    padding: 18px 0;
  }

  .ml-hair-accordion__number,
  .ml-hair-accordion__number img {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
  }

  .ml-hair-accordion__title {
    font-size: 16px;
  }

  .ml-hair-accordion__body {
    padding-left: 42px;
    padding-right: 0;
  }
}



/* ===== Sleep Mask Article ===== */
.ml-sleep-article {
  max-width: 980px;
  margin: 0 auto;
  color: #0a1b2d;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

/* Основний заголовок статті генерується темою поза описом.
   CSS підключений тільки для цієї статті, тому можна стилізувати h1 сторінки. */
h1 {
  max-width: 980px;
  margin: 0 auto 52px;
  color: #0a1b2d;
  font-family: Lora, Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.04em;
}

.ml-sleep-article p {
  margin: 0 0 18px;
}

/* Вступний великий текст */
.ml-sleep-article > h3:first-child {
  margin: 0 0 30px;
  color: #0a1b2d;
  font-family: Lora, Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

/* Зміст під вступом */
.ml-sleep-article > h3:first-child + p,
.ml-sleep-article > h3:first-child + p + p,
.ml-sleep-article > h3:first-child + p + p + p,
.ml-sleep-article > h3:first-child + p + p + p + p {
  margin: 0 0 16px;
  color: #0a1b2d;
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

.ml-sleep-article h2 {
  margin: 48px 0 22px;
  color: #0a1b2d;
  font-family: Lora, Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.03em;
}

.ml-sleep-article ul {
  margin: 0 0 24px 22px;
  padding: 0;
}

.ml-sleep-article li {
  margin: 0 0 10px;
}

.ml-sleep-article a {
  color: inherit !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.ml-sleep-article a:hover {
  color: inherit !important;
  text-decoration: underline !important;
}

.ml-sleep-article img {
  display: block !important;
  max-width: 480px !important;
  width: 100% !important;
  height: auto !important;
  margin: 24px auto 34px !important;
}

@media screen and (max-width: 749px) {
  h1 {
    margin-bottom: 34px;
    font-size: 32px;
    line-height: 1.28;
  }

  .ml-sleep-article {
    font-size: 15px;
    line-height: 1.68;
  }

  .ml-sleep-article > h3:first-child {
    font-size: 24px;
    line-height: 1.42;
    margin-bottom: 24px;
  }

  .ml-sleep-article > h3:first-child + p,
  .ml-sleep-article > h3:first-child + p + p,
  .ml-sleep-article > h3:first-child + p + p + p,
  .ml-sleep-article > h3:first-child + p + p + p + p {
    font-size: 16px;
    margin-bottom: 13px;
  }

  .ml-sleep-article h2 {
    font-size: 26px;
    margin-top: 36px;
  }

  .ml-sleep-article img {
    max-width: 100% !important;
  }
}