/* ===============================================
   FONT AWESOME 6 (CDN)
=============================================== */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");


/* ===============================================
   GLOBAL BASE FOR ALBUM BLOCK
=============================================== */

.af-album-hero,
.af-album-player-shell,
.afrowap-container {
    font-family: system-ui, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.87); /* high emphasis text */
}

/* Screen reader helper */
.afrowap-container .screen-reader-text,
.af-album-hero .screen-reader-text {
    position: absolute;
    top: -9999px;
    left: -9999px;
}


/* ===============================================
   MAIN WRAPPER (ONE SEGMENT)
   NO GRID – float cover so text can wrap,
   player is forced under with clear: both
=============================================== */

.af-album-hero {
    margin: 22px 0 26px;
}

.af-album-hero-inner {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ===============================================
   COVER (LEFT SIDE) – FLOAT
=============================================== */

.af-album-hero-cover {
    float: left;
    width: 240px;
    max-width: 100%;
    margin: 0 24px 18px 0; /* space to the right and bottom */
}

.af-album-hero-img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    object-fit: cover;

    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px,
                rgba(0, 0, 0, 0.14) 0px 4px 5px 0px,
                rgba(0, 0, 0, 0.12) 0px 1px 10px 0px;
    background-image: linear-gradient(
        rgba(255, 255, 255, 0.09),
        rgba(255, 255, 255, 0.09)
    );
}

.af-album-hero-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;

    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px,
                rgba(0, 0, 0, 0.14) 0px 4px 5px 0px,
                rgba(0, 0, 0, 0.12) 0px 1px 10px 0px;
    background-image: linear-gradient(
        rgba(255, 255, 255, 0.09),
        rgba(255, 255, 255, 0.09)
    );
}


/* ===============================================
   META (TEXT SIDE)
   This + description will sit to the right
   of the cover; description keeps flowing
   while cover is floated.
=============================================== */

.af-album-hero-meta {
    min-width: 0;
    /* default block layout so lines behave normally
       around the floated cover */
}

.af-album-hero-topline {
    margin-bottom: 6px;
}

/* Year + Type pill */
.af-album-hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.87);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Album title */
.af-album-hero-title {
    margin: 6px 0 6px;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.95);
}

/* Artists line */
.af-album-hero-artists {
    margin: 4px 0 10px;
    font-size: 0.95rem;
}

.af-hero-label {
    font-weight: 600;
    margin-right: 4px;
    color: rgba(255, 255, 255, 0.60);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.7rem;
}

/* 🔵➡🟢 Artist links green */
.af-hero-value a {
    color: #0d904f !important; /* Afrowap green */
    font-weight: 600;
    text-decoration: none;
}

.af-hero-value a:hover {
    color: #12b366;
    text-decoration: underline;
}

/* Genre / Type chips */
.af-album-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.af-hero-chip {
    padding: 4px 9px;
    border-radius: 100px;
    font-size: 0.75rem;

    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.87);
}

.af-hero-chip-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.50);
    font-size: 0.68rem;
}

.af-hero-chip-value {
    font-weight: 600;
}


/* ================================
   ALBUM HERO – DESCRIPTION BLOCK
   THIS IS THE TEXT THAT SHOULD
   “FILL” UNDER / AROUND THE COVER
================================ */

.af-album-hero-desc {
    margin-top: 10px;
    font-size: 0.94rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);

    /* IMPORTANT:
       make it a normal block in the same container
       so it wraps beside the floated cover, then
       goes full-width once below the image. */
}

/* Small tweak when it’s inside the meta block */
.af-album-hero-meta .af-album-hero-desc {
    padding-top: 4px;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .af-album-hero-desc {
        font-size: 0.9rem;
        line-height: 1.55;
        max-width: 100%;
    }
}


/* ===============================================
   PLAYER SHELL (INSIDE BLOCK)
   Must start below the floated cover + text
=============================================== */

.af-album-player-shell {
    clear: both;      /* push player under cover + description */
    margin: 24px 0 0;
}

.af-album-player-inner {
    background: #242424;
    border-radius: 4px;
    padding: 4px 4px 2px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
}


/* ===============================================
   CORE PLAYER BAR – SINGLE LINE
=============================================== */

.af-player-main {
    margin-top: 0;
    margin-bottom: 8px;
}

/* Player row */
.player {
    width: 100%;
    background: #242424;
    border-radius: 4px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;

    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px,
                rgba(0, 0, 0, 0.14) 0px 4px 5px 0px,
                rgba(0, 0, 0, 0.12) 0px 1px 10px 0px;
    background-image: linear-gradient(
        rgba(255, 255, 255, 0.09),
        rgba(255, 255, 255, 0.09)
    );
}

/* Big Play button – Afrowap green */
.large-toggle-btn {
    flex: 0 0 auto;
    width: 46px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #0d904f;
    color: #ffffff;
    display: grid;
    place-items: center;
    cursor: pointer;
    border: none;
    transition: 0.15s ease;
}

.large-toggle-btn:hover {
    background: #12b366;
    transform: translateY(-1px);
}

.large-toggle-btn i {
    line-height: 1;
    display: block;
}

/* Font Awesome 6 icons for play/pause */
.large-play-btn:before,
.large-pause-btn:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.2em;
}

.large-play-btn:before {
    content: "\f04b";
}

.large-pause-btn:before {
    content: "\f04c";
}

/* Info + time area */
.info-box {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Title + duration in a single row */
.track-info-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    visibility: hidden; /* JS will toggle to visible */
}

.track-title-text {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.audio-time {
    flex: 0 0 auto;
    min-width: 70px;
    text-align: right;
    color: rgba(255, 255, 255, 0.6);
    font-variant-numeric: tabular-nums;
}

/* Progress bar (under the row) */
.progress-box .progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
}

.progress-buffer {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg,
        rgba(13,144,79,0.35),
        rgba(18,179,102,0.7)
    );
}

.progress-indicator {
    position: absolute;
    top: -4px;
    left: 0;
    width: 16px;
    height: 16px;
    background: #12b366;
    border-radius: 0;
    border: 3px solid #12b366;
    cursor: pointer;
}

/* Prev / Next controls */
.controls-box {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 4px;
}

.previous-track-btn:before,
.next-track-btn:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.previous-track-btn:before {
    content: "\f049";
}

.next-track-btn:before {
    content: "\f050";
}

.previous-track-btn,
.next-track-btn {
    display: grid;
    place-items: center;
    width: 30px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.87);
    cursor: pointer;
    transition: 0.12s ease;
}

.previous-track-btn:hover,
.next-track-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.previous-track-btn.disabled,
.next-track-btn.disabled {
    color: rgba(255, 255, 255, 0.38);
    cursor: default;
    background: none !important;
}

/* ===============================================
   Repeat Button
=============================================== */

.repeat-track-btn {
    display: grid;
    place-items: center;
    width: 30px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: transparent;
    transition: background 0.12s ease, color 0.12s ease;
    color: rgba(255, 255, 255, 0.65);
}

.repeat-track-btn .repeat-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.repeat-track-btn .icon-state {
    opacity: 0;
}

.repeat-track-btn.mode-off .icon-repeat-off { opacity: 1; }
.repeat-track-btn.mode-all .icon-repeat-all { opacity: 1; }
.repeat-track-btn.mode-one .icon-repeat-one { opacity: 1; }

.repeat-track-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.repeat-track-btn.active {
    color: #0d904f;
    background: rgba(13, 144, 79, 0.18);
}


/* =============================
   NO-AUDIO / DEAD TRACK STYLING
============================= */

.afrowap-container .play-list-row.no-audio {
    background: #2a2a2a;
    opacity: 0.6;
    cursor: default;
}

/* Make title not clickable for dead tracks */
.afrowap-container .play-list-row.no-audio .playlist-track {
    pointer-events: none;
    color: rgba(255,255,255,0.5);
}

/* Optional: make small play button look disabled */
.afrowap-container .play-list-row.no-audio .small-toggle-btn {
    opacity: 0.4;
}

/* Remove hover on the whole row */
.afrowap-container .play-list-row:hover {
    background: #1f1f1f; /* same as base, no hover effect */
    transform: none;
    border-color: rgba(255,255,255,0.06);
}

/* Keep hover only on the buttons */
.afrowap-container .small-toggle-btn:hover,
.afrowap-container .small-download-btn:hover {
    background: rgba(255,255,255,0.12);
}

/* Grey tracks: download icon look disabled */
.afrowap-container .play-list-row.no-audio
.small-download-btn .download-disabled i {
    opacity: 0.4;
    cursor: default;
}

/* Just in case: if a link slips through somehow, kill click */
.afrowap-container .play-list-row.no-audio .small-download-btn a {
    pointer-events: none;
    cursor: default;
    opacity: 0.4;
}


/* ===============================================
   TRACKLIST
=============================================== */

.af-player-playlist {
    margin-top: 8px;
}

/* Header row above tracks */
.af-playlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.af-playlist-label {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-left:10px;
}

.af-playlist-count {
    font-size: 0.78rem;
    margin-right:10px;
}

/* Playlist container */
.afrowap-container {
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.afrowap-container::after {
    content: "";
    display: block;
    clear: both;
}

/* Inner play-list wrapper */
.afrowap-container .play-list {
    margin-top: 0;
}

/* Each track row */
.afrowap-container .play-list-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;

    padding: 8px 10px;
    margin-bottom: 6px;
    border-radius: 4px;

    background: #1F1F1F;
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;

    transition:
        background 0.12s ease,
        transform 0.08s ease,
        border-color 0.12s ease;
}

.afrowap-container .play-list-row:last-child {
    margin-bottom: 0;
}

/* Hover only on the buttons */
.afrowap-container .small-toggle-btn:hover,
.afrowap-container .small-download-btn:hover {
    background: #2b2b2b;
    transform: translateY(-1px);
}

/* Small play + download buttons */
.afrowap-container .small-toggle-btn,
.afrowap-container .small-download-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #242424;
}

/* Small play/pause icons */
.afrowap-container .small-play-btn:before,
.afrowap-container .small-pause-btn:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.9rem;
}

.afrowap-container .small-play-btn:before {
    content: "\f04b";
    color: rgba(255, 255, 255, 0.87);
}

.afrowap-container .small-pause-btn:before {
    content: "\f04c";
    color: #0d904f;
}

/* Download icon – green */
.afrowap-container .small-download-btn a i {
    font-size: 0.9rem;
    color: #0d904f;
}

.afrowap-container .small-download-btn a:hover i {
    color: #12b366;
}

/* Track number */
.afrowap-container .track-number {
    width: 26px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Track title */
.afrowap-container .track-title {
    flex: 1;
    min-width: 0;
}

.afrowap-container .track-feat {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.775rem;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

.afrowap-container .track-title .playlist-track {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    color: rgba(255, 255, 255, 0.87);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
}

.afrowap-container .track-title .playlist-track:hover {
    color: #0d904f;
}

/* Active track highlight */
.afrowap-container .track-title.active-track,
.afrowap-container .track-title.active-track .playlist-track {
    font-weight: 700;
    color: #0d904f;
}

/* Medley under track */
.afrowap-container .track-medley {
    flex-basis: 100%;
    margin: 3px 0 2px 64px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
}

.afrowap-container .track-medley ul {
    margin: 0;
    padding-left: 16px;
    list-style: disc;
}

.afrowap-container .track-medley li {
    line-height: 1.3;
}


/* ===============================================
   RESPONSIVE TWEAKS (HERO + PLAYER)
=============================================== */

/* Slightly smaller screens */
@media (max-width: 900px) {
    .af-album-hero-inner {
        max-width: 100%;
    }

    .af-album-hero-cover {
        width: 220px;
        margin-right: 20px;
    }
}

/* Tablet / landscape mobile */
@media (max-width: 768px) {
    .af-album-hero-inner {
        max-width: 100%;
    }

    .af-album-hero-cover {
        float: none;
        width: 220px;
        margin: 0 auto 12px;
    }

    .af-album-player-shell {
        clear: none;
        margin-top: 18px;
    }

    .af-album-hero-title {
        font-size: 1.6rem;
    }

    .player {
        padding: 8px 8px;
        gap: 8px;
    }

    .large-toggle-btn {
        width: 42px;
    }

    .audio-time {
        min-width: 60px;
        font-size: 11px;
    }

    .track-title-text {
        font-size: 12px;
    }

    .afrowap-container .track-medley {
        margin-left: 54px;
    }
}

/* Small phones */
@media (max-width: 560px) {
    .af-album-hero {
        margin: 14px 0 18px;
    }

    .af-album-hero-cover {
        width: 64vw;
        max-width: 230px;
    }

    .afrowap-container .play-list-row {
        padding: 7px 8px;
    }
}

/*****************************************************************************************************************************************************************/

/* ============================
   ARTISTS INDEX LAYOUT – GOOGLE DARK
============================ */

.afrowap-artists-index {
    width: 100%;
    margin: 0;
    /* padding: 0 10px 20px; */  /* keep commented if you manage padding elsewhere */
    box-sizing: border-box;
}

/* Alpha navigation bar */
.afrowap-artists-alpha-nav {
    margin: 0 0 16px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.afrowap-artists-alpha-nav .letters {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.afrowap-artists-alpha-nav .letters a {
    display: inline-block;
    padding: 3px 6px;
    margin: 0 2px 4px 0;
    border-radius: 3px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid transparent;
    background: transparent;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.afrowap-artists-alpha-nav .letters a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #0d904f; /* Afrowap green */
}

.afrowap-artists-alpha-nav .letters a.current-initial {
    background: #0d904f;      /* active = green pill */
    color: #ffffff;
    border-color: #0d904f;
}

.afrowap-artists-filter-summary {
    margin: 6px 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.60);
}

/* Empty state */
.afrowap-artists-empty {
    text-align: center;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.75);
}

/* ============================
   ARTISTS GRID (2 / 3 / 4 COLS)
============================ */

.afrowap-artists-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));  /* mobile: 2 per row */
    gap: 16px;
    margin-top: 10px;
}

/* Tablet: 3 per row */
@media (min-width: 768px) {
    .afrowap-artists-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
}

/* Desktop: 4 per row */
@media (min-width: 1200px) {
    .afrowap-artists-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }
}

/* Artist card */
.afrowap-artist-card {
    background-color: rgb(18, 18, 18);
    color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.07));
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    overflow: hidden;
}

/*.afrowap-artist-card:hover {
    box-shadow: 0 6px 14px rgba(0,0,0,0.7);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}*/

.afrowap-artist-card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

/* Thumbnail */
.afrowap-artist-thumb img,
.afrowap-artist-placeholder {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

/* Placeholder (no image) */
.afrowap-artist-placeholder {
    background: #202124;   /* Google style dark */
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card text area */
.afrowap-artist-name,
.afrowap-artist-album-count {
    padding: 8px 10px;
    background: #242424;
    box-sizing: border-box;
}

.afrowap-artist-name {
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.3;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.90);
}

.afrowap-artist-album-count {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/*****************************************************************************************************************************************************************/

/*****************************************
 * AFROWAP – RELATED ALBUMS SECTION
 *****************************************/

.afrowap-related-albums {
    margin-top: 24px;
}

/* Header: just the section title now */
.afrowap-related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.afrowap-related-heading {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
}

/* ===== GRID ===== */

.afrowap-related-albums .card-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

/* Card */
.afrowap-related-albums .card-item {
    background-color: rgb(18, 18, 18);
    color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.07));
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    overflow: hidden;
}

/*.afrowap-related-albums .card-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.18);
}*/

/* Thumb */
.afrowap-related-albums .card-item > a {
    display: block;
}

.afrowap-related-albums .card-item img,
.afrowap-related-albums .card-item .mh-image-placeholder {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1; /* perfect square */
    transform: scale(1);
    transition: transform 0.22s ease;
}

.afrowap-related-albums .card-item:hover img,
.afrowap-related-albums .card-item:hover .mh-image-placeholder {
    transform: scale(1.05);
}

/* Title bar */
.afrowap-related-albums .card-item-title {
    margin: 0;
    padding: 8px 9px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.82rem;
    line-height: 1.3;
    color: rgba(255,255,255,0.9);
}

.afrowap-related-albums .card-item-title a {
    color: inherit;
    text-decoration: none;
}

.afrowap-related-albums .card-item-title a:hover {
    color: #0d904f;
    text-decoration: underline;
}

/* ===== "More Albums by {Artist}" under the grid ===== */

.afrowap-more-link-wrap {
    margin-top: 20px;
    text-align: right;
}

.afrowap-more-by-artist {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;

    background: rgba(13,144,79,0.15);
    border: 1px solid rgba(13,144,79,0.75);
    color: #b7ffe0;

    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        transform 0.08s ease,
        color 0.15s ease;
}

.afrowap-more-by-artist:hover {
    background: rgba(13,144,79,0.25);
    border-color: #0ff29a;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Mobile: center the button */
@media (max-width: 600px) {
    .afrowap-more-link-wrap {
        text-align: center;
    }
}

/* ===== RESPONSIVE GRID BREAKPOINTS ===== */

@media (min-width: 768px) {
    .afrowap-related-albums .card-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (min-width: 1200px) {
    .afrowap-related-albums .card-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }
}

/*****************************************************************************************************************************************************************/