/* MariaStacks Album Page – Phase 6.2 ambient glow symmetry */

body.mstax-album-page-body {
    background: #070707;
    color: #fff;
}

body.mstax-album-page-body #site-content {
    background: #070707;
}

.mstax-album-page {
    --mstax-page-bg: #080808;
    --mstax-panel-bg: #111214;
    --mstax-panel-bg-soft: #151619;
    --mstax-panel-border: rgba(255,255,255,0.08);
    --mstax-muted: rgba(255,255,255,0.56);
    --mstax-subtle: rgba(255,255,255,0.40);
    --mstax-album-color: #292929;

    margin: 0;
    padding: 0;
    overflow: visible;
    background:
        /* Primary aura is centred on the left album column rather than on
         * the viewport edge. This lets the album colour breathe equally
         * to the left and right of the artwork. */
        radial-gradient(
            ellipse 39% 46% at 20% 18%,
            color-mix(in srgb, var(--mstax-album-color) 36%, transparent) 0%,
            color-mix(in srgb, var(--mstax-album-color) 18%, transparent) 42%,
            transparent 74%
        ),
        /* Wide, faint bridge through the gutters and behind the centre
         * column so the dashboard reads as one album-coloured space. */
        radial-gradient(
            ellipse 64% 39% at 36% 29%,
            color-mix(in srgb, var(--mstax-album-color) 14%, transparent) 0%,
            transparent 76%
        ),
        /* Vertical spill beneath artwork into metadata and listening. */
        radial-gradient(
            ellipse 38% 58% at 20% 64%,
            color-mix(in srgb, var(--mstax-album-color) 15%, transparent) 0%,
            transparent 76%
        ),
        /* Very soft lower halo so the colour does not stop abruptly. */
        radial-gradient(
            ellipse 48% 32% at 22% 91%,
            color-mix(in srgb, var(--mstax-album-color) 7%, transparent) 0%,
            transparent 78%
        ),
        var(--mstax-page-bg);
    color: #fff;
    box-shadow: none;
}

.mstax-album-dashboard {
    width: min(1880px, calc(100% - 40px));
    margin: 0 auto;
    padding: 24px 0 28px;
    display: grid;
    grid-template-columns:
        minmax(280px, 1fr)
        minmax(480px, 1.42fr)
        minmax(280px, 1fr);
    gap: 16px;
    align-items: stretch;
}

.mstax-album-column {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    overflow: hidden;
    border: 1px solid var(--mstax-panel-border);
    border-radius: 18px;
    background: var(--mstax-panel-bg);
    box-shadow: 0 22px 64px rgba(0,0,0,0.18);
}

.mstax-album-column--left {
    background: #101113;
}

.mstax-album-column--center {
    background:
        linear-gradient(
            150deg,
            color-mix(in srgb, var(--mstax-album-color) 5%, #111214) 0%,
            #111214 34%
        );
}

.mstax-album-column--right {
    background:
        linear-gradient(
            210deg,
            color-mix(in srgb, var(--mstax-album-color) 3%, #111214) 0%,
            #111214 30%
        );
}

.mstax-album-column--center,
.mstax-album-column--right {
    gap: 0;
}

/* -------------------------------------------------------------------------- */
/* Album identity                                                             */
/* -------------------------------------------------------------------------- */

.mstax-album-identity {
    flex: 0 0 auto;
    color: #fff;
}

.mstax-album-art-stage {
    padding: clamp(18px, 2vw, 30px);
    background-color: var(--mstax-album-color);
    background:
        linear-gradient(
            155deg,
            color-mix(in srgb, var(--mstax-album-color) 94%, #fff 6%) 0%,
            var(--mstax-album-color) 52%,
            color-mix(in srgb, var(--mstax-album-color) 54%, #090909) 100%
        );
}

.mstax-album-artwork {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: rgba(0,0,0,0.12);
    box-shadow: 0 22px 50px rgba(0,0,0,0.20);
}

.mstax-album-artwork-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mstax-album-identity-body {
    padding: 26px 26px 28px;
    background:
        linear-gradient(
            180deg,
            color-mix(in srgb, var(--mstax-album-color) 8%, #101113) 0%,
            #101113 56%
        );
}

.mstax-album-eyebrow,
.mstax-review-eyebrow {
    margin-bottom: 8px;
    font-size: 1.05rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mstax-muted);
}

.mstax-album-title {
    margin: 0;
    color: #fff;
    font-family: 'Instrument Serif', serif;
    font-size: clamp(3.8rem, 3.6vw, 5.6rem);
    line-height: 0.98;
    font-weight: 400;
    letter-spacing: -0.025em;
}

.mstax-album-artist {
    display: inline-block;
    margin-top: 12px;
    color: rgba(255,255,255,0.82);
    font-size: clamp(1.55rem, 1.35vw, 2rem);
    line-height: 1.25;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.mstax-album-artist:hover {
    color: #fff;
    text-decoration: none;
}

.mstax-album-date {
    margin-top: 10px;
    color: var(--mstax-muted);
    font-size: 1.15rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.mstax-album-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--mstax-panel-border);
}

.mstax-album-rating-ring {
    width: 66px;
    height: 66px;
    flex: 0 0 66px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    padding: 3px;
    background: conic-gradient(
        from 0deg,
        #E397B3 0%,
        #EC5836 var(--mstax-rating-mid),
        #D6F56D var(--mstax-rating-end),
        rgba(255,255,255,0.12) var(--mstax-rating-end),
        rgba(255,255,255,0.12) 100%
    );
}

.mstax-album-rating-ring-inner {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #111214;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.mstax-album-rating-number {
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap;
}

.mstax-album-rating-major {
    font-size: 1.5rem;
    font-weight: 500;
}

.mstax-album-rating-minor {
    font-size: 0.88rem;
    font-weight: 500;
}

.mstax-album-rating-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mstax-album-rating-copy strong {
    font-size: 1.15rem;
    line-height: 1.25;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mstax-album-rating-copy span {
    color: var(--mstax-muted);
    font-size: 1.1rem;
    line-height: 1.35;
}

.mstax-album-meta-list {
    margin: 24px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--mstax-panel-border);
}

.mstax-album-meta-row {
    display: grid;
    grid-template-columns: minmax(88px, 0.8fr) minmax(0, 1.4fr);
    gap: 12px;
    padding: 5px 0;
}

.mstax-album-meta-row dt,
.mstax-album-meta-row dd {
    margin: 0;
}

.mstax-album-meta-row dt {
    color: var(--mstax-subtle);
    font-size: 0.98rem;
    line-height: 1.45;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.mstax-album-meta-row dd {
    color: rgba(255,255,255,0.72);
    font-size: 1.1rem;
    line-height: 1.45;
}

/* -------------------------------------------------------------------------- */
/* Listening inside the left column                                           */
/* -------------------------------------------------------------------------- */

.mstax-album-column--left .concept-playlist-section {
    flex: 1 0 auto;
    margin: 0;
    padding: 26px;
    background:
        linear-gradient(
            180deg,
            color-mix(in srgb, var(--mstax-album-color) 4%, #101113) 0%,
            #101113 24%
        );
    color: #fff;
    border-top: 1px solid var(--mstax-panel-border);
}

.mstax-album-column--left .concept-playlist-inner {
    max-width: none;
    margin: 0;
    padding: 0;
}

.mstax-album-column--left .section-heading-black {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-align: left;
    text-transform: uppercase;
}

.mstax-album-column--left .concept-playlist-intro {
    max-width: none;
    margin: 10px 0 0;
    padding: 0;
    color: var(--mstax-muted);
    font-size: 1.08rem;
    line-height: 1.55;
    text-align: left;
}

.mstax-album-column--left .concept-playlist-embed {
    max-width: none;
    margin: 18px 0 0;
}

.mstax-album-column--left .concept-playlist-embed iframe {
    width: 100%;
    min-height: 450px;
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f4f4f6;
}

.mstax-album-column--left .embed-placeholder {
    border-radius: 12px;
}

.mstax-album-column--left .mstax-streaming-card {
    max-width: none;
    margin: 16px 0 0;
    padding: 17px;
    border: 1px solid var(--mstax-panel-border);
    border-radius: 12px;
    background: rgba(255,255,255,0.035);
    color: #fff;
}

.mstax-album-column--left .mstax-streaming-label {
    color: #fff;
    font-size: 1.25rem;
}

.mstax-album-column--left .mstax-streaming-text {
    margin: 6px 0 0;
    padding: 0;
    color: var(--mstax-muted);
    font-size: 1.05rem;
    line-height: 1.5;
}

.mstax-album-column--left .mstax-streaming-links,
.mstax-album-column--left .mstax-streaming-preview {
    margin: 14px 0 0;
    gap: 8px;
}

.mstax-album-column--left .mstax-streaming-links a,
.mstax-album-column--left .mstax-streaming-preview span {
    padding: 7px 10px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
}

.mstax-album-column--left .mstax-streaming-links a:hover {
    background: #fff;
    color: #111;
}

.mstax-album-column--left .mstax-streaming-cta {
    margin-top: 14px;
    color: #E397B3;
    font-size: 1.05rem;
}

/* -------------------------------------------------------------------------- */
/* Match inside the center column                                             */
/* -------------------------------------------------------------------------- */

.mstax-album-column--center .mstax-match-section {
    flex: 0 0 auto;
    margin: 0;
    padding: 28px 28px 30px;
    background: transparent;
    border: 0;
    color: #fff;
}

.mstax-album-column--center .mstax-match-shell {
    width: 100%;
    margin: 0;
}

.mstax-album-column--center .mstax-match-title {
    font-size: clamp(2.05rem, 2vw, 3rem);
}

.mstax-album-column--center .mstax-match-main {
    gap: clamp(18px, 2.2vw, 34px);
    margin-top: 24px;
}

.mstax-album-column--center .mstax-match-score-block {
    flex-basis: min(180px, 27%);
    padding-top: 18px;
}

.mstax-album-column--center .mstax-match-score-value {
    font-size: clamp(5.8rem, 6.6vw, 9.2rem);
}

.mstax-album-column--center .mstax-match-chart {
    min-height: 228px;
    padding-bottom: 18px;
}

.mstax-album-column--center .mstax-match-chart svg {
    height: 190px;
}

.mstax-album-column--center .mstax-match-preview-copy,
.mstax-album-column--center .mstax-match-explanation,
.mstax-album-column--center .mstax-match-unavailable {
    margin-top: 18px;
    padding-top: 20px;
}

.mstax-album-column--center .mstax-match-preview-copy p,
.mstax-album-column--center .mstax-match-explanation p,
.mstax-album-column--center .mstax-match-unavailable p {
    font-size: 1.14rem;
    line-height: 1.55;
}

/* -------------------------------------------------------------------------- */
/* Review inside the center column                                            */
/* -------------------------------------------------------------------------- */

.mstax-review-section {
    flex: 1 0 auto;
    min-height: 0;
    padding: 28px;
    border-top: 1px solid var(--mstax-panel-border);
    background: rgba(255,255,255,0.012);
    color: #fff;
}

.mstax-review-header {
    margin-bottom: 18px;
}

.mstax-review-title {
    margin: 0;
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mstax-review-section .entry-content {
    color: rgba(255,255,255,0.78);
}

.mstax-review-section .entry-content a {
    color: inherit;
}

.mstax-review-section .entry-content a:hover {
    color: #fff;
}

.mstax-review-section .mstax-review__intro h2 {
    margin: 0;
    color: #fff;
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2.6rem, 2.35vw, 3.7rem);
    line-height: 1.16;
    font-weight: 400;
    letter-spacing: 0.008em;
}

.mstax-review-section .mstax-review__intro p,
.mstax-review-section .mstax-review__full p {
    max-width: 70ch;
    color: rgba(255,255,255,0.72);
    font-size: 1.35rem;
    line-height: 1.72;
}

.mstax-review-section .mstax-review__reader,
.mstax-review-section .mstax-review__locked {
    margin-top: 24px;
    border-top-color: var(--mstax-panel-border);
}

.mstax-review-section .mstax-review__toggle,
.mstax-review-section .mstax-review__locked-meta {
    color: #fff;
    font-size: 1.05rem;
}

.mstax-review-section .mstax-review__plan-badge {
    background: rgba(255,255,255,0.10);
    color: #fff;
    font-size: 0.88rem;
}

.mstax-review-section .mstax-review__locked-text {
    color: var(--mstax-muted);
    font-size: 1.15rem;
}

.mstax-review-section .entry-content a.mstax-review__cta {
    border-color: rgba(255,255,255,0.28);
    color: #fff;
    font-size: 1rem;
}

.mstax-review-section .entry-content a.mstax-review__cta:hover {
    background: #fff;
    color: #111;
}

/* -------------------------------------------------------------------------- */
/* Mood + Search + Monetization inside the right column                       */
/* -------------------------------------------------------------------------- */

.mstax-album-column--right .mstax-mood-section,
.mstax-album-column--right .mstax-search-inspiration-section {
    margin: 0;
    padding: 26px;
    background: transparent;
    color: #fff;
    border: 0;
}

.mstax-album-column--right .mstax-search-inspiration-section {
    border-top: 1px solid var(--mstax-panel-border);
}

.mstax-album-column--right .mstax-mood-shell,
.mstax-album-column--right .mstax-search-inspiration-shell {
    width: 100%;
    margin: 0;
}

.mstax-album-column--right .mstax-mood-card {
    width: 100%;
    max-width: none;
}

.mstax-album-column--right .mstax-mood-header {
    margin-bottom: 18px;
}

.mstax-album-column--right .mstax-mood-title,
.mstax-album-column--right .mstax-search-inspiration-title {
    font-size: clamp(1.65rem, 1.7vw, 2.35rem);
}

.mstax-album-column--right .mstax-mood-visual {
    width: min(100%, 390px);
}

.mstax-album-column--right .mstax-mood-pole {
    font-size: 0.68rem;
}

.mstax-album-column--right .mstax-mood-marker {
    width: 17px;
    height: 17px;
}

.mstax-album-column--right .mstax-mood-distribution {
    width: 100%;
    margin-top: 20px;
}

.mstax-album-column--right .mstax-mood-distribution-row {
    min-height: 40px;
}

.mstax-album-column--right .mstax-mood-distribution-name,
.mstax-album-column--right .mstax-mood-distribution-value {
    font-size: 0.74rem;
}

.mstax-album-column--right .mstax-search-inspiration-header {
    margin-bottom: 16px;
}

.mstax-album-column--right .mstax-search-inspiration-intro {
    margin-top: 8px;
    font-size: 1.02rem;
    line-height: 1.5;
}

.mstax-album-column--right .mstax-search-inspiration-grid {
    grid-template-columns: 1fr;
    gap: 8px;
}

.mstax-album-column--right .mstax-search-inspiration-item {
    min-height: 58px;
    padding: 12px 13px;
    border-radius: 10px;
}

.mstax-album-column--right .mstax-search-inspiration-query {
    font-size: 1.02rem;
    line-height: 1.35;
}

.mstax-album-column--right .mstax-search-inspiration-badge {
    font-size: 0.58rem;
}

.mstax-album-column--right .mstax-search-inspiration-arrow {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
}

.mstax-monetization-section {
    margin-top: auto;
    padding: 0;
    background: #f9f9f9;
    color: #111;
    border-top: 1px solid var(--mstax-panel-border);
}

/*
 * Monetization intentionally remains a light external-service surface. Apple
 * Music on the left and affiliate commerce on the right therefore share a
 * deliberate visual distinction from the dark MariaStacks system modules.
 */
.mstax-monetization-section .jpc-affiliate {
    width: 100%;
    margin: 0;
    padding: 20px;
    background: #f9f9f9;
    color: #111;
}

.mstax-monetization-section .jpc-hinweis {
    max-width: none;
    margin: 0 0 18px !important;
    color: #222;
    font-size: 0.88rem;
    line-height: 1.45;
}

.mstax-monetization-section .jpc-container {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    max-width: none;
    margin: 0;
    font-size: 1rem;
}

.mstax-monetization-section .jpc-image {
    display: block;
    flex: 0 0 44%;
    max-width: 170px;
}

.mstax-monetization-section .jpc-image img {
    display: block;
    width: 100%;
    height: auto;
}

.mstax-monetization-section .jpc-info {
    min-width: 0;
    color: #111;
}

.mstax-monetization-section .jpc-title,
.mstax-monetization-section .jpc-info h2.jpc-title {
    margin: 0 0 10px;
    color: #111;
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 600;
}

.mstax-monetization-section .jpc-button,
.mstax-monetization-section .jpc-button:link,
.mstax-monetization-section .jpc-button:visited {
    width: 100%;
    margin-top: 8px;
    padding: 9px 10px;
    border: 2px solid #CD842E;
    border-radius: 5px;
    background: transparent;
    color: #CD842E;
    font-size: 1rem;
    text-align: center;
}

.mstax-monetization-section .jpc-button:hover {
    background: #CD842E;
    color: #fff;
}

/* -------------------------------------------------------------------------- */
/* Common cut + discovery below the dashboard                                 */
/* -------------------------------------------------------------------------- */

.mstax-album-discovery {
    background: #070707;
    border-top: 1px solid rgba(255,255,255,0.10);
}

.mstax-album-discovery > .concept-match-slider {
    margin: 0;
    padding-top: clamp(4rem, 6vw, 7rem);
}

.mstax-album-discovery > .albums-section {
    margin-top: 0;
}

/* -------------------------------------------------------------------------- */
/* Medium / mobile composition                                                */
/* -------------------------------------------------------------------------- */

@media (max-width: 1179px) {
    .mstax-album-page {
        background: #080808;
    }

    .mstax-album-dashboard {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mstax-album-column {
        display: contents;
    }

    .mstax-album-identity,
    .mstax-album-column--left .concept-playlist-section,
    .mstax-album-column--center .mstax-match-section,
    .mstax-review-section,
    .mstax-album-column--right .mstax-search-inspiration-section,
    .mstax-album-column--right .mstax-mood-section,
    .mstax-monetization-section {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
    }

    .mstax-album-identity {
        order: 1;
    }

    .mstax-album-column--left .concept-playlist-section {
        order: 2;
    }

    .mstax-album-column--center .mstax-match-section {
        order: 3;
    }

    .mstax-review-section {
        order: 4;
    }

    .mstax-album-column--right .mstax-search-inspiration-section {
        order: 5;
    }

    .mstax-album-column--right .mstax-mood-section {
        order: 6;
    }

    .mstax-monetization-section {
        order: 7;
    }

    .mstax-album-identity,
    .mstax-album-column--left .concept-playlist-section,
    .mstax-album-column--center .mstax-match-section,
    .mstax-review-section,
    .mstax-album-column--right .mstax-search-inspiration-section,
    .mstax-album-column--right .mstax-mood-section {
        border: 0;
        border-top: 1px solid rgba(255,255,255,0.08);
        background: #0d0e10;
    }

    .mstax-monetization-section {
        border: 0;
        border-top: 1px solid rgba(255,255,255,0.08);
        background: #f9f9f9;
        color: #111;
    }

    .mstax-album-identity {
        border-top: 0;
    }

    .mstax-album-art-stage {
        padding: clamp(18px, 4vw, 34px);
    }

    .mstax-album-artwork {
        width: min(100%, 720px);
        margin: 0 auto;
    }

    .mstax-album-identity-body,
    .mstax-album-column--left .concept-playlist-section,
    .mstax-album-column--center .mstax-match-section,
    .mstax-review-section,
    .mstax-album-column--right .mstax-search-inspiration-section,
    .mstax-album-column--right .mstax-mood-section,
    .mstax-monetization-section {
        padding-left: max(24px, calc((100vw - 760px) / 2));
        padding-right: max(24px, calc((100vw - 760px) / 2));
    }

    .mstax-album-title {
        font-size: clamp(4rem, 7vw, 6.2rem);
    }

    .mstax-album-column--left .concept-playlist-inner,
    .mstax-album-column--center .mstax-match-shell,
    .mstax-album-column--right .mstax-search-inspiration-shell,
    .mstax-album-column--right .mstax-mood-shell {
        width: 100%;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

    .mstax-review-section > * {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

    .mstax-monetization-section .jpc-affiliate {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

    .mstax-album-column--right .mstax-mood-card {
        max-width: 620px;
        margin: 0 auto;
    }

    .mstax-album-column--right .mstax-mood-visual {
        width: min(100%, 540px);
    }

    .mstax-album-column--right .mstax-search-inspiration-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .mstax-album-identity-body,
    .mstax-album-column--left .concept-playlist-section,
    .mstax-album-column--center .mstax-match-section,
    .mstax-review-section,
    .mstax-album-column--right .mstax-search-inspiration-section,
    .mstax-album-column--right .mstax-mood-section,
    .mstax-monetization-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .mstax-album-identity-body {
        padding-top: 24px;
        padding-bottom: 28px;
    }

    .mstax-monetization-section {
        padding: 0;
    }

    .mstax-album-column--left .concept-playlist-section,
    .mstax-album-column--center .mstax-match-section,
    .mstax-review-section,
    .mstax-album-column--right .mstax-search-inspiration-section,
    .mstax-album-column--right .mstax-mood-section {
        padding-top: 28px;
        padding-bottom: 30px;
    }

    .mstax-album-meta-row {
        grid-template-columns: 108px minmax(0, 1fr);
    }

    .mstax-album-column--right .mstax-search-inspiration-grid {
        grid-template-columns: 1fr;
    }

    .mstax-album-column--left .concept-playlist-embed iframe {
        min-height: 450px;
    }

    .mstax-review-section .mstax-review__intro h2 {
        font-size: clamp(2.5rem, 8.3vw, 3.6rem);
    }
}

@media (max-width: 480px) {
    .mstax-album-art-stage {
        padding: 12px;
    }

    .mstax-album-title {
        font-size: clamp(3.8rem, 13vw, 5rem);
    }

    .mstax-album-rating-ring {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
    }

    .mstax-album-meta-row {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 10px;
    }

    .mstax-album-column--left .concept-playlist-section,
    .mstax-album-column--center .mstax-match-section,
    .mstax-review-section,
    .mstax-album-column--right .mstax-search-inspiration-section,
    .mstax-album-column--right .mstax-mood-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .mstax-monetization-section {
        padding-left: 0;
        padding-right: 0;
    }
}
