@charset "UTF-8";
/* ================================================
   # 変数・Mixin
   ================================================ */
.searchNav {
  border: 1px solid white;
  border-radius: 10px;
  margin-bottom: 20px;
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767.98px) {
  .searchNav {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
  }
}

.searchNav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 767.98px) {
  .searchNav__inner {
    gap: 12px;
  }
}

.searchNav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 767.98px) {
  .searchNav__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}

.searchNav__word {
  border: 1px solid white;
  border-radius: 6px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767.98px) {
  .searchNav__word {
    padding: 10px 12px;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.searchNav__word:focus-within {
  border-color: red;
  -webkit-box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
          box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}
.searchNav__word .keyword-input-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.searchNav__word input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: white;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  padding-right: 35px;
  height: 100%;
  min-height: 20px;
}
@media screen and (max-width: 767.98px) {
  .searchNav__word input {
    font-size: 16px;
    padding-right: 40px;
  }
}
.searchNav__word input::-webkit-input-placeholder {
  color: red;
  opacity: 0.8;
}
.searchNav__word input::-moz-placeholder {
  color: red;
  opacity: 0.8;
}
.searchNav__word input:-ms-input-placeholder {
  color: red;
  opacity: 0.8;
}
.searchNav__word input::-ms-input-placeholder {
  color: red;
  opacity: 0.8;
}
.searchNav__word input::placeholder {
  color: red;
  opacity: 0.8;
}
.searchNav__word input::-webkit-input-placeholder {
  color: red;
  opacity: 0.8;
}
.searchNav__word input::-moz-placeholder {
  color: red;
  opacity: 0.8;
}
.searchNav__word input::-ms-input-placeholder {
  color: red;
}
.searchNav__word input:-ms-input-placeholder {
  color: red;
}
.searchNav__word .keyword-clear-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: none;
  color: red;
  cursor: pointer;
  padding: 0;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .searchNav__word .keyword-clear-btn {
    width: 28px;
    height: 28px;
    font-size: 18px;
    right: 4px;
  }
}
.searchNav__word .keyword-clear-btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
}
.searchNav__word .keyword-clear-btn:hover {
  color: white;
  -webkit-transform: translateY(-50%) scale(1.05);
          transform: translateY(-50%) scale(1.05);
}
@media screen and (max-width: 767.98px) {
  .searchNav__word .keyword-clear-btn:hover {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.searchNav__word .keyword-clear-btn:active {
  -webkit-transform: translateY(-50%) scale(0.95);
          transform: translateY(-50%) scale(0.95);
}
@media screen and (max-width: 767.98px) {
  .searchNav__word .keyword-clear-btn:active {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.searchNav__word .keyword-clear-btn:focus {
  outline: 2px solid rgba(255, 0, 0, 0.5);
  outline-offset: 2px;
}
.searchNav__word .keyword-clear-btn:focus-visible {
  outline: 2px solid red;
  outline-offset: 2px;
}

.searchNav__con {
  border: 1px solid white;
  border-radius: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  min-width: 200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767.98px) {
  .searchNav__con {
    width: 100px;
    padding: 10px 12px;
    margin: 0 auto;
  }
}
.searchNav__con button {
  background: linear-gradient(135deg, red 0%, #cc0000 100%);
  color: white;
  border: none;
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  white-space: nowrap;
}
@media screen and (max-width: 767.98px) {
  .searchNav__con button {
    padding: 12px 16px;
    font-size: 16px;
    min-height: 44px;
  }
}
.searchNav__con button:hover {
  background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
@media screen and (max-width: 767.98px) {
  .searchNav__con button:hover {
    -webkit-transform: none;
            transform: none;
  }
}
.searchNav__con button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  background: linear-gradient(135deg, #990000 0%, #660000 100%);
}
.searchNav__con button:focus {
  outline: 2px solid rgba(255, 0, 0, 0.5);
  outline-offset: 2px;
}

.searchNav__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
}
@media screen and (max-width: 767.98px) {
  .searchNav__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.searchNav__choice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767.98px) {
  .searchNav__choice {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    min-height: 20px;
  }
}
.searchNav__choice p {
  border: 1px solid white;
  border-radius: 20px;
  line-height: 1;
  position: relative;
  padding: 8px 30px 8px 12px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 13px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767.98px) {
  .searchNav__choice p {
    padding: 8px 28px 8px 12px;
    font-size: 14px;
    min-height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.searchNav__choice p:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: red;
}
@media screen and (max-width: 767.98px) {
  .searchNav__choice p:hover {
    background: rgba(255, 255, 255, 0.15);
  }
}
.searchNav__choice p:active {
  background: rgba(255, 255, 255, 0.3);
}
.searchNav__choice p::after {
  content: "✕";
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: red;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .searchNav__choice p::after {
    right: 8px;
    font-size: 16px;
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.searchNav__search {
  background: linear-gradient(135deg, red 0%, #cc0000 100%);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .searchNav__search {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    min-height: 44px;
    border-radius: 8px;
  }
}
.searchNav__search:hover {
  background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
@media screen and (max-width: 767.98px) {
  .searchNav__search:hover {
    -webkit-transform: none;
            transform: none;
  }
}
.searchNav__search:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  background: linear-gradient(135deg, #990000 0%, #660000 100%);
}
.searchNav__search:focus {
  outline: 2px solid rgba(255, 0, 0, 0.5);
  outline-offset: 2px;
}

.title__result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767.98px) {
  .title__result {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 10px;
    margin-bottom: 15px;
  }
}
.title__result h1 {
  font-size: 24px;
  margin: 0;
  color: #c93b3b;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .title__result h1 {
    font-size: 20px;
    text-align: center;
    line-height: 1.3;
  }
}

.sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .sort {
    margin: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.sort p {
  margin: 0;
  color: white;
  font-size: 14px;
  white-space: nowrap;
}
@media screen and (max-width: 767.98px) {
  .sort p {
    font-size: 14px;
    text-align: center;
    margin-bottom: 5px;
  }
}

.sort__choice {
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .sort__choice {
    width: 100%;
    max-width: 300px;
  }
}
.sort__choice::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid red;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 767.98px) {
  .sort__choice::after {
    right: 15px;
  }
}
.sort__choice select {
  color: white;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid white;
  border-radius: 4px;
  padding: 6px 30px 6px 10px;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 180px;
}
@media screen and (max-width: 767.98px) {
  .sort__choice select {
    padding: 12px 40px 12px 15px;
    font-size: 16px;
    min-width: 100%;
    width: 100%;
    min-height: 44px;
    border-radius: 6px;
  }
}
.sort__choice select option {
  background-color: black;
  color: white;
  padding: 8px;
}
.sort__choice select option:checked, .sort__choice select option:hover {
  background-color: red;
  color: white;
}
.sort__choice select:focus {
  outline: none;
  border-color: red;
  -webkit-box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
          box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}
.sort__choice select::-ms-expand {
  display: none;
}

.result {
  margin: 0;
  color: white;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .result {
    text-align: center;
    font-size: 16px;
    width: 100%;
  }
}
.result span {
  color: red;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .result span {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .searchNav__con button,
  .searchNav__search {
    -webkit-transition: none;
    transition: none;
  }
  .searchNav__con button:hover,
  .searchNav__search:hover {
    -webkit-transform: none;
            transform: none;
  }
  .searchNav__choice p {
    -webkit-transition: none;
    transition: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .searchNav__con button:hover,
  .searchNav__search:hover,
  .searchNav__choice p:hover {
    -webkit-transform: none;
            transform: none;
    background: initial;
  }
  .searchNav__con button:active,
  .searchNav__search:active {
    background: linear-gradient(135deg, #990000 0%, #660000 100%);
  }
}
@media (prefers-contrast: high) {
  .searchNav {
    border-color: white;
    background: black;
  }
  .searchNav__word,
  .searchNav__con {
    border-color: white;
    background: black;
  }
  .searchNav__word input {
    color: white;
  }
  .searchNav__word input::-webkit-input-placeholder {
    color: white;
    opacity: 1;
  }
  .searchNav__word input::-moz-placeholder {
    color: white;
    opacity: 1;
  }
  .searchNav__word input:-ms-input-placeholder {
    color: white;
    opacity: 1;
  }
  .searchNav__word input::-ms-input-placeholder {
    color: white;
    opacity: 1;
  }
  .searchNav__word input::placeholder {
    color: white;
    opacity: 1;
  }
  .sort__choice select {
    border-color: white;
    background: black;
    color: white;
  }
}
.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767.98px) {
  .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.content__inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.content__items {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.98px) {
  .content__items {
    margin-bottom: 30px;
  }
}

.content__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 8px;
  background: black;
  border: 1px solid #990000;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .content__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 12px;
    gap: 12px;
  }
}
.content__item:not(:last-child) {
  margin-bottom: 10px;
}
.content__item:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(201, 59, 59, 0.3);
          box-shadow: 0 4px 15px rgba(201, 59, 59, 0.3);
}
.content__item:focus-within {
  outline: 2px solid #c93b3b;
  outline-offset: 2px;
}

.content-left {
  width: 256px;
  min-width: 256px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .content-left {
    width: 100%;
    min-width: auto;
    border-radius: 8px;
    position: relative;
    aspect-ratio: 16/9;
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  .content-left {
    height: 144px;
  }
}
@supports not (aspect-ratio: 16/9) {
  @media screen and (max-width: 767.98px) {
    .content-left {
      height: 0;
      padding-bottom: 56.25%;
    }
  }
}
.content-left .thumbnail-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .content-left .thumbnail-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@supports not (aspect-ratio: 16/9) {
  @media screen and (max-width: 767.98px) {
    .content-left .thumbnail-link {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
.content-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  display: block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  image-rendering: -webkit-optimize-contrast;
}
@media screen and (min-width: 768px) {
  .content-left img {
    image-rendering: auto;
  }
}
@media screen and (max-width: 767.98px) {
  .content-left img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    image-rendering: auto;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
}
.content__item:hover .content-left img {
  -webkit-transform: scale(1.05) translateZ(0);
          transform: scale(1.05) translateZ(0);
}

.bookmark-button-wrapper {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 20;
}
@media screen and (max-width: 767.98px) {
  .bookmark-button-wrapper {
    top: 8px;
    right: 8px;
    z-index: 20;
  }
}
.bookmark-button-wrapper .favorites-button {
  background: rgba(0, 0, 0, 0.8) !important;
  border-radius: 50% !important;
  padding: 8px !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  border: 2px solid transparent !important;
  cursor: pointer !important;
  width: 40px !important;
  height: 40px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  backdrop-filter: blur(4px) !important;
  position: relative !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}
@media screen and (max-width: 767.98px) {
  .bookmark-button-wrapper .favorites-button {
    padding: 6px !important;
    width: 36px !important;
    height: 36px !important;
  }
}
.bookmark-button-wrapper .favorites-button .bookmark-icon {
  width: 24px !important;
  height: 24px !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  -webkit-filter: brightness(0) invert(1) !important;
          filter: brightness(0) invert(1) !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}
@media screen and (max-width: 767.98px) {
  .bookmark-button-wrapper .favorites-button .bookmark-icon {
    width: 20px !important;
    height: 20px !important;
  }
}
.bookmark-button-wrapper .favorites-button:hover {
  background: rgba(201, 59, 59, 0.9) !important;
  border-color: #c93b3b !important;
  -webkit-transform: scale(1.1) !important;
          transform: scale(1.1) !important;
  -webkit-box-shadow: 0 0 15px rgba(201, 59, 59, 0.5) !important;
          box-shadow: 0 0 15px rgba(201, 59, 59, 0.5) !important;
}
.bookmark-button-wrapper .favorites-button:hover .bookmark-icon {
  -webkit-transform: translate(-50%, -50%) scale(1.05) !important;
          transform: translate(-50%, -50%) scale(1.05) !important;
}
.bookmark-button-wrapper .favorites-button.favorited {
  background: rgba(201, 59, 59, 0.9) !important;
  border-color: #c93b3b !important;
}
.bookmark-button-wrapper .favorites-button.favorited:hover {
  background: rgba(163.072, 44.928, 44.928, 0.9) !important;
}
.bookmark-button-wrapper .favorites-button:focus {
  outline: 3px solid rgba(201, 59, 59, 0.3) !important;
  outline-offset: 2px !important;
}

.content__center {
  padding-left: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .content__center {
    width: 280px;
    min-width: 280px;
    max-width: 280px;
    height: 144px;
  }
}
@media screen and (max-width: 767.98px) {
  .content__center {
    width: 100%;
    min-width: auto;
    max-width: 100%;
    height: auto;
    padding-left: 0;
    gap: 8px;
  }
}
.content__center .title-link {
  text-decoration: none;
  color: inherit;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.content__center .title-link:hover {
  color: #c93b3b;
}
.content__center h3 {
  line-height: 1.2;
  font-size: 18px;
  color: white;
  margin: 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .content__center h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  .content__center h3 {
    font-size: 16px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
}
.content__center .address {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .content__center .address {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  .content__center .address {
    font-size: 13px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-word;
  }
}
.content__center .address.no-address {
  color: rgba(255, 193, 7, 0.8);
  font-style: italic;
  opacity: 0.8;
}
.content__center .fear-level {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.content__center .fear-level .star-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}
.content__center .fear-level .star-rating img {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 767.98px) {
  .content__center .fear-level .star-rating img {
    width: 20px;
    height: 20px;
  }
}
.content__center .fear-level .star-rating.no-rating {
  opacity: 0.4;
}
.content__center .fear-level .average-rating-value {
  font-size: 18px;
  font-weight: bold;
  color: #c93b3b;
  margin: 0;
  text-shadow: 0 0 5px rgba(201, 59, 59, 0.3);
}
@media screen and (max-width: 767.98px) {
  .content__center .fear-level .average-rating-value {
    font-size: 16px;
  }
}
.content__center .reviews {
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.content__center .reviews p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
@media screen and (max-width: 767.98px) {
  .content__center .reviews p {
    font-size: 12px;
  }
}

.spot-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .spot-categories {
    max-width: 100%;
    overflow: hidden;
  }
}
@media screen and (max-width: 767.98px) {
  .spot-categories {
    margin-top: 8px;
  }
}
.spot-categories .category-tag {
  background: rgba(201, 59, 59, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 11px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid rgba(201, 59, 59, 0.2);
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .spot-categories .category-tag {
    font-size: 10px;
    padding: 3px 8px;
  }
}
.spot-categories .category-tag:hover {
  background: rgba(201, 59, 59, 0.8);
  color: white;
  border-color: #c93b3b;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 2px 8px rgba(201, 59, 59, 0.3);
          box-shadow: 0 2px 8px rgba(201, 59, 59, 0.3);
}
.spot-categories .no-category {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-style: italic;
  padding: 4px 0;
}
@media screen and (max-width: 767.98px) {
  .spot-categories .no-category {
    font-size: 10px;
  }
}

.content__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding-left: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.98px) {
  .content__right {
    padding-left: 0;
    width: 100%;
  }
}
.content__right .excerpt-link {
  text-decoration: none;
  color: inherit;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  height: 100%;
  width: 100%;
}
.content__right .excerpt-link:hover {
  color: rgba(255, 255, 255, 0.9);
}
.content__right p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
@media screen and (max-width: 767.98px) {
  .content__right p {
    font-size: 13px;
    line-height: 1.5;
    -webkit-line-clamp: 3;
  }
}

.no-posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  min-height: 300px;
  padding: 40px 20px;
}
.no-posts .no-posts-content {
  text-align: center;
  max-width: 400px;
}
.no-posts .no-posts-content .no-posts-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.6;
  -webkit-animation: ghostFloat 3s ease-in-out infinite;
          animation: ghostFloat 3s ease-in-out infinite;
}
@media screen and (max-width: 767.98px) {
  .no-posts .no-posts-content .no-posts-icon {
    font-size: 3rem;
    margin-bottom: 15px;
  }
}
.no-posts .no-posts-content h3 {
  color: #c93b3b;
  font-size: 1.5rem;
  margin: 0 0 10px 0;
  font-weight: 600;
}
@media screen and (max-width: 767.98px) {
  .no-posts .no-posts-content h3 {
    font-size: 1.3rem;
  }
}
.no-posts .no-posts-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
@media screen and (max-width: 767.98px) {
  .no-posts .no-posts-content p {
    font-size: 0.9rem;
  }
}

@-webkit-keyframes ghostFloat {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes ghostFloat {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.content__item {
  -webkit-animation: fadeInUp 0.6s ease-out;
          animation: fadeInUp 0.6s ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.content__item:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.content__item:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.content__item:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.content__item:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.content__item:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.content__item:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.content__item:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.content__item:nth-child(8) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.content__item:nth-child(9) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.content__item:nth-child(10) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.content__item:nth-child(11) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.content__item:nth-child(12) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.content__item:nth-child(13) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.content__item:nth-child(14) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.content__item:nth-child(15) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.content__item:nth-child(16) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.content__item:nth-child(17) {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}
.content__item:nth-child(18) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.content__item:nth-child(19) {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}
.content__item:nth-child(20) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

@media (prefers-reduced-motion: reduce) {
  .content__item,
  .no-posts-icon {
    -webkit-animation: none;
            animation: none;
  }
  .content__item:hover,
  .content__item:hover .content-left img {
    -webkit-transform: none;
            transform: none;
  }
  .bookmark-button-wrapper .favorites-button:hover {
    -webkit-transform: none;
            transform: none;
  }
}
@media (prefers-contrast: high) {
  .content__item {
    border-color: white;
    background: #000;
  }
  .bookmark-button-wrapper .favorites-button {
    background: white !important;
    border-color: black !important;
  }
  .bookmark-button-wrapper .favorites-button .bookmark-icon {
    -webkit-filter: brightness(0) !important;
            filter: brightness(0) !important;
  }
  .category-tag {
    background: white;
    color: black;
    border-color: white;
  }
  h3 {
    color: white;
  }
  .fear-level .average-rating-value {
    color: white;
    text-shadow: none;
  }
}