@charset "UTF-8";
/*=================================================
    컬러
=================================================*/
/*=================================================
    폰트
=================================================*/
/*=================================================
    미디어쿼리
=================================================*/
/*=================================================
    컬러
=================================================*/
/*=================================================
    폰트
=================================================*/
/*=================================================
    미디어쿼리
=================================================*/
/**
 * Review 하위 페이지 공통 스타일
 * - `review/index.html`, `review/before-after.html` 등에서 공유하는 영역만 둡니다.
 * - 칩(`rr-chips`), Total 줄(`rr-toolbar` / `rr-total`), FEATURED(`rr-feat` …) 등.
 * - 각 페이지 전용 스타일은 `index.scss`, `before-after.scss` 등에 유지하세요.
 * - `#section01` hero 배경·반응형은 `_review-section01-hero.scss`를 사용하세요.
 *
 * 상위에서 `@import "../../__variables";`, `@import "../../__mixins";` 후에 이 파일을 불러오세요.
 */
.rr-hero {
  padding: 48px 0 36px;
  text-align: center;
}
@media screen and (max-width: 991.98px) {
  .rr-hero {
    padding: 32px 0 24px;
  }
}

.rr-hero > p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #7a716a;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
}
@media screen and (max-width: 991.98px) {
  .rr-hero > p {
    font-size: 13px;
    font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  }
}

.rr-hero > h1 {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  line-height: 1.15;
}
@media screen and (max-width: 991.98px) {
  .rr-hero > h1 {
    font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  }
}

.rr-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 22px;
}

.rr-chips button {
  appearance: none;
  border: 1px solid #d5cfc7;
  background: #fff;
  color: #4a433c;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.rr-chips button:hover {
  border-color: #b0a69a;
}
.rr-chips button.is-active {
  border-color: #4a433c;
  background: #4a433c;
  color: #fff;
}

.rr-toolbar {
  display: flex;
  justify-content: flex-start;
  margin: 0 0 20px;
}

.rr-total {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #6f665e;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
}

.rr-spot {
  padding: 40px 0 52px;
  background: #6f6358;
  color: #f5f0e8;
  text-align: center;
  /* FEATURED 등 소제목(첫 요소가 p 일 때) */
  /* 카드 셀 460×301 — 클릭 비활성(고정 노출) */
  /* FEATURED 슬롯 그리드: h2 또는 p 바로 다음 형제 div (B&A 베스트는 h2+ul 이라 여기 해당 없음) */
  /* FEATURED 슬롯: 빈 슬롯용 반투명 박스(.rr-feat 제외) */
  /* FEATURED — 마크업: .rr-feat > .rr-feat__item > .rr-feat__box > .rr-feat__media | .rr-feat__body */
}
@media screen and (max-width: 991.98px) {
  .rr-spot {
    padding: 28px 0 36px;
  }
}
.rr-spot > .area {
  max-width: 1420px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
.rr-spot > .area > p:first-child {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(245, 240, 232, 0.9);
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
}
.rr-spot > .area > h2 {
  margin: 0 0 28px;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  color: #ebca6d;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
}
@media screen and (max-width: 991.98px) {
  .rr-spot > .area > h2 {
    margin-bottom: 20px;
  }
}
.rr-spot > .area > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 18px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767.98px) {
  .rr-spot > .area > ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media screen and (max-width: 543.98px) {
  .rr-spot > .area > ul {
    grid-template-columns: 1fr;
  }
}
.rr-spot > .area > ul > li {
  width: 460px;
  max-width: 100%;
  height: 301px;
  margin: 0;
  pointer-events: none;
  box-sizing: border-box;
}
.rr-spot > .area > ul > li > div {
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 18px rgba(44, 39, 33, 0.06);
}
.rr-spot > .area > p + div,
.rr-spot > .area > h2 + div {
  display: grid;
  justify-content: center;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 991.98px) {
  .rr-spot > .area > p + div,
  .rr-spot > .area > h2 + div {
    gap: 14px 16px;
  }
}
@media screen and (min-width: 720px) {
  .rr-spot > .area > p + div,
  .rr-spot > .area > h2 + div {
    grid-template-columns: repeat(2, minmax(0, 340px));
  }
}
@media screen and (min-width: 1100px) {
  .rr-spot > .area > p + div,
  .rr-spot > .area > h2 + div {
    grid-template-columns: repeat(3, minmax(0, 340px));
  }
}
@media screen and (min-width: 1480px) {
  .rr-spot > .area > p + div,
  .rr-spot > .area > h2 + div {
    grid-template-columns: repeat(4, minmax(0, 340px));
  }
}
.rr-spot > .area > p + div > div:not(.rr-feat__item),
.rr-spot > .area > h2 + div > div:not(.rr-feat__item) {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}
.rr-spot > .area > p + div > a.rr-feat__item,
.rr-spot > .area > h2 + div > a.rr-feat__item {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}
.rr-spot > .area > p + div > a.rr-feat__item:hover,
.rr-spot > .area > h2 + div > a.rr-feat__item:hover {
  transform: translateY(-2px);
}
.rr-spot > .area > p + div > a.rr-feat__item:hover .rr-feat__box,
.rr-spot > .area > h2 + div > a.rr-feat__item:hover .rr-feat__box {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.rr-spot > .area > p + div > a.rr-feat__item .rr-feat__box,
.rr-spot > .area > h2 + div > a.rr-feat__item .rr-feat__box {
  transition: box-shadow 0.2s ease;
}
.rr-spot > .area > p + div > a.rr-feat__item--text .rr-feat__box,
.rr-spot > .area > h2 + div > a.rr-feat__item--text .rr-feat__box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.rr-spot > .area > p + div > a.rr-feat__item--text .rr-feat__body,
.rr-spot > .area > h2 + div > a.rr-feat__item--text .rr-feat__body {
  width: 100%;
  padding: 20px 16px;
  text-align: center;
}
.rr-spot > .area > p + div > div.rr-feat__item--ph,
.rr-spot > .area > h2 + div > div.rr-feat__item--ph {
  width: 100%;
  box-sizing: border-box;
  pointer-events: none;
}
.rr-spot .rr-feat__box {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.rr-spot .rr-feat__media {
  width: 100%;
  max-width: 340px;
  height: 340px;
  margin-inline: auto;
  background: #1a1410;
  box-sizing: border-box;
}
.rr-spot .rr-feat__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rr-spot .rr-feat__ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1410 0%, #2a221c 100%);
  opacity: 0.55;
}
.rr-spot .rr-feat__body {
  padding: 15px;
}
.rr-spot .rr-feat__title {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #2c2721;
  font-weight: 600;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
@media screen and (max-width: 543.98px) {
  .rr-spot .rr-feat__media {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    max-height: none;
  }
}

/* Review list pages — #section01 hero (index · story · selfies · before-after) */
.community-with-star .with-star-best.rr-spot,
.rr-page .with-star-best.rr-spot {
  margin: 0 0 56px;
  padding: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}
.community-with-star .with-star-best.rr-spot > .area,
.rr-page .with-star-best.rr-spot > .area {
  max-width: 1420px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

.with-star-best-panel {
  box-sizing: border-box;
  padding: 48px 40px 40px;
  border: 1px solid #e3ddd6;
  border-radius: 16px;
  background: #f7f5f2;
}

.with-star-best__heading {
  margin: 0 0 36px;
  text-align: center;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  color: #2c2721;
  font-weight: 400;
}

.with-star-best__heading-light {
  font-weight: 400;
}

.with-star-best__heading-strong {
  font-weight: 700;
}

.with-star-best-slider-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.with-star-best-swiper {
  width: 100%;
  overflow: hidden;
}

.with-star-best-swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
  filter: none !important;
  -webkit-filter: none !important;
}
.with-star-best-swiper .swiper-slide .with-star-best-card,
.with-star-best-swiper .swiper-slide .with-star-best-card__media,
.with-star-best-swiper .swiper-slide .with-star-best-card__img,
.with-star-best-swiper .swiper-slide img {
  filter: none !important;
  -webkit-filter: none !important;
}

.with-star-best-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.with-star-best-card:hover {
  opacity: 0.92;
}
.with-star-best-card:focus-visible {
  outline: 2px solid #4a433c;
  outline-offset: 4px;
  border-radius: 14px;
}

.with-star-best-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 446/323;
  border-radius: 14px;
  overflow: hidden;
  background: #ebe7e2;
}

.with-star-best-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.with-star-best-card__ph {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e4df 0%, #d5cfc7 100%);
}

.with-star-best-card__body {
  width: 100%;
  min-width: 0;
  margin-top: 14px;
  text-align: left;
}

.with-star-best-card__area {
  margin: 0 0 6px;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: #8a827a;
}

.with-star-best-card__title {
  margin: 0;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: #6f665e;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
}

.with-star-best-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  width: auto;
  max-width: 100%;
}

.with-star-best-controls__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #6f665e;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.with-star-best-controls__arrow:hover:not(.swiper-button-disabled) {
  color: #2c2721;
}
.with-star-best-controls__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
.with-star-best-controls__arrow span {
  display: block;
  margin-top: -2px;
}

.with-star-best-controls__pagination {
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto !important;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 10px;
  padding: 0;
}
.with-star-best-controls__pagination.swiper-pagination-horizontal {
  width: auto !important;
}
.with-star-best-controls__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  border-radius: 50%;
  background: #d5cfc7;
  opacity: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}
.with-star-best-controls__pagination .swiper-pagination-bullet-active {
  background: #4a433c;
  transform: scale(1);
}

@media screen and (max-width: 767.98px) {
  .with-star-best-card__title {
    font-size: 14px;
  }
}
/*=================================================
    컬러
=================================================*/
/*=================================================
    폰트
=================================================*/
/*=================================================
    미디어쿼리
=================================================*/
/*=================================================
    컬러
=================================================*/
/*=================================================
    폰트
=================================================*/
/*=================================================
    미디어쿼리
=================================================*/
/* 상세 본문 타이포 — 프론트 렌더링 전용 (에디터 미적용) */
body.single-viewblog .notice-single__content,
body.single-viewblog .notice-single__content.entry-content,
body.single-viewblog .single-blog-content,
body.single-viewblog .vrealreview-single__content,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content,
body.single-viewrealreviews .notice-single__content,
body.single-viewrealreviews .notice-single__content.entry-content,
body.single-viewrealreviews .single-blog-content,
body.single-viewrealreviews .vrealreview-single__content,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content,
body.single-viewrealreview .notice-single__content,
body.single-viewrealreview .notice-single__content.entry-content,
body.single-viewrealreview .single-blog-content,
body.single-viewrealreview .vrealreview-single__content,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content,
body.single-view_notice .notice-single__content,
body.single-view_notice .notice-single__content.entry-content,
body.single-view_notice .single-blog-content,
body.single-view_notice .vrealreview-single__content,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content {
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #746b64;
  text-align: left;
  word-break: keep-all;
  overflow-wrap: anywhere;
  /* WordPress 정렬 클래스 지원 */
}
body.single-viewblog .notice-single__content > *:first-child,
body.single-viewblog .notice-single__content.entry-content > *:first-child,
body.single-viewblog .single-blog-content > *:first-child,
body.single-viewblog .vrealreview-single__content > *:first-child,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content > *:first-child,
body.single-viewrealreviews .notice-single__content > *:first-child,
body.single-viewrealreviews .notice-single__content.entry-content > *:first-child,
body.single-viewrealreviews .single-blog-content > *:first-child,
body.single-viewrealreviews .vrealreview-single__content > *:first-child,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content > *:first-child,
body.single-viewrealreview .notice-single__content > *:first-child,
body.single-viewrealreview .notice-single__content.entry-content > *:first-child,
body.single-viewrealreview .single-blog-content > *:first-child,
body.single-viewrealreview .vrealreview-single__content > *:first-child,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content > *:first-child,
body.single-view_notice .notice-single__content > *:first-child,
body.single-view_notice .notice-single__content.entry-content > *:first-child,
body.single-view_notice .single-blog-content > *:first-child,
body.single-view_notice .vrealreview-single__content > *:first-child,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content > *:first-child {
  margin-top: 0;
}
body.single-viewblog .notice-single__content :is(h1, h2, h3, h4, h5, h6),
body.single-viewblog .notice-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading,
body.single-viewblog .notice-single__content :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewblog .notice-single__content .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewblog .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6),
body.single-viewblog .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading,
body.single-viewblog .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewblog .notice-single__content.entry-content .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewblog .single-blog-content :is(h1, h2, h3, h4, h5, h6),
body.single-viewblog .single-blog-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading,
body.single-viewblog .single-blog-content :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewblog .single-blog-content .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewblog .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6),
body.single-viewblog .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading,
body.single-viewblog .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewblog .vrealreview-single__content .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6),
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreviews .notice-single__content :is(h1, h2, h3, h4, h5, h6),
body.single-viewrealreviews .notice-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading,
body.single-viewrealreviews .notice-single__content :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreviews .notice-single__content .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreviews .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6),
body.single-viewrealreviews .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading,
body.single-viewrealreviews .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreviews .notice-single__content.entry-content .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreviews .single-blog-content :is(h1, h2, h3, h4, h5, h6),
body.single-viewrealreviews .single-blog-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading,
body.single-viewrealreviews .single-blog-content :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreviews .single-blog-content .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreviews .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6),
body.single-viewrealreviews .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading,
body.single-viewrealreviews .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreviews .vrealreview-single__content .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6),
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreview .notice-single__content :is(h1, h2, h3, h4, h5, h6),
body.single-viewrealreview .notice-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading,
body.single-viewrealreview .notice-single__content :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreview .notice-single__content .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreview .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6),
body.single-viewrealreview .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading,
body.single-viewrealreview .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreview .notice-single__content.entry-content .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreview .single-blog-content :is(h1, h2, h3, h4, h5, h6),
body.single-viewrealreview .single-blog-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading,
body.single-viewrealreview .single-blog-content :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreview .single-blog-content .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreview .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6),
body.single-viewrealreview .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading,
body.single-viewrealreview .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreview .vrealreview-single__content .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6),
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-view_notice .notice-single__content :is(h1, h2, h3, h4, h5, h6),
body.single-view_notice .notice-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading,
body.single-view_notice .notice-single__content :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-view_notice .notice-single__content .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-view_notice .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6),
body.single-view_notice .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading,
body.single-view_notice .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-view_notice .notice-single__content.entry-content .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-view_notice .single-blog-content :is(h1, h2, h3, h4, h5, h6),
body.single-view_notice .single-blog-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading,
body.single-view_notice .single-blog-content :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-view_notice .single-blog-content .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-view_notice .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6),
body.single-view_notice .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading,
body.single-view_notice .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-view_notice .vrealreview-single__content .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6),
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading :is(h1, h2, h3, h4, h5, h6).elementor-heading-title {
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #746b64;
  text-align: left;
}
body.single-viewblog .notice-single__content .has-text-align-left,
body.single-viewblog .notice-single__content.entry-content .has-text-align-left,
body.single-viewblog .single-blog-content .has-text-align-left,
body.single-viewblog .vrealreview-single__content .has-text-align-left,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .has-text-align-left,
body.single-viewrealreviews .notice-single__content .has-text-align-left,
body.single-viewrealreviews .notice-single__content.entry-content .has-text-align-left,
body.single-viewrealreviews .single-blog-content .has-text-align-left,
body.single-viewrealreviews .vrealreview-single__content .has-text-align-left,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .has-text-align-left,
body.single-viewrealreview .notice-single__content .has-text-align-left,
body.single-viewrealreview .notice-single__content.entry-content .has-text-align-left,
body.single-viewrealreview .single-blog-content .has-text-align-left,
body.single-viewrealreview .vrealreview-single__content .has-text-align-left,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .has-text-align-left,
body.single-view_notice .notice-single__content .has-text-align-left,
body.single-view_notice .notice-single__content.entry-content .has-text-align-left,
body.single-view_notice .single-blog-content .has-text-align-left,
body.single-view_notice .vrealreview-single__content .has-text-align-left,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .has-text-align-left {
  text-align: left;
}
body.single-viewblog .notice-single__content .has-text-align-center,
body.single-viewblog .notice-single__content.entry-content .has-text-align-center,
body.single-viewblog .single-blog-content .has-text-align-center,
body.single-viewblog .vrealreview-single__content .has-text-align-center,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .has-text-align-center,
body.single-viewrealreviews .notice-single__content .has-text-align-center,
body.single-viewrealreviews .notice-single__content.entry-content .has-text-align-center,
body.single-viewrealreviews .single-blog-content .has-text-align-center,
body.single-viewrealreviews .vrealreview-single__content .has-text-align-center,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .has-text-align-center,
body.single-viewrealreview .notice-single__content .has-text-align-center,
body.single-viewrealreview .notice-single__content.entry-content .has-text-align-center,
body.single-viewrealreview .single-blog-content .has-text-align-center,
body.single-viewrealreview .vrealreview-single__content .has-text-align-center,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .has-text-align-center,
body.single-view_notice .notice-single__content .has-text-align-center,
body.single-view_notice .notice-single__content.entry-content .has-text-align-center,
body.single-view_notice .single-blog-content .has-text-align-center,
body.single-view_notice .vrealreview-single__content .has-text-align-center,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .has-text-align-center {
  text-align: center;
}
body.single-viewblog .notice-single__content .has-text-align-right,
body.single-viewblog .notice-single__content.entry-content .has-text-align-right,
body.single-viewblog .single-blog-content .has-text-align-right,
body.single-viewblog .vrealreview-single__content .has-text-align-right,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .has-text-align-right,
body.single-viewrealreviews .notice-single__content .has-text-align-right,
body.single-viewrealreviews .notice-single__content.entry-content .has-text-align-right,
body.single-viewrealreviews .single-blog-content .has-text-align-right,
body.single-viewrealreviews .vrealreview-single__content .has-text-align-right,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .has-text-align-right,
body.single-viewrealreview .notice-single__content .has-text-align-right,
body.single-viewrealreview .notice-single__content.entry-content .has-text-align-right,
body.single-viewrealreview .single-blog-content .has-text-align-right,
body.single-viewrealreview .vrealreview-single__content .has-text-align-right,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .has-text-align-right,
body.single-view_notice .notice-single__content .has-text-align-right,
body.single-view_notice .notice-single__content.entry-content .has-text-align-right,
body.single-view_notice .single-blog-content .has-text-align-right,
body.single-view_notice .vrealreview-single__content .has-text-align-right,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .has-text-align-right {
  text-align: right;
}
body.single-viewblog .notice-single__content :is(h1, h2, h3, h4, h5, h6).has-text-align-center,
body.single-viewblog .notice-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-center,
body.single-viewblog .notice-single__content p.has-text-align-center,
body.single-viewblog .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).has-text-align-center,
body.single-viewblog .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-center,
body.single-viewblog .notice-single__content.entry-content p.has-text-align-center,
body.single-viewblog .single-blog-content :is(h1, h2, h3, h4, h5, h6).has-text-align-center,
body.single-viewblog .single-blog-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-center,
body.single-viewblog .single-blog-content p.has-text-align-center,
body.single-viewblog .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).has-text-align-center,
body.single-viewblog .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-center,
body.single-viewblog .vrealreview-single__content p.has-text-align-center,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).has-text-align-center,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-center,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content p.has-text-align-center,
body.single-viewrealreviews .notice-single__content :is(h1, h2, h3, h4, h5, h6).has-text-align-center,
body.single-viewrealreviews .notice-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-center,
body.single-viewrealreviews .notice-single__content p.has-text-align-center,
body.single-viewrealreviews .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).has-text-align-center,
body.single-viewrealreviews .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-center,
body.single-viewrealreviews .notice-single__content.entry-content p.has-text-align-center,
body.single-viewrealreviews .single-blog-content :is(h1, h2, h3, h4, h5, h6).has-text-align-center,
body.single-viewrealreviews .single-blog-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-center,
body.single-viewrealreviews .single-blog-content p.has-text-align-center,
body.single-viewrealreviews .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).has-text-align-center,
body.single-viewrealreviews .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-center,
body.single-viewrealreviews .vrealreview-single__content p.has-text-align-center,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).has-text-align-center,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-center,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content p.has-text-align-center,
body.single-viewrealreview .notice-single__content :is(h1, h2, h3, h4, h5, h6).has-text-align-center,
body.single-viewrealreview .notice-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-center,
body.single-viewrealreview .notice-single__content p.has-text-align-center,
body.single-viewrealreview .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).has-text-align-center,
body.single-viewrealreview .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-center,
body.single-viewrealreview .notice-single__content.entry-content p.has-text-align-center,
body.single-viewrealreview .single-blog-content :is(h1, h2, h3, h4, h5, h6).has-text-align-center,
body.single-viewrealreview .single-blog-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-center,
body.single-viewrealreview .single-blog-content p.has-text-align-center,
body.single-viewrealreview .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).has-text-align-center,
body.single-viewrealreview .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-center,
body.single-viewrealreview .vrealreview-single__content p.has-text-align-center,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).has-text-align-center,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-center,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content p.has-text-align-center,
body.single-view_notice .notice-single__content :is(h1, h2, h3, h4, h5, h6).has-text-align-center,
body.single-view_notice .notice-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-center,
body.single-view_notice .notice-single__content p.has-text-align-center,
body.single-view_notice .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).has-text-align-center,
body.single-view_notice .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-center,
body.single-view_notice .notice-single__content.entry-content p.has-text-align-center,
body.single-view_notice .single-blog-content :is(h1, h2, h3, h4, h5, h6).has-text-align-center,
body.single-view_notice .single-blog-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-center,
body.single-view_notice .single-blog-content p.has-text-align-center,
body.single-view_notice .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).has-text-align-center,
body.single-view_notice .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-center,
body.single-view_notice .vrealreview-single__content p.has-text-align-center,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).has-text-align-center,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-center,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content p.has-text-align-center {
  text-align: center;
}
body.single-viewblog .notice-single__content :is(h1, h2, h3, h4, h5, h6).has-text-align-right,
body.single-viewblog .notice-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-right,
body.single-viewblog .notice-single__content p.has-text-align-right,
body.single-viewblog .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).has-text-align-right,
body.single-viewblog .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-right,
body.single-viewblog .notice-single__content.entry-content p.has-text-align-right,
body.single-viewblog .single-blog-content :is(h1, h2, h3, h4, h5, h6).has-text-align-right,
body.single-viewblog .single-blog-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-right,
body.single-viewblog .single-blog-content p.has-text-align-right,
body.single-viewblog .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).has-text-align-right,
body.single-viewblog .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-right,
body.single-viewblog .vrealreview-single__content p.has-text-align-right,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).has-text-align-right,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-right,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content p.has-text-align-right,
body.single-viewrealreviews .notice-single__content :is(h1, h2, h3, h4, h5, h6).has-text-align-right,
body.single-viewrealreviews .notice-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-right,
body.single-viewrealreviews .notice-single__content p.has-text-align-right,
body.single-viewrealreviews .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).has-text-align-right,
body.single-viewrealreviews .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-right,
body.single-viewrealreviews .notice-single__content.entry-content p.has-text-align-right,
body.single-viewrealreviews .single-blog-content :is(h1, h2, h3, h4, h5, h6).has-text-align-right,
body.single-viewrealreviews .single-blog-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-right,
body.single-viewrealreviews .single-blog-content p.has-text-align-right,
body.single-viewrealreviews .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).has-text-align-right,
body.single-viewrealreviews .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-right,
body.single-viewrealreviews .vrealreview-single__content p.has-text-align-right,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).has-text-align-right,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-right,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content p.has-text-align-right,
body.single-viewrealreview .notice-single__content :is(h1, h2, h3, h4, h5, h6).has-text-align-right,
body.single-viewrealreview .notice-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-right,
body.single-viewrealreview .notice-single__content p.has-text-align-right,
body.single-viewrealreview .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).has-text-align-right,
body.single-viewrealreview .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-right,
body.single-viewrealreview .notice-single__content.entry-content p.has-text-align-right,
body.single-viewrealreview .single-blog-content :is(h1, h2, h3, h4, h5, h6).has-text-align-right,
body.single-viewrealreview .single-blog-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-right,
body.single-viewrealreview .single-blog-content p.has-text-align-right,
body.single-viewrealreview .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).has-text-align-right,
body.single-viewrealreview .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-right,
body.single-viewrealreview .vrealreview-single__content p.has-text-align-right,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).has-text-align-right,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-right,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content p.has-text-align-right,
body.single-view_notice .notice-single__content :is(h1, h2, h3, h4, h5, h6).has-text-align-right,
body.single-view_notice .notice-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-right,
body.single-view_notice .notice-single__content p.has-text-align-right,
body.single-view_notice .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).has-text-align-right,
body.single-view_notice .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-right,
body.single-view_notice .notice-single__content.entry-content p.has-text-align-right,
body.single-view_notice .single-blog-content :is(h1, h2, h3, h4, h5, h6).has-text-align-right,
body.single-view_notice .single-blog-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-right,
body.single-view_notice .single-blog-content p.has-text-align-right,
body.single-view_notice .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).has-text-align-right,
body.single-view_notice .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-right,
body.single-view_notice .vrealreview-single__content p.has-text-align-right,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).has-text-align-right,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6).wp-block-heading.has-text-align-right,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content p.has-text-align-right {
  text-align: right;
}
body.single-viewblog .notice-single__content h1,
body.single-viewblog .notice-single__content h1.wp-block-heading,
body.single-viewblog .notice-single__content h1.elementor-heading-title,
body.single-viewblog .notice-single__content .elementor-widget-heading h1.elementor-heading-title,
body.single-viewblog .notice-single__content.entry-content h1,
body.single-viewblog .notice-single__content.entry-content h1.wp-block-heading,
body.single-viewblog .notice-single__content.entry-content h1.elementor-heading-title,
body.single-viewblog .notice-single__content.entry-content .elementor-widget-heading h1.elementor-heading-title,
body.single-viewblog .single-blog-content h1,
body.single-viewblog .single-blog-content h1.wp-block-heading,
body.single-viewblog .single-blog-content h1.elementor-heading-title,
body.single-viewblog .single-blog-content .elementor-widget-heading h1.elementor-heading-title,
body.single-viewblog .vrealreview-single__content h1,
body.single-viewblog .vrealreview-single__content h1.wp-block-heading,
body.single-viewblog .vrealreview-single__content h1.elementor-heading-title,
body.single-viewblog .vrealreview-single__content .elementor-widget-heading h1.elementor-heading-title,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h1,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h1.wp-block-heading,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h1.elementor-heading-title,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h1.elementor-heading-title,
body.single-viewrealreviews .notice-single__content h1,
body.single-viewrealreviews .notice-single__content h1.wp-block-heading,
body.single-viewrealreviews .notice-single__content h1.elementor-heading-title,
body.single-viewrealreviews .notice-single__content .elementor-widget-heading h1.elementor-heading-title,
body.single-viewrealreviews .notice-single__content.entry-content h1,
body.single-viewrealreviews .notice-single__content.entry-content h1.wp-block-heading,
body.single-viewrealreviews .notice-single__content.entry-content h1.elementor-heading-title,
body.single-viewrealreviews .notice-single__content.entry-content .elementor-widget-heading h1.elementor-heading-title,
body.single-viewrealreviews .single-blog-content h1,
body.single-viewrealreviews .single-blog-content h1.wp-block-heading,
body.single-viewrealreviews .single-blog-content h1.elementor-heading-title,
body.single-viewrealreviews .single-blog-content .elementor-widget-heading h1.elementor-heading-title,
body.single-viewrealreviews .vrealreview-single__content h1,
body.single-viewrealreviews .vrealreview-single__content h1.wp-block-heading,
body.single-viewrealreviews .vrealreview-single__content h1.elementor-heading-title,
body.single-viewrealreviews .vrealreview-single__content .elementor-widget-heading h1.elementor-heading-title,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h1,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h1.wp-block-heading,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h1.elementor-heading-title,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h1.elementor-heading-title,
body.single-viewrealreview .notice-single__content h1,
body.single-viewrealreview .notice-single__content h1.wp-block-heading,
body.single-viewrealreview .notice-single__content h1.elementor-heading-title,
body.single-viewrealreview .notice-single__content .elementor-widget-heading h1.elementor-heading-title,
body.single-viewrealreview .notice-single__content.entry-content h1,
body.single-viewrealreview .notice-single__content.entry-content h1.wp-block-heading,
body.single-viewrealreview .notice-single__content.entry-content h1.elementor-heading-title,
body.single-viewrealreview .notice-single__content.entry-content .elementor-widget-heading h1.elementor-heading-title,
body.single-viewrealreview .single-blog-content h1,
body.single-viewrealreview .single-blog-content h1.wp-block-heading,
body.single-viewrealreview .single-blog-content h1.elementor-heading-title,
body.single-viewrealreview .single-blog-content .elementor-widget-heading h1.elementor-heading-title,
body.single-viewrealreview .vrealreview-single__content h1,
body.single-viewrealreview .vrealreview-single__content h1.wp-block-heading,
body.single-viewrealreview .vrealreview-single__content h1.elementor-heading-title,
body.single-viewrealreview .vrealreview-single__content .elementor-widget-heading h1.elementor-heading-title,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h1,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h1.wp-block-heading,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h1.elementor-heading-title,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h1.elementor-heading-title,
body.single-view_notice .notice-single__content h1,
body.single-view_notice .notice-single__content h1.wp-block-heading,
body.single-view_notice .notice-single__content h1.elementor-heading-title,
body.single-view_notice .notice-single__content .elementor-widget-heading h1.elementor-heading-title,
body.single-view_notice .notice-single__content.entry-content h1,
body.single-view_notice .notice-single__content.entry-content h1.wp-block-heading,
body.single-view_notice .notice-single__content.entry-content h1.elementor-heading-title,
body.single-view_notice .notice-single__content.entry-content .elementor-widget-heading h1.elementor-heading-title,
body.single-view_notice .single-blog-content h1,
body.single-view_notice .single-blog-content h1.wp-block-heading,
body.single-view_notice .single-blog-content h1.elementor-heading-title,
body.single-view_notice .single-blog-content .elementor-widget-heading h1.elementor-heading-title,
body.single-view_notice .vrealreview-single__content h1,
body.single-view_notice .vrealreview-single__content h1.wp-block-heading,
body.single-view_notice .vrealreview-single__content h1.elementor-heading-title,
body.single-view_notice .vrealreview-single__content .elementor-widget-heading h1.elementor-heading-title,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h1,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h1.wp-block-heading,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h1.elementor-heading-title,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h1.elementor-heading-title {
  font-size: 32px;
  margin: 40px 0 20px;
}
body.single-viewblog .notice-single__content h2,
body.single-viewblog .notice-single__content h2.wp-block-heading,
body.single-viewblog .notice-single__content h2.elementor-heading-title,
body.single-viewblog .notice-single__content .elementor-widget-heading h2.elementor-heading-title,
body.single-viewblog .notice-single__content.entry-content h2,
body.single-viewblog .notice-single__content.entry-content h2.wp-block-heading,
body.single-viewblog .notice-single__content.entry-content h2.elementor-heading-title,
body.single-viewblog .notice-single__content.entry-content .elementor-widget-heading h2.elementor-heading-title,
body.single-viewblog .single-blog-content h2,
body.single-viewblog .single-blog-content h2.wp-block-heading,
body.single-viewblog .single-blog-content h2.elementor-heading-title,
body.single-viewblog .single-blog-content .elementor-widget-heading h2.elementor-heading-title,
body.single-viewblog .vrealreview-single__content h2,
body.single-viewblog .vrealreview-single__content h2.wp-block-heading,
body.single-viewblog .vrealreview-single__content h2.elementor-heading-title,
body.single-viewblog .vrealreview-single__content .elementor-widget-heading h2.elementor-heading-title,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h2,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h2.wp-block-heading,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h2.elementor-heading-title,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h2.elementor-heading-title,
body.single-viewrealreviews .notice-single__content h2,
body.single-viewrealreviews .notice-single__content h2.wp-block-heading,
body.single-viewrealreviews .notice-single__content h2.elementor-heading-title,
body.single-viewrealreviews .notice-single__content .elementor-widget-heading h2.elementor-heading-title,
body.single-viewrealreviews .notice-single__content.entry-content h2,
body.single-viewrealreviews .notice-single__content.entry-content h2.wp-block-heading,
body.single-viewrealreviews .notice-single__content.entry-content h2.elementor-heading-title,
body.single-viewrealreviews .notice-single__content.entry-content .elementor-widget-heading h2.elementor-heading-title,
body.single-viewrealreviews .single-blog-content h2,
body.single-viewrealreviews .single-blog-content h2.wp-block-heading,
body.single-viewrealreviews .single-blog-content h2.elementor-heading-title,
body.single-viewrealreviews .single-blog-content .elementor-widget-heading h2.elementor-heading-title,
body.single-viewrealreviews .vrealreview-single__content h2,
body.single-viewrealreviews .vrealreview-single__content h2.wp-block-heading,
body.single-viewrealreviews .vrealreview-single__content h2.elementor-heading-title,
body.single-viewrealreviews .vrealreview-single__content .elementor-widget-heading h2.elementor-heading-title,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h2,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h2.wp-block-heading,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h2.elementor-heading-title,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h2.elementor-heading-title,
body.single-viewrealreview .notice-single__content h2,
body.single-viewrealreview .notice-single__content h2.wp-block-heading,
body.single-viewrealreview .notice-single__content h2.elementor-heading-title,
body.single-viewrealreview .notice-single__content .elementor-widget-heading h2.elementor-heading-title,
body.single-viewrealreview .notice-single__content.entry-content h2,
body.single-viewrealreview .notice-single__content.entry-content h2.wp-block-heading,
body.single-viewrealreview .notice-single__content.entry-content h2.elementor-heading-title,
body.single-viewrealreview .notice-single__content.entry-content .elementor-widget-heading h2.elementor-heading-title,
body.single-viewrealreview .single-blog-content h2,
body.single-viewrealreview .single-blog-content h2.wp-block-heading,
body.single-viewrealreview .single-blog-content h2.elementor-heading-title,
body.single-viewrealreview .single-blog-content .elementor-widget-heading h2.elementor-heading-title,
body.single-viewrealreview .vrealreview-single__content h2,
body.single-viewrealreview .vrealreview-single__content h2.wp-block-heading,
body.single-viewrealreview .vrealreview-single__content h2.elementor-heading-title,
body.single-viewrealreview .vrealreview-single__content .elementor-widget-heading h2.elementor-heading-title,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h2,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h2.wp-block-heading,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h2.elementor-heading-title,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h2.elementor-heading-title,
body.single-view_notice .notice-single__content h2,
body.single-view_notice .notice-single__content h2.wp-block-heading,
body.single-view_notice .notice-single__content h2.elementor-heading-title,
body.single-view_notice .notice-single__content .elementor-widget-heading h2.elementor-heading-title,
body.single-view_notice .notice-single__content.entry-content h2,
body.single-view_notice .notice-single__content.entry-content h2.wp-block-heading,
body.single-view_notice .notice-single__content.entry-content h2.elementor-heading-title,
body.single-view_notice .notice-single__content.entry-content .elementor-widget-heading h2.elementor-heading-title,
body.single-view_notice .single-blog-content h2,
body.single-view_notice .single-blog-content h2.wp-block-heading,
body.single-view_notice .single-blog-content h2.elementor-heading-title,
body.single-view_notice .single-blog-content .elementor-widget-heading h2.elementor-heading-title,
body.single-view_notice .vrealreview-single__content h2,
body.single-view_notice .vrealreview-single__content h2.wp-block-heading,
body.single-view_notice .vrealreview-single__content h2.elementor-heading-title,
body.single-view_notice .vrealreview-single__content .elementor-widget-heading h2.elementor-heading-title,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h2,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h2.wp-block-heading,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h2.elementor-heading-title,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h2.elementor-heading-title {
  font-size: 24px;
  margin: 32px 0 16px;
}
body.single-viewblog .notice-single__content h3,
body.single-viewblog .notice-single__content h3.wp-block-heading,
body.single-viewblog .notice-single__content h3.elementor-heading-title,
body.single-viewblog .notice-single__content .elementor-widget-heading h3.elementor-heading-title,
body.single-viewblog .notice-single__content.entry-content h3,
body.single-viewblog .notice-single__content.entry-content h3.wp-block-heading,
body.single-viewblog .notice-single__content.entry-content h3.elementor-heading-title,
body.single-viewblog .notice-single__content.entry-content .elementor-widget-heading h3.elementor-heading-title,
body.single-viewblog .single-blog-content h3,
body.single-viewblog .single-blog-content h3.wp-block-heading,
body.single-viewblog .single-blog-content h3.elementor-heading-title,
body.single-viewblog .single-blog-content .elementor-widget-heading h3.elementor-heading-title,
body.single-viewblog .vrealreview-single__content h3,
body.single-viewblog .vrealreview-single__content h3.wp-block-heading,
body.single-viewblog .vrealreview-single__content h3.elementor-heading-title,
body.single-viewblog .vrealreview-single__content .elementor-widget-heading h3.elementor-heading-title,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h3,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h3.wp-block-heading,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h3.elementor-heading-title,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h3.elementor-heading-title,
body.single-viewrealreviews .notice-single__content h3,
body.single-viewrealreviews .notice-single__content h3.wp-block-heading,
body.single-viewrealreviews .notice-single__content h3.elementor-heading-title,
body.single-viewrealreviews .notice-single__content .elementor-widget-heading h3.elementor-heading-title,
body.single-viewrealreviews .notice-single__content.entry-content h3,
body.single-viewrealreviews .notice-single__content.entry-content h3.wp-block-heading,
body.single-viewrealreviews .notice-single__content.entry-content h3.elementor-heading-title,
body.single-viewrealreviews .notice-single__content.entry-content .elementor-widget-heading h3.elementor-heading-title,
body.single-viewrealreviews .single-blog-content h3,
body.single-viewrealreviews .single-blog-content h3.wp-block-heading,
body.single-viewrealreviews .single-blog-content h3.elementor-heading-title,
body.single-viewrealreviews .single-blog-content .elementor-widget-heading h3.elementor-heading-title,
body.single-viewrealreviews .vrealreview-single__content h3,
body.single-viewrealreviews .vrealreview-single__content h3.wp-block-heading,
body.single-viewrealreviews .vrealreview-single__content h3.elementor-heading-title,
body.single-viewrealreviews .vrealreview-single__content .elementor-widget-heading h3.elementor-heading-title,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h3,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h3.wp-block-heading,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h3.elementor-heading-title,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h3.elementor-heading-title,
body.single-viewrealreview .notice-single__content h3,
body.single-viewrealreview .notice-single__content h3.wp-block-heading,
body.single-viewrealreview .notice-single__content h3.elementor-heading-title,
body.single-viewrealreview .notice-single__content .elementor-widget-heading h3.elementor-heading-title,
body.single-viewrealreview .notice-single__content.entry-content h3,
body.single-viewrealreview .notice-single__content.entry-content h3.wp-block-heading,
body.single-viewrealreview .notice-single__content.entry-content h3.elementor-heading-title,
body.single-viewrealreview .notice-single__content.entry-content .elementor-widget-heading h3.elementor-heading-title,
body.single-viewrealreview .single-blog-content h3,
body.single-viewrealreview .single-blog-content h3.wp-block-heading,
body.single-viewrealreview .single-blog-content h3.elementor-heading-title,
body.single-viewrealreview .single-blog-content .elementor-widget-heading h3.elementor-heading-title,
body.single-viewrealreview .vrealreview-single__content h3,
body.single-viewrealreview .vrealreview-single__content h3.wp-block-heading,
body.single-viewrealreview .vrealreview-single__content h3.elementor-heading-title,
body.single-viewrealreview .vrealreview-single__content .elementor-widget-heading h3.elementor-heading-title,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h3,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h3.wp-block-heading,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h3.elementor-heading-title,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h3.elementor-heading-title,
body.single-view_notice .notice-single__content h3,
body.single-view_notice .notice-single__content h3.wp-block-heading,
body.single-view_notice .notice-single__content h3.elementor-heading-title,
body.single-view_notice .notice-single__content .elementor-widget-heading h3.elementor-heading-title,
body.single-view_notice .notice-single__content.entry-content h3,
body.single-view_notice .notice-single__content.entry-content h3.wp-block-heading,
body.single-view_notice .notice-single__content.entry-content h3.elementor-heading-title,
body.single-view_notice .notice-single__content.entry-content .elementor-widget-heading h3.elementor-heading-title,
body.single-view_notice .single-blog-content h3,
body.single-view_notice .single-blog-content h3.wp-block-heading,
body.single-view_notice .single-blog-content h3.elementor-heading-title,
body.single-view_notice .single-blog-content .elementor-widget-heading h3.elementor-heading-title,
body.single-view_notice .vrealreview-single__content h3,
body.single-view_notice .vrealreview-single__content h3.wp-block-heading,
body.single-view_notice .vrealreview-single__content h3.elementor-heading-title,
body.single-view_notice .vrealreview-single__content .elementor-widget-heading h3.elementor-heading-title,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h3,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h3.wp-block-heading,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h3.elementor-heading-title,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h3.elementor-heading-title {
  font-size: 20px;
  margin: 28px 0 14px;
}
body.single-viewblog .notice-single__content h4,
body.single-viewblog .notice-single__content h4.wp-block-heading,
body.single-viewblog .notice-single__content h4.elementor-heading-title,
body.single-viewblog .notice-single__content .elementor-widget-heading h4.elementor-heading-title,
body.single-viewblog .notice-single__content.entry-content h4,
body.single-viewblog .notice-single__content.entry-content h4.wp-block-heading,
body.single-viewblog .notice-single__content.entry-content h4.elementor-heading-title,
body.single-viewblog .notice-single__content.entry-content .elementor-widget-heading h4.elementor-heading-title,
body.single-viewblog .single-blog-content h4,
body.single-viewblog .single-blog-content h4.wp-block-heading,
body.single-viewblog .single-blog-content h4.elementor-heading-title,
body.single-viewblog .single-blog-content .elementor-widget-heading h4.elementor-heading-title,
body.single-viewblog .vrealreview-single__content h4,
body.single-viewblog .vrealreview-single__content h4.wp-block-heading,
body.single-viewblog .vrealreview-single__content h4.elementor-heading-title,
body.single-viewblog .vrealreview-single__content .elementor-widget-heading h4.elementor-heading-title,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h4,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h4.wp-block-heading,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h4.elementor-heading-title,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h4.elementor-heading-title,
body.single-viewrealreviews .notice-single__content h4,
body.single-viewrealreviews .notice-single__content h4.wp-block-heading,
body.single-viewrealreviews .notice-single__content h4.elementor-heading-title,
body.single-viewrealreviews .notice-single__content .elementor-widget-heading h4.elementor-heading-title,
body.single-viewrealreviews .notice-single__content.entry-content h4,
body.single-viewrealreviews .notice-single__content.entry-content h4.wp-block-heading,
body.single-viewrealreviews .notice-single__content.entry-content h4.elementor-heading-title,
body.single-viewrealreviews .notice-single__content.entry-content .elementor-widget-heading h4.elementor-heading-title,
body.single-viewrealreviews .single-blog-content h4,
body.single-viewrealreviews .single-blog-content h4.wp-block-heading,
body.single-viewrealreviews .single-blog-content h4.elementor-heading-title,
body.single-viewrealreviews .single-blog-content .elementor-widget-heading h4.elementor-heading-title,
body.single-viewrealreviews .vrealreview-single__content h4,
body.single-viewrealreviews .vrealreview-single__content h4.wp-block-heading,
body.single-viewrealreviews .vrealreview-single__content h4.elementor-heading-title,
body.single-viewrealreviews .vrealreview-single__content .elementor-widget-heading h4.elementor-heading-title,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h4,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h4.wp-block-heading,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h4.elementor-heading-title,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h4.elementor-heading-title,
body.single-viewrealreview .notice-single__content h4,
body.single-viewrealreview .notice-single__content h4.wp-block-heading,
body.single-viewrealreview .notice-single__content h4.elementor-heading-title,
body.single-viewrealreview .notice-single__content .elementor-widget-heading h4.elementor-heading-title,
body.single-viewrealreview .notice-single__content.entry-content h4,
body.single-viewrealreview .notice-single__content.entry-content h4.wp-block-heading,
body.single-viewrealreview .notice-single__content.entry-content h4.elementor-heading-title,
body.single-viewrealreview .notice-single__content.entry-content .elementor-widget-heading h4.elementor-heading-title,
body.single-viewrealreview .single-blog-content h4,
body.single-viewrealreview .single-blog-content h4.wp-block-heading,
body.single-viewrealreview .single-blog-content h4.elementor-heading-title,
body.single-viewrealreview .single-blog-content .elementor-widget-heading h4.elementor-heading-title,
body.single-viewrealreview .vrealreview-single__content h4,
body.single-viewrealreview .vrealreview-single__content h4.wp-block-heading,
body.single-viewrealreview .vrealreview-single__content h4.elementor-heading-title,
body.single-viewrealreview .vrealreview-single__content .elementor-widget-heading h4.elementor-heading-title,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h4,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h4.wp-block-heading,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h4.elementor-heading-title,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h4.elementor-heading-title,
body.single-view_notice .notice-single__content h4,
body.single-view_notice .notice-single__content h4.wp-block-heading,
body.single-view_notice .notice-single__content h4.elementor-heading-title,
body.single-view_notice .notice-single__content .elementor-widget-heading h4.elementor-heading-title,
body.single-view_notice .notice-single__content.entry-content h4,
body.single-view_notice .notice-single__content.entry-content h4.wp-block-heading,
body.single-view_notice .notice-single__content.entry-content h4.elementor-heading-title,
body.single-view_notice .notice-single__content.entry-content .elementor-widget-heading h4.elementor-heading-title,
body.single-view_notice .single-blog-content h4,
body.single-view_notice .single-blog-content h4.wp-block-heading,
body.single-view_notice .single-blog-content h4.elementor-heading-title,
body.single-view_notice .single-blog-content .elementor-widget-heading h4.elementor-heading-title,
body.single-view_notice .vrealreview-single__content h4,
body.single-view_notice .vrealreview-single__content h4.wp-block-heading,
body.single-view_notice .vrealreview-single__content h4.elementor-heading-title,
body.single-view_notice .vrealreview-single__content .elementor-widget-heading h4.elementor-heading-title,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h4,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h4.wp-block-heading,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h4.elementor-heading-title,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h4.elementor-heading-title {
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 12px;
}
body.single-viewblog .notice-single__content h5,
body.single-viewblog .notice-single__content h5.wp-block-heading,
body.single-viewblog .notice-single__content h5.elementor-heading-title,
body.single-viewblog .notice-single__content .elementor-widget-heading h5.elementor-heading-title,
body.single-viewblog .notice-single__content.entry-content h5,
body.single-viewblog .notice-single__content.entry-content h5.wp-block-heading,
body.single-viewblog .notice-single__content.entry-content h5.elementor-heading-title,
body.single-viewblog .notice-single__content.entry-content .elementor-widget-heading h5.elementor-heading-title,
body.single-viewblog .single-blog-content h5,
body.single-viewblog .single-blog-content h5.wp-block-heading,
body.single-viewblog .single-blog-content h5.elementor-heading-title,
body.single-viewblog .single-blog-content .elementor-widget-heading h5.elementor-heading-title,
body.single-viewblog .vrealreview-single__content h5,
body.single-viewblog .vrealreview-single__content h5.wp-block-heading,
body.single-viewblog .vrealreview-single__content h5.elementor-heading-title,
body.single-viewblog .vrealreview-single__content .elementor-widget-heading h5.elementor-heading-title,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h5,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h5.wp-block-heading,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h5.elementor-heading-title,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h5.elementor-heading-title,
body.single-viewrealreviews .notice-single__content h5,
body.single-viewrealreviews .notice-single__content h5.wp-block-heading,
body.single-viewrealreviews .notice-single__content h5.elementor-heading-title,
body.single-viewrealreviews .notice-single__content .elementor-widget-heading h5.elementor-heading-title,
body.single-viewrealreviews .notice-single__content.entry-content h5,
body.single-viewrealreviews .notice-single__content.entry-content h5.wp-block-heading,
body.single-viewrealreviews .notice-single__content.entry-content h5.elementor-heading-title,
body.single-viewrealreviews .notice-single__content.entry-content .elementor-widget-heading h5.elementor-heading-title,
body.single-viewrealreviews .single-blog-content h5,
body.single-viewrealreviews .single-blog-content h5.wp-block-heading,
body.single-viewrealreviews .single-blog-content h5.elementor-heading-title,
body.single-viewrealreviews .single-blog-content .elementor-widget-heading h5.elementor-heading-title,
body.single-viewrealreviews .vrealreview-single__content h5,
body.single-viewrealreviews .vrealreview-single__content h5.wp-block-heading,
body.single-viewrealreviews .vrealreview-single__content h5.elementor-heading-title,
body.single-viewrealreviews .vrealreview-single__content .elementor-widget-heading h5.elementor-heading-title,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h5,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h5.wp-block-heading,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h5.elementor-heading-title,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h5.elementor-heading-title,
body.single-viewrealreview .notice-single__content h5,
body.single-viewrealreview .notice-single__content h5.wp-block-heading,
body.single-viewrealreview .notice-single__content h5.elementor-heading-title,
body.single-viewrealreview .notice-single__content .elementor-widget-heading h5.elementor-heading-title,
body.single-viewrealreview .notice-single__content.entry-content h5,
body.single-viewrealreview .notice-single__content.entry-content h5.wp-block-heading,
body.single-viewrealreview .notice-single__content.entry-content h5.elementor-heading-title,
body.single-viewrealreview .notice-single__content.entry-content .elementor-widget-heading h5.elementor-heading-title,
body.single-viewrealreview .single-blog-content h5,
body.single-viewrealreview .single-blog-content h5.wp-block-heading,
body.single-viewrealreview .single-blog-content h5.elementor-heading-title,
body.single-viewrealreview .single-blog-content .elementor-widget-heading h5.elementor-heading-title,
body.single-viewrealreview .vrealreview-single__content h5,
body.single-viewrealreview .vrealreview-single__content h5.wp-block-heading,
body.single-viewrealreview .vrealreview-single__content h5.elementor-heading-title,
body.single-viewrealreview .vrealreview-single__content .elementor-widget-heading h5.elementor-heading-title,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h5,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h5.wp-block-heading,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h5.elementor-heading-title,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h5.elementor-heading-title,
body.single-view_notice .notice-single__content h5,
body.single-view_notice .notice-single__content h5.wp-block-heading,
body.single-view_notice .notice-single__content h5.elementor-heading-title,
body.single-view_notice .notice-single__content .elementor-widget-heading h5.elementor-heading-title,
body.single-view_notice .notice-single__content.entry-content h5,
body.single-view_notice .notice-single__content.entry-content h5.wp-block-heading,
body.single-view_notice .notice-single__content.entry-content h5.elementor-heading-title,
body.single-view_notice .notice-single__content.entry-content .elementor-widget-heading h5.elementor-heading-title,
body.single-view_notice .single-blog-content h5,
body.single-view_notice .single-blog-content h5.wp-block-heading,
body.single-view_notice .single-blog-content h5.elementor-heading-title,
body.single-view_notice .single-blog-content .elementor-widget-heading h5.elementor-heading-title,
body.single-view_notice .vrealreview-single__content h5,
body.single-view_notice .vrealreview-single__content h5.wp-block-heading,
body.single-view_notice .vrealreview-single__content h5.elementor-heading-title,
body.single-view_notice .vrealreview-single__content .elementor-widget-heading h5.elementor-heading-title,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h5,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h5.wp-block-heading,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h5.elementor-heading-title,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h5.elementor-heading-title {
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0 10px;
}
body.single-viewblog .notice-single__content h6,
body.single-viewblog .notice-single__content h6.wp-block-heading,
body.single-viewblog .notice-single__content h6.elementor-heading-title,
body.single-viewblog .notice-single__content .elementor-widget-heading h6.elementor-heading-title,
body.single-viewblog .notice-single__content.entry-content h6,
body.single-viewblog .notice-single__content.entry-content h6.wp-block-heading,
body.single-viewblog .notice-single__content.entry-content h6.elementor-heading-title,
body.single-viewblog .notice-single__content.entry-content .elementor-widget-heading h6.elementor-heading-title,
body.single-viewblog .single-blog-content h6,
body.single-viewblog .single-blog-content h6.wp-block-heading,
body.single-viewblog .single-blog-content h6.elementor-heading-title,
body.single-viewblog .single-blog-content .elementor-widget-heading h6.elementor-heading-title,
body.single-viewblog .vrealreview-single__content h6,
body.single-viewblog .vrealreview-single__content h6.wp-block-heading,
body.single-viewblog .vrealreview-single__content h6.elementor-heading-title,
body.single-viewblog .vrealreview-single__content .elementor-widget-heading h6.elementor-heading-title,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h6,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h6.wp-block-heading,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h6.elementor-heading-title,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h6.elementor-heading-title,
body.single-viewrealreviews .notice-single__content h6,
body.single-viewrealreviews .notice-single__content h6.wp-block-heading,
body.single-viewrealreviews .notice-single__content h6.elementor-heading-title,
body.single-viewrealreviews .notice-single__content .elementor-widget-heading h6.elementor-heading-title,
body.single-viewrealreviews .notice-single__content.entry-content h6,
body.single-viewrealreviews .notice-single__content.entry-content h6.wp-block-heading,
body.single-viewrealreviews .notice-single__content.entry-content h6.elementor-heading-title,
body.single-viewrealreviews .notice-single__content.entry-content .elementor-widget-heading h6.elementor-heading-title,
body.single-viewrealreviews .single-blog-content h6,
body.single-viewrealreviews .single-blog-content h6.wp-block-heading,
body.single-viewrealreviews .single-blog-content h6.elementor-heading-title,
body.single-viewrealreviews .single-blog-content .elementor-widget-heading h6.elementor-heading-title,
body.single-viewrealreviews .vrealreview-single__content h6,
body.single-viewrealreviews .vrealreview-single__content h6.wp-block-heading,
body.single-viewrealreviews .vrealreview-single__content h6.elementor-heading-title,
body.single-viewrealreviews .vrealreview-single__content .elementor-widget-heading h6.elementor-heading-title,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h6,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h6.wp-block-heading,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h6.elementor-heading-title,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h6.elementor-heading-title,
body.single-viewrealreview .notice-single__content h6,
body.single-viewrealreview .notice-single__content h6.wp-block-heading,
body.single-viewrealreview .notice-single__content h6.elementor-heading-title,
body.single-viewrealreview .notice-single__content .elementor-widget-heading h6.elementor-heading-title,
body.single-viewrealreview .notice-single__content.entry-content h6,
body.single-viewrealreview .notice-single__content.entry-content h6.wp-block-heading,
body.single-viewrealreview .notice-single__content.entry-content h6.elementor-heading-title,
body.single-viewrealreview .notice-single__content.entry-content .elementor-widget-heading h6.elementor-heading-title,
body.single-viewrealreview .single-blog-content h6,
body.single-viewrealreview .single-blog-content h6.wp-block-heading,
body.single-viewrealreview .single-blog-content h6.elementor-heading-title,
body.single-viewrealreview .single-blog-content .elementor-widget-heading h6.elementor-heading-title,
body.single-viewrealreview .vrealreview-single__content h6,
body.single-viewrealreview .vrealreview-single__content h6.wp-block-heading,
body.single-viewrealreview .vrealreview-single__content h6.elementor-heading-title,
body.single-viewrealreview .vrealreview-single__content .elementor-widget-heading h6.elementor-heading-title,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h6,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h6.wp-block-heading,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h6.elementor-heading-title,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h6.elementor-heading-title,
body.single-view_notice .notice-single__content h6,
body.single-view_notice .notice-single__content h6.wp-block-heading,
body.single-view_notice .notice-single__content h6.elementor-heading-title,
body.single-view_notice .notice-single__content .elementor-widget-heading h6.elementor-heading-title,
body.single-view_notice .notice-single__content.entry-content h6,
body.single-view_notice .notice-single__content.entry-content h6.wp-block-heading,
body.single-view_notice .notice-single__content.entry-content h6.elementor-heading-title,
body.single-view_notice .notice-single__content.entry-content .elementor-widget-heading h6.elementor-heading-title,
body.single-view_notice .single-blog-content h6,
body.single-view_notice .single-blog-content h6.wp-block-heading,
body.single-view_notice .single-blog-content h6.elementor-heading-title,
body.single-view_notice .single-blog-content .elementor-widget-heading h6.elementor-heading-title,
body.single-view_notice .vrealreview-single__content h6,
body.single-view_notice .vrealreview-single__content h6.wp-block-heading,
body.single-view_notice .vrealreview-single__content h6.elementor-heading-title,
body.single-view_notice .vrealreview-single__content .elementor-widget-heading h6.elementor-heading-title,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h6,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h6.wp-block-heading,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h6.elementor-heading-title,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h6.elementor-heading-title {
  font-size: 15px;
  font-weight: 600;
  margin: 18px 0 10px;
}
body.single-viewblog .notice-single__content > :is(h1, h2, h3, h4, h5, h6):first-child,
body.single-viewblog .notice-single__content > :is(h1, h2, h3, h4, h5, h6).wp-block-heading:first-child,
body.single-viewblog .notice-single__content .elementor-widget-heading:first-child :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewblog .notice-single__content.entry-content > :is(h1, h2, h3, h4, h5, h6):first-child,
body.single-viewblog .notice-single__content.entry-content > :is(h1, h2, h3, h4, h5, h6).wp-block-heading:first-child,
body.single-viewblog .notice-single__content.entry-content .elementor-widget-heading:first-child :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewblog .single-blog-content > :is(h1, h2, h3, h4, h5, h6):first-child,
body.single-viewblog .single-blog-content > :is(h1, h2, h3, h4, h5, h6).wp-block-heading:first-child,
body.single-viewblog .single-blog-content .elementor-widget-heading:first-child :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewblog .vrealreview-single__content > :is(h1, h2, h3, h4, h5, h6):first-child,
body.single-viewblog .vrealreview-single__content > :is(h1, h2, h3, h4, h5, h6).wp-block-heading:first-child,
body.single-viewblog .vrealreview-single__content .elementor-widget-heading:first-child :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content > :is(h1, h2, h3, h4, h5, h6):first-child,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content > :is(h1, h2, h3, h4, h5, h6).wp-block-heading:first-child,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading:first-child :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreviews .notice-single__content > :is(h1, h2, h3, h4, h5, h6):first-child,
body.single-viewrealreviews .notice-single__content > :is(h1, h2, h3, h4, h5, h6).wp-block-heading:first-child,
body.single-viewrealreviews .notice-single__content .elementor-widget-heading:first-child :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreviews .notice-single__content.entry-content > :is(h1, h2, h3, h4, h5, h6):first-child,
body.single-viewrealreviews .notice-single__content.entry-content > :is(h1, h2, h3, h4, h5, h6).wp-block-heading:first-child,
body.single-viewrealreviews .notice-single__content.entry-content .elementor-widget-heading:first-child :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreviews .single-blog-content > :is(h1, h2, h3, h4, h5, h6):first-child,
body.single-viewrealreviews .single-blog-content > :is(h1, h2, h3, h4, h5, h6).wp-block-heading:first-child,
body.single-viewrealreviews .single-blog-content .elementor-widget-heading:first-child :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreviews .vrealreview-single__content > :is(h1, h2, h3, h4, h5, h6):first-child,
body.single-viewrealreviews .vrealreview-single__content > :is(h1, h2, h3, h4, h5, h6).wp-block-heading:first-child,
body.single-viewrealreviews .vrealreview-single__content .elementor-widget-heading:first-child :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content > :is(h1, h2, h3, h4, h5, h6):first-child,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content > :is(h1, h2, h3, h4, h5, h6).wp-block-heading:first-child,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading:first-child :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreview .notice-single__content > :is(h1, h2, h3, h4, h5, h6):first-child,
body.single-viewrealreview .notice-single__content > :is(h1, h2, h3, h4, h5, h6).wp-block-heading:first-child,
body.single-viewrealreview .notice-single__content .elementor-widget-heading:first-child :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreview .notice-single__content.entry-content > :is(h1, h2, h3, h4, h5, h6):first-child,
body.single-viewrealreview .notice-single__content.entry-content > :is(h1, h2, h3, h4, h5, h6).wp-block-heading:first-child,
body.single-viewrealreview .notice-single__content.entry-content .elementor-widget-heading:first-child :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreview .single-blog-content > :is(h1, h2, h3, h4, h5, h6):first-child,
body.single-viewrealreview .single-blog-content > :is(h1, h2, h3, h4, h5, h6).wp-block-heading:first-child,
body.single-viewrealreview .single-blog-content .elementor-widget-heading:first-child :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreview .vrealreview-single__content > :is(h1, h2, h3, h4, h5, h6):first-child,
body.single-viewrealreview .vrealreview-single__content > :is(h1, h2, h3, h4, h5, h6).wp-block-heading:first-child,
body.single-viewrealreview .vrealreview-single__content .elementor-widget-heading:first-child :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content > :is(h1, h2, h3, h4, h5, h6):first-child,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content > :is(h1, h2, h3, h4, h5, h6).wp-block-heading:first-child,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading:first-child :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-view_notice .notice-single__content > :is(h1, h2, h3, h4, h5, h6):first-child,
body.single-view_notice .notice-single__content > :is(h1, h2, h3, h4, h5, h6).wp-block-heading:first-child,
body.single-view_notice .notice-single__content .elementor-widget-heading:first-child :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-view_notice .notice-single__content.entry-content > :is(h1, h2, h3, h4, h5, h6):first-child,
body.single-view_notice .notice-single__content.entry-content > :is(h1, h2, h3, h4, h5, h6).wp-block-heading:first-child,
body.single-view_notice .notice-single__content.entry-content .elementor-widget-heading:first-child :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-view_notice .single-blog-content > :is(h1, h2, h3, h4, h5, h6):first-child,
body.single-view_notice .single-blog-content > :is(h1, h2, h3, h4, h5, h6).wp-block-heading:first-child,
body.single-view_notice .single-blog-content .elementor-widget-heading:first-child :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-view_notice .vrealreview-single__content > :is(h1, h2, h3, h4, h5, h6):first-child,
body.single-view_notice .vrealreview-single__content > :is(h1, h2, h3, h4, h5, h6).wp-block-heading:first-child,
body.single-view_notice .vrealreview-single__content .elementor-widget-heading:first-child :is(h1, h2, h3, h4, h5, h6).elementor-heading-title,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content > :is(h1, h2, h3, h4, h5, h6):first-child,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content > :is(h1, h2, h3, h4, h5, h6).wp-block-heading:first-child,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading:first-child :is(h1, h2, h3, h4, h5, h6).elementor-heading-title {
  margin-top: 0;
}
body.single-viewblog .notice-single__content p,
body.single-viewblog .notice-single__content.entry-content p,
body.single-viewblog .single-blog-content p,
body.single-viewblog .vrealreview-single__content p,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content p,
body.single-viewrealreviews .notice-single__content p,
body.single-viewrealreviews .notice-single__content.entry-content p,
body.single-viewrealreviews .single-blog-content p,
body.single-viewrealreviews .vrealreview-single__content p,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content p,
body.single-viewrealreview .notice-single__content p,
body.single-viewrealreview .notice-single__content.entry-content p,
body.single-viewrealreview .single-blog-content p,
body.single-viewrealreview .vrealreview-single__content p,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content p,
body.single-view_notice .notice-single__content p,
body.single-view_notice .notice-single__content.entry-content p,
body.single-view_notice .single-blog-content p,
body.single-view_notice .vrealreview-single__content p,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content p {
  margin: 0 0 1.25em;
  font-size: 18px;
  line-height: 1.7;
  color: #746b64;
}
body.single-viewblog .notice-single__content p:last-child,
body.single-viewblog .notice-single__content.entry-content p:last-child,
body.single-viewblog .single-blog-content p:last-child,
body.single-viewblog .vrealreview-single__content p:last-child,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content p:last-child,
body.single-viewrealreviews .notice-single__content p:last-child,
body.single-viewrealreviews .notice-single__content.entry-content p:last-child,
body.single-viewrealreviews .single-blog-content p:last-child,
body.single-viewrealreviews .vrealreview-single__content p:last-child,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content p:last-child,
body.single-viewrealreview .notice-single__content p:last-child,
body.single-viewrealreview .notice-single__content.entry-content p:last-child,
body.single-viewrealreview .single-blog-content p:last-child,
body.single-viewrealreview .vrealreview-single__content p:last-child,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content p:last-child,
body.single-view_notice .notice-single__content p:last-child,
body.single-view_notice .notice-single__content.entry-content p:last-child,
body.single-view_notice .single-blog-content p:last-child,
body.single-view_notice .vrealreview-single__content p:last-child,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content p:last-child {
  margin-bottom: 0;
}
body.single-viewblog .notice-single__content ul,
body.single-viewblog .notice-single__content ol,
body.single-viewblog .notice-single__content.entry-content ul,
body.single-viewblog .notice-single__content.entry-content ol,
body.single-viewblog .single-blog-content ul,
body.single-viewblog .single-blog-content ol,
body.single-viewblog .vrealreview-single__content ul,
body.single-viewblog .vrealreview-single__content ol,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content ul,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content ol,
body.single-viewrealreviews .notice-single__content ul,
body.single-viewrealreviews .notice-single__content ol,
body.single-viewrealreviews .notice-single__content.entry-content ul,
body.single-viewrealreviews .notice-single__content.entry-content ol,
body.single-viewrealreviews .single-blog-content ul,
body.single-viewrealreviews .single-blog-content ol,
body.single-viewrealreviews .vrealreview-single__content ul,
body.single-viewrealreviews .vrealreview-single__content ol,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content ul,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content ol,
body.single-viewrealreview .notice-single__content ul,
body.single-viewrealreview .notice-single__content ol,
body.single-viewrealreview .notice-single__content.entry-content ul,
body.single-viewrealreview .notice-single__content.entry-content ol,
body.single-viewrealreview .single-blog-content ul,
body.single-viewrealreview .single-blog-content ol,
body.single-viewrealreview .vrealreview-single__content ul,
body.single-viewrealreview .vrealreview-single__content ol,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content ul,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content ol,
body.single-view_notice .notice-single__content ul,
body.single-view_notice .notice-single__content ol,
body.single-view_notice .notice-single__content.entry-content ul,
body.single-view_notice .notice-single__content.entry-content ol,
body.single-view_notice .single-blog-content ul,
body.single-view_notice .single-blog-content ol,
body.single-view_notice .vrealreview-single__content ul,
body.single-view_notice .vrealreview-single__content ol,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content ul,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content ol {
  margin: 0 0 1.25em;
  padding-left: 1.5em;
  font-size: inherit;
  line-height: 1.7;
  color: #746b64;
}
body.single-viewblog .notice-single__content li,
body.single-viewblog .notice-single__content.entry-content li,
body.single-viewblog .single-blog-content li,
body.single-viewblog .vrealreview-single__content li,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content li,
body.single-viewrealreviews .notice-single__content li,
body.single-viewrealreviews .notice-single__content.entry-content li,
body.single-viewrealreviews .single-blog-content li,
body.single-viewrealreviews .vrealreview-single__content li,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content li,
body.single-viewrealreview .notice-single__content li,
body.single-viewrealreview .notice-single__content.entry-content li,
body.single-viewrealreview .single-blog-content li,
body.single-viewrealreview .vrealreview-single__content li,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content li,
body.single-view_notice .notice-single__content li,
body.single-view_notice .notice-single__content.entry-content li,
body.single-view_notice .single-blog-content li,
body.single-view_notice .vrealreview-single__content li,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content li {
  margin: 0 0 0.5em;
  line-height: 1.7;
  color: #746b64;
}
body.single-viewblog .notice-single__content li:last-child,
body.single-viewblog .notice-single__content.entry-content li:last-child,
body.single-viewblog .single-blog-content li:last-child,
body.single-viewblog .vrealreview-single__content li:last-child,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content li:last-child,
body.single-viewrealreviews .notice-single__content li:last-child,
body.single-viewrealreviews .notice-single__content.entry-content li:last-child,
body.single-viewrealreviews .single-blog-content li:last-child,
body.single-viewrealreviews .vrealreview-single__content li:last-child,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content li:last-child,
body.single-viewrealreview .notice-single__content li:last-child,
body.single-viewrealreview .notice-single__content.entry-content li:last-child,
body.single-viewrealreview .single-blog-content li:last-child,
body.single-viewrealreview .vrealreview-single__content li:last-child,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content li:last-child,
body.single-view_notice .notice-single__content li:last-child,
body.single-view_notice .notice-single__content.entry-content li:last-child,
body.single-view_notice .single-blog-content li:last-child,
body.single-view_notice .vrealreview-single__content li:last-child,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content li:last-child {
  margin-bottom: 0;
}
body.single-viewblog .notice-single__content ul ul,
body.single-viewblog .notice-single__content ul ol,
body.single-viewblog .notice-single__content ol ul,
body.single-viewblog .notice-single__content ol ol,
body.single-viewblog .notice-single__content.entry-content ul ul,
body.single-viewblog .notice-single__content.entry-content ul ol,
body.single-viewblog .notice-single__content.entry-content ol ul,
body.single-viewblog .notice-single__content.entry-content ol ol,
body.single-viewblog .single-blog-content ul ul,
body.single-viewblog .single-blog-content ul ol,
body.single-viewblog .single-blog-content ol ul,
body.single-viewblog .single-blog-content ol ol,
body.single-viewblog .vrealreview-single__content ul ul,
body.single-viewblog .vrealreview-single__content ul ol,
body.single-viewblog .vrealreview-single__content ol ul,
body.single-viewblog .vrealreview-single__content ol ol,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content ul ul,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content ul ol,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content ol ul,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content ol ol,
body.single-viewrealreviews .notice-single__content ul ul,
body.single-viewrealreviews .notice-single__content ul ol,
body.single-viewrealreviews .notice-single__content ol ul,
body.single-viewrealreviews .notice-single__content ol ol,
body.single-viewrealreviews .notice-single__content.entry-content ul ul,
body.single-viewrealreviews .notice-single__content.entry-content ul ol,
body.single-viewrealreviews .notice-single__content.entry-content ol ul,
body.single-viewrealreviews .notice-single__content.entry-content ol ol,
body.single-viewrealreviews .single-blog-content ul ul,
body.single-viewrealreviews .single-blog-content ul ol,
body.single-viewrealreviews .single-blog-content ol ul,
body.single-viewrealreviews .single-blog-content ol ol,
body.single-viewrealreviews .vrealreview-single__content ul ul,
body.single-viewrealreviews .vrealreview-single__content ul ol,
body.single-viewrealreviews .vrealreview-single__content ol ul,
body.single-viewrealreviews .vrealreview-single__content ol ol,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content ul ul,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content ul ol,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content ol ul,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content ol ol,
body.single-viewrealreview .notice-single__content ul ul,
body.single-viewrealreview .notice-single__content ul ol,
body.single-viewrealreview .notice-single__content ol ul,
body.single-viewrealreview .notice-single__content ol ol,
body.single-viewrealreview .notice-single__content.entry-content ul ul,
body.single-viewrealreview .notice-single__content.entry-content ul ol,
body.single-viewrealreview .notice-single__content.entry-content ol ul,
body.single-viewrealreview .notice-single__content.entry-content ol ol,
body.single-viewrealreview .single-blog-content ul ul,
body.single-viewrealreview .single-blog-content ul ol,
body.single-viewrealreview .single-blog-content ol ul,
body.single-viewrealreview .single-blog-content ol ol,
body.single-viewrealreview .vrealreview-single__content ul ul,
body.single-viewrealreview .vrealreview-single__content ul ol,
body.single-viewrealreview .vrealreview-single__content ol ul,
body.single-viewrealreview .vrealreview-single__content ol ol,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content ul ul,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content ul ol,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content ol ul,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content ol ol,
body.single-view_notice .notice-single__content ul ul,
body.single-view_notice .notice-single__content ul ol,
body.single-view_notice .notice-single__content ol ul,
body.single-view_notice .notice-single__content ol ol,
body.single-view_notice .notice-single__content.entry-content ul ul,
body.single-view_notice .notice-single__content.entry-content ul ol,
body.single-view_notice .notice-single__content.entry-content ol ul,
body.single-view_notice .notice-single__content.entry-content ol ol,
body.single-view_notice .single-blog-content ul ul,
body.single-view_notice .single-blog-content ul ol,
body.single-view_notice .single-blog-content ol ul,
body.single-view_notice .single-blog-content ol ol,
body.single-view_notice .vrealreview-single__content ul ul,
body.single-view_notice .vrealreview-single__content ul ol,
body.single-view_notice .vrealreview-single__content ol ul,
body.single-view_notice .vrealreview-single__content ol ol,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content ul ul,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content ul ol,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content ol ul,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content ol ol {
  margin-top: 0.5em;
  margin-bottom: 0;
}
body.single-viewblog .notice-single__content a,
body.single-viewblog .notice-single__content.entry-content a,
body.single-viewblog .single-blog-content a,
body.single-viewblog .vrealreview-single__content a,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content a,
body.single-viewrealreviews .notice-single__content a,
body.single-viewrealreviews .notice-single__content.entry-content a,
body.single-viewrealreviews .single-blog-content a,
body.single-viewrealreviews .vrealreview-single__content a,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content a,
body.single-viewrealreview .notice-single__content a,
body.single-viewrealreview .notice-single__content.entry-content a,
body.single-viewrealreview .single-blog-content a,
body.single-viewrealreview .vrealreview-single__content a,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content a,
body.single-view_notice .notice-single__content a,
body.single-view_notice .notice-single__content.entry-content a,
body.single-view_notice .single-blog-content a,
body.single-view_notice .vrealreview-single__content a,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content a {
  color: #7a6e66;
  text-decoration: underline;
  text-underline-offset: 2px;
}
body.single-viewblog .notice-single__content a:hover, body.single-viewblog .notice-single__content a:focus,
body.single-viewblog .notice-single__content.entry-content a:hover,
body.single-viewblog .notice-single__content.entry-content a:focus,
body.single-viewblog .single-blog-content a:hover,
body.single-viewblog .single-blog-content a:focus,
body.single-viewblog .vrealreview-single__content a:hover,
body.single-viewblog .vrealreview-single__content a:focus,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content a:hover,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content a:focus,
body.single-viewrealreviews .notice-single__content a:hover,
body.single-viewrealreviews .notice-single__content a:focus,
body.single-viewrealreviews .notice-single__content.entry-content a:hover,
body.single-viewrealreviews .notice-single__content.entry-content a:focus,
body.single-viewrealreviews .single-blog-content a:hover,
body.single-viewrealreviews .single-blog-content a:focus,
body.single-viewrealreviews .vrealreview-single__content a:hover,
body.single-viewrealreviews .vrealreview-single__content a:focus,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content a:hover,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content a:focus,
body.single-viewrealreview .notice-single__content a:hover,
body.single-viewrealreview .notice-single__content a:focus,
body.single-viewrealreview .notice-single__content.entry-content a:hover,
body.single-viewrealreview .notice-single__content.entry-content a:focus,
body.single-viewrealreview .single-blog-content a:hover,
body.single-viewrealreview .single-blog-content a:focus,
body.single-viewrealreview .vrealreview-single__content a:hover,
body.single-viewrealreview .vrealreview-single__content a:focus,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content a:hover,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content a:focus,
body.single-view_notice .notice-single__content a:hover,
body.single-view_notice .notice-single__content a:focus,
body.single-view_notice .notice-single__content.entry-content a:hover,
body.single-view_notice .notice-single__content.entry-content a:focus,
body.single-view_notice .single-blog-content a:hover,
body.single-view_notice .single-blog-content a:focus,
body.single-view_notice .vrealreview-single__content a:hover,
body.single-view_notice .vrealreview-single__content a:focus,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content a:hover,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content a:focus {
  color: #4a433c;
}
body.single-viewblog .notice-single__content img,
body.single-viewblog .notice-single__content.entry-content img,
body.single-viewblog .single-blog-content img,
body.single-viewblog .vrealreview-single__content img,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content img,
body.single-viewrealreviews .notice-single__content img,
body.single-viewrealreviews .notice-single__content.entry-content img,
body.single-viewrealreviews .single-blog-content img,
body.single-viewrealreviews .vrealreview-single__content img,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content img,
body.single-viewrealreview .notice-single__content img,
body.single-viewrealreview .notice-single__content.entry-content img,
body.single-viewrealreview .single-blog-content img,
body.single-viewrealreview .vrealreview-single__content img,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content img,
body.single-view_notice .notice-single__content img,
body.single-view_notice .notice-single__content.entry-content img,
body.single-view_notice .single-blog-content img,
body.single-view_notice .vrealreview-single__content img,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
}
body.single-viewblog .notice-single__content figure,
body.single-viewblog .notice-single__content.entry-content figure,
body.single-viewblog .single-blog-content figure,
body.single-viewblog .vrealreview-single__content figure,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content figure,
body.single-viewrealreviews .notice-single__content figure,
body.single-viewrealreviews .notice-single__content.entry-content figure,
body.single-viewrealreviews .single-blog-content figure,
body.single-viewrealreviews .vrealreview-single__content figure,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content figure,
body.single-viewrealreview .notice-single__content figure,
body.single-viewrealreview .notice-single__content.entry-content figure,
body.single-viewrealreview .single-blog-content figure,
body.single-viewrealreview .vrealreview-single__content figure,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content figure,
body.single-view_notice .notice-single__content figure,
body.single-view_notice .notice-single__content.entry-content figure,
body.single-view_notice .single-blog-content figure,
body.single-view_notice .vrealreview-single__content figure,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content figure {
  margin: 1.5em 0;
}
body.single-viewblog .notice-single__content figure img,
body.single-viewblog .notice-single__content.entry-content figure img,
body.single-viewblog .single-blog-content figure img,
body.single-viewblog .vrealreview-single__content figure img,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content figure img,
body.single-viewrealreviews .notice-single__content figure img,
body.single-viewrealreviews .notice-single__content.entry-content figure img,
body.single-viewrealreviews .single-blog-content figure img,
body.single-viewrealreviews .vrealreview-single__content figure img,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content figure img,
body.single-viewrealreview .notice-single__content figure img,
body.single-viewrealreview .notice-single__content.entry-content figure img,
body.single-viewrealreview .single-blog-content figure img,
body.single-viewrealreview .vrealreview-single__content figure img,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content figure img,
body.single-view_notice .notice-single__content figure img,
body.single-view_notice .notice-single__content.entry-content figure img,
body.single-view_notice .single-blog-content figure img,
body.single-view_notice .vrealreview-single__content figure img,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content figure img {
  margin: 0;
}
body.single-viewblog .notice-single__content figure.aligncenter,
body.single-viewblog .notice-single__content .wp-block-image.aligncenter,
body.single-viewblog .notice-single__content.entry-content figure.aligncenter,
body.single-viewblog .notice-single__content.entry-content .wp-block-image.aligncenter,
body.single-viewblog .single-blog-content figure.aligncenter,
body.single-viewblog .single-blog-content .wp-block-image.aligncenter,
body.single-viewblog .vrealreview-single__content figure.aligncenter,
body.single-viewblog .vrealreview-single__content .wp-block-image.aligncenter,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content figure.aligncenter,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .wp-block-image.aligncenter,
body.single-viewrealreviews .notice-single__content figure.aligncenter,
body.single-viewrealreviews .notice-single__content .wp-block-image.aligncenter,
body.single-viewrealreviews .notice-single__content.entry-content figure.aligncenter,
body.single-viewrealreviews .notice-single__content.entry-content .wp-block-image.aligncenter,
body.single-viewrealreviews .single-blog-content figure.aligncenter,
body.single-viewrealreviews .single-blog-content .wp-block-image.aligncenter,
body.single-viewrealreviews .vrealreview-single__content figure.aligncenter,
body.single-viewrealreviews .vrealreview-single__content .wp-block-image.aligncenter,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content figure.aligncenter,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .wp-block-image.aligncenter,
body.single-viewrealreview .notice-single__content figure.aligncenter,
body.single-viewrealreview .notice-single__content .wp-block-image.aligncenter,
body.single-viewrealreview .notice-single__content.entry-content figure.aligncenter,
body.single-viewrealreview .notice-single__content.entry-content .wp-block-image.aligncenter,
body.single-viewrealreview .single-blog-content figure.aligncenter,
body.single-viewrealreview .single-blog-content .wp-block-image.aligncenter,
body.single-viewrealreview .vrealreview-single__content figure.aligncenter,
body.single-viewrealreview .vrealreview-single__content .wp-block-image.aligncenter,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content figure.aligncenter,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .wp-block-image.aligncenter,
body.single-view_notice .notice-single__content figure.aligncenter,
body.single-view_notice .notice-single__content .wp-block-image.aligncenter,
body.single-view_notice .notice-single__content.entry-content figure.aligncenter,
body.single-view_notice .notice-single__content.entry-content .wp-block-image.aligncenter,
body.single-view_notice .single-blog-content figure.aligncenter,
body.single-view_notice .single-blog-content .wp-block-image.aligncenter,
body.single-view_notice .vrealreview-single__content figure.aligncenter,
body.single-view_notice .vrealreview-single__content .wp-block-image.aligncenter,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content figure.aligncenter,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .wp-block-image.aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
body.single-viewblog .notice-single__content figure.aligncenter img,
body.single-viewblog .notice-single__content .wp-block-image.aligncenter img,
body.single-viewblog .notice-single__content.entry-content figure.aligncenter img,
body.single-viewblog .notice-single__content.entry-content .wp-block-image.aligncenter img,
body.single-viewblog .single-blog-content figure.aligncenter img,
body.single-viewblog .single-blog-content .wp-block-image.aligncenter img,
body.single-viewblog .vrealreview-single__content figure.aligncenter img,
body.single-viewblog .vrealreview-single__content .wp-block-image.aligncenter img,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content figure.aligncenter img,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .wp-block-image.aligncenter img,
body.single-viewrealreviews .notice-single__content figure.aligncenter img,
body.single-viewrealreviews .notice-single__content .wp-block-image.aligncenter img,
body.single-viewrealreviews .notice-single__content.entry-content figure.aligncenter img,
body.single-viewrealreviews .notice-single__content.entry-content .wp-block-image.aligncenter img,
body.single-viewrealreviews .single-blog-content figure.aligncenter img,
body.single-viewrealreviews .single-blog-content .wp-block-image.aligncenter img,
body.single-viewrealreviews .vrealreview-single__content figure.aligncenter img,
body.single-viewrealreviews .vrealreview-single__content .wp-block-image.aligncenter img,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content figure.aligncenter img,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .wp-block-image.aligncenter img,
body.single-viewrealreview .notice-single__content figure.aligncenter img,
body.single-viewrealreview .notice-single__content .wp-block-image.aligncenter img,
body.single-viewrealreview .notice-single__content.entry-content figure.aligncenter img,
body.single-viewrealreview .notice-single__content.entry-content .wp-block-image.aligncenter img,
body.single-viewrealreview .single-blog-content figure.aligncenter img,
body.single-viewrealreview .single-blog-content .wp-block-image.aligncenter img,
body.single-viewrealreview .vrealreview-single__content figure.aligncenter img,
body.single-viewrealreview .vrealreview-single__content .wp-block-image.aligncenter img,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content figure.aligncenter img,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .wp-block-image.aligncenter img,
body.single-view_notice .notice-single__content figure.aligncenter img,
body.single-view_notice .notice-single__content .wp-block-image.aligncenter img,
body.single-view_notice .notice-single__content.entry-content figure.aligncenter img,
body.single-view_notice .notice-single__content.entry-content .wp-block-image.aligncenter img,
body.single-view_notice .single-blog-content figure.aligncenter img,
body.single-view_notice .single-blog-content .wp-block-image.aligncenter img,
body.single-view_notice .vrealreview-single__content figure.aligncenter img,
body.single-view_notice .vrealreview-single__content .wp-block-image.aligncenter img,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content figure.aligncenter img,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .wp-block-image.aligncenter img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
body.single-viewblog .notice-single__content blockquote,
body.single-viewblog .notice-single__content.entry-content blockquote,
body.single-viewblog .single-blog-content blockquote,
body.single-viewblog .vrealreview-single__content blockquote,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content blockquote,
body.single-viewrealreviews .notice-single__content blockquote,
body.single-viewrealreviews .notice-single__content.entry-content blockquote,
body.single-viewrealreviews .single-blog-content blockquote,
body.single-viewrealreviews .vrealreview-single__content blockquote,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content blockquote,
body.single-viewrealreview .notice-single__content blockquote,
body.single-viewrealreview .notice-single__content.entry-content blockquote,
body.single-viewrealreview .single-blog-content blockquote,
body.single-viewrealreview .vrealreview-single__content blockquote,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content blockquote,
body.single-view_notice .notice-single__content blockquote,
body.single-view_notice .notice-single__content.entry-content blockquote,
body.single-view_notice .single-blog-content blockquote,
body.single-view_notice .vrealreview-single__content blockquote,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content blockquote {
  margin: 1.5em 0;
  padding: 16px 20px;
  border-left: 4px solid #ab957f;
  background: #f9f7f5;
  color: #746b64;
  font-size: 17px;
  line-height: 1.7;
}
body.single-viewblog .notice-single__content blockquote p:last-child,
body.single-viewblog .notice-single__content.entry-content blockquote p:last-child,
body.single-viewblog .single-blog-content blockquote p:last-child,
body.single-viewblog .vrealreview-single__content blockquote p:last-child,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content blockquote p:last-child,
body.single-viewrealreviews .notice-single__content blockquote p:last-child,
body.single-viewrealreviews .notice-single__content.entry-content blockquote p:last-child,
body.single-viewrealreviews .single-blog-content blockquote p:last-child,
body.single-viewrealreviews .vrealreview-single__content blockquote p:last-child,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content blockquote p:last-child,
body.single-viewrealreview .notice-single__content blockquote p:last-child,
body.single-viewrealreview .notice-single__content.entry-content blockquote p:last-child,
body.single-viewrealreview .single-blog-content blockquote p:last-child,
body.single-viewrealreview .vrealreview-single__content blockquote p:last-child,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content blockquote p:last-child,
body.single-view_notice .notice-single__content blockquote p:last-child,
body.single-view_notice .notice-single__content.entry-content blockquote p:last-child,
body.single-view_notice .single-blog-content blockquote p:last-child,
body.single-view_notice .vrealreview-single__content blockquote p:last-child,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content blockquote p:last-child {
  margin-bottom: 0;
}
body.single-viewblog .notice-single__content :is(h1, h2, h3, h4, h5, h6) + p,
body.single-viewblog .notice-single__content :is(h1, h2, h3, h4, h5, h6) + ul,
body.single-viewblog .notice-single__content :is(h1, h2, h3, h4, h5, h6) + ol,
body.single-viewblog .notice-single__content :is(h1, h2, h3, h4, h5, h6) + blockquote,
body.single-viewblog .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6) + p,
body.single-viewblog .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6) + ul,
body.single-viewblog .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6) + ol,
body.single-viewblog .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6) + blockquote,
body.single-viewblog .single-blog-content :is(h1, h2, h3, h4, h5, h6) + p,
body.single-viewblog .single-blog-content :is(h1, h2, h3, h4, h5, h6) + ul,
body.single-viewblog .single-blog-content :is(h1, h2, h3, h4, h5, h6) + ol,
body.single-viewblog .single-blog-content :is(h1, h2, h3, h4, h5, h6) + blockquote,
body.single-viewblog .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6) + p,
body.single-viewblog .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6) + ul,
body.single-viewblog .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6) + ol,
body.single-viewblog .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6) + blockquote,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6) + p,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6) + ul,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6) + ol,
body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6) + blockquote,
body.single-viewrealreviews .notice-single__content :is(h1, h2, h3, h4, h5, h6) + p,
body.single-viewrealreviews .notice-single__content :is(h1, h2, h3, h4, h5, h6) + ul,
body.single-viewrealreviews .notice-single__content :is(h1, h2, h3, h4, h5, h6) + ol,
body.single-viewrealreviews .notice-single__content :is(h1, h2, h3, h4, h5, h6) + blockquote,
body.single-viewrealreviews .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6) + p,
body.single-viewrealreviews .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6) + ul,
body.single-viewrealreviews .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6) + ol,
body.single-viewrealreviews .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6) + blockquote,
body.single-viewrealreviews .single-blog-content :is(h1, h2, h3, h4, h5, h6) + p,
body.single-viewrealreviews .single-blog-content :is(h1, h2, h3, h4, h5, h6) + ul,
body.single-viewrealreviews .single-blog-content :is(h1, h2, h3, h4, h5, h6) + ol,
body.single-viewrealreviews .single-blog-content :is(h1, h2, h3, h4, h5, h6) + blockquote,
body.single-viewrealreviews .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6) + p,
body.single-viewrealreviews .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6) + ul,
body.single-viewrealreviews .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6) + ol,
body.single-viewrealreviews .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6) + blockquote,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6) + p,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6) + ul,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6) + ol,
body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6) + blockquote,
body.single-viewrealreview .notice-single__content :is(h1, h2, h3, h4, h5, h6) + p,
body.single-viewrealreview .notice-single__content :is(h1, h2, h3, h4, h5, h6) + ul,
body.single-viewrealreview .notice-single__content :is(h1, h2, h3, h4, h5, h6) + ol,
body.single-viewrealreview .notice-single__content :is(h1, h2, h3, h4, h5, h6) + blockquote,
body.single-viewrealreview .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6) + p,
body.single-viewrealreview .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6) + ul,
body.single-viewrealreview .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6) + ol,
body.single-viewrealreview .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6) + blockquote,
body.single-viewrealreview .single-blog-content :is(h1, h2, h3, h4, h5, h6) + p,
body.single-viewrealreview .single-blog-content :is(h1, h2, h3, h4, h5, h6) + ul,
body.single-viewrealreview .single-blog-content :is(h1, h2, h3, h4, h5, h6) + ol,
body.single-viewrealreview .single-blog-content :is(h1, h2, h3, h4, h5, h6) + blockquote,
body.single-viewrealreview .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6) + p,
body.single-viewrealreview .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6) + ul,
body.single-viewrealreview .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6) + ol,
body.single-viewrealreview .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6) + blockquote,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6) + p,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6) + ul,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6) + ol,
body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6) + blockquote,
body.single-view_notice .notice-single__content :is(h1, h2, h3, h4, h5, h6) + p,
body.single-view_notice .notice-single__content :is(h1, h2, h3, h4, h5, h6) + ul,
body.single-view_notice .notice-single__content :is(h1, h2, h3, h4, h5, h6) + ol,
body.single-view_notice .notice-single__content :is(h1, h2, h3, h4, h5, h6) + blockquote,
body.single-view_notice .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6) + p,
body.single-view_notice .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6) + ul,
body.single-view_notice .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6) + ol,
body.single-view_notice .notice-single__content.entry-content :is(h1, h2, h3, h4, h5, h6) + blockquote,
body.single-view_notice .single-blog-content :is(h1, h2, h3, h4, h5, h6) + p,
body.single-view_notice .single-blog-content :is(h1, h2, h3, h4, h5, h6) + ul,
body.single-view_notice .single-blog-content :is(h1, h2, h3, h4, h5, h6) + ol,
body.single-view_notice .single-blog-content :is(h1, h2, h3, h4, h5, h6) + blockquote,
body.single-view_notice .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6) + p,
body.single-view_notice .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6) + ul,
body.single-view_notice .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6) + ol,
body.single-view_notice .vrealreview-single__content :is(h1, h2, h3, h4, h5, h6) + blockquote,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6) + p,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6) + ul,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6) + ol,
body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content :is(h1, h2, h3, h4, h5, h6) + blockquote {
  margin-top: 0;
}

@media screen and (max-width: 1439.98px) {
  body.single-viewblog .notice-single__content,
  body.single-viewblog .notice-single__content.entry-content,
  body.single-viewblog .single-blog-content,
  body.single-viewblog .vrealreview-single__content,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content,
  body.single-viewrealreviews .notice-single__content,
  body.single-viewrealreviews .notice-single__content.entry-content,
  body.single-viewrealreviews .single-blog-content,
  body.single-viewrealreviews .vrealreview-single__content,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content,
  body.single-viewrealreview .notice-single__content,
  body.single-viewrealreview .notice-single__content.entry-content,
  body.single-viewrealreview .single-blog-content,
  body.single-viewrealreview .vrealreview-single__content,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content,
  body.single-view_notice .notice-single__content,
  body.single-view_notice .notice-single__content.entry-content,
  body.single-view_notice .single-blog-content,
  body.single-view_notice .vrealreview-single__content,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content {
    font-size: 17px;
  }
  body.single-viewblog .notice-single__content h1,
  body.single-viewblog .notice-single__content h1.wp-block-heading,
  body.single-viewblog .notice-single__content h1.elementor-heading-title,
  body.single-viewblog .notice-single__content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewblog .notice-single__content.entry-content h1,
  body.single-viewblog .notice-single__content.entry-content h1.wp-block-heading,
  body.single-viewblog .notice-single__content.entry-content h1.elementor-heading-title,
  body.single-viewblog .notice-single__content.entry-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewblog .single-blog-content h1,
  body.single-viewblog .single-blog-content h1.wp-block-heading,
  body.single-viewblog .single-blog-content h1.elementor-heading-title,
  body.single-viewblog .single-blog-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewblog .vrealreview-single__content h1,
  body.single-viewblog .vrealreview-single__content h1.wp-block-heading,
  body.single-viewblog .vrealreview-single__content h1.elementor-heading-title,
  body.single-viewblog .vrealreview-single__content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h1,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h1.wp-block-heading,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h1.elementor-heading-title,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content h1,
  body.single-viewrealreviews .notice-single__content h1.wp-block-heading,
  body.single-viewrealreviews .notice-single__content h1.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content.entry-content h1,
  body.single-viewrealreviews .notice-single__content.entry-content h1.wp-block-heading,
  body.single-viewrealreviews .notice-single__content.entry-content h1.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content.entry-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewrealreviews .single-blog-content h1,
  body.single-viewrealreviews .single-blog-content h1.wp-block-heading,
  body.single-viewrealreviews .single-blog-content h1.elementor-heading-title,
  body.single-viewrealreviews .single-blog-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewrealreviews .vrealreview-single__content h1,
  body.single-viewrealreviews .vrealreview-single__content h1.wp-block-heading,
  body.single-viewrealreviews .vrealreview-single__content h1.elementor-heading-title,
  body.single-viewrealreviews .vrealreview-single__content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h1,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h1.wp-block-heading,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h1.elementor-heading-title,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewrealreview .notice-single__content h1,
  body.single-viewrealreview .notice-single__content h1.wp-block-heading,
  body.single-viewrealreview .notice-single__content h1.elementor-heading-title,
  body.single-viewrealreview .notice-single__content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewrealreview .notice-single__content.entry-content h1,
  body.single-viewrealreview .notice-single__content.entry-content h1.wp-block-heading,
  body.single-viewrealreview .notice-single__content.entry-content h1.elementor-heading-title,
  body.single-viewrealreview .notice-single__content.entry-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewrealreview .single-blog-content h1,
  body.single-viewrealreview .single-blog-content h1.wp-block-heading,
  body.single-viewrealreview .single-blog-content h1.elementor-heading-title,
  body.single-viewrealreview .single-blog-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewrealreview .vrealreview-single__content h1,
  body.single-viewrealreview .vrealreview-single__content h1.wp-block-heading,
  body.single-viewrealreview .vrealreview-single__content h1.elementor-heading-title,
  body.single-viewrealreview .vrealreview-single__content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h1,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h1.wp-block-heading,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h1.elementor-heading-title,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-view_notice .notice-single__content h1,
  body.single-view_notice .notice-single__content h1.wp-block-heading,
  body.single-view_notice .notice-single__content h1.elementor-heading-title,
  body.single-view_notice .notice-single__content .elementor-widget-heading h1.elementor-heading-title,
  body.single-view_notice .notice-single__content.entry-content h1,
  body.single-view_notice .notice-single__content.entry-content h1.wp-block-heading,
  body.single-view_notice .notice-single__content.entry-content h1.elementor-heading-title,
  body.single-view_notice .notice-single__content.entry-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-view_notice .single-blog-content h1,
  body.single-view_notice .single-blog-content h1.wp-block-heading,
  body.single-view_notice .single-blog-content h1.elementor-heading-title,
  body.single-view_notice .single-blog-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-view_notice .vrealreview-single__content h1,
  body.single-view_notice .vrealreview-single__content h1.wp-block-heading,
  body.single-view_notice .vrealreview-single__content h1.elementor-heading-title,
  body.single-view_notice .vrealreview-single__content .elementor-widget-heading h1.elementor-heading-title,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h1,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h1.wp-block-heading,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h1.elementor-heading-title,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h1.elementor-heading-title {
    font-size: 28px;
    margin: 36px 0 18px;
  }
  body.single-viewblog .notice-single__content h2,
  body.single-viewblog .notice-single__content h2.wp-block-heading,
  body.single-viewblog .notice-single__content h2.elementor-heading-title,
  body.single-viewblog .notice-single__content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewblog .notice-single__content.entry-content h2,
  body.single-viewblog .notice-single__content.entry-content h2.wp-block-heading,
  body.single-viewblog .notice-single__content.entry-content h2.elementor-heading-title,
  body.single-viewblog .notice-single__content.entry-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewblog .single-blog-content h2,
  body.single-viewblog .single-blog-content h2.wp-block-heading,
  body.single-viewblog .single-blog-content h2.elementor-heading-title,
  body.single-viewblog .single-blog-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewblog .vrealreview-single__content h2,
  body.single-viewblog .vrealreview-single__content h2.wp-block-heading,
  body.single-viewblog .vrealreview-single__content h2.elementor-heading-title,
  body.single-viewblog .vrealreview-single__content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h2,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h2.wp-block-heading,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h2.elementor-heading-title,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content h2,
  body.single-viewrealreviews .notice-single__content h2.wp-block-heading,
  body.single-viewrealreviews .notice-single__content h2.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content.entry-content h2,
  body.single-viewrealreviews .notice-single__content.entry-content h2.wp-block-heading,
  body.single-viewrealreviews .notice-single__content.entry-content h2.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content.entry-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewrealreviews .single-blog-content h2,
  body.single-viewrealreviews .single-blog-content h2.wp-block-heading,
  body.single-viewrealreviews .single-blog-content h2.elementor-heading-title,
  body.single-viewrealreviews .single-blog-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewrealreviews .vrealreview-single__content h2,
  body.single-viewrealreviews .vrealreview-single__content h2.wp-block-heading,
  body.single-viewrealreviews .vrealreview-single__content h2.elementor-heading-title,
  body.single-viewrealreviews .vrealreview-single__content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h2,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h2.wp-block-heading,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h2.elementor-heading-title,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewrealreview .notice-single__content h2,
  body.single-viewrealreview .notice-single__content h2.wp-block-heading,
  body.single-viewrealreview .notice-single__content h2.elementor-heading-title,
  body.single-viewrealreview .notice-single__content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewrealreview .notice-single__content.entry-content h2,
  body.single-viewrealreview .notice-single__content.entry-content h2.wp-block-heading,
  body.single-viewrealreview .notice-single__content.entry-content h2.elementor-heading-title,
  body.single-viewrealreview .notice-single__content.entry-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewrealreview .single-blog-content h2,
  body.single-viewrealreview .single-blog-content h2.wp-block-heading,
  body.single-viewrealreview .single-blog-content h2.elementor-heading-title,
  body.single-viewrealreview .single-blog-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewrealreview .vrealreview-single__content h2,
  body.single-viewrealreview .vrealreview-single__content h2.wp-block-heading,
  body.single-viewrealreview .vrealreview-single__content h2.elementor-heading-title,
  body.single-viewrealreview .vrealreview-single__content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h2,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h2.wp-block-heading,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h2.elementor-heading-title,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-view_notice .notice-single__content h2,
  body.single-view_notice .notice-single__content h2.wp-block-heading,
  body.single-view_notice .notice-single__content h2.elementor-heading-title,
  body.single-view_notice .notice-single__content .elementor-widget-heading h2.elementor-heading-title,
  body.single-view_notice .notice-single__content.entry-content h2,
  body.single-view_notice .notice-single__content.entry-content h2.wp-block-heading,
  body.single-view_notice .notice-single__content.entry-content h2.elementor-heading-title,
  body.single-view_notice .notice-single__content.entry-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-view_notice .single-blog-content h2,
  body.single-view_notice .single-blog-content h2.wp-block-heading,
  body.single-view_notice .single-blog-content h2.elementor-heading-title,
  body.single-view_notice .single-blog-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-view_notice .vrealreview-single__content h2,
  body.single-view_notice .vrealreview-single__content h2.wp-block-heading,
  body.single-view_notice .vrealreview-single__content h2.elementor-heading-title,
  body.single-view_notice .vrealreview-single__content .elementor-widget-heading h2.elementor-heading-title,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h2,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h2.wp-block-heading,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h2.elementor-heading-title,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h2.elementor-heading-title {
    font-size: 23px;
    margin: 28px 0 14px;
  }
  body.single-viewblog .notice-single__content h3,
  body.single-viewblog .notice-single__content h3.wp-block-heading,
  body.single-viewblog .notice-single__content h3.elementor-heading-title,
  body.single-viewblog .notice-single__content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewblog .notice-single__content.entry-content h3,
  body.single-viewblog .notice-single__content.entry-content h3.wp-block-heading,
  body.single-viewblog .notice-single__content.entry-content h3.elementor-heading-title,
  body.single-viewblog .notice-single__content.entry-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewblog .single-blog-content h3,
  body.single-viewblog .single-blog-content h3.wp-block-heading,
  body.single-viewblog .single-blog-content h3.elementor-heading-title,
  body.single-viewblog .single-blog-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewblog .vrealreview-single__content h3,
  body.single-viewblog .vrealreview-single__content h3.wp-block-heading,
  body.single-viewblog .vrealreview-single__content h3.elementor-heading-title,
  body.single-viewblog .vrealreview-single__content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h3,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h3.wp-block-heading,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h3.elementor-heading-title,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content h3,
  body.single-viewrealreviews .notice-single__content h3.wp-block-heading,
  body.single-viewrealreviews .notice-single__content h3.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content.entry-content h3,
  body.single-viewrealreviews .notice-single__content.entry-content h3.wp-block-heading,
  body.single-viewrealreviews .notice-single__content.entry-content h3.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content.entry-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewrealreviews .single-blog-content h3,
  body.single-viewrealreviews .single-blog-content h3.wp-block-heading,
  body.single-viewrealreviews .single-blog-content h3.elementor-heading-title,
  body.single-viewrealreviews .single-blog-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewrealreviews .vrealreview-single__content h3,
  body.single-viewrealreviews .vrealreview-single__content h3.wp-block-heading,
  body.single-viewrealreviews .vrealreview-single__content h3.elementor-heading-title,
  body.single-viewrealreviews .vrealreview-single__content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h3,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h3.wp-block-heading,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h3.elementor-heading-title,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewrealreview .notice-single__content h3,
  body.single-viewrealreview .notice-single__content h3.wp-block-heading,
  body.single-viewrealreview .notice-single__content h3.elementor-heading-title,
  body.single-viewrealreview .notice-single__content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewrealreview .notice-single__content.entry-content h3,
  body.single-viewrealreview .notice-single__content.entry-content h3.wp-block-heading,
  body.single-viewrealreview .notice-single__content.entry-content h3.elementor-heading-title,
  body.single-viewrealreview .notice-single__content.entry-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewrealreview .single-blog-content h3,
  body.single-viewrealreview .single-blog-content h3.wp-block-heading,
  body.single-viewrealreview .single-blog-content h3.elementor-heading-title,
  body.single-viewrealreview .single-blog-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewrealreview .vrealreview-single__content h3,
  body.single-viewrealreview .vrealreview-single__content h3.wp-block-heading,
  body.single-viewrealreview .vrealreview-single__content h3.elementor-heading-title,
  body.single-viewrealreview .vrealreview-single__content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h3,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h3.wp-block-heading,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h3.elementor-heading-title,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-view_notice .notice-single__content h3,
  body.single-view_notice .notice-single__content h3.wp-block-heading,
  body.single-view_notice .notice-single__content h3.elementor-heading-title,
  body.single-view_notice .notice-single__content .elementor-widget-heading h3.elementor-heading-title,
  body.single-view_notice .notice-single__content.entry-content h3,
  body.single-view_notice .notice-single__content.entry-content h3.wp-block-heading,
  body.single-view_notice .notice-single__content.entry-content h3.elementor-heading-title,
  body.single-view_notice .notice-single__content.entry-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-view_notice .single-blog-content h3,
  body.single-view_notice .single-blog-content h3.wp-block-heading,
  body.single-view_notice .single-blog-content h3.elementor-heading-title,
  body.single-view_notice .single-blog-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-view_notice .vrealreview-single__content h3,
  body.single-view_notice .vrealreview-single__content h3.wp-block-heading,
  body.single-view_notice .vrealreview-single__content h3.elementor-heading-title,
  body.single-view_notice .vrealreview-single__content .elementor-widget-heading h3.elementor-heading-title,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h3,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h3.wp-block-heading,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h3.elementor-heading-title,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h3.elementor-heading-title {
    font-size: 20px;
    margin: 24px 0 12px;
  }
  body.single-viewblog .notice-single__content h4,
  body.single-viewblog .notice-single__content h4.wp-block-heading,
  body.single-viewblog .notice-single__content h4.elementor-heading-title,
  body.single-viewblog .notice-single__content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewblog .notice-single__content.entry-content h4,
  body.single-viewblog .notice-single__content.entry-content h4.wp-block-heading,
  body.single-viewblog .notice-single__content.entry-content h4.elementor-heading-title,
  body.single-viewblog .notice-single__content.entry-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewblog .single-blog-content h4,
  body.single-viewblog .single-blog-content h4.wp-block-heading,
  body.single-viewblog .single-blog-content h4.elementor-heading-title,
  body.single-viewblog .single-blog-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewblog .vrealreview-single__content h4,
  body.single-viewblog .vrealreview-single__content h4.wp-block-heading,
  body.single-viewblog .vrealreview-single__content h4.elementor-heading-title,
  body.single-viewblog .vrealreview-single__content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h4,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h4.wp-block-heading,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h4.elementor-heading-title,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content h4,
  body.single-viewrealreviews .notice-single__content h4.wp-block-heading,
  body.single-viewrealreviews .notice-single__content h4.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content.entry-content h4,
  body.single-viewrealreviews .notice-single__content.entry-content h4.wp-block-heading,
  body.single-viewrealreviews .notice-single__content.entry-content h4.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content.entry-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewrealreviews .single-blog-content h4,
  body.single-viewrealreviews .single-blog-content h4.wp-block-heading,
  body.single-viewrealreviews .single-blog-content h4.elementor-heading-title,
  body.single-viewrealreviews .single-blog-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewrealreviews .vrealreview-single__content h4,
  body.single-viewrealreviews .vrealreview-single__content h4.wp-block-heading,
  body.single-viewrealreviews .vrealreview-single__content h4.elementor-heading-title,
  body.single-viewrealreviews .vrealreview-single__content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h4,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h4.wp-block-heading,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h4.elementor-heading-title,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewrealreview .notice-single__content h4,
  body.single-viewrealreview .notice-single__content h4.wp-block-heading,
  body.single-viewrealreview .notice-single__content h4.elementor-heading-title,
  body.single-viewrealreview .notice-single__content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewrealreview .notice-single__content.entry-content h4,
  body.single-viewrealreview .notice-single__content.entry-content h4.wp-block-heading,
  body.single-viewrealreview .notice-single__content.entry-content h4.elementor-heading-title,
  body.single-viewrealreview .notice-single__content.entry-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewrealreview .single-blog-content h4,
  body.single-viewrealreview .single-blog-content h4.wp-block-heading,
  body.single-viewrealreview .single-blog-content h4.elementor-heading-title,
  body.single-viewrealreview .single-blog-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewrealreview .vrealreview-single__content h4,
  body.single-viewrealreview .vrealreview-single__content h4.wp-block-heading,
  body.single-viewrealreview .vrealreview-single__content h4.elementor-heading-title,
  body.single-viewrealreview .vrealreview-single__content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h4,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h4.wp-block-heading,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h4.elementor-heading-title,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-view_notice .notice-single__content h4,
  body.single-view_notice .notice-single__content h4.wp-block-heading,
  body.single-view_notice .notice-single__content h4.elementor-heading-title,
  body.single-view_notice .notice-single__content .elementor-widget-heading h4.elementor-heading-title,
  body.single-view_notice .notice-single__content.entry-content h4,
  body.single-view_notice .notice-single__content.entry-content h4.wp-block-heading,
  body.single-view_notice .notice-single__content.entry-content h4.elementor-heading-title,
  body.single-view_notice .notice-single__content.entry-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-view_notice .single-blog-content h4,
  body.single-view_notice .single-blog-content h4.wp-block-heading,
  body.single-view_notice .single-blog-content h4.elementor-heading-title,
  body.single-view_notice .single-blog-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-view_notice .vrealreview-single__content h4,
  body.single-view_notice .vrealreview-single__content h4.wp-block-heading,
  body.single-view_notice .vrealreview-single__content h4.elementor-heading-title,
  body.single-view_notice .vrealreview-single__content .elementor-widget-heading h4.elementor-heading-title,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h4,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h4.wp-block-heading,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h4.elementor-heading-title,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h4.elementor-heading-title {
    font-size: 18px;
  }
  body.single-viewblog .notice-single__content p,
  body.single-viewblog .notice-single__content.entry-content p,
  body.single-viewblog .single-blog-content p,
  body.single-viewblog .vrealreview-single__content p,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content p,
  body.single-viewrealreviews .notice-single__content p,
  body.single-viewrealreviews .notice-single__content.entry-content p,
  body.single-viewrealreviews .single-blog-content p,
  body.single-viewrealreviews .vrealreview-single__content p,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content p,
  body.single-viewrealreview .notice-single__content p,
  body.single-viewrealreview .notice-single__content.entry-content p,
  body.single-viewrealreview .single-blog-content p,
  body.single-viewrealreview .vrealreview-single__content p,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content p,
  body.single-view_notice .notice-single__content p,
  body.single-view_notice .notice-single__content.entry-content p,
  body.single-view_notice .single-blog-content p,
  body.single-view_notice .vrealreview-single__content p,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content p {
    font-size: 17px;
  }
  body.single-viewblog .notice-single__content blockquote,
  body.single-viewblog .notice-single__content.entry-content blockquote,
  body.single-viewblog .single-blog-content blockquote,
  body.single-viewblog .vrealreview-single__content blockquote,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content blockquote,
  body.single-viewrealreviews .notice-single__content blockquote,
  body.single-viewrealreviews .notice-single__content.entry-content blockquote,
  body.single-viewrealreviews .single-blog-content blockquote,
  body.single-viewrealreviews .vrealreview-single__content blockquote,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content blockquote,
  body.single-viewrealreview .notice-single__content blockquote,
  body.single-viewrealreview .notice-single__content.entry-content blockquote,
  body.single-viewrealreview .single-blog-content blockquote,
  body.single-viewrealreview .vrealreview-single__content blockquote,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content blockquote,
  body.single-view_notice .notice-single__content blockquote,
  body.single-view_notice .notice-single__content.entry-content blockquote,
  body.single-view_notice .single-blog-content blockquote,
  body.single-view_notice .vrealreview-single__content blockquote,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content blockquote {
    font-size: 16px;
    padding: 14px 18px;
  }
}
@media screen and (max-width: 767.98px) {
  body.single-viewblog .notice-single__content,
  body.single-viewblog .notice-single__content.entry-content,
  body.single-viewblog .single-blog-content,
  body.single-viewblog .vrealreview-single__content,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content,
  body.single-viewrealreviews .notice-single__content,
  body.single-viewrealreviews .notice-single__content.entry-content,
  body.single-viewrealreviews .single-blog-content,
  body.single-viewrealreviews .vrealreview-single__content,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content,
  body.single-viewrealreview .notice-single__content,
  body.single-viewrealreview .notice-single__content.entry-content,
  body.single-viewrealreview .single-blog-content,
  body.single-viewrealreview .vrealreview-single__content,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content,
  body.single-view_notice .notice-single__content,
  body.single-view_notice .notice-single__content.entry-content,
  body.single-view_notice .single-blog-content,
  body.single-view_notice .vrealreview-single__content,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content {
    font-size: 16px;
  }
  body.single-viewblog .notice-single__content h1,
  body.single-viewblog .notice-single__content h1.wp-block-heading,
  body.single-viewblog .notice-single__content h1.elementor-heading-title,
  body.single-viewblog .notice-single__content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewblog .notice-single__content.entry-content h1,
  body.single-viewblog .notice-single__content.entry-content h1.wp-block-heading,
  body.single-viewblog .notice-single__content.entry-content h1.elementor-heading-title,
  body.single-viewblog .notice-single__content.entry-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewblog .single-blog-content h1,
  body.single-viewblog .single-blog-content h1.wp-block-heading,
  body.single-viewblog .single-blog-content h1.elementor-heading-title,
  body.single-viewblog .single-blog-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewblog .vrealreview-single__content h1,
  body.single-viewblog .vrealreview-single__content h1.wp-block-heading,
  body.single-viewblog .vrealreview-single__content h1.elementor-heading-title,
  body.single-viewblog .vrealreview-single__content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h1,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h1.wp-block-heading,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h1.elementor-heading-title,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content h1,
  body.single-viewrealreviews .notice-single__content h1.wp-block-heading,
  body.single-viewrealreviews .notice-single__content h1.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content.entry-content h1,
  body.single-viewrealreviews .notice-single__content.entry-content h1.wp-block-heading,
  body.single-viewrealreviews .notice-single__content.entry-content h1.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content.entry-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewrealreviews .single-blog-content h1,
  body.single-viewrealreviews .single-blog-content h1.wp-block-heading,
  body.single-viewrealreviews .single-blog-content h1.elementor-heading-title,
  body.single-viewrealreviews .single-blog-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewrealreviews .vrealreview-single__content h1,
  body.single-viewrealreviews .vrealreview-single__content h1.wp-block-heading,
  body.single-viewrealreviews .vrealreview-single__content h1.elementor-heading-title,
  body.single-viewrealreviews .vrealreview-single__content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h1,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h1.wp-block-heading,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h1.elementor-heading-title,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewrealreview .notice-single__content h1,
  body.single-viewrealreview .notice-single__content h1.wp-block-heading,
  body.single-viewrealreview .notice-single__content h1.elementor-heading-title,
  body.single-viewrealreview .notice-single__content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewrealreview .notice-single__content.entry-content h1,
  body.single-viewrealreview .notice-single__content.entry-content h1.wp-block-heading,
  body.single-viewrealreview .notice-single__content.entry-content h1.elementor-heading-title,
  body.single-viewrealreview .notice-single__content.entry-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewrealreview .single-blog-content h1,
  body.single-viewrealreview .single-blog-content h1.wp-block-heading,
  body.single-viewrealreview .single-blog-content h1.elementor-heading-title,
  body.single-viewrealreview .single-blog-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewrealreview .vrealreview-single__content h1,
  body.single-viewrealreview .vrealreview-single__content h1.wp-block-heading,
  body.single-viewrealreview .vrealreview-single__content h1.elementor-heading-title,
  body.single-viewrealreview .vrealreview-single__content .elementor-widget-heading h1.elementor-heading-title,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h1,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h1.wp-block-heading,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h1.elementor-heading-title,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-view_notice .notice-single__content h1,
  body.single-view_notice .notice-single__content h1.wp-block-heading,
  body.single-view_notice .notice-single__content h1.elementor-heading-title,
  body.single-view_notice .notice-single__content .elementor-widget-heading h1.elementor-heading-title,
  body.single-view_notice .notice-single__content.entry-content h1,
  body.single-view_notice .notice-single__content.entry-content h1.wp-block-heading,
  body.single-view_notice .notice-single__content.entry-content h1.elementor-heading-title,
  body.single-view_notice .notice-single__content.entry-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-view_notice .single-blog-content h1,
  body.single-view_notice .single-blog-content h1.wp-block-heading,
  body.single-view_notice .single-blog-content h1.elementor-heading-title,
  body.single-view_notice .single-blog-content .elementor-widget-heading h1.elementor-heading-title,
  body.single-view_notice .vrealreview-single__content h1,
  body.single-view_notice .vrealreview-single__content h1.wp-block-heading,
  body.single-view_notice .vrealreview-single__content h1.elementor-heading-title,
  body.single-view_notice .vrealreview-single__content .elementor-widget-heading h1.elementor-heading-title,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h1,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h1.wp-block-heading,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h1.elementor-heading-title,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h1.elementor-heading-title {
    font-size: 26px;
    margin: 32px 0 16px;
  }
  body.single-viewblog .notice-single__content h2,
  body.single-viewblog .notice-single__content h2.wp-block-heading,
  body.single-viewblog .notice-single__content h2.elementor-heading-title,
  body.single-viewblog .notice-single__content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewblog .notice-single__content.entry-content h2,
  body.single-viewblog .notice-single__content.entry-content h2.wp-block-heading,
  body.single-viewblog .notice-single__content.entry-content h2.elementor-heading-title,
  body.single-viewblog .notice-single__content.entry-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewblog .single-blog-content h2,
  body.single-viewblog .single-blog-content h2.wp-block-heading,
  body.single-viewblog .single-blog-content h2.elementor-heading-title,
  body.single-viewblog .single-blog-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewblog .vrealreview-single__content h2,
  body.single-viewblog .vrealreview-single__content h2.wp-block-heading,
  body.single-viewblog .vrealreview-single__content h2.elementor-heading-title,
  body.single-viewblog .vrealreview-single__content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h2,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h2.wp-block-heading,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h2.elementor-heading-title,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content h2,
  body.single-viewrealreviews .notice-single__content h2.wp-block-heading,
  body.single-viewrealreviews .notice-single__content h2.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content.entry-content h2,
  body.single-viewrealreviews .notice-single__content.entry-content h2.wp-block-heading,
  body.single-viewrealreviews .notice-single__content.entry-content h2.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content.entry-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewrealreviews .single-blog-content h2,
  body.single-viewrealreviews .single-blog-content h2.wp-block-heading,
  body.single-viewrealreviews .single-blog-content h2.elementor-heading-title,
  body.single-viewrealreviews .single-blog-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewrealreviews .vrealreview-single__content h2,
  body.single-viewrealreviews .vrealreview-single__content h2.wp-block-heading,
  body.single-viewrealreviews .vrealreview-single__content h2.elementor-heading-title,
  body.single-viewrealreviews .vrealreview-single__content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h2,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h2.wp-block-heading,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h2.elementor-heading-title,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewrealreview .notice-single__content h2,
  body.single-viewrealreview .notice-single__content h2.wp-block-heading,
  body.single-viewrealreview .notice-single__content h2.elementor-heading-title,
  body.single-viewrealreview .notice-single__content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewrealreview .notice-single__content.entry-content h2,
  body.single-viewrealreview .notice-single__content.entry-content h2.wp-block-heading,
  body.single-viewrealreview .notice-single__content.entry-content h2.elementor-heading-title,
  body.single-viewrealreview .notice-single__content.entry-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewrealreview .single-blog-content h2,
  body.single-viewrealreview .single-blog-content h2.wp-block-heading,
  body.single-viewrealreview .single-blog-content h2.elementor-heading-title,
  body.single-viewrealreview .single-blog-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewrealreview .vrealreview-single__content h2,
  body.single-viewrealreview .vrealreview-single__content h2.wp-block-heading,
  body.single-viewrealreview .vrealreview-single__content h2.elementor-heading-title,
  body.single-viewrealreview .vrealreview-single__content .elementor-widget-heading h2.elementor-heading-title,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h2,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h2.wp-block-heading,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h2.elementor-heading-title,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-view_notice .notice-single__content h2,
  body.single-view_notice .notice-single__content h2.wp-block-heading,
  body.single-view_notice .notice-single__content h2.elementor-heading-title,
  body.single-view_notice .notice-single__content .elementor-widget-heading h2.elementor-heading-title,
  body.single-view_notice .notice-single__content.entry-content h2,
  body.single-view_notice .notice-single__content.entry-content h2.wp-block-heading,
  body.single-view_notice .notice-single__content.entry-content h2.elementor-heading-title,
  body.single-view_notice .notice-single__content.entry-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-view_notice .single-blog-content h2,
  body.single-view_notice .single-blog-content h2.wp-block-heading,
  body.single-view_notice .single-blog-content h2.elementor-heading-title,
  body.single-view_notice .single-blog-content .elementor-widget-heading h2.elementor-heading-title,
  body.single-view_notice .vrealreview-single__content h2,
  body.single-view_notice .vrealreview-single__content h2.wp-block-heading,
  body.single-view_notice .vrealreview-single__content h2.elementor-heading-title,
  body.single-view_notice .vrealreview-single__content .elementor-widget-heading h2.elementor-heading-title,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h2,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h2.wp-block-heading,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h2.elementor-heading-title,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h2.elementor-heading-title {
    font-size: 22px;
    margin: 28px 0 14px;
  }
  body.single-viewblog .notice-single__content h3,
  body.single-viewblog .notice-single__content h3.wp-block-heading,
  body.single-viewblog .notice-single__content h3.elementor-heading-title,
  body.single-viewblog .notice-single__content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewblog .notice-single__content.entry-content h3,
  body.single-viewblog .notice-single__content.entry-content h3.wp-block-heading,
  body.single-viewblog .notice-single__content.entry-content h3.elementor-heading-title,
  body.single-viewblog .notice-single__content.entry-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewblog .single-blog-content h3,
  body.single-viewblog .single-blog-content h3.wp-block-heading,
  body.single-viewblog .single-blog-content h3.elementor-heading-title,
  body.single-viewblog .single-blog-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewblog .vrealreview-single__content h3,
  body.single-viewblog .vrealreview-single__content h3.wp-block-heading,
  body.single-viewblog .vrealreview-single__content h3.elementor-heading-title,
  body.single-viewblog .vrealreview-single__content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h3,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h3.wp-block-heading,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h3.elementor-heading-title,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content h3,
  body.single-viewrealreviews .notice-single__content h3.wp-block-heading,
  body.single-viewrealreviews .notice-single__content h3.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content.entry-content h3,
  body.single-viewrealreviews .notice-single__content.entry-content h3.wp-block-heading,
  body.single-viewrealreviews .notice-single__content.entry-content h3.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content.entry-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewrealreviews .single-blog-content h3,
  body.single-viewrealreviews .single-blog-content h3.wp-block-heading,
  body.single-viewrealreviews .single-blog-content h3.elementor-heading-title,
  body.single-viewrealreviews .single-blog-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewrealreviews .vrealreview-single__content h3,
  body.single-viewrealreviews .vrealreview-single__content h3.wp-block-heading,
  body.single-viewrealreviews .vrealreview-single__content h3.elementor-heading-title,
  body.single-viewrealreviews .vrealreview-single__content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h3,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h3.wp-block-heading,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h3.elementor-heading-title,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewrealreview .notice-single__content h3,
  body.single-viewrealreview .notice-single__content h3.wp-block-heading,
  body.single-viewrealreview .notice-single__content h3.elementor-heading-title,
  body.single-viewrealreview .notice-single__content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewrealreview .notice-single__content.entry-content h3,
  body.single-viewrealreview .notice-single__content.entry-content h3.wp-block-heading,
  body.single-viewrealreview .notice-single__content.entry-content h3.elementor-heading-title,
  body.single-viewrealreview .notice-single__content.entry-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewrealreview .single-blog-content h3,
  body.single-viewrealreview .single-blog-content h3.wp-block-heading,
  body.single-viewrealreview .single-blog-content h3.elementor-heading-title,
  body.single-viewrealreview .single-blog-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewrealreview .vrealreview-single__content h3,
  body.single-viewrealreview .vrealreview-single__content h3.wp-block-heading,
  body.single-viewrealreview .vrealreview-single__content h3.elementor-heading-title,
  body.single-viewrealreview .vrealreview-single__content .elementor-widget-heading h3.elementor-heading-title,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h3,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h3.wp-block-heading,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h3.elementor-heading-title,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-view_notice .notice-single__content h3,
  body.single-view_notice .notice-single__content h3.wp-block-heading,
  body.single-view_notice .notice-single__content h3.elementor-heading-title,
  body.single-view_notice .notice-single__content .elementor-widget-heading h3.elementor-heading-title,
  body.single-view_notice .notice-single__content.entry-content h3,
  body.single-view_notice .notice-single__content.entry-content h3.wp-block-heading,
  body.single-view_notice .notice-single__content.entry-content h3.elementor-heading-title,
  body.single-view_notice .notice-single__content.entry-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-view_notice .single-blog-content h3,
  body.single-view_notice .single-blog-content h3.wp-block-heading,
  body.single-view_notice .single-blog-content h3.elementor-heading-title,
  body.single-view_notice .single-blog-content .elementor-widget-heading h3.elementor-heading-title,
  body.single-view_notice .vrealreview-single__content h3,
  body.single-view_notice .vrealreview-single__content h3.wp-block-heading,
  body.single-view_notice .vrealreview-single__content h3.elementor-heading-title,
  body.single-view_notice .vrealreview-single__content .elementor-widget-heading h3.elementor-heading-title,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h3,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h3.wp-block-heading,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h3.elementor-heading-title,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h3.elementor-heading-title {
    font-size: 19px;
    margin: 24px 0 12px;
  }
  body.single-viewblog .notice-single__content h4,
  body.single-viewblog .notice-single__content h4.wp-block-heading,
  body.single-viewblog .notice-single__content h4.elementor-heading-title,
  body.single-viewblog .notice-single__content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewblog .notice-single__content.entry-content h4,
  body.single-viewblog .notice-single__content.entry-content h4.wp-block-heading,
  body.single-viewblog .notice-single__content.entry-content h4.elementor-heading-title,
  body.single-viewblog .notice-single__content.entry-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewblog .single-blog-content h4,
  body.single-viewblog .single-blog-content h4.wp-block-heading,
  body.single-viewblog .single-blog-content h4.elementor-heading-title,
  body.single-viewblog .single-blog-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewblog .vrealreview-single__content h4,
  body.single-viewblog .vrealreview-single__content h4.wp-block-heading,
  body.single-viewblog .vrealreview-single__content h4.elementor-heading-title,
  body.single-viewblog .vrealreview-single__content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h4,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h4.wp-block-heading,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h4.elementor-heading-title,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content h4,
  body.single-viewrealreviews .notice-single__content h4.wp-block-heading,
  body.single-viewrealreviews .notice-single__content h4.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content.entry-content h4,
  body.single-viewrealreviews .notice-single__content.entry-content h4.wp-block-heading,
  body.single-viewrealreviews .notice-single__content.entry-content h4.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content.entry-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewrealreviews .single-blog-content h4,
  body.single-viewrealreviews .single-blog-content h4.wp-block-heading,
  body.single-viewrealreviews .single-blog-content h4.elementor-heading-title,
  body.single-viewrealreviews .single-blog-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewrealreviews .vrealreview-single__content h4,
  body.single-viewrealreviews .vrealreview-single__content h4.wp-block-heading,
  body.single-viewrealreviews .vrealreview-single__content h4.elementor-heading-title,
  body.single-viewrealreviews .vrealreview-single__content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h4,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h4.wp-block-heading,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h4.elementor-heading-title,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewrealreview .notice-single__content h4,
  body.single-viewrealreview .notice-single__content h4.wp-block-heading,
  body.single-viewrealreview .notice-single__content h4.elementor-heading-title,
  body.single-viewrealreview .notice-single__content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewrealreview .notice-single__content.entry-content h4,
  body.single-viewrealreview .notice-single__content.entry-content h4.wp-block-heading,
  body.single-viewrealreview .notice-single__content.entry-content h4.elementor-heading-title,
  body.single-viewrealreview .notice-single__content.entry-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewrealreview .single-blog-content h4,
  body.single-viewrealreview .single-blog-content h4.wp-block-heading,
  body.single-viewrealreview .single-blog-content h4.elementor-heading-title,
  body.single-viewrealreview .single-blog-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewrealreview .vrealreview-single__content h4,
  body.single-viewrealreview .vrealreview-single__content h4.wp-block-heading,
  body.single-viewrealreview .vrealreview-single__content h4.elementor-heading-title,
  body.single-viewrealreview .vrealreview-single__content .elementor-widget-heading h4.elementor-heading-title,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h4,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h4.wp-block-heading,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h4.elementor-heading-title,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-view_notice .notice-single__content h4,
  body.single-view_notice .notice-single__content h4.wp-block-heading,
  body.single-view_notice .notice-single__content h4.elementor-heading-title,
  body.single-view_notice .notice-single__content .elementor-widget-heading h4.elementor-heading-title,
  body.single-view_notice .notice-single__content.entry-content h4,
  body.single-view_notice .notice-single__content.entry-content h4.wp-block-heading,
  body.single-view_notice .notice-single__content.entry-content h4.elementor-heading-title,
  body.single-view_notice .notice-single__content.entry-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-view_notice .single-blog-content h4,
  body.single-view_notice .single-blog-content h4.wp-block-heading,
  body.single-view_notice .single-blog-content h4.elementor-heading-title,
  body.single-view_notice .single-blog-content .elementor-widget-heading h4.elementor-heading-title,
  body.single-view_notice .vrealreview-single__content h4,
  body.single-view_notice .vrealreview-single__content h4.wp-block-heading,
  body.single-view_notice .vrealreview-single__content h4.elementor-heading-title,
  body.single-view_notice .vrealreview-single__content .elementor-widget-heading h4.elementor-heading-title,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h4,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h4.wp-block-heading,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h4.elementor-heading-title,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h4.elementor-heading-title {
    font-size: 17px;
    margin: 20px 0 10px;
  }
  body.single-viewblog .notice-single__content h5,
  body.single-viewblog .notice-single__content h5.wp-block-heading,
  body.single-viewblog .notice-single__content h5.elementor-heading-title,
  body.single-viewblog .notice-single__content .elementor-widget-heading h5.elementor-heading-title,
  body.single-viewblog .notice-single__content.entry-content h5,
  body.single-viewblog .notice-single__content.entry-content h5.wp-block-heading,
  body.single-viewblog .notice-single__content.entry-content h5.elementor-heading-title,
  body.single-viewblog .notice-single__content.entry-content .elementor-widget-heading h5.elementor-heading-title,
  body.single-viewblog .single-blog-content h5,
  body.single-viewblog .single-blog-content h5.wp-block-heading,
  body.single-viewblog .single-blog-content h5.elementor-heading-title,
  body.single-viewblog .single-blog-content .elementor-widget-heading h5.elementor-heading-title,
  body.single-viewblog .vrealreview-single__content h5,
  body.single-viewblog .vrealreview-single__content h5.wp-block-heading,
  body.single-viewblog .vrealreview-single__content h5.elementor-heading-title,
  body.single-viewblog .vrealreview-single__content .elementor-widget-heading h5.elementor-heading-title,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h5,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h5.wp-block-heading,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h5.elementor-heading-title,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h5.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content h5,
  body.single-viewrealreviews .notice-single__content h5.wp-block-heading,
  body.single-viewrealreviews .notice-single__content h5.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content .elementor-widget-heading h5.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content.entry-content h5,
  body.single-viewrealreviews .notice-single__content.entry-content h5.wp-block-heading,
  body.single-viewrealreviews .notice-single__content.entry-content h5.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content.entry-content .elementor-widget-heading h5.elementor-heading-title,
  body.single-viewrealreviews .single-blog-content h5,
  body.single-viewrealreviews .single-blog-content h5.wp-block-heading,
  body.single-viewrealreviews .single-blog-content h5.elementor-heading-title,
  body.single-viewrealreviews .single-blog-content .elementor-widget-heading h5.elementor-heading-title,
  body.single-viewrealreviews .vrealreview-single__content h5,
  body.single-viewrealreviews .vrealreview-single__content h5.wp-block-heading,
  body.single-viewrealreviews .vrealreview-single__content h5.elementor-heading-title,
  body.single-viewrealreviews .vrealreview-single__content .elementor-widget-heading h5.elementor-heading-title,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h5,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h5.wp-block-heading,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h5.elementor-heading-title,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h5.elementor-heading-title,
  body.single-viewrealreview .notice-single__content h5,
  body.single-viewrealreview .notice-single__content h5.wp-block-heading,
  body.single-viewrealreview .notice-single__content h5.elementor-heading-title,
  body.single-viewrealreview .notice-single__content .elementor-widget-heading h5.elementor-heading-title,
  body.single-viewrealreview .notice-single__content.entry-content h5,
  body.single-viewrealreview .notice-single__content.entry-content h5.wp-block-heading,
  body.single-viewrealreview .notice-single__content.entry-content h5.elementor-heading-title,
  body.single-viewrealreview .notice-single__content.entry-content .elementor-widget-heading h5.elementor-heading-title,
  body.single-viewrealreview .single-blog-content h5,
  body.single-viewrealreview .single-blog-content h5.wp-block-heading,
  body.single-viewrealreview .single-blog-content h5.elementor-heading-title,
  body.single-viewrealreview .single-blog-content .elementor-widget-heading h5.elementor-heading-title,
  body.single-viewrealreview .vrealreview-single__content h5,
  body.single-viewrealreview .vrealreview-single__content h5.wp-block-heading,
  body.single-viewrealreview .vrealreview-single__content h5.elementor-heading-title,
  body.single-viewrealreview .vrealreview-single__content .elementor-widget-heading h5.elementor-heading-title,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h5,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h5.wp-block-heading,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h5.elementor-heading-title,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h5.elementor-heading-title,
  body.single-view_notice .notice-single__content h5,
  body.single-view_notice .notice-single__content h5.wp-block-heading,
  body.single-view_notice .notice-single__content h5.elementor-heading-title,
  body.single-view_notice .notice-single__content .elementor-widget-heading h5.elementor-heading-title,
  body.single-view_notice .notice-single__content.entry-content h5,
  body.single-view_notice .notice-single__content.entry-content h5.wp-block-heading,
  body.single-view_notice .notice-single__content.entry-content h5.elementor-heading-title,
  body.single-view_notice .notice-single__content.entry-content .elementor-widget-heading h5.elementor-heading-title,
  body.single-view_notice .single-blog-content h5,
  body.single-view_notice .single-blog-content h5.wp-block-heading,
  body.single-view_notice .single-blog-content h5.elementor-heading-title,
  body.single-view_notice .single-blog-content .elementor-widget-heading h5.elementor-heading-title,
  body.single-view_notice .vrealreview-single__content h5,
  body.single-view_notice .vrealreview-single__content h5.wp-block-heading,
  body.single-view_notice .vrealreview-single__content h5.elementor-heading-title,
  body.single-view_notice .vrealreview-single__content .elementor-widget-heading h5.elementor-heading-title,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h5,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h5.wp-block-heading,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h5.elementor-heading-title,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h5.elementor-heading-title {
    font-size: 15px;
  }
  body.single-viewblog .notice-single__content h6,
  body.single-viewblog .notice-single__content h6.wp-block-heading,
  body.single-viewblog .notice-single__content h6.elementor-heading-title,
  body.single-viewblog .notice-single__content .elementor-widget-heading h6.elementor-heading-title,
  body.single-viewblog .notice-single__content.entry-content h6,
  body.single-viewblog .notice-single__content.entry-content h6.wp-block-heading,
  body.single-viewblog .notice-single__content.entry-content h6.elementor-heading-title,
  body.single-viewblog .notice-single__content.entry-content .elementor-widget-heading h6.elementor-heading-title,
  body.single-viewblog .single-blog-content h6,
  body.single-viewblog .single-blog-content h6.wp-block-heading,
  body.single-viewblog .single-blog-content h6.elementor-heading-title,
  body.single-viewblog .single-blog-content .elementor-widget-heading h6.elementor-heading-title,
  body.single-viewblog .vrealreview-single__content h6,
  body.single-viewblog .vrealreview-single__content h6.wp-block-heading,
  body.single-viewblog .vrealreview-single__content h6.elementor-heading-title,
  body.single-viewblog .vrealreview-single__content .elementor-widget-heading h6.elementor-heading-title,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h6,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h6.wp-block-heading,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content h6.elementor-heading-title,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h6.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content h6,
  body.single-viewrealreviews .notice-single__content h6.wp-block-heading,
  body.single-viewrealreviews .notice-single__content h6.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content .elementor-widget-heading h6.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content.entry-content h6,
  body.single-viewrealreviews .notice-single__content.entry-content h6.wp-block-heading,
  body.single-viewrealreviews .notice-single__content.entry-content h6.elementor-heading-title,
  body.single-viewrealreviews .notice-single__content.entry-content .elementor-widget-heading h6.elementor-heading-title,
  body.single-viewrealreviews .single-blog-content h6,
  body.single-viewrealreviews .single-blog-content h6.wp-block-heading,
  body.single-viewrealreviews .single-blog-content h6.elementor-heading-title,
  body.single-viewrealreviews .single-blog-content .elementor-widget-heading h6.elementor-heading-title,
  body.single-viewrealreviews .vrealreview-single__content h6,
  body.single-viewrealreviews .vrealreview-single__content h6.wp-block-heading,
  body.single-viewrealreviews .vrealreview-single__content h6.elementor-heading-title,
  body.single-viewrealreviews .vrealreview-single__content .elementor-widget-heading h6.elementor-heading-title,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h6,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h6.wp-block-heading,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content h6.elementor-heading-title,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h6.elementor-heading-title,
  body.single-viewrealreview .notice-single__content h6,
  body.single-viewrealreview .notice-single__content h6.wp-block-heading,
  body.single-viewrealreview .notice-single__content h6.elementor-heading-title,
  body.single-viewrealreview .notice-single__content .elementor-widget-heading h6.elementor-heading-title,
  body.single-viewrealreview .notice-single__content.entry-content h6,
  body.single-viewrealreview .notice-single__content.entry-content h6.wp-block-heading,
  body.single-viewrealreview .notice-single__content.entry-content h6.elementor-heading-title,
  body.single-viewrealreview .notice-single__content.entry-content .elementor-widget-heading h6.elementor-heading-title,
  body.single-viewrealreview .single-blog-content h6,
  body.single-viewrealreview .single-blog-content h6.wp-block-heading,
  body.single-viewrealreview .single-blog-content h6.elementor-heading-title,
  body.single-viewrealreview .single-blog-content .elementor-widget-heading h6.elementor-heading-title,
  body.single-viewrealreview .vrealreview-single__content h6,
  body.single-viewrealreview .vrealreview-single__content h6.wp-block-heading,
  body.single-viewrealreview .vrealreview-single__content h6.elementor-heading-title,
  body.single-viewrealreview .vrealreview-single__content .elementor-widget-heading h6.elementor-heading-title,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h6,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h6.wp-block-heading,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content h6.elementor-heading-title,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h6.elementor-heading-title,
  body.single-view_notice .notice-single__content h6,
  body.single-view_notice .notice-single__content h6.wp-block-heading,
  body.single-view_notice .notice-single__content h6.elementor-heading-title,
  body.single-view_notice .notice-single__content .elementor-widget-heading h6.elementor-heading-title,
  body.single-view_notice .notice-single__content.entry-content h6,
  body.single-view_notice .notice-single__content.entry-content h6.wp-block-heading,
  body.single-view_notice .notice-single__content.entry-content h6.elementor-heading-title,
  body.single-view_notice .notice-single__content.entry-content .elementor-widget-heading h6.elementor-heading-title,
  body.single-view_notice .single-blog-content h6,
  body.single-view_notice .single-blog-content h6.wp-block-heading,
  body.single-view_notice .single-blog-content h6.elementor-heading-title,
  body.single-view_notice .single-blog-content .elementor-widget-heading h6.elementor-heading-title,
  body.single-view_notice .vrealreview-single__content h6,
  body.single-view_notice .vrealreview-single__content h6.wp-block-heading,
  body.single-view_notice .vrealreview-single__content h6.elementor-heading-title,
  body.single-view_notice .vrealreview-single__content .elementor-widget-heading h6.elementor-heading-title,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h6,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h6.wp-block-heading,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content h6.elementor-heading-title,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content .elementor-widget-heading h6.elementor-heading-title {
    font-size: 14px;
  }
  body.single-viewblog .notice-single__content p,
  body.single-viewblog .notice-single__content.entry-content p,
  body.single-viewblog .single-blog-content p,
  body.single-viewblog .vrealreview-single__content p,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content p,
  body.single-viewrealreviews .notice-single__content p,
  body.single-viewrealreviews .notice-single__content.entry-content p,
  body.single-viewrealreviews .single-blog-content p,
  body.single-viewrealreviews .vrealreview-single__content p,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content p,
  body.single-viewrealreview .notice-single__content p,
  body.single-viewrealreview .notice-single__content.entry-content p,
  body.single-viewrealreview .single-blog-content p,
  body.single-viewrealreview .vrealreview-single__content p,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content p,
  body.single-view_notice .notice-single__content p,
  body.single-view_notice .notice-single__content.entry-content p,
  body.single-view_notice .single-blog-content p,
  body.single-view_notice .vrealreview-single__content p,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content p {
    font-size: 16px;
  }
  body.single-viewblog .notice-single__content blockquote,
  body.single-viewblog .notice-single__content.entry-content blockquote,
  body.single-viewblog .single-blog-content blockquote,
  body.single-viewblog .vrealreview-single__content blockquote,
  body.single-viewblog .rr-page > section.area:not(.rr-hero) > .entry-content blockquote,
  body.single-viewrealreviews .notice-single__content blockquote,
  body.single-viewrealreviews .notice-single__content.entry-content blockquote,
  body.single-viewrealreviews .single-blog-content blockquote,
  body.single-viewrealreviews .vrealreview-single__content blockquote,
  body.single-viewrealreviews .rr-page > section.area:not(.rr-hero) > .entry-content blockquote,
  body.single-viewrealreview .notice-single__content blockquote,
  body.single-viewrealreview .notice-single__content.entry-content blockquote,
  body.single-viewrealreview .single-blog-content blockquote,
  body.single-viewrealreview .vrealreview-single__content blockquote,
  body.single-viewrealreview .rr-page > section.area:not(.rr-hero) > .entry-content blockquote,
  body.single-view_notice .notice-single__content blockquote,
  body.single-view_notice .notice-single__content.entry-content blockquote,
  body.single-view_notice .single-blog-content blockquote,
  body.single-view_notice .vrealreview-single__content blockquote,
  body.single-view_notice .rr-page > section.area:not(.rr-hero) > .entry-content blockquote {
    font-size: 15px;
    padding: 14px 16px;
  }
}
.notice-archive,
.notice-single {
  padding-bottom: 72px;
  max-width: 920px;
  margin-inline: auto;
  box-sizing: border-box;
}

body.page-community-notice #page-content-wrapper.page-community .rr-page > .notice-single.area,
body.page-community-blog #page-content-wrapper.page-community .rr-page > .notice-single.area,
body.page-community-with-star #page-content-wrapper.page-community .rr-page > .notice-single.area,
body.page-review-index #page-content-wrapper.page-community .rr-page > .notice-single.area,
body.page-review-story #page-content-wrapper.page-community .rr-page > .notice-single.area,
body.page-review-selfies #page-content-wrapper.page-community .rr-page > .notice-single.area {
  padding: 32px 16px 80px;
  background-color: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.notice-archive__search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.notice-archive__search input[type=search] {
  flex: 1 1 240px;
  min-width: min(320px, 100%);
  padding: 10px 14px;
  border: 1px solid #d5cfc7;
  border-radius: 8px;
  font-size: 15px;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  box-sizing: border-box;
}

.notice-archive__search-btn {
  appearance: none;
  border: 1px solid #4a433c;
  background: #4a433c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
}

.notice-archive__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.notice-archive__item {
  border-bottom: 1px solid #e8e4df;
}

.notice-archive__link {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}
.notice-archive__link:hover .notice-archive__title {
  color: #7a6e66;
}

.notice-archive__thumb {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f0ec;
}
.notice-archive__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.notice-archive__body {
  flex: 1;
  min-width: 0;
}

.notice-archive__date {
  margin: 0 0 4px;
  font-size: 13px;
  color: #9d958f;
}

.notice-archive__title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #2c2721;
  line-height: 1.35;
}

.notice-archive__excerpt {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #6f665e;
}

.notice-archive__empty {
  text-align: center;
  padding: 48px 16px;
  color: #746b64;
}

.notice-archive .pagination {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}
.notice-archive .pagination .nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.notice-archive .pagination a,
.notice-archive .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 36px;
  border: 1px solid #d5cfc7;
  background: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #4a433c;
  box-sizing: border-box;
}
.notice-archive .pagination span.current {
  border-color: #7a6e66;
  background-color: #7a6e66;
  color: #fff;
}

.notice-single__header {
  position: static;
  top: auto;
  left: auto;
  width: auto;
  z-index: auto;
  text-align: center;
  margin: 0 0 64px;
  padding: 48px 20px 56px;
  border-top: 1px solid #ece8e2;
  border-bottom: 1px solid #ece8e2;
  background-color: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-sizing: border-box;
}

.notice-single__badge {
  display: inline-block;
  margin: 0 0 20px;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
}

.notice-single__badge--news {
  background: #f4f0ea;
  color: #746b64;
}

.notice-single__badge--ps-blog {
  background: #f4f0ea;
  color: #746b64;
}

.notice-single__badge--article {
  background: #fff0db;
  color: #b29565;
}

.notice-single__badge--featured {
  background: #fff0db;
  color: #b29565;
}

.notice-single__badge--press-release {
  background: #e8eef4;
  color: #5a6575;
}

.notice-single__badge[class*=notice-single__badge--]:not(.notice-single__badge--news):not(.notice-single__badge--ps-blog):not(.notice-single__badge--article):not(.notice-single__badge--featured):not(.notice-single__badge--press-release) {
  background: #e6ede8;
  color: #5a6d62;
}

.notice-single__title {
  margin: 0 auto 16px;
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
}

.notice-single__date {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: #9d958f;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
}
.notice-single__date time {
  font-weight: 400;
}

.notice-single__thumb {
  margin: 0 0 32px;
  padding: 0 130px;
  overflow: hidden;
  background: #fff;
}
.notice-single__thumb img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
@media screen and (max-width: 767.98px) {
  .notice-single__thumb {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .notice-single__thumb img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

.review-placeholder {
  padding: 120px 0 140px !important;
  background: none;
}
@media screen and (max-width: 991.98px) {
  .review-placeholder {
    padding: 80px 0 100px !important;
  }
}
.review-placeholder .area {
  min-height: clamp(360px, 60vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-placeholder .review-placeholder__box {
  max-width: 860px;
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 54px 34px;
  text-align: center;
  border: 1px dashed #c9c4be;
  border-radius: 18px;
  background: #fff;
  color: #5c534c;
  box-sizing: border-box;
}
@media screen and (max-width: 991.98px) {
  .review-placeholder .review-placeholder__box {
    padding: 40px 22px;
    border-radius: 14px;
  }
}
.review-placeholder .review-placeholder__title {
  margin: 0 0 12px;
  font-size: 34px;
  font-weight: 700;
  color: #2c2721;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  line-height: 1.2;
}
@media screen and (max-width: 991.98px) {
  .review-placeholder .review-placeholder__title {
    font-size: 22px;
    font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  }
}
.review-placeholder .review-placeholder__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #746b64;
}

/* Real Review (review/index.html) */
.rr-page {
  color: #2c2721;
  margin-top: 80px;
}
@media screen and (max-width: 991.98px) {
  .rr-page {
    margin-top: 72px;
  }
}

.rr-page__hero {
  padding: 36px 0 18px;
  text-align: center;
}

.rr-page__hero-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  line-height: 1.15;
}

@media screen and (max-width: 991.98px) {
  .rr-page__hero {
    padding: 24px 0 12px;
  }
}
.rr-page__featured {
  padding: 48px 0 36px;
  background: #6f6358;
  color: #f5f0e8;
  text-align: center;
}
@media screen and (max-width: 991.98px) {
  .rr-page__featured {
    padding: 32px 0 24px;
  }
}

.rr-page__featured-eyebrow {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(245, 240, 232, 0.9);
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
}

.rr-page__featured-title {
  margin: 0 0 28px;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  color: #ebca6d;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
}

.rr-page__featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 20px;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 16px;
}

.rr-featured-item--ph {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.rr-page__catalog {
  padding: 40px 0 80px;
}

.rr-page__catalog-inner {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  box-sizing: border-box;
}

.rr-page__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 22px;
}

.rr-page__chip {
  appearance: none;
  border: 1px solid #d5cfc7;
  background: #fff;
  color: #4a433c;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.rr-page__chip.is-active {
  border-color: #4a433c;
  background: #4a433c;
  color: #fff;
}

.rr-page__toolbar {
  display: flex;
  justify-content: center;
  margin: 0 0 22px;
}

.rr-page__total {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #746b64;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
}

.rr-page__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 20px;
}

.rr-card {
  min-width: 0;
}

.rr-card__inner {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

a.rr-card__inner {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
}

/* 그리드 카드 썸네일 — 기존 고정 340×340 (FEATURED `.rr-feat__media`와 동일 계열) */
.rr-card__img-wrap {
  width: 340px;
  max-width: 100%;
  height: 340px;
  margin-inline: auto;
  background: #1a1410;
  box-sizing: border-box;
}
@media screen and (max-width: 543.98px) {
  .rr-card__img-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}

.rr-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rr-card__img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1410 0%, #2a221c 100%);
  opacity: 0.55;
}

.rr-card__body {
  padding: 12px 4px 0;
}

.rr-card__area {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.5;
  color: #7a716a;
  font-weight: 700;
}

.rr-card__title {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #2c2721;
  font-weight: 600;
}

.rr-page__empty {
  text-align: center;
  margin: 40px 0;
  color: #746b64;
  font-size: 14px;
  line-height: 1.6;
}

@media screen and (max-width: 991.98px) {
  .rr-page__featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 16px;
  }
  .rr-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 543.98px) {
  .rr-page__grid {
    grid-template-columns: 1fr;
  }
}
#section01 {
  background: url(../../../img/page/review/selfie/sec01_bg.png) no-repeat center -100px;
  background-size: cover;
  /* 모바일 padding — page-shell / review-section01-hero-responsive 에서 지정 */
}
@media screen and (min-width: 992px) {
  #section01 {
    padding: 192px 0 250px;
  }
}
#section01 p {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.98px) {
  #section01 p {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
#section01 h2 {
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  #section01 h2 {
    font-size: 35px;
  }
}
@media screen and (max-width: 1439.98px) {
  #section01 {
    background: url("../../../img/page/review/selfie/sec01_bg_m.png") no-repeat bottom !important;
    background-size: cover !important;
    padding: 100px 0 !important;
    margin-top: 62px;
  }
}

.rr-hero {
  display: none;
}

/*!
 * VIEW TV 동적 영역 — 그리드·카드·검색·페이지네이션
 *
 * 이 파일만 편집하세요. `css/pages/community/view-tv/index.css`는 Sass 빌드 산출물입니다.
 * 규칙은 모두 `.rr-spot.view-tv-dynamic` 하위에 두어 다른 페이지와 격리합니다.
 */
/* 허브 필터 셀렉트 — Quick Consult 콤보박스와 동일 stroke chevron */
/* 검색 버튼·돋보기 — 허브·그리드 공통 */
.view-tv-search__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: 0;
  line-height: 0;
  cursor: pointer;
  box-sizing: border-box;
}

.view-tv-search__submit-icon {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236f665e' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-4-4'/%3E%3C/svg%3E") center/contain no-repeat;
}

.rr-spot.view-tv-dynamic {
  background: #fff;
  color: #2c2721;
  /*
   * review `_review-common` 의 `.rr-spot > .area > p + div`(2~4열) 덮어쓰기
   */
  /* 썸네일 프레임 비율 446×323 (VIEW TV 전용) */
  /*
   * 어두운 확대 배경(cover) + 전면 썸네일(contain·중앙)
   * — /community/view-tv/(VIEW TV), /media/tiktok/ 공통. 블러 대신 어두운 오버레이.
   */
}
.rr-spot.view-tv-dynamic .view-tv-dynamic__head {
  display: flex;
  justify-content: flex-start;
  margin: 0 0 16px;
}
.rr-spot.view-tv-dynamic .view-tv-dynamic__head .view-tv-total {
  margin: 0;
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
  color: #6f665e;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
}
.rr-spot.view-tv-dynamic > .area > p + div.view-tv-sby-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 59px 20px;
  width: 100%;
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.rr-spot.view-tv-dynamic > .area > p + div.view-tv-sby-grid .view-tv-empty {
  grid-column: 1/-1;
  margin: 0;
  padding: 12px 8px 28px;
  font-size: 15px;
  line-height: 1.5;
  color: #6f665e;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
}
@media screen and (max-width: 575.98px) {
  .rr-spot.view-tv-dynamic > .area > p + div.view-tv-sby-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 22px 16px;
  }
}
.rr-spot.view-tv-dynamic .view-tv-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  transition: opacity 0.2s;
}
.rr-spot.view-tv-dynamic .view-tv-card:hover {
  opacity: 0.92;
}
.rr-spot.view-tv-dynamic .view-tv-card:focus-visible {
  outline: 2px solid #4a433c;
  outline-offset: 4px;
}
.rr-spot.view-tv-dynamic .view-tv-card--nolink {
  cursor: default;
  pointer-events: none;
}
.rr-spot.view-tv-dynamic .view-tv-card--nolink:hover {
  opacity: 1;
}
.rr-spot.view-tv-dynamic .view-tv-card__media {
  position: relative;
  width: 100%;
  max-width: 446px;
  margin-inline: auto;
  aspect-ratio: 446/323;
  border-radius: 14px;
  overflow: hidden;
  background: #ebe7e2;
}
.rr-spot.view-tv-dynamic .view-tv-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  box-sizing: border-box;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  pointer-events: none;
}
.rr-spot.view-tv-dynamic .view-tv-card__badge--youtube {
  background: #f8d7da;
  color: #721c24;
}
.rr-spot.view-tv-dynamic .view-tv-card__badge--tiktok {
  background: #e2e3e5;
  color: #383d41;
}
.rr-spot.view-tv-dynamic .view-tv-card__badge--instagram {
  background: #f3e5f5;
  color: #6a1b9a;
}
.rr-spot.view-tv-dynamic .view-tv-card__thumb {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #c1bdba;
  border-radius: 14px;
  box-sizing: border-box;
}
.rr-spot.view-tv-dynamic .view-tv-card__media--dim-backdrop {
  background: #ebe7e2;
}
.rr-spot.view-tv-dynamic .view-tv-card__media--dim-backdrop .view-tv-card__dim-fill {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}
.rr-spot.view-tv-dynamic .view-tv-card__media--dim-backdrop .view-tv-card__dim-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  pointer-events: none;
}
.rr-spot.view-tv-dynamic .view-tv-card__media--dim-backdrop .view-tv-card__thumb--framed {
  position: relative;
  inset: auto;
  width: auto;
  height: 100%;
  max-width: 100%;
  margin-inline: auto;
  object-fit: contain;
  border-radius: 0;
}
.rr-spot.view-tv-dynamic .view-tv-card__media--dim-backdrop .view-tv-card__play {
  z-index: 2;
}
.rr-spot.view-tv-dynamic .view-tv-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  pointer-events: none;
}
.rr-spot.view-tv-dynamic .view-tv-card__play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -8px 0 0 -5px;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #fff;
}
.rr-spot.view-tv-dynamic .view-tv-card__body {
  width: 100%;
  min-width: 0;
  margin-top: 14px;
  text-align: center;
}
.rr-spot.view-tv-dynamic .view-tv-card__title {
  margin: 0;
  box-sizing: border-box;
  height: 50px;
  min-height: 50px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  color: #2c2721;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  max-width: 100%;
  word-break: break-word;
}
.rr-spot.view-tv-dynamic .view-tv-card__date {
  margin: 30px 0 0;
  text-align: left;
  font-size: 15px;
  line-height: 1.4;
  color: #8a827a;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
}
.rr-spot.view-tv-dynamic .view-tv-search {
  margin-top: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.rr-spot.view-tv-dynamic .view-tv-search__inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 48px;
  padding: 4px 6px 4px 14px;
  border-radius: 999px;
  background: #f3f1ee;
  border: 1px solid #e3ddd6;
  box-sizing: border-box;
}
.rr-spot.view-tv-dynamic .view-tv-search__select {
  flex: 0 0 auto;
  max-width: 44%;
  margin: 0;
  padding: 10px 28px 10px 8px;
  border: 0;
  background: transparent;
  color: #4a433c;
  font-size: 15px;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  cursor: not-allowed;
  opacity: 0.85;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234a433c' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}
.rr-spot.view-tv-dynamic .view-tv-search__input {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: #2c2721;
  font-size: 15px;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
}
.rr-spot.view-tv-dynamic .view-tv-search__input::placeholder {
  color: #9d968e;
}
.rr-spot.view-tv-dynamic .view-tv-search__submit {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(74, 67, 60, 0.08);
  transition: background 0.2s;
}
.rr-spot.view-tv-dynamic .view-tv-search__submit:hover {
  background: rgba(74, 67, 60, 0.14);
}

/* 페이지네이션 — 그리드 내부(.rr-spot) 전용. 허브는 .view-tv-hub-catalog 블록 사용 */
.rr-spot.view-tv-dynamic .view-tv-pagination {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

/* 허브 하단(시안): 구분선 → 페이지네이션 → 검색(All pill + Search pill) */
.view-tv-hub-catalog {
  /* Total toolbar 제거 후 — 카테고리 탭/칩 바로 아래 구분선 */
}
.view-tv-hub-catalog .step-tabs-wrap {
  margin-bottom: 52px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e4df;
  box-sizing: border-box;
}
.view-tv-hub-catalog .rr-page__catalog-inner > nav.rr-chips {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e4df;
  box-sizing: border-box;
}
@media screen and (max-width: 767.98px) {
  .view-tv-hub-catalog .step-tabs-wrap {
    margin-bottom: 24px;
    padding-bottom: 12px;
  }
  .view-tv-hub-catalog .rr-page__catalog-inner > nav.rr-chips {
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
}
.view-tv-hub-catalog .view-tv-hub-footer {
  margin-top: 28px;
}
.view-tv-hub-catalog .view-tv-hub-divider {
  height: 1px;
  border: 0;
  padding: 0;
  margin: 0 0 38px;
  background: #e3ddd6;
}
.view-tv-hub-catalog .view-tv-pagination {
  margin: 0 0 41px;
  display: flex;
  justify-content: center;
}
.view-tv-hub-catalog form.view-tv-hub-search {
  margin: 0 auto;
  max-width: 385px;
}
.view-tv-hub-catalog form.view-tv-hub-search .view-tv-search__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  max-width: none;
  margin: 0;
}
.view-tv-hub-catalog .view-tv-hub-search__filter,
.view-tv-hub-catalog .view-tv-hub-search__query {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  min-height: 44px;
  border-radius: 999px;
  background: #f3f1ee;
  border: 0;
}
.view-tv-hub-catalog .view-tv-hub-search__filter {
  flex: 0 0 96px;
  width: 96px;
  padding: 0 12px;
}
.view-tv-hub-catalog .view-tv-hub-search__filter .view-tv-search__select {
  margin: 0;
  padding: 0 20px 0 0;
  min-height: 42px;
  max-width: none;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: #6f665e;
  cursor: pointer;
  opacity: 1;
  appearance: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%236f665e' stroke-linecap='round' stroke-width='1.5' d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 12px 8px;
}
.view-tv-hub-catalog .view-tv-hub-search__query {
  flex: 0 0 278px;
  width: 278px;
  padding: 0 8px 0 16px;
}
.view-tv-hub-catalog .view-tv-hub-search__query .view-tv-search__input {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 13px;
  line-height: 1.2;
  color: #2c2721;
  appearance: none;
  -webkit-appearance: none;
}
.view-tv-hub-catalog .view-tv-hub-search__query .view-tv-search__input::placeholder {
  color: #9d968e;
}
.view-tv-hub-catalog .view-tv-hub-search__query .view-tv-search__submit {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  align-self: center;
  border-radius: 50%;
  background: transparent;
}
.view-tv-hub-catalog .view-tv-hub-search__query .view-tv-search__submit:hover {
  background: rgba(74, 67, 60, 0.08);
}
.view-tv-hub-catalog .view-tv-hub-search__query .view-tv-search__submit-icon {
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236f665e' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-4-4'/%3E%3C/svg%3E");
}
.view-tv-hub-catalog .view-tv-pagination__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.view-tv-hub-catalog .view-tv-pagination__item {
  margin: 0;
  padding: 0;
}
.view-tv-hub-catalog .view-tv-pagination__item > a,
.view-tv-hub-catalog .view-tv-pagination__item > span:not(.page-numbers),
.view-tv-hub-catalog .view-tv-pagination__item .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: auto;
  min-height: auto;
  padding: 0 2px;
  font-size: 15px;
  font-weight: 500;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  text-decoration: none;
  color: #8a827a;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.view-tv-hub-catalog .view-tv-pagination__item > a:hover,
.view-tv-hub-catalog .view-tv-pagination__item .page-numbers:hover {
  color: #4a433c;
  border-color: transparent;
  background: transparent;
}
.view-tv-hub-catalog .view-tv-pagination__item.is-disabled > span {
  min-width: auto;
  min-height: auto;
  color: #c9c2bb;
}
.view-tv-hub-catalog .view-tv-pagination__item .page-numbers.current,
.view-tv-hub-catalog .view-tv-pagination__item span.page-numbers.current {
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  border-radius: 50%;
  font-weight: 600;
  color: #fff;
  background: #4a433c;
  border: 0;
}
.view-tv-hub-catalog .view-tv-pagination__item .page-numbers.dots {
  min-width: auto;
  color: #9d968e;
}

.rr-spot.view-tv-dynamic .view-tv-pagination__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rr-spot.view-tv-dynamic .view-tv-pagination__item {
  margin: 0;
  padding: 0;
}

.rr-spot.view-tv-dynamic .view-tv-pagination__item > a,
.rr-spot.view-tv-dynamic .view-tv-pagination__item > span:not(.page-numbers) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 8px;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  color: #6f665e;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.rr-spot.view-tv-dynamic .view-tv-pagination__item > a:hover {
  color: #4a433c;
  border-color: #d5cfc7;
}

.rr-spot.view-tv-dynamic .view-tv-pagination__item.is-disabled > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  color: #c9c2bb;
}

.rr-spot.view-tv-dynamic .view-tv-pagination__item .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 8px;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  color: #6f665e;
  border: 1px solid transparent;
  border-radius: 50%;
}

.rr-spot.view-tv-dynamic .view-tv-pagination__item .page-numbers:hover {
  color: #4a433c;
  border-color: #d5cfc7;
}

.rr-spot.view-tv-dynamic .view-tv-pagination__item .page-numbers.current,
.rr-spot.view-tv-dynamic .view-tv-pagination__item span.page-numbers.current {
  color: #fff;
  background: #4a433c;
  border-color: #4a433c;
}

.rr-spot.view-tv-dynamic .view-tv-pagination__item .page-numbers.dots {
  border-color: transparent;
  min-width: 28px;
  color: #9d968e;
}

.rr-real-review-catalog.view-tv-hub-catalog .rr-real-review-chips {
  margin-bottom: 22px;
}
.rr-real-review-catalog.view-tv-hub-catalog .rr-real-review-chips a,
.rr-real-review-catalog.view-tv-hub-catalog .rr-real-review-chips button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  appearance: none;
  border: 1px solid #d5cfc7;
  background: #fff;
  color: #4a433c;
  padding: 17px 28px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  box-sizing: border-box;
}
.rr-real-review-catalog.view-tv-hub-catalog .rr-real-review-chips a:hover,
.rr-real-review-catalog.view-tv-hub-catalog .rr-real-review-chips button:hover {
  border-color: #b0a69a;
}
.rr-real-review-catalog.view-tv-hub-catalog .rr-real-review-chips a.is-active,
.rr-real-review-catalog.view-tv-hub-catalog .rr-real-review-chips button.is-active {
  border-color: #4a433c;
  background: #4a433c;
  color: #fff;
}
.rr-real-review-catalog.view-tv-hub-catalog .rr-real-review-grid-spot {
  margin: 0;
  padding: 0;
}
.rr-real-review-catalog.view-tv-hub-catalog form.rr-real-review-hub-search {
  max-width: 494px;
}
.rr-real-review-catalog.view-tv-hub-catalog form.rr-real-review-hub-search .view-tv-hub-search__filter {
  flex: 0 0 auto;
  width: auto;
  min-width: 96px;
  max-width: 200px;
  padding: 0 14px 0 16px;
  overflow: hidden;
}
.rr-real-review-catalog.view-tv-hub-catalog form.rr-real-review-hub-search .view-tv-hub-search__filter .view-tv-search__select {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0 22px 0 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%236f665e' stroke-linecap='round' stroke-width='1.5' d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 12px 8px;
}

body.page-review-selfies {
  /* #sub-header display:none 구간(header.scss 1520px) — hero 배경 상단 정렬 */
}
@media screen and (max-width: 1520px) {
  body.page-review-selfies #section01 {
    background-position: center top;
  }
}
@media screen and (max-width: 1439.98px) {
  body.page-review-selfies #page-content-wrapper {
    overflow-x: hidden;
  }
  body.page-review-selfies #section01 {
    position: relative;
    overflow: hidden;
    background: url(../../../img/page/review/selfie/sec01_bg.png) no-repeat center top;
    background-size: cover;
  }
  body.page-review-selfies #section01 .area {
    position: relative;
    z-index: 1;
    max-width: none;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
  body.page-review-selfies #section01::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 58px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
    pointer-events: none;
    z-index: 2;
  }
}
@media screen and (max-width: 767.98px) {
  body.page-review-selfies #page-content-wrapper > section {
    margin-top: 62px;
    padding: 100px 0;
  }
  body.page-review-selfies #section01 h2 {
    font-size: 35px;
  }
  body.page-review-selfies #section01 p {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767.98px) {
  body.page-review-selfies .rr-page {
    margin-top: 40px;
    width: 100%;
    box-sizing: border-box;
  }
  body.page-review-selfies .rr-page .area,
  body.page-review-selfies .rr-page__catalog-inner {
    max-width: none;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
  body.page-review-selfies .rr-page__catalog,
  body.page-review-selfies .rr-page__catalog.rr-real-review-catalog {
    padding: 28px 0 56px;
  }
  body.page-review-selfies .with-star-best.rr-spot {
    margin-bottom: 28px;
  }
  body.page-review-selfies .with-star-best.rr-spot > .area {
    max-width: none;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  body.page-review-selfies .with-star-best-panel {
    padding: 28px 20px;
  }
  body.page-review-selfies .with-star-best__heading {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  body.page-review-selfies .with-star-best-slider-wrap {
    width: 100%;
    min-width: 0;
  }
  body.page-review-selfies .with-star-best-swiper {
    width: 100%;
    overflow: hidden;
  }
  body.page-review-selfies .with-star-best-swiper .swiper-slide {
    padding: 0 4px;
    box-sizing: border-box;
  }
  body.page-review-selfies .with-star-best-card__media {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 446/323;
    max-height: min(52vw, 268px);
    margin-inline: auto;
    border-radius: 14px;
    overflow: hidden;
  }
  body.page-review-selfies .with-star-best-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  body.page-review-selfies .with-star-best-card__body,
  body.page-review-selfies .with-star-best-card .view-tv-card__body {
    padding-top: 12px;
    margin-top: 0;
    text-align: left;
  }
  body.page-review-selfies .with-star-best-controls {
    margin-top: 18px;
    gap: 8px;
  }
  body.page-review-selfies .rr-selfies-tabs-wrap {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 100%;
    padding: 0 34px 16px;
    margin-bottom: 32px;
    border-bottom: 1px solid #e8e4df;
    box-sizing: border-box;
    overflow: hidden;
    font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  }
  body.page-review-selfies .rr-selfies-tabs-wrap .rr-selfies-main-tabs.rr-chips {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0;
    flex: 1 1 auto;
    flex-wrap: nowrap;
  }
  body.page-review-selfies .rr-selfies-tabs-wrap .rr-selfies-main-tabs {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    margin: 0;
  }
  body.page-review-selfies .rr-selfies-tabs-wrap > .swiper-controller {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 16px;
    pointer-events: none;
  }
  body.page-review-selfies .rr-selfies-tabs-wrap .rr-selfies-main-tabs .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    box-sizing: border-box;
  }
  body.page-review-selfies .rr-selfies-tabs-wrap .rr-selfies-main-tabs .step-tab.swiper-slide {
    width: auto !important;
    flex: 0 0 auto;
    flex-shrink: 0;
    max-width: none;
    height: auto;
    margin: 0;
    border: 0;
    padding: 0;
    border-radius: 23px;
    background-color: #fff;
    text-decoration: none;
    box-sizing: border-box;
    white-space: nowrap;
  }
  body.page-review-selfies .rr-selfies-tabs-wrap .rr-selfies-main-tabs .step-tab.swiper-slide p {
    margin: 0;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #9d968e;
    white-space: nowrap;
  }
  body.page-review-selfies .rr-selfies-tabs-wrap .rr-selfies-main-tabs .step-tab.swiper-slide.active, body.page-review-selfies .rr-selfies-tabs-wrap .rr-selfies-main-tabs .step-tab.swiper-slide.is-active {
    background-color: #4a433c;
  }
  body.page-review-selfies .rr-selfies-tabs-wrap .rr-selfies-main-tabs .step-tab.swiper-slide.active p, body.page-review-selfies .rr-selfies-tabs-wrap .rr-selfies-main-tabs .step-tab.swiper-slide.is-active p {
    color: #fff;
    font-weight: 700;
  }
  body.page-review-selfies .rr-selfies-tabs-wrap > .swiper-controller .swiper-button-prev,
  body.page-review-selfies .rr-selfies-tabs-wrap > .swiper-controller .swiper-button-next {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    margin-top: 0;
    pointer-events: auto;
    cursor: pointer;
    color: transparent;
  }
  body.page-review-selfies .rr-selfies-tabs-wrap > .swiper-controller .swiper-button-prev::after,
  body.page-review-selfies .rr-selfies-tabs-wrap > .swiper-controller .swiper-button-next::after {
    display: none;
  }
  body.page-review-selfies .rr-selfies-tabs-wrap > .swiper-controller .swiper-button-prev .swiper-navigation-icon,
  body.page-review-selfies .rr-selfies-tabs-wrap > .swiper-controller .swiper-button-next .swiper-navigation-icon {
    display: none;
  }
  body.page-review-selfies .rr-selfies-tabs-wrap > .swiper-controller .swiper-button-prev.swiper-button-disabled,
  body.page-review-selfies .rr-selfies-tabs-wrap > .swiper-controller .swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
  }
  body.page-review-selfies .rr-selfies-tabs-wrap > .swiper-controller .swiper-button-prev {
    left: 0;
    background: url("../../../img/main/sec05_img1.png") no-repeat center/contain;
  }
  body.page-review-selfies .rr-selfies-tabs-wrap > .swiper-controller .swiper-button-next {
    right: 0;
    background: url("../../../img/main/sec05_img2.png") no-repeat center/contain;
  }
  body.page-review-selfies .view-tv-sby-grid {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    gap: 22px 16px;
  }
  body.page-review-selfies .view-tv-sby-grid .view-tv-card {
    width: 100%;
    max-width: 100%;
  }
  body.page-review-selfies .view-tv-sby-grid .view-tv-card__media {
    width: 100%;
    max-width: 100%;
  }
  body.page-review-selfies .view-tv-sby-grid .view-tv-card__thumb,
  body.page-review-selfies .view-tv-sby-grid .view-tv-card img {
    width: 100%;
    max-width: 100%;
  }
  body.page-review-selfies .rr-real-review-grid-spot.rr-spot.view-tv-dynamic > .area > p + div.view-tv-sby-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }
  body.page-review-selfies #rr-real-review-grid .view-tv-card.is-selfies-collapsed {
    display: none;
  }
  body.page-review-selfies .rr-selfies-view-more.view-more {
    width: fit-content;
    margin: 28px auto 32px;
    padding: 19px 33px;
    border-radius: 50px;
    border: 1px solid #c7b4a1;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    box-sizing: border-box;
  }
  body.page-review-selfies .rr-selfies-view-more.view-more[hidden] {
    display: none;
  }
  body.page-review-selfies .rr-selfies-view-more.view-more p {
    margin: 0;
    color: #b1a499;
    font-size: 15px;
    line-height: 1.2;
  }
  body.page-review-selfies .rr-selfies-view-more.view-more .rr-selfies-view-more__arrow {
    display: inline-block;
    color: #b1a499;
    font-size: 14px;
    line-height: 1;
    transition: transform 0.3s ease;
  }
  body.page-review-selfies .rr-selfies-view-more.view-more[aria-expanded=true] .rr-selfies-view-more__arrow, body.page-review-selfies .rr-selfies-view-more.view-more.is-expanded .rr-selfies-view-more__arrow {
    transform: rotate(180deg);
  }
  body.page-review-selfies .rr-real-review-hub-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    margin-top: 20px;
  }
  body.page-review-selfies .rr-real-review-hub-footer .view-tv-hub-divider {
    margin-bottom: 0;
  }
  body.page-review-selfies .rr-real-review-hub-footer .view-tv-pagination {
    margin: 0;
    width: 100%;
    justify-content: center;
  }
  body.page-review-selfies .rr-real-review-hub-footer .view-tv-pagination .view-tv-pagination__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
  }
  body.page-review-selfies .rr-real-review-hub-footer form.rr-real-review-hub-search {
    width: 100%;
    max-width: none;
    margin: 0;
  }
  body.page-review-selfies .rr-real-review-hub-footer form.rr-real-review-hub-search .view-tv-search__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    gap: 12px;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }
  body.page-review-selfies .rr-real-review-hub-footer form.rr-real-review-hub-search .view-tv-hub-search__filter,
  body.page-review-selfies .rr-real-review-hub-footer form.rr-real-review-hub-search .view-tv-hub-search__query {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    min-height: 44px;
    border-radius: 999px;
    background: #f3f1ee;
    border: 0;
  }
  body.page-review-selfies .rr-real-review-hub-footer form.rr-real-review-hub-search .view-tv-hub-search__filter {
    flex: 0 0 90px;
    width: 90px;
    min-width: 0;
    max-width: none;
    padding: 0 12px;
    overflow: hidden;
  }
  body.page-review-selfies .rr-real-review-hub-footer form.rr-real-review-hub-search .view-tv-hub-search__query {
    flex: 1;
    width: auto;
    min-width: 0;
    max-width: none;
    padding: 0 8px 0 16px;
  }
  body.page-review-selfies .rr-real-review-hub-footer form.rr-real-review-hub-search .view-tv-hub-search__filter .view-tv-search__select {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    max-width: none;
    margin: 0;
    padding: 0 20px 0 0;
    border: 0;
    background-color: transparent;
    box-shadow: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    color: #6f665e;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%236f665e' stroke-linecap='round' stroke-width='1.5' d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 12px 8px;
  }
  body.page-review-selfies .rr-real-review-hub-footer form.rr-real-review-hub-search .view-tv-hub-search__query .view-tv-search__input {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    min-height: 42px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    font-size: 13px;
    line-height: 1.2;
    color: #2c2721;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
  }
  body.page-review-selfies .rr-real-review-hub-footer form.rr-real-review-hub-search .view-tv-hub-search__query .view-tv-search__submit {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    align-self: center;
    border-radius: 50%;
    background: transparent;
  }
  body.page-review-selfies .with-star-best-card .view-tv-card__date {
    font-size: 12px;
  }
  body.page-review-selfies .rr-spot.with-star-best .view-tv-card__title,
  body.page-review-selfies .with-star-best-card .view-tv-card__title {
    font-size: 18px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    word-break: break-word;
  }
  body.page-review-selfies .rr-spot.view-tv-dynamic .view-tv-card__title,
  body.page-review-selfies .rr-real-review-grid-spot .view-tv-card__title {
    font-size: 15px;
    line-height: 1.4;
    height: auto;
    min-height: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    word-break: break-word;
  }
  body.page-review-selfies .rr-spot.view-tv-dynamic .view-tv-card__date {
    margin: 5px 0 0;
    font-size: 13px;
  }
}
body.page-review-selfies .rr-selfies-tabs-wrap {
  position: relative;
}
body.page-review-selfies .rr-selfies-tabs-wrap .step-tab p {
  margin: 0;
}
@media screen and (min-width: 768px) {
  body.page-review-selfies .rr-selfies-tabs-wrap > .swiper-controller {
    display: none;
  }
  body.page-review-selfies .rr-selfies-tabs-wrap .rr-selfies-main-tabs {
    overflow: visible;
  }
  body.page-review-selfies .rr-selfies-tabs-wrap .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    transform: none !important;
  }
  body.page-review-selfies .rr-selfies-tabs-wrap .step-tab.swiper-slide {
    width: auto;
    height: auto;
    margin: 0;
  }
}
body.page-review-selfies #page-content-wrapper {
  overflow: visible;
}
body.page-review-selfies .rr-page__catalog.rr-real-review-catalog {
  background: #fff;
  padding-bottom: 120px;
}
body.page-review-selfies .rr-real-review-hub-footer {
  margin-top: 52px;
}
body.page-review-selfies #sub-footer {
  background: #fcfbfa;
}
@media screen and (min-width: 768px) {
  body.page-review-selfies .with-star-best__heading {
    font-size: 45px;
  }
  body.page-review-selfies .with-star-best-card .view-tv-card__date,
  body.page-review-selfies .rr-spot.view-tv-dynamic .view-tv-card__date {
    margin: 30px 0 0;
    font-size: 15px;
  }
  body.page-review-selfies .rr-spot.with-star-best .view-tv-card__title,
  body.page-review-selfies .with-star-best-card .view-tv-card__title {
    font-size: 18px;
    line-height: 25px;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    -webkit-box-orient: unset;
  }
  body.page-review-selfies .rr-spot.view-tv-dynamic .view-tv-card__title,
  body.page-review-selfies .rr-real-review-grid-spot .view-tv-card__title {
    font-size: 18px;
    line-height: 25px;
    height: 50px;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
  }
}
body.page-review-selfies .with-star-best__heading-strong {
  font-weight: 500;
}
body.page-review-selfies .with-star-best__heading-light {
  color: #746b64;
}
body.page-review-selfies .with-star-best-swiper .swiper-slide,
body.page-review-selfies .with-star-best-card__media,
body.page-review-selfies .with-star-best-card__img,
body.page-review-selfies .view-tv-card__media,
body.page-review-selfies .view-tv-card__thumb,
body.page-review-selfies .view-tv-card__dim-fill {
  filter: none !important;
}
body.page-review-selfies .with-star-best-card .view-tv-card__body {
  width: 100%;
  min-width: 0;
  margin-top: 14px;
  text-align: center;
}
body.page-review-selfies .rr-spot.with-star-best .view-tv-card__title,
body.page-review-selfies .with-star-best-card .view-tv-card__title,
body.page-review-selfies .rr-real-review-grid-spot .view-tv-card__title {
  margin: 0;
  box-sizing: border-box;
  text-align: left;
  font-weight: 600;
  color: #2c2721;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  overflow: hidden;
  max-width: 100%;
  word-break: break-word;
}
body.page-review-selfies .rr-spot.with-star-best .view-tv-card__title,
body.page-review-selfies .with-star-best-card .view-tv-card__title {
  height: auto;
  min-height: 0;
}
body.page-review-selfies .with-star-best-card .view-tv-card__date,
body.page-review-selfies .rr-spot.view-tv-dynamic .view-tv-card__date {
  text-align: left;
  line-height: 1.4;
  color: #8a827a;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
}
body.page-review-selfies .rr-real-review-grid-spot.rr-spot.view-tv-dynamic > .area > p + div.view-tv-sby-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media screen and (max-width: 991.98px) {
  body.page-review-selfies .rr-real-review-grid-spot.rr-spot.view-tv-dynamic > .area > p + div.view-tv-sby-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}