@charset "UTF-8";
/* ------------------------------------------
   CONTEST SIDEBAR NAVIGATION (Fixed)
   Điều hướng nhanh đến các section
   ------------------------------------------ */
.contest-sidebar-nav {
  position: fixed;
  left: 40px;
  top: 60px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  will-change: opacity, transform; }
  .contest-sidebar-nav.is-visible {
    opacity: 1;
    visibility: visible; }
  .contest-sidebar-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0; }
  .contest-sidebar-nav__item {
    margin: 0;
    padding: 0; }
  .contest-sidebar-nav__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    text-decoration: none;
    transition: opacity 0.2s ease;
    opacity: 0.55;
    cursor: pointer; }
    .contest-sidebar-nav__link:hover, .contest-sidebar-nav__link.is-active {
      opacity: 1; }
      .contest-sidebar-nav__link:hover .contest-sidebar-nav__dot, .contest-sidebar-nav__link.is-active .contest-sidebar-nav__dot {
        background: #2cff73;
        box-shadow: 0 0 8px rgba(44, 255, 115, 0.5); }
    .contest-sidebar-nav__link.is-active .contest-sidebar-nav__text {
      font-weight: 600; }
    .contest-sidebar-nav__link:focus {
      outline: 2px solid #2cff73;
      outline-offset: 2px; }
    .contest-sidebar-nav__link:focus:not(:focus-visible) {
      outline: none; }
  .contest-sidebar-nav__text {
    font-size: 11px;
    font-weight: 500;
    line-height: 2;
    color: #fafafa;
    white-space: nowrap;
    letter-spacing: 0.3px; }
  .contest-sidebar-nav__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: background 0.2s ease, box-shadow 0.2s ease; }

.page-photo-contest {
  background: #010101;
  contain: layout style; }
  .page-photo-contest__media {
    position: relative;
    width: 100%;
    height: 640px;
    background: #040404;
    overflow: hidden;
    aspect-ratio: 1920 / 1080; }
    @supports not (aspect-ratio: 1920/1080) {
      .page-photo-contest__media {
        min-height: 640px; } }
  .page-photo-contest__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; }
  .page-photo-contest .page-photo-contest-full .page-photo-contest__media {
    height: auto; }
    .page-photo-contest .page-photo-contest-full .page-photo-contest__media .page-photo-contest__img {
      height: auto;
      object-fit: contain; }
  .page-photo-contest__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #0a0a0a 100%); }
  .page-photo-contest__content {
    min-height: 640px;
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    box-shadow: -26px 34px 70px rgba(0, 0, 0, 0.3);
    background-color: var(--page-photo-contest-bg, #2cff73);
    color: var(--page-photo-contest-color, #000000); }
  .page-photo-contest__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    color: var(--page-photo-contest-color); }
  .page-photo-contest__desc {
    font-size: 18px;
    line-height: 1.6;
    margin: 0; }

@media (min-width: 992px) {
  .container-contest {
    padding: 0 120px; } }

.heading-title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin: 0; }

.heading-desc {
  font-size: 16px;
  line-height: 1.45;
  color: #c3bfb9;
  margin: 0; }

/* ------------------------------------------
   CONTEST TIMELINE SECTION
   ------------------------------------------ */
.contest-timeline {
  background: #000;
  contain: layout style;
  scroll-margin-top: 80px; }
  .contest-timeline__header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px; }
  .contest-timeline__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #c3bfb9;
    border-radius: 24px;
    padding: 8px 22px;
    width: fit-content; }
  .contest-timeline__badge-text {
    font-size: 11px;
    color: #fafafa;
    line-height: 2; }
  .contest-timeline__badge-dot {
    width: 10px;
    height: 10px;
    background: #2cff73;
    border-radius: 50%; }
  .contest-timeline__intro {
    display: flex;
    gap: 40px;
    align-items: flex-start; }
  .contest-timeline__intro-left {
    flex: 1; }
  .contest-timeline__intro-right {
    flex: 1; }
  .contest-timeline__track {
    display: flex;
    flex-direction: column;
    gap: 15px; }
  .contest-timeline__bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    padding: 0; }
  .contest-timeline__bar {
    flex-shrink: 0; }
    .contest-timeline__bar--minor {
      width: 1px;
      height: 32px;
      background: #fafafa; }
    .contest-timeline__bar--major {
      width: 3px;
      height: 55px;
      background: #fafafa; }
    .contest-timeline__bar--accent {
      width: 5px;
      height: 55px;
      background: #2cff73; }
  .contest-timeline__info-track {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding: 0 120px; }
  .contest-timeline__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    flex-shrink: 0;
    width: auto; }
    @media (min-width: 992px) {
      .contest-timeline__info--1 {
        width: 122px; }
      .contest-timeline__info--2 {
        width: 510px; }
      .contest-timeline__info--3 {
        width: 254px; }
      .contest-timeline__info--4 {
        width: 312px; } }
  .contest-timeline__milestone-title {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.1;
    color: #fafafa;
    margin: 0; }
  .contest-timeline__milestone-date {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
    color: #fafafa;
    margin: 0; }

/* ------------------------------------------
   CONTEST PRIZES SECTION
   ------------------------------------------ */
.contest-prizes {
  background: #000;
  contain: layout style;
  scroll-margin-top: 80px; }
  .contest-prizes__header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px; }
  .contest-prizes__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 942px;
    overflow: hidden; }
  .contest-prizes__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mix-blend-mode: lighten;
    opacity: 0.8;
    pointer-events: none; }
  .contest-prizes__media {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1066px; }
  .contest-prizes__image {
    width: 100%;
    height: auto;
    max-width: 1066px;
    object-fit: contain;
    display: block; }

/* ------------------------------------------
   CONTEST JOIN SECTION (How to Join)
   ------------------------------------------ */
.contest-join {
  background: #000;
  contain: layout style;
  scroll-margin-top: 80px; }
  .contest-join__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px; }
  .contest-join__left {
    flex: 0 0 499px;
    display: flex;
    flex-direction: column;
    gap: 25px; }
  .contest-join__right {
    flex: 0 0 701px;
    display: flex;
    flex-direction: column;
    gap: 15px; }
  .contest-join__buttons {
    display: flex;
    gap: 15px; }
    .contest-join__buttons .button-shutter {
      color: #fff; }
      .contest-join__buttons .button-shutter svg {
        margin: 0 10px 0 0; }
    .contest-join__buttons .button--flash {
      display: flex;
      align-items: center; }
      .contest-join__buttons .button--flash:hover {
        color: #000; }
  .contest-join__step {
    display: flex;
    align-items: center;
    gap: 36px; }
  .contest-join__step-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .contest-join__step-icon img, .contest-join__step-icon svg {
      width: 56px;
      height: 56px;
      object-fit: contain; }
  .contest-join__step-content {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    color: #fafafa;
    margin: 0; }
    .contest-join__step-content strong {
      font-weight: 700; }
    .contest-join__step-content u {
      text-decoration: underline;
      text-underline-offset: 2px; }
    .contest-join__step-content a {
      color: #2cff73;
      text-decoration: underline; }
      .contest-join__step-content a:hover {
        color: #24d962; }
  .contest-join__divider {
    height: 1px;
    background: #706c66;
    width: 100%; }

/* ------------------------------------------
   PHOTO OF THE WEEK (Gallery) SECTION
   ------------------------------------------ */
.contest-potw {
  contain: layout style;
  scroll-margin-top: 80px; }
  .contest-potw__header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px; }
  .contest-potw__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px; }
  .contest-potw__item-wrapper--featured {
    grid-column: 1 / -1; }
  .contest-potw__item {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none; }
    .contest-potw__item--featured {
      grid-column: 1 / -1; }
      .contest-potw__item--featured .contest-potw__caption {
        text-align: center; }
        .contest-potw__item--featured .contest-potw__caption .contest-potw__photo-meta {
          justify-content: center; }
    .contest-potw__item--grid {
      display: block; }
    .contest-potw__item:hover .contest-potw__img {
      transform: scale(1.05); }
    .contest-potw__item:hover .contest-potw__caption {
      opacity: 1; }
  .contest-potw__figure {
    position: relative;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; }
  .contest-potw__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease; }
  .contest-potw__item--featured .contest-potw__figure {
    height: 680px;
    aspect-ratio: 1200 / 680; }
    @supports not (aspect-ratio: 1200/680) {
      .contest-potw__item--featured .contest-potw__figure {
        min-height: 680px; } }
  .contest-potw__item--grid .contest-potw__figure {
    height: 477px;
    aspect-ratio: 600 / 477; }
    @supports not (aspect-ratio: 600/477) {
      .contest-potw__item--grid .contest-potw__figure {
        min-height: 477px; } }
  .contest-potw__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: #201F1C;
    color: #fff;
    transition: opacity 0.3s ease; }
  .contest-potw__photo-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 8px;
    color: #fafafa; }
  .contest-potw__photo-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 16px;
    color: #c3bfb9; }
  .contest-potw__author::after {
    content: '|';
    margin-left: 8px;
    color: #EBE8E3; }
  .contest-potw__device {
    color: #EBE8E3; }
  .contest-potw__empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #c3bfb9;
    font-size: 16px;
    padding: 60px 20px; }
  .contest-potw__footer {
    display: flex;
    justify-content: center;
    margin-top: 40px; }
  .contest-potw .button-shutter {
    color: #fafafa; }

/* POTW FancyBox Popup Custom */
.potw-popup {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background: #1a1a1a;
  border-radius: 12px;
  color: #fff;
  text-align: justify; }
  .potw-popup__header {
    display: flex;
    flex-direction: column;
    gap: 8px; }
  .potw-popup__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    color: #fafafa; }
  .potw-popup__author {
    font-size: 14px;
    color: #c3bfb9;
    display: flex;
    align-items: center;
    gap: 8px; }
    .potw-popup__author::before {
      content: 'Tác giả:';
      color: #706c66; }
  .potw-popup__quote {
    font-size: 16px;
    font-style: italic;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
    padding: 16px 20px;
    border-left: 3px solid #2cff73;
    background: rgba(44, 255, 115, 0.05); }
  .potw-popup__device {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2cff73;
    padding: 8px 16px;
    background: rgba(44, 255, 115, 0.1);
    border-radius: 20px;
    width: fit-content; }
    .potw-popup__device::before {
      content: '📱'; }
  .potw-popup__content {
    font-size: 14px;
    line-height: 1.7;
    color: #c3bfb9;
    margin: 0; }
    @media (min-width: 992px) {
      .potw-popup__content {
        max-height: 200px;
        overflow: hidden auto;
        scrollbar-width: thin;
        scrollbar-color: #2cff73 rgba(255, 255, 255, 0.1); }
        .potw-popup__content::-webkit-scrollbar {
          width: 6px; }
        .potw-popup__content::-webkit-scrollbar-track {
          background: rgba(255, 255, 255, 0.1);
          border-radius: 3px; }
        .potw-popup__content::-webkit-scrollbar-thumb {
          background: #2cff73;
          border-radius: 3px; }
          .potw-popup__content::-webkit-scrollbar-thumb:hover {
            background: #24d962; } }

/* ------------------------------------------
   STORY GALLERY SECTION (Masonry)
   ------------------------------------------ */
.story-gallery .story-gallery__header {
  margin-bottom: 40px; }

.story-gallery .story-gallery__container {
  padding: 0 80px; }

.story-gallery .story-gallery__masonry {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  align-items: start; }
  .story-gallery .story-gallery__masonry .story-gallery__column .story-gallery__item:not(:last-child) {
    margin-bottom: 15px; }

.story-gallery .story-gallery__item {
  position: relative;
  background: #201f1c;
  overflow: hidden;
  break-inside: avoid;
  transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .story-gallery .story-gallery__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
  .story-gallery .story-gallery__item:nth-child(5n+1) {
    grid-column: 1; }
  .story-gallery .story-gallery__item:nth-child(5n+2) {
    grid-column: 2; }
  .story-gallery .story-gallery__item:nth-child(5n+3) {
    grid-column: 3; }
  .story-gallery .story-gallery__item:nth-child(5n+4) {
    grid-column: 4; }
  .story-gallery .story-gallery__item:nth-child(5n+5) {
    grid-column: 5; }

.story-gallery .story-gallery__content {
  display: none !important; }

.story-gallery .story-gallery__link {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 15px;
  text-decoration: none;
  cursor: zoom-in; }

.story-gallery .story-gallery__author {
  display: flex;
  align-items: center;
  gap: 10px; }

.story-gallery .story-gallery__author-name {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2; }

.story-gallery .story-gallery__image-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #2a2a2a; }

.story-gallery .story-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  contain: layout style paint; }

.story-gallery .story-gallery__item:hover .story-gallery__image {
  transform: scale(1.05); }

.story-gallery .story-gallery__info {
  text-align: center; }

.story-gallery .story-gallery__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 8px; }

.story-gallery .story-gallery__meta {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin: 0; }
  .story-gallery .story-gallery__meta strong {
    font-weight: 700; }

.story-gallery .story-gallery__hidden-images {
  display: none;
  position: absolute;
  visibility: hidden;
  pointer-events: none; }

.story-gallery .story-gallery__badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  z-index: 2; }

.story-gallery .story-gallery__image-wrapper {
  position: relative; }

.story-gallery .story-gallery__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px; }
  .story-gallery .story-gallery__cta .button.button-shutter {
    color: #fff; }

.story-gallery .button.button-shutter::before, .story-gallery .button.button-shutter::after {
  background: rgba(255, 255, 255, 0.15); }

/* ------------------------------------------
   FANCYBOX STORY SIDEBAR
   ------------------------------------------ */
.fancybox-story.has-story-sidebar .fancybox-stage {
  right: 380px;
  transition: right 0.3s ease; }

.fancybox-story.has-story-sidebar .fancybox-toolbar {
  right: 380px; }

.fancybox-story.has-story-sidebar .fancybox-navigation .fancybox-button--arrow_right {
  right: 480px; }

.fancybox-story.has-story-sidebar.sidebar-collapsed .fancybox-stage {
  right: 0; }

.fancybox-story.has-story-sidebar.sidebar-collapsed .fancybox-toolbar {
  right: 10px; }

.fancybox-story.has-story-sidebar.sidebar-collapsed .fancybox-navigation .fancybox-button--arrow_right {
  right: 10px; }

.fancybox-story.has-story-sidebar.sidebar-collapsed .story-sidebar {
  transform: translateX(100%); }

.fancybox-story.has-story-sidebar.sidebar-collapsed .story-sidebar__toggle {
  left: -44px; }
  .fancybox-story.has-story-sidebar.sidebar-collapsed .story-sidebar__toggle svg {
    transform: rotate(180deg); }

.story-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100%;
  background: #1a1a1a;
  z-index: 99997;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  will-change: transform;
  contain: layout style; }
  .story-sidebar .story-sidebar__toggle {
    position: absolute;
    left: -44px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 60px;
    background: #1a1a1a;
    border: none;
    border-radius: 8px 0 0 8px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, left 0.3s ease;
    z-index: 10; }
    .story-sidebar .story-sidebar__toggle svg {
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease; }
    .story-sidebar .story-sidebar__toggle:hover {
      background: #2a2a2a; }
  .story-sidebar .story-sidebar__inner {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch; }
  .story-sidebar .story-content {
    padding: 24px;
    color: #fff; }
  .story-sidebar .story-content__header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .story-sidebar .story-content__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px; }
  .story-sidebar .story-content__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2); }
  .story-sidebar .story-content__author-info {
    display: flex;
    flex-direction: column;
    gap: 2px; }
  .story-sidebar .story-content__author-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff; }
  .story-sidebar .story-content__device {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6); }
  .story-sidebar .story-content__title {
    font-family: var(--style-font, inherit);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin: 0; }
  .story-sidebar .story-content__body {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85); }
    .story-sidebar .story-content__body p {
      margin: 0 0 16px; }
      .story-sidebar .story-content__body p:last-child {
        margin-bottom: 0; }
    .story-sidebar .story-content__body img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin: 16px 0; }
    .story-sidebar .story-content__body a {
      color: #00a859;
      text-decoration: none; }
      .story-sidebar .story-content__body a:hover {
        text-decoration: underline; }
    .story-sidebar .story-content__body h1, .story-sidebar .story-content__body h2, .story-sidebar .story-content__body h3, .story-sidebar .story-content__body h4, .story-sidebar .story-content__body h5, .story-sidebar .story-content__body h6 {
      color: #fff;
      margin: 24px 0 12px;
      font-weight: 600; }
      .story-sidebar .story-content__body h1:first-child, .story-sidebar .story-content__body h2:first-child, .story-sidebar .story-content__body h3:first-child, .story-sidebar .story-content__body h4:first-child, .story-sidebar .story-content__body h5:first-child, .story-sidebar .story-content__body h6:first-child {
        margin-top: 0; }
    .story-sidebar .story-content__body ul, .story-sidebar .story-content__body ol {
      padding-left: 20px;
      margin: 12px 0; }
    .story-sidebar .story-content__body blockquote {
      border-left: 3px solid #00a859;
      padding-left: 16px;
      margin: 16px 0;
      font-style: italic;
      color: rgba(255, 255, 255, 0.7); }
  .story-sidebar .story-content__footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .story-sidebar .story-content__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #00a859;
    text-decoration: none;
    transition: color 0.2s ease; }
    .story-sidebar .story-content__link:hover {
      color: #00c96b; }
  .story-sidebar .story-sidebar__empty {
    padding: 40px 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px; }

/* Fancybox gallery customization */
.fancybox-caption {
  font-size: 14px;
  text-align: center;
  padding: 15px 20px; }
  .fancybox-caption strong {
    font-weight: 700;
    text-transform: uppercase; }

.fancybox-show-thumbs .fancybox-inner {
  right: 0; }

.fancybox-thumbs {
  background: rgba(0, 0, 0, 0.9);
  left: 0;
  right: auto;
  bottom: 0;
  top: auto;
  width: calc(100% - 380px); }
  .fancybox-thumbs .fancybox-thumbs__list {
    margin: 0 auto; }
    .fancybox-thumbs .fancybox-thumbs__list a::before {
      border-color: #2cff73; }

/* ------------------------------------------
   CONTEST RESULTS SECTION
   ------------------------------------------ */
.contest-results {
  background: #000;
  contain: layout style;
  scroll-margin-top: 80px; }
  .contest-results__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px; }
  .contest-results__title-wrap {
    flex: 1; }
  .contest-results__btn {
    flex-shrink: 0; }
  .contest-results__gallery {
    display: flex;
    flex-direction: column;
    gap: 40px; }
  .contest-results__featured {
    display: flex;
    flex-direction: column;
    gap: 15px; }
    .contest-results__featured .contest-results__photo-meta {
      justify-content: center; }
  .contest-results__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; }
  .contest-results__item {
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .contest-results__award {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; }
  .contest-results__award-text {
    font-size: 30px;
    font-weight: 400;
    color: #fafafa;
    white-space: nowrap; }
  .contest-results__link {
    display: block;
    overflow: hidden;
    text-decoration: none; }
    .contest-results__link:hover .contest-results__img {
      transform: scale(1.05); }
  .contest-results__figure {
    position: relative;
    margin: 0;
    width: 100%;
    height: 477px;
    overflow: hidden; }
    .contest-results__figure--featured {
      height: 680px; }
  .contest-results__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease; }
  .contest-results__caption {
    background: #201f1c;
    padding: 30px 40px;
    text-align: left; }
    .contest-results__caption--featured {
      text-align: center; }
  .contest-results__photo-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 13px;
    color: #fafafa;
    letter-spacing: 1px; }
  .contest-results__photo-meta {
    display: flex;
    align-items: center;
    justify-content: inherit;
    gap: 12px;
    margin: 0;
    font-size: 16px;
    color: #ebe8e3;
    letter-spacing: 1px; }
  .contest-results__author {
    font-weight: 500; }
  .contest-results__divider {
    opacity: 0.5; }
  .contest-results__device {
    opacity: 0.75;
    font-weight: 500; }
  .contest-results__empty {
    text-align: center;
    color: #c3bfb9;
    font-size: 16px;
    padding: 60px 20px; }
  .contest-results .button-shutter {
    color: #fafafa; }

/* ------------------------------------------
   PAGE FAQS
   ------------------------------------------ */
.layoutPage-faqs .section-breadcrumb {
  position: relative; }
  .layoutPage-faqs .section-breadcrumb .header-breadcrumb {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    padding-left: 15px; }
    @media (min-width: 992px) {
      .layoutPage-faqs .section-breadcrumb .header-breadcrumb {
        padding-left: 120px; } }
    .layoutPage-faqs .section-breadcrumb .header-breadcrumb h1 {
      font-size: 40px;
      font-weight: 400;
      line-height: 1.2; }

.layoutPage-faqs .faq-item {
  background-color: #201F1C;
  padding: 0 40px;
  color: #fff; }
  .layoutPage-faqs .faq-item:not(:last-child) {
    margin-bottom: 15px; }
  .layoutPage-faqs .faq-item .header-faqs {
    padding: 30px 0;
    font-size: 23px;
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s; }
    .layoutPage-faqs .faq-item .header-faqs::before {
      content: "";
      position: absolute;
      top: 50%;
      transform: translateY(-50%) rotate3d(1, 1, 1, 0deg);
      right: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='10' viewBox='0 0 19 10' fill='none'%3E%3Cpath d='M1 1L9.5 9L18 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-size: contain;
      width: 20px;
      height: 20px;
      transition: all 0.4s ease-in-out 0s;
      -moz-transition: all 0.4s ease-in-out 0s;
      -o-transition: all 0.4s ease-in-out 0s;
      -webkit-transition: all 0.4s ease-in-out 0s;
      -ms-transition: all 0.4s ease-in-out 0s; }
    .layoutPage-faqs .faq-item .header-faqs.opened::before {
      -moz-transform: translateY(-60%) rotate3d(1, 0, 0, 180deg);
      -webkit-transform: translateY(-60%) rotate3d(1, 0, 0, 180deg);
      -o-transform: translateY(-60%) rotate3d(1, 0, 0, 180deg);
      -ms-transform: translateY(-60%) rotate3d(1, 0, 0, 180deg);
      transform: translateY(-80%) rotate3d(1, 0, 0, 180deg); }
  .layoutPage-faqs .faq-item .content-faqs {
    display: none;
    padding-bottom: 30px;
    text-align: justify; }

@media (max-width: 991px) {
  .heading-title {
    font-size: 24px;
    line-height: normal; }
  .page-photo-contest__content {
    padding: 48px;
    min-height: auto; }
  .contest-timeline__header {
    padding: 0 30px; }
  .contest-timeline__intro {
    flex-direction: column;
    gap: 10px; }
  .contest-timeline__intro-left {
    max-width: 100%; }
  .contest-timeline__title {
    font-size: 32px; }
  .contest-timeline__track {
    flex-direction: row;
    padding: 0 30px;
    flex-wrap: wrap;
    gap: 20px; }
  .contest-timeline__milestone {
    flex: 0 0 calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important; }
  .contest-timeline__milestone-title {
    font-size: 24px; }
    .contest-timeline__milestone-title br {
      display: none; }
  .contest-timeline__milestone-date {
    font-size: 16px; }
  .contest-timeline__bars {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: auto; }
  .contest-timeline__info-track {
    flex-direction: column;
    padding: 0;
    flex: 1;
    align-items: start;
    justify-content: space-between; }
  .contest-prizes__header {
    margin-bottom: 20px; }
  .contest-prizes__content {
    min-height: 100%; }
  .contest-prizes__media {
    max-width: 800px; }
  .contest-join__wrapper {
    flex-direction: column;
    gap: 20px; }
  .contest-join__left, .contest-join__right {
    flex: 0 0 auto;
    width: 100%;
    gap: 15px; }
  .contest-join__step {
    gap: 24px; }
  .contest-join__step-icon {
    width: 48px;
    height: 48px; }
    .contest-join__step-icon img, .contest-join__step-icon svg {
      width: 48px;
      height: 48px; }
  .contest-potw__header {
    margin-bottom: 20px; }
  .contest-potw__item--featured .contest-potw__figure {
    height: 480px; }
  .contest-potw__item--grid .contest-potw__figure {
    height: 360px; }
  .contest-potw__caption {
    padding: 24px; }
  .contest-potw__photo-title {
    font-size: 18px; }
  .contest-results__gallery {
    gap: 20px; }
  .contest-results__figure {
    height: 360px; }
    .contest-results__figure--featured {
      height: 480px; }
  .contest-results__award-text {
    font-size: 26px; }
  .contest-results__caption {
    padding: 24px; }
  .contest-results__photo-title {
    font-size: 20px; }
  .fancybox-caption {
    padding: 15px 0; }
  .potw-popup {
    padding: 15px;
    max-width: 100%;
    max-height: 200px;
    overflow: hidden auto; }
    .potw-popup__title {
      font-size: 20px; }
    .potw-popup__quote {
      font-size: 14px;
      padding: 12px 16px; }
  .fancybox-story.has-story-sidebar .fancybox-stage {
    right: 320px; }
  .fancybox-story.has-story-sidebar .fancybox-toolbar {
    right: 330px; }
  .fancybox-story.has-story-sidebar .fancybox-navigation .fancybox-button--arrow_right {
    right: 330px; }
  .story-sidebar {
    width: 320px; }
    .story-sidebar .story-content {
      padding: 20px; }
    .story-sidebar .story-content__title {
      font-size: 18px; }
  .fancybox-thumbs {
    width: 100%;
    top: 45px;
    bottom: auto; }
  /* ------------------------------------------
	PAGE FAQS
	------------------------------------------ */
  .layoutPage-faqs .section-breadcrumb .breadcrumb-img img {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center; }
  .layoutPage-faqs .section-breadcrumb .header-breadcrumb h1 {
    font-size: 24px; }
  .layoutPage-faqs .faq-item {
    padding: 0 15px; }
    .layoutPage-faqs .faq-item .header-faqs {
      font-size: 18px;
      padding: 15px 0;
      padding-right: 20px; }
    .layoutPage-faqs .faq-item .content-faqs {
      font-size: 14px; } }

@media (max-width: 767px) {
  .page-photo-contest__media {
    height: auto; }
    .page-photo-contest__media .page-photo-contest__img {
      height: auto; }
  .page-photo-contest__content {
    padding: 15px;
    min-height: auto;
    gap: 10px; }
  .page-photo-contest__title {
    font-size: 28px; }
  .contest-timeline__header {
    padding: 0;
    margin-bottom: 30px; }
  .contest-timeline__title {
    font-size: 26px; }
  .contest-timeline__desc {
    font-size: 14px; }
  .contest-timeline__track {
    padding: 0;
    gap: 15px; }
  .contest-timeline__milestone {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px; }
  .contest-timeline__bar {
    width: 8px;
    height: 80px;
    flex-shrink: 0; }
  .contest-timeline__info {
    align-items: flex-start;
    text-align: left; }
  .contest-timeline__milestone-title {
    font-size: 20px; }
  .contest-timeline__milestone-date {
    font-size: 14px; }
  .contest-prizes__content {
    min-height: 100%;
    padding: 10px 0; }
  .contest-prizes__media {
    max-width: 100%;
    padding: 0 10px; }
  .contest-prizes__image {
    width: 100%;
    height: auto; }
  .contest-join__buttons {
    width: 100%; }
  .contest-join__btn {
    width: 100%;
    justify-content: center; }
  .contest-join__step {
    align-items: flex-start;
    gap: 10px; }
  .contest-join__step-icon {
    width: 40px;
    height: 40px; }
    .contest-join__step-icon img, .contest-join__step-icon svg {
      width: 40px;
      height: 40px; }
  .contest-join__step-content {
    font-size: 14px; }
  .contest-potw__gallery {
    grid-template-columns: 1fr;
    gap: 12px; }
  .contest-potw__item--featured .contest-potw__figure,
  .contest-potw__item--grid .contest-potw__figure {
    height: 280px;
    aspect-ratio: unset; }
  .contest-potw__caption {
    padding: 20px; }
  .contest-potw__photo-title {
    font-size: 16px; }
  .contest-potw__photo-meta {
    font-size: 12px; }
  .contest-potw__footer {
    margin-top: 30px; }
  .contest-potw .button--gallery {
    width: 100%;
    justify-content: center; }
  .contest-results__header {
    gap: 10px; }
  .contest-results__grid {
    grid-template-columns: 1fr; }
  .contest-results__figure {
    height: 280px; }
    .contest-results__figure--featured {
      height: 320px; }
  .contest-results__award {
    gap: 20px; }
  .contest-results__award-icon {
    font-size: 16px; }
  .contest-results__award-text {
    font-size: 22px; }
  .contest-results__caption {
    padding: 20px; }
    .contest-results__caption--featured {
      text-align: left; }
  .contest-results__photo-title {
    font-size: 18px;
    margin-bottom: 8px; }
  .contest-results__photo-meta {
    font-size: 14px;
    flex-wrap: wrap;
    justify-content: start !important; }
  .fancybox-story.fancybox-show-thumbs .fancybox-stage {
    top: 12%; }
  .fancybox-story.has-story-sidebar .fancybox-stage {
    right: 0;
    bottom: 45%; }
  .fancybox-story.has-story-sidebar .fancybox-toolbar {
    right: 10px; }
  .fancybox-story.has-story-sidebar .fancybox-navigation .fancybox-button--arrow_right {
    right: 10px; }
  .fancybox-story.has-story-sidebar.sidebar-collapsed .fancybox-stage {
    bottom: 0; }
  .fancybox-story.has-story-sidebar.sidebar-collapsed .story-sidebar {
    transform: translateY(100%); }
  .fancybox-story.has-story-sidebar.sidebar-collapsed .story-sidebar__toggle {
    top: -44px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 36px;
    border-radius: 8px 8px 0 0; }
    .fancybox-story.has-story-sidebar.sidebar-collapsed .story-sidebar__toggle svg {
      transform: rotate(-90deg); }
  .story-sidebar {
    width: 100%;
    height: 35%;
    top: auto;
    bottom: 0;
    border-radius: 16px 16px 0 0; }
    .story-sidebar .story-content {
      padding: 16px; }
    .story-sidebar .story-content__title {
      font-size: 16px; }
    .story-sidebar .story-content__body {
      font-size: 13px; }
    .story-sidebar .story-sidebar__toggle {
      top: -44px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 36px;
      border-radius: 8px 8px 0 0; }
      .story-sidebar .story-sidebar__toggle svg {
        transform: rotate(90deg); } }
