main {
  gap: 30px;
  padding: 0 0 75px 0;
  width: 100%;
  max-width: unset;
}

.left-sidebar {
  width: 268px;
}

.img-carousel {
  display: flex;
  height: 385px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  width: 100%;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.news-content {
  display: flex;
  padding: 0 60px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
}

.title-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
}

.title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.title-wrapper h1 {
  color: var(--grayscale-seasalt);
  font-family: var(--font-poppins);
  font-size: var(--font-size-4xl);
  width: 100%;
  font-style: normal;
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-normal);
}

.tags-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
}

.news-content p {
  font-size: var(--font-size-xl);
  color: var(--grayscale-seasalt);
  font-style: normal;
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-normal);
}

.title-wrapper p {
  color: var(--grayscale-seasalt);
  font-family: var(--font-poppins);
  font-size: var(--font-size-lg);
  font-style: normal;
  font-weight: var(--font-weight-thin);
  line-height: var(--line-height-normal);
  a {
    color: var(--blueviolet-blueviolet);
    text-decoration: underline;
  }
  a:visited {
    color: var(--blueviolet-200);
  }
}

.images-preview {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: fit-content;
  width: 100%;
  img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
  }
}
.preview-carousel {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  height: 143px;
  width: 100%;

  img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: 0.15s ease-in-out;
  }
}
.preview-carousel img:first-child {
  outline: 2px solid var(--blueviolet-blueviolet);
  box-shadow: var(--shadow-card);
}
.preview-carousel img:hover {
  outline: 2px solid var(--blueviolet-blueviolet);
  box-shadow: var(--shadow-hover);
}

.carousel-container {
  max-width: 1200px;
  width: 100%;
  position: relative;
}

.game-media {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.main-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.main-image img {
  width: 100%;
  height: 70vh;
  object-fit: contain;
  display: none;
  /*filter: drop-shadow(0 0 20px rgba(154, 51, 223, 0.50));*/
}

.main-image img.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.carousel-btn {
  display: none;
}

.thumbnails-wrapper {
  display: flex;
  width: 100%;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
  scroll-behavior: smooth;
}

.thumbnails-wrapper img {
  width: 200px;
  height: 120px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  opacity: 0.6;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.thumbnails-wrapper img:hover {
  opacity: 0.8;
}

.thumbnails-wrapper img.active {
  opacity: 1;
  border-color: var(--blueviolet-700);
  box-shadow: var(--shadow-card);
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--blueviolet-700);
  width: 30px;
  border-radius: 5px;
}

@media (max-width: 1300px) {
  .preview-carousel {
    height: 93px;
  }
}

@media (max-width: 1051px) {
  .news-main {
    width: 74.4444%;
  }

  .left-sidebar {
    width: 268px;
  }
}
@media (max-width: 760px) {
  main {
    width: 100% !important;
  }
  .preview-carousel {
    height: 51px;
  }
  .title-wrapper h1 {
    font-size: var(--font-size-3xl);
  }
  .left-sidebar {
    display: none;
  }
}
@media (max-width: 583px) {
  .news-content {
    display: flex;
    padding: 0 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
  }
  .title-wrapper p {
    font-size: var(--font-size-base);
  }
  .news-content p {
    font-size: var(--font-size-lg);
  }
}
