﻿/* =========================================================
   AudiFab Music One
   Supported Music Platforms + How It Works
   ========================================================= */


/* =========================================================
   01. Supported Music Platforms
   ========================================================= */

/* ---------- Section ---------- */

.af-platforms {
    background: #f7faff;
    padding: 80px 20px;
}

.af-platforms-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ---------- Heading ---------- */

.af-platforms-heading {
    max-width: 800px;
    margin: 0 auto 42px;
    text-align: center;
}

.af-platforms-heading h2 {
    margin: 0 0 14px;
    color: #1d2b4f;
    font-size: 34px;
    line-height: 1.35;
    font-weight: 700;
}

.af-platforms-heading p {
    margin: 0;
    color: #68758c;
    font-size: 16px;
    line-height: 1.7;
}


/* ---------- Platform Grid ---------- */

.af-platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}


/* ---------- Platform Card ---------- */

.af-platform-card {
    position: relative;
    overflow: hidden;

    min-height: 86px;
    padding: 18px 35px;

    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;

    background: linear-gradient(
        135deg,
        var(--platform-light) 0%,
        #ffffff 100%
    );

    border: 1px solid var(--platform-border);
    border-radius: 8px;

    color: #293650;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;

    box-shadow: 0 2px 10px rgba(28, 54, 88, .035);

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease,
        color .25s ease;
}


/* ---------- Decorative Brand Glow ---------- */

.af-platform-card::after {
    content: "";
    position: absolute;

    width: 100px;
    height: 100px;

    right: -45px;
    top: -45px;

    background: var(--platform-color);
    opacity: .035;

    border-radius: 50%;
    pointer-events: none;
}


/* ---------- Hover ---------- */

.af-platform-card:hover {
    color: var(--platform-color);
    border-color: var(--platform-border-hover);
    box-shadow: 0 8px 24px rgba(28, 54, 88, .08);
    transform: translateY(-2px);
}


/* ---------- Brand Colors ---------- */

/* Spotify */

.af-platform-card.spotify {
    --platform-color: #1db954;
    --platform-light: #f1fbf5;
    --platform-border: #e0f3e7;
    --platform-border-hover: #bce8cb;
}


/* Apple Music */

.af-platform-card.apple-music {
    --platform-color: #e83e70;
    --platform-light: #fff4f7;
    --platform-border: #f8e2e9;
    --platform-border-hover: #f2c5d4;
}


/* Amazon Music */

.af-platform-card.amazon-music {
    --platform-color: #2196e5;
    --platform-light: #f2f8fe;
    --platform-border: #deebf8;
    --platform-border-hover: #bedcf5;
}


/* YouTube Music */

.af-platform-card.youtube-music {
    --platform-color: #ff0033;
    --platform-light: #fff4f5;
    --platform-border: #f9e0e4;
    --platform-border-hover: #f2c2cb;
}


/* Tidal */

.af-platform-card.tidal {
    --platform-color: #1f2937;
    --platform-light: #f5f7f9;
    --platform-border: #e4e8ed;
    --platform-border-hover: #cbd2da;
}


/* Deezer */

.af-platform-card.deezer {
    --platform-color: #a238d5;
    --platform-light: #faf5fd;
    --platform-border: #eee0f5;
    --platform-border-hover: #dcc1e9;
}


/* Qobuz */

.af-platform-card.qobuz {
    --platform-color: #20aeb8;
    --platform-light: #f1fbfc;
    --platform-border: #d9f0f2;
    --platform-border-hover: #b7e1e5;
}


/* SoundCloud */

.af-platform-card.soundcloud {
    --platform-color: #ff5500;
    --platform-light: #fff7f2;
    --platform-border: #f9e7dc;
    --platform-border-hover: #f3ccb8;
}


/* Pandora */

.af-platform-card.pandora {
    --platform-color: #5146d8;
    --platform-light: #f6f5fe;
    --platform-border: #e5e3f8;
    --platform-border-hover: #cbc7ee;
}


/* LINE MUSIC */

.af-platform-card.line-music {
    --platform-color: #06c755;
    --platform-light: #f1fbf5;
    --platform-border: #dcefe4;
    --platform-border-hover: #b9e6c9;
}


/* Audible */

.af-platform-card.audible {
    --platform-color: #f8991d;
    --platform-light: #fff8ef;
    --platform-border: #f8e8d1;
    --platform-border-hover: #f2cf9f;
}


/* YouTube */

.af-platform-card.youtube {
    --platform-color: #e62117;
    --platform-light: #fff5f5;
    --platform-border: #f7dddd;
    --platform-border-hover: #efbebe;
}


/* Beatport */

.af-platform-card.beatport {
    --platform-color: #15a88a;
    --platform-light: #f1fbf8;
    --platform-border: #d9f0eb;
    --platform-border-hover: #b8e1d8;
}


/* More Platforms */

.af-platform-card.af-platform-more {
    --platform-color: #1677ff;
    --platform-light: #f3f8ff;
    --platform-border: #dceafb;
    --platform-border-hover: #bdd8fa;

    color: #176bd1;
}

.af-platform-more:hover {
    background: #f3f8ff;
    color: #0d5dbb;
}


/* ---------- Platform Logo ---------- */

.af-platform-logo {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    flex-shrink: 0;
}

.af-platform-logo img {
    display: block;

    width: 40px;
    height: 40px;

    object-fit: contain;
    object-position: left center;
}


/* ---------- Platform Text ---------- */

.af-platform-card > span {
    min-width: 0;
    white-space: nowrap;
}


/* ---------- More Icon ---------- */

.af-more-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #eaf3ff;

    color: #1677ff;
    font-size: 25px;
    font-weight: 400;
}


/* ---------- Bottom Note ---------- */

.af-platforms-note {
    margin-top: 24px;

    text-align: center;

    color: #8994a7;
    font-size: 15px;
    line-height: 1.6;
}

.af-platforms-note span {
    color: #1677ff;
    font-weight: 600;
}


/* =========================================================
   02. How It Works
   ========================================================= */

/* ---------- Section ---------- */

.af-how-it-works {
    background: #f5f4fb;
}


/* ---------- Heading ---------- */

.af-how-heading {
    margin-bottom: 45px;
}

.af-how-subtitle {
    display: inline-block;
    margin-bottom: 10px;

    color: #5b50f6;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .02em;
}

.af-how-title {
    margin-bottom: 12px;
    color: #1b1642;
}

.af-how-desc {
    max-width: 680px;
    margin: 0 auto;

    color: #6f6c80;
    font-size: 1rem;
    line-height: 1.7;
}


/* ---------- Step Navigation ---------- */

.af-process-tabs {
    display: flex;
    align-items: flex-start;
    justify-content: center;

    width: 100%;
    max-width: 900px;
    margin: 0 auto 55px;
}

.af-process-tab {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;

    min-width: 125px;
    padding: 0 8px;

    border: 0;
    outline: 0;
    background: transparent;

    color: #8b8997;
    cursor: pointer;
    font: inherit;

    transition: color .25s ease;
}

.af-process-tab:focus-visible {
    outline: 2px solid #5b50f6;
    outline-offset: 5px;
    border-radius: 8px;
}

.af-step-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;
    margin-bottom: 11px;

    border-radius: 50%;
    background: #e9e8f1;

    color: #777484;
    font-size: 16px;
    font-weight: 600;

    transition:
        background-color .25s ease,
        color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.af-step-label {
    white-space: nowrap;

    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

.af-process-tab:hover {
    color: #5b50f6;
}

.af-process-tab:hover .af-step-number {
    background: #dedcfb;
    color: #5b50f6;
}

.af-process-tab.active {
    color: #5b50f6;
}

.af-process-tab.active .af-step-number {
    background: #5b50f6;
    color: #fff;

    box-shadow: 0 8px 20px rgba(91, 80, 246, .22);
    transform: translateY(-2px);
}

.af-process-line {
    flex: 1 1 auto;

    height: 1px;
    min-width: 45px;
    max-width: 115px;

    margin: 24px 4px 0;

    background: #dddce7;
}


/* ---------- Step Content ---------- */

.af-process-content {
    display: none;
}

.af-process-content.active {
    display: block;
    animation: afProcessFade .35s ease;
}

@keyframes afProcessFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.af-process-text {
    padding-right: 25px;
}

.af-process-subtitle {
    display: inline-block;
    margin-bottom: 12px;

    color: #5b50f6;
    font-size: 17px;
    font-weight: 600;
}

.af-process-content h3 {
    margin-bottom: 18px;

    color: #1b1642;
    font-size: 1.7rem;
    line-height: 1.3;
}

.af-process-content p {
    max-width: 500px;
    margin-bottom: 0;

    color: #6f6c80;
    font-size: 1rem;
    line-height: 1.75;
}


/* ---------- Screenshot ---------- */

.af-process-image {
    overflow: hidden;

    padding: 16px;

    border: 1px solid #ecebf2;
    border-radius: 16px;

    background: #fff;

    box-shadow: 0 12px 40px rgba(27, 22, 66, .07);
}

.af-process-image img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 9px;
}


/* ---------- CTA ---------- */

.af-process-cta {
    margin-top: 50px;
}

.af-process-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 170px;
    min-height: 48px;

    font-size: 1rem;
}

.af-process-cta .btn img {
    width: 18px;
    height: 18px;

    object-fit: contain;
}

.af-process-cta-note {
    margin: 10px 0 0;

    color: #8a8795;
    font-size: 16px;
}


/* =========================================================
   03. Responsive - Tablet
   ========================================================= */

@media (max-width: 991.98px) {

    /* Supported Platforms */

    .af-platforms {
        padding: 65px 20px;
    }

    .af-platform-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .af-platform-card {
        min-height: 80px;
        padding: 16px 26px;
        font-size: 16px;
    }


    /* How It Works */

    .af-process-tab {
        min-width: 105px;
    }

    .af-step-label {
        font-size: .82rem;
    }

    .af-process-line {
        min-width: 25px;
    }

    .af-process-content h3 {
        font-size: 1.5rem;
    }
}


/* =========================================================
   04. Responsive - Mobile
   ========================================================= */

@media (max-width: 767.98px) {

    /* Supported Platforms */

    .af-platforms {
        padding: 50px 15px;
    }

    .af-platforms-inner {
        padding: 0;
    }

    .af-platforms-heading {
        margin-bottom: 30px;
    }

    .af-platforms-heading h2 {
        font-size: 28px;
    }

    .af-platforms-heading p {
        font-size: 17px;
        line-height: 1.65;
    }

    .af-platform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .af-platform-card {
        min-height: 72px;
        padding: 12px 18px;

        grid-template-columns: 34px minmax(0, 1fr);
        column-gap: 9px;

        font-size: 17px;
        border-radius: 7px;
    }

    .af-platform-logo {
        width: 34px;
        height: 34px;
    }


    .af-platform-logo img {
        width: 32px;
        height: 32px;
    }

    .af-more-icon {
        width: 32px;
        height: 32px;
        font-size: 21px;
    }


    /* How It Works */

    .af-how-heading {
        margin-bottom: 30px;
    }

    .af-how-title {
        font-size: 1.75rem;
        line-height: 1.35;
    }

    .af-how-desc {
        font-size: 16px;
    }

    .af-process-tabs {
        justify-content: flex-start;

        overflow-x: auto;

        margin-bottom: 40px;
        padding: 5px 10px 15px;

        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .af-process-tab {
        min-width: 100px;
    }

    .af-step-number {
        width: 42px;
        height: 42px;
        font-size: .85rem;
    }

    .af-step-label {
        font-size: 16px;
    }

    .af-process-line {
        min-width: 25px;
        max-width: 35px;
        margin-top: 21px;
    }

    .af-process-text {
        padding-right: 0;
        text-align: center;
    }

    .af-process-subtitle {
        margin-bottom: 8px;
    }

    .af-process-content h3 {
        font-size: 1.4rem;
    }

    .af-process-content p {
        margin-right: auto;
        margin-left: auto;
        font-size: 16px;
    }

    .af-process-image {
        margin-top: 5px;
        padding: 10px;
        border-radius: 12px;
    }

    .af-process-cta {
        margin-top: 35px;
    }
}


/* =========================================================
   05. Responsive - Small Mobile
   ========================================================= */

@media (max-width: 420px) {

    .af-platform-grid {
        grid-template-columns: 1fr;
    }

    .af-platform-card {
        padding-left: 30px;
    }
}


@media (max-width: 375px) {

    .af-process-tab {
        min-width: 88px;
        padding: 0 5px;
    }

    .af-step-number {
        width: 38px;
        height: 38px;
    }

    .af-step-label {
        font-size: 15px;
    }

    .af-process-line {
        min-width: 18px;
    }
}

/* =========================================================
   AudiFab Music One - Todo lo que puedes hacer
   ========================================================= */

.af-capabilities {
  position: relative;
  background: #f7f8fc;
  overflow: hidden;
}

.af-capabilities-title {
  margin: 0;
  color: #1b1642;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.af-capabilities-desc {
  max-width: 680px;
  margin: 14px auto 0;
  color: #6d6a7f;
  font-size: 1rem;
  line-height: 1.7;
}

.af-section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #5b50f6;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
}

/* Card */

.af-capability-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px 18px 20px;
  background: #fff;
  border: 1px solid #ebeaf3;
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 8px 28px rgba(27, 22, 66, 0.045);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.af-capability-card:hover {
  transform: translateY(-5px);
  border-color: rgba(91, 80, 246, 0.25);
  box-shadow: 0 14px 34px rgba(27, 22, 66, 0.09);
}

/* Image */

.af-capability-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 177px;
  margin-bottom: 18px;
  padding: 10px;
  background: #f8f8fd;
  border-radius: 14px 14px 14px 3px;
  overflow: hidden;
}

.af-capability-visual::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 179, 84, 0.08);
}

.af-capability-number {
  position: absolute;
  top: 13px;
  left: 14px;
  z-index: 2;
  color: #5b50f6;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.af-capability-image {
  position: relative;
  z-index: 1;
  width: 253px;
}

.af-capability-image img {
  display: block;
  width: 253px;
  max-width: none;
  height: auto;
  margin: 0 auto;
  transform: scale(1.28);
  transform-origin: center center;
}

/* Text */

.af-capability-body {
  flex: 1;
}

.af-capability-body h3 {
  margin: 0 0 10px;
  color: #1b1642;
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 600;
}

.af-capability-body p {
  margin: 0;
  color: #6d6a7f;
  font-size: 16px;
  line-height: 1.65;
}

.af-capability-body strong {
  color: #3f3a5f;
  font-weight: 600;
}

/* Bottom text */

.af-capability-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: #5b50f6;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
}

.af-capability-link span {
  transition: transform 0.2s ease;
}

.af-capability-card:hover .af-capability-link span {
  transform: translateX(3px);
}


/* =========================================================
   1200px
   ========================================================= */

@media (max-width: 1199.98px) {

  .af-capabilities-title {
    font-size: 2rem;
  }

  .af-capability-card {
    padding: 15px 16px 19px;
  }

  .af-capability-visual {
    min-height: 165px;
  }

  .af-capability-body h3 {
    font-size: 1rem;
  }

  .af-capability-body p {
    font-size: 17px;
  }

}


/* =========================================================
   992px
   ========================================================= */

@media (max-width: 991.98px) {

  .af-capabilities-title {
    font-size: 1.9rem;
  }

  .af-capabilities-desc {
    font-size: 17px;
  }

  .af-capability-visual {
    min-height: 175px;
  }

  .af-capability-body h3 {
    font-size: 1.02rem;
  }

  .af-capability-body p {
    font-size: 17px;
  }

}


/* =========================================================
   768px
   ========================================================= */

@media (max-width: 767.98px) {

  .af-capabilities {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .af-capabilities-title {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .af-capabilities-desc {
    font-size: 17px;
    line-height: 1.65;
  }

  .af-capability-card {
    border-radius: 16px 16px 16px 4px;
  }

  .af-capability-visual {
    min-height: 175px;
  }

  .af-capability-image {
    width: 253px;
    max-width: 90%;
  }

}


/* =========================================================
   575px
   ========================================================= */

@media (max-width: 575.98px) {

  .af-capabilities-title {
    font-size: 1.55rem;
  }

  .af-capability-card {
    padding: 14px 15px 18px;
  }

  .af-capability-visual {
    min-height: 170px;
  }

  .af-capability-body h3 {
    font-size: 19px;
  }

  .af-capability-body p {
    font-size: 17px;
  }

  .af-capability-link {
    margin-top: 16px;
  }

}

/* AudiFab Music One - Feature Text */
.af-feature-copy {
  max-width: 560px;
}

.af-feature-copy h2 {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1b1642;
}

.af-feature-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5f6170;
  margin-bottom: 1.5rem;
}

.af-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.af-feature-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: .9rem;
  color: #5f6170;
  font-size: 16px;
  line-height: 1.65;
}

.af-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5b50f6;
}

.af-feature-list strong {
  color: #1b1642;
  font-weight: 600;
}

.af-feature-note {
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #737582;
}

/* Built-in tools */
.af-tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem 1.5rem;
  margin-top: 1.25rem;
}

.af-tool-item {
  position: relative;
  padding-left: 1rem;
  color: #5f6170;
  font-size: 16px;
  line-height: 1.5;
}

.af-tool-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5b50f6;
}

.af-tool-item strong {
  color: #1b1642;
  font-weight: 600;
}

/* Support section */
.af-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.af-support-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1b1642;
  margin-bottom: .4rem;
}

.af-support-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #737582;
}

@media (max-width: 991.98px) {
  .af-feature-copy {
    max-width: 100%;
  }

  .af-feature-copy h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 767.98px) {
  .af-feature-copy h2 {
    font-size: 1.6rem;
  }

  .af-feature-lead {
    font-size: 18px;
  }

  .af-feature-list li {
    font-size: 17px;
  }

  .af-tool-grid,
  .af-support-grid {
    grid-template-columns: 1fr;
    gap: .75rem;
  }
}

/* =========================
   Music One Reviews
========================= */

.af-musicone-reviews {
  padding: 96px 0 100px;
  background: #f7f8fc;
}

.af-musicone-reviews-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #5b50f6;
}

.af-musicone-reviews-title {
  margin: 0 0 16px;
  color: #1b1642;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
}

.af-musicone-reviews-intro {
  margin: 0;
  color: #68677a;
  font-size: 17px;
  line-height: 1.7;
}


/* Rating Sources */

.af-musicone-rating-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  margin: 42px auto 46px;
}

.af-musicone-rating {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 19px;
  border: 1px solid #e6e7ef;
  border-radius: 12px;
  background: #fff;
  color: #1b1642;
  text-decoration: none;
  transition: all .2s ease;
}

.af-musicone-rating:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 22, 66, .07);
}

.af-musicone-rating-name {
  font-weight: 700;
}

.af-musicone-rating-score {
  font-weight: 700;
}

.af-musicone-rating-stars {
  font-size: 15px;
  letter-spacing: 1px;
}

.af-musicone-rating-count {
  color: #8a8998;
  font-size: 15px;
}


/* Review Carousel */

.af-musicone-review-wrap {
  position: relative;
  padding: 0 48px;
}

.af-musicone-review-carousel {
  width: 100%;
  overflow: hidden;
}

.af-musicone-review-card {
  width: calc((100% - 48px) / 3);
  min-height: 390px;
  margin-right: 24px;
  padding: 32px 30px 28px;
  border: 1px solid #e9e9f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(27, 22, 66, .045);
  display: flex;
  flex-direction: column;
}

.af-musicone-review-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #f0efff;
  color: #5b50f6;
  font-size: 16px;
  font-weight: 700;
}

.af-musicone-review-card h3 {
  margin: 0 0 17px;
  color: #1b1642;
  font-size: 21px;
  line-height: 1.4;
  font-weight: 700;
}

.af-musicone-review-card blockquote {
  margin: 0;
  color: #68677a;
  font-size: 16px;
  line-height: 1.75;
}

.af-musicone-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 26px;
}

.af-musicone-avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0efff;
  color: #5b50f6;
  font-size: 15px;
  font-weight: 700;
}

.af-musicone-review-author strong,
.af-musicone-review-author span {
  display: block;
}

.af-musicone-review-author strong {
  color: #1b1642;
  font-size: 15px;
}

.af-musicone-review-author span {
  margin-top: 2px;
  color: #8a8998;
  font-size: 15px;
}


/* Arrows */

.af-musicone-review-prev,
.af-musicone-review-next {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border: 1px solid #e2e2eb;
  border-radius: 50%;
  background: #fff;
  color: #1b1642;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
  box-shadow: 0 6px 20px rgba(27, 22, 66, .06);
}

.af-musicone-review-prev {
  left: 0;
}

.af-musicone-review-next {
  right: 0;
}

.af-musicone-review-prev:hover,
.af-musicone-review-next:hover {
  background: #5b50f6;
  border-color: #5b50f6;
  color: #fff;
}


/* Flickity Dots */

.af-musicone-review-carousel .flickity-page-dots {
  bottom: -42px;
}

.af-musicone-review-carousel .flickity-page-dots .dot {
  width: 7px;
  height: 7px;
  margin: 0 5px;
  opacity: .35;
}

.af-musicone-review-carousel .flickity-page-dots .dot.is-selected {
  opacity: 1;
}


/* Footer */

.af-musicone-reviews-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 78px;
  color: #8a8998;
  font-size: 15px;
}

.af-musicone-reviews-footer a {
  color: #5b50f6;
  font-weight: 600;
  text-decoration: none;
}

.af-musicone-reviews-footer a:hover {
  text-decoration: underline;
}


/* =========================
   Responsive
========================= */

@media (max-width: 991.98px) {

  .af-musicone-reviews {
    padding: 76px 0 88px;
  }

  .af-musicone-reviews-title {
    font-size: 34px;
  }

  .af-musicone-review-card {
    width: calc((100% - 24px) / 2);
  }

  .af-musicone-rating-row {
    gap: 10px;
  }

  .af-musicone-rating {
    padding: 12px 14px;
  }

}


@media (max-width: 767.98px) {

  .af-musicone-reviews {
    padding: 64px 0 78px;
  }

  .af-musicone-reviews-title {
    font-size: 29px;
  }

  .af-musicone-reviews-intro {
    font-size: 17px;
  }

  .af-musicone-rating-row {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 32px auto 36px;
  }

  .af-musicone-rating {
    justify-content: center;
  }

  .af-musicone-review-wrap {
    padding: 0 38px;
  }

  .af-musicone-review-card {
    width: 100%;
    min-height: 360px;
    margin-right: 16px;
    padding: 27px 24px 24px;
  }

  .af-musicone-review-card h3 {
    font-size: 19px;
  }

  .af-musicone-review-card blockquote {
    font-size: 16px;
    line-height: 1.7;
  }

  .af-musicone-review-prev,
  .af-musicone-review-next {
    width: 36px;
    height: 36px;
    margin-top: -18px;
  }

  .af-musicone-reviews-footer {
    margin-top: 68px;
    text-align: center;
  }

}