.social-media-container {
  flex-direction: row;
  gap: 10px;
}
@media only screen and (max-width: 1025px) {
  .social-media-container {
    justify-content: center;
    margin-bottom: 25px;
  }
}

.categories-tab {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
.category-button {
    position: relative;
}
.category-button::after,
.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s all ease-in-out;
    width: 6px;
    height: 6px;
    background-color: var(--pink);
    border-radius: 100%;
    opacity: 0;
}
.category-button:hover::after,
.category-button.active::after,
.tab-btn:hover::after,
.tab-btn.active::after {
    opacity: 1;
}

.featured-artists .title-info {
  text-align: start;
}
.featured-artists h2,
.featured-artists p {
  margin: 0;
}
.artists-list {
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 20px;
    margin-bottom: 50px;
}
.artist-item {
    max-width: 25%;
    position: relative;
}
.artist-preview {
    position: relative;
    width: 100%;
}
.artist-preview::before {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 20px;
    opacity: 0;
    width: 80%;
    height: 20px;
    background-image: url('../img/linie-hover-artist.svg');
    background-size: cover;
    background-repeat: no-repeat;
    transition: .3s ease-in-out;
    z-index: 3;
}
.artist-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(var(--white-bg-0), var(--black-bg));
    transition: background .3s ease-in-out;
    border-radius: 20px;
    z-index: 2;
}
.artist-preview:hover .artist-name {
    transform: translateY(-20px);
}
.artist-preview:hover::before {
    opacity: 1;
}
.artist-preview:hover::after {
    background: linear-gradient(var(--white-bg-40), var(--black-bg));
}
.artist-preview {
    padding: 30px 18px;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
}
.artist-name {
    position: relative;
    color: white;
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
    transition: .3s ease-in-out;
    margin: 0;
    z-index: 10;
}
@media only screen and (max-width: 1025px) {
  .featured-artists .title-info {
    text-align: center;
  }
  .artists-list {
    margin-bottom: 20px;
  }
  .artist-item {
    max-width: 34%;
  }
  .artist-item h2 {
    text-align: start;
  }
}
@media only screen and (max-width: 600px) {
  .artists-list {
    row-gap: 0;
  }
  .artist-item.flex-item.item25 {
    flex: 1 1 100%;
  }
  .artist-item {
    max-width: 50%;
    margin-bottom: 10px;
  }
  .artist-item:nth-child(odd) {
    padding-right: 5px;
  }
  .artist-item:nth-child(even) {
    padding-left: 5px;
  }
  .artist-preview {
    min-height: 180px;
    padding: 5px;
    border-radius: 10px;
  }
  .artist-preview img {
    border-radius: 10px;
  }
  .artist-preview::after {
    border-radius: 10px;
  }
  .artist-preview::before {
    left: 5px;
    bottom: 20px;
    height: 10px;
  }
  .artist-name {
    font-size: 16px;
  }
  .featured-artists h2,
  .featured-artists p {
    margin-bottom: 10px;;
  }
}

.tab-btn {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
    position: relative;
    border: none;
    background-color: transparent;
    border-radius: 20px;
    padding: 12px 15px;
}
.tab-btn.active {
    color: var(--purple);
}
.tab-btn::after {
    bottom: 0;
}

/* START GALLERY */
.gallery-slider {
    width: 100%;
    margin-bottom: 20px;
}
.swiper-slide {
    padding: 0 10px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.swiper-slide-prev {
  visibility: hidden;
}
.swiper-slide figure,
.swiper-slide video {
  width: 100%;
  height: 100%;
}
.gallery-counter {
  position: absolute;
  top: 50%;
  color: var(--grey);
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-page .gallery-counter {
  color: var(--white-font);
}
.gallery-counter p {
  font-size: 60px;
  letter-spacing: -8px;
  display: inline-block;
  margin-left: -120px;
}
.gallery-counter .count-slash {
    letter-spacing: -5px;
}
.swiper-controls.container {
  max-width: 1380px;
  flex-direction: row;
  padding-left: 0;
  padding-right: 50px;
}
.swiper-scrollbar {
    position: relative;
    background: var(--light-grey);
}
.swiper-horizontal>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
    position: relative;
    left: unset;
    bottom: unset;
    top: unset;
    transform: translateY(10px);
    height: 2px;
    padding: 0;
}
.swiper-scrollbar-drag {
    background: var(--pink);
    cursor: pointer;
}
.swiper-buttons-container {
    flex-direction: row;
    max-width: fit-content;
    gap: 40px;
    padding: 0;
    margin-right: 20px;
    margin-bottom: 0;
}
.swiper-button-next,
.swiper-button-prev {
    position: relative;
    width: 30px;
}
.swiper-button-next path,
.swiper-button-prev path {
  stroke: var(--grey);
  transition: stroke .3s ease-in-out;
}
.swiper-button-next:hover path,
.swiper-button-prev:hover path{
    stroke: var(--pink);
}
@media only screen and (max-width: 1750px) {
  .gallery-counter {
    position: absolute;
    left: 50%;
    bottom: -15px;
    text-align: center;
    z-index: 10;
    top: unset;
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 769px) {
  .swiper-slide {
    padding: 0;
    margin: 0;
  }
  .gallery {
    padding: 0 10px;
  }
  .swiper-controls.container {
    padding-right: 15px;
  }
  .gallery-counter {
    position: relative;
    left: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    transform: unset;
  }
  .gallery-counter p {
    font-size: 28px;
    letter-spacing: -2px;
  }
}
/* END GALLERY */

/* START SIDE IMAGE SIDE INFO */
.side-image-side-info .info {
  margin-bottom: 40px;
}
.side-image-side-info .flex-row {
  align-items: center;
  margin-left: -35px;
  margin-right: -35px;
}
.side-image-side-info .flex-item {
  width: 100%;
  padding: 0 35px;
}
.sisi50 figure {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}
/* END SIDE IMAGE SIDE INFO */

/* START ARTICLE PREVIEW */
.article-link {
    width: 100%;
    justify-content: flex-end;
}
.article-preview img {
    transition: all .6s ease-in-out;
}
.article-preview {
    height: 100%;
}
.article-preview::before {
    content: '';
    position: absolute;
    top: -15px;
    right: 0;
    width: 100px;
    height: 40px;
    background-image: url('../img/shape-articol.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all .3s ease-in-out;
    z-index: 1;
}
.article-preview.item::before {
    width: 50px;
    height: 20px;
    top: -5px;
}
.article-preview h2 {
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    text-transform: capitalize;
    transition: all .3s ease-in-out;
}
.article-preview.item h2 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
}
.article-preview.item figure {
    width: 100%;
    height: 385px;
    overflow: hidden;
    transition: all .3s ease-in-out;
    transform-origin: bottom;
}

.article-preview:hover figure {
    height: 365px;
}

.article-preview:hover::before {
    opacity: 1;
}
.article-preview.featured:hover figure {
    height: 95%;
}
.article-preview.featured:hover img{
    transform: scale(1.2);
}
.article-preview:hover img{
    transform: scale(1.3);
}
.article-preview:hover h2 {
    color: var(--pink);
}
.article-info,
.article-info h2 {
  text-align: start;
}
.article-category {
    position: absolute;
    top: 10%;
    left: 0;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 700;
    color: var(--white-font);
    text-transform: uppercase;
    padding: 0 25px 0 20px;
    border-radius: 0 20px 20px 0;
}
@media only screen and (max-width: 1025px) {
  .article-preview.item h2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 769px) {
  .article-preview {
    min-height: 416px;
    justify-content: flex-end;
  }
  .article-preview.item figure {
    height: 310px;
  }
  .article-preview:hover figure {
    height: 280px;
    transform-origin: bottom;
  }
  .article-preview::before {
    width: 50px;
    height: 20px;
  }
  .article-category {
    font-size: 16px;
  }
}
/* END ARTICLE PREVIEW */
