@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`에 유지하세요.
 *
 * 상위에서 `@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;
  }
}

#page-content-wrapper.page-community {
  overflow: visible;
  padding-top: calc(var(--mega-dim-top, 88px) + 32px);
}
@media screen and (max-width: 991.98px) {
  #page-content-wrapper.page-community {
    padding-top: calc(var(--mega-dim-top, 88px) + 24px);
  }
}
@media screen and (max-width: 767.98px) {
  #page-content-wrapper.page-community {
    padding-top: calc(var(--mega-dim-top, 72px) + 20px);
  }
}

.page-community .rr-hero h1 .rr-hero__accent {
  color: #9d968e;
}

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

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

.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;
  box-shadow: 0 2px 12px rgba(44, 39, 33, 0.06);
}

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

.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;
}

/* 목록 카드: 썸네일 없을 때는 placeholder div 없이 래퍼만 둠 */
.rr-card__img-wrap:not(.rr-card__img-wrap--has-img) {
  background: #f3f0ec;
}

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

.rr-card__body {
  padding: 12px 12px 16px;
}

.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;
}

.vblog-card__excerpt {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #6f665e;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.vblog-card__date {
  margin: 10px 0 0;
  font-size: 12px;
  color: #9d958f;
}

.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__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 543.98px) {
  .rr-page__grid {
    grid-template-columns: 1fr;
  }
}
.vblog-chips.rr-chips {
  margin-bottom: 24px;
}

.vblog-chips.rr-chips a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  appearance: none;
  border: 1px solid #d5cfc7;
  background: #fff;
  color: #4a433c;
  padding: 15px 33px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  box-sizing: border-box;
}
.vblog-chips.rr-chips a:hover {
  border-color: #b0a69a;
}
.vblog-chips.rr-chips a.is-active {
  border-color: #4a433c;
  background: #4a433c;
  color: #fff;
}

.vblog-toolbar--total {
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e4df;
}

.vblog-toolbar--total .vblog-total {
  margin: 0;
}

.vblog-search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  margin-bottom: 8px;
}

.vblog-search input[type=search] {
  min-width: min(280px, 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;
}

.vblog-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;
  transition: background 0.15s, border-color 0.15s;
}
.vblog-search__btn:hover {
  background: #3d3732;
  border-color: #3d3732;
}

.vblog-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.vblog-pagination .page-numbers {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.vblog-pagination li {
  margin: 0;
  padding: 0;
}

.vblog-pagination a,
.vblog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 36px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #4a433c;
  border: 1px solid #d5cfc7;
  background: #fff;
  box-sizing: border-box;
}

.vblog-pagination a:hover {
  border-color: #4a433c;
  background: #faf8f6;
}

.vblog-pagination span.current {
  border-radius: 36px;
  min-width: 36px;
  min-height: 36px;
  border-color: #7a6e66;
  background-color: #7a6e66;
  color: #fff;
}

.vblog-pagination span.dots {
  border-color: transparent;
  background: transparent;
  min-width: auto;
}

.community-with-star .rr-card__img-wrap {
  height: 244px;
  box-sizing: border-box;
}
.community-with-star .rr-spot .rr-feat__media {
  height: 244px;
  max-height: 244px;
  box-sizing: border-box;
}

@media screen and (max-width: 543.98px) {
  .community-with-star .rr-card__img-wrap {
    height: auto;
    max-height: none;
    aspect-ratio: 1/1;
  }
  .community-with-star .rr-spot .rr-feat__media {
    height: auto;
    max-height: none;
    aspect-ratio: 1/1;
  }
}