.platform-section {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding-bottom: 0;
}
.platform-section-3 {
  margin-top: 120px;
  padding-bottom: 70px;
}
.platform-articles-head {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.platform-articles-title {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  color: #071b3d;
}
.platform-articles-filters {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.platform-articles-filter {
  height: 32px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 121px;
  border: 1px solid #E9E9E9;
  background: #FFF;
  color: #262626;
  font-size: 16px;
  line-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.platform-articles-filter:not(.is-active):hover {
  background: #eaf0f9;
  color: #33435f;
}
.platform-articles-filter.is-active {
  border-color: #007BFF;
  background: #007BFF;
  color: #fff;
}
.platform-articles-list {
  margin-top: 44px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.platform-article-item {
  position: relative;
  border-radius: 16px;
  border: 1px solid #D9D9D9;
  background: #FFF;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.platform-article-item:hover {
  border: 1px solid #0B63E5;
  box-shadow: 0 0 11.5px 0 rgba(4, 61, 146, 0.17);
}
.platform-article-item:hover .platform-article-arrow {
  color: #0B63E5;
}
.platform-article-link {
  display: block;
  padding: 22px;
  text-decoration: none;
}
.platform-article-item-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
  color: #061C3D;
  font-weight: 500;
}
.platform-article-item-desc {
  margin: 15px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: #414141;
}
.platform-article-item-meta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #F0F0F0;
  gap: 10px;
  padding-top: 14px;
}
.platform-article-tags {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.platform-article-tag {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1;
}
.platform-article-tag.spotify,
.platform-article-tag.platform-spotify {
  color: #36b56c;
  background: #edfdf4;
}
.platform-article-tag.apple,
.platform-article-tag.platform-apple {
  color: #ff8383;
  background: #fff2f2;
}
.platform-article-tag.platform-amazon {
  color: #5ecdf5;
  background: #e6fbff;
}
.platform-article-tag.platform-youtube {
  color: #f28383;
  background: #ffefef;
}
.platform-article-tag.platform-deezer {
  color: #9c77dd;
  background: #f6edfb;
}
.platform-article-tag.platform-others {
  color: #949494;
  background: #f2f2f2;
}
.platform-article-tag.platform {
  color: #4b4b4b;
  background: #f4f4f4;
}
.platform-article-tag.type {
  border: 1px solid #D5D7FF;
  background: #F3F3FF;
  color: #9196FF;
}
.platform-article-tag.alternative,
.platform-article-tag.type-2 {
  color: #8f83db;
  background: #f2efff;
}
.platform-article-tag.best,
.platform-article-tag.type-3 {
  color: #7f90ff;
  background: #eef1ff;
}
.platform-article-date {
  font-size: 14px;
  color: #878787;
  white-space: nowrap;
}
.platform-article-arrow {
  position: absolute;
  right: 14px;
  top: 16px;
  color: #4B4B4B;
  font-size: 26px;
  line-height: 1;
}
.platform-articles-more-wrap {
  margin-top: 55px;
  display: flex;
  justify-content: center;
}
.platform-articles-more {
  width: 196px;
  height: 54px;
  border-radius: 8px;
  background: #2268d9;
  color: #fff;
  font-size: 22px;
  line-height: 54px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  display: none;
}
.platform-articles-more::after {
  content: "";
  width: 14px;
  height: 10px;
  background: url(/uploads/page/search_result/arrow.png) no-repeat center center;
  background-size: contain;
}
@media (max-width: 1024px) {
  .platform-section-3 {
    padding: 0 0 46px;
  }
  .platform-articles-title {
    font-size: 26px;
  }
  .platform-article-link {
    padding: 14px 38px 12px 12px;
  }
  .platform-article-item-title {
    font-size: 22px;
  }
  .platform-article-item-desc {
    font-size: 13px;
  }
  .platform-articles-filters {
    gap: 8px;
  }
  .platform-articles-filter {
    min-width: 48px;
    height: 30px;
    padding: 0 14px;
    font-size: 12px;
    line-height: 30px;
  }
  .platform-articles-more-wrap {
    margin-top: 32px;
  }
  .platform-articles-more {
    width: 144px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
  }
}
.platform-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
}
.platform-slide {
  position: relative;
  flex: 0 0 100%;
  padding: 122px 0;
  background-size: cover;
  background-position: center;
}
.platform-bg-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 48%, rgba(0, 0, 0, 0.72) 100%);
}
.platform-section-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.platform-content {
  max-width: 760px;
  text-align: center;
}
.platform-title {
  font-size: 38px;
  line-height: 1.2;
  color: #fff;
  max-width: 592px;
  font-weight: 600;
  margin: 0 auto;
}
.platform-desc {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
}
.platform-switch {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.platform-switch .iconfont {
  font-size: 14px;
}
.platform-switch-left .iconfont {
  transform: rotate(90deg);
}
.platform-switch-right .iconfont {
  transform: rotate(-90deg);
}
.platform-slide.platform-spotify {
  background-image: url(/uploads/page/platform/banner-img1.png);
}
.platform-slide.platform-apple {
  background-image: url(/uploads/page/platform/banner-img2.png);
}
.platform-slide.platform-amazon {
  background-image: url(/uploads/page/platform/banner-img3.png);
}
.platform-slide.platform-youtube {
  background-image: url(/uploads/page/platform/banner-img4.png);
}
.platform-slide.platform-youtube .platform-title {
  max-width: 792px;
}
.platform-slide.platform-deezer {
  background-image: url(/uploads/page/platform/banner-img5.png);
}
.platform-section-2 {
  margin-top: 100px;
}
.platform-section-2 .container {
  position: relative;
  background: url(/uploads/page/platform/section2-bg.png) no-repeat center center;
  background-size: cover;
  padding: 40px;
  border: 1px solid #d5d5d546;
  border-radius: 26px;
}
.platform-section-2-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.platform-section-2-head img {
  position: absolute;
  top: -48px;
  left: 0;
}
.platform-section-2-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.3;
  color: #071b3d;
  font-weight: 600;
}
.platform-picks-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.platform-pick-card {
  border-radius: 12px;
  border: 1px solid #ffffff75;
  background: #FFF9F0;
  padding: 23px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.platform-pick-card:hover {
  border: 1px solid #E8AD55;
}
.platform-pick-card:nth-child(2) {
  background: #F5F8FE;
}
.platform-pick-card:nth-child(2):hover {
  border: 1px solid #2566E8;
}
.platform-pick-card-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
  color: #071b3d;
  font-weight: 600;
}
.platform-pick-card-desc {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: #414141;
}
.platform-pick-card-bottom {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.platform-pick-card-date {
  font-size: 14px;
  line-height: 1.4;
  color: #878787;
}
.platform-pick-card-link {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.platform-pick-card-link {
  width: 42px;
  height: 42px;
  background: url(/uploads/page/platform/arrow-right.svg) no-repeat center center;
  background-size: cover;
}
.platform-pick-card-link:hover {
  background: url(/uploads/page/platform/arrow-right-hover.png) no-repeat center center;
  background-size: cover;
}
@media (max-width: 1024px) {
  .platform-picks-grid {
    grid-template-columns: 1fr;
  }
  .platform-pick-card {
    min-height: 0;
  }
}
@media (max-width: 768px) {
  .platform-slide.platform-spotify {
    background-image: url(/uploads/page/platform/banner-img1-mb.png);
  }
  .platform-slide.platform-apple {
    background-image: url(/uploads/page/platform/banner-img2-mb.png);
  }
  .platform-slide.platform-amazon {
    background-image: url(/uploads/page/platform/banner-img3-mb.png);
  }
  .platform-slide.platform-youtube {
    background-image: url(/uploads/page/platform/banner-img4-mb.png);
  }
  .platform-slide.platform-deezer {
    background-image: url(/uploads/page/platform/banner-img5-mb.png);
  }
  .platform-title {
    font-size: 30px;
  }
  .platform-desc {
    font-size: 14px;
    margin-top: 14px;
  }
  .platform-slide {
    padding: 100px 0;
  }
  .platform-section-2 {
    margin-top: 80px;
  }
  .platform-section-2 .container {
    padding: 20px;
    margin: 0 15px;
    background-image: url(/uploads/page/platform/section2-bg-mb.png);
  }
  .platform-section-2-head {
    gap: 8px;
    justify-content: center;
  }
  .platform-section-2-title {
    font-size: 24px;
    text-align: center;
  }
  .platform-picks-grid {
    gap: 20px;
  }
  .platform-pick-card {
    padding: 16px;
  }
  .platform-pick-card-title {
    font-size: 18px;
  }
  .platform-pick-card-desc {
    font-size: 14px;
    margin-top: 7px;
  }
  .platform-pick-card-bottom {
    padding-top: 14px;
  }
  .platform-pick-card-date {
    font-size: 12px;
  }
  .platform-pick-card-link {
    width: 36px;
    height: 36px;
  }
  .platform-section-3 {
    padding-bottom: 40px;
    margin-top: 80px;
  }
  .platform-articles-filters {
    gap: 15px;
    justify-content: space-between;
    width: 100%;
  }
  .platform-articles-filter {
    height: 28px;
    min-width: 60px;
    padding: 0 15px;
    font-size: 12px;
    line-height: 28px;
  }
  .platform-articles-more-wrap {
    margin-top: 32px;
  }
  .platform-articles-more {
    width: 144px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
  }
  .platform-article-arrow {
    display: none;
  }
  .platform-article-item {
    padding: 16px 20px;
  }
  .platform-article-link {
    padding: 0;
  }
  .platform-article-item-title {
    font-size: 16px;
  }
  .platform-article-item-desc {
    font-size: 14px;
    margin-top: 10px;
  }
  .platform-article-item-meta {
    padding-top: 16px;
  }
  .platform-article-tags {
    gap: 10px;
  }
  .platform-article-tag {
    font-size: 13px;
    padding: 0 6px;
  }
  .platform-article-date {
    font-size: 12px;
  }
}
