/* ==================== FANDOM PATH SECTION ==================== */

.fandom-path-section {
    position: relative;
    width: 100vw;
    max-width: 100%;
    padding: 6rem 0;
    overflow: hidden;
    /* Uses the specific path's background color */
    background-color: var(--fandom-path-background);
    border-bottom: 4px solid var(--secondary-950);
}

.fandom-path-section__watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28vw;
    font-weight: 900;
    color: var(--fandom-path-accent);
    opacity: 0.08;
    /* Subtle but massive */
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    text-transform: uppercase;
}

.fandom-path-section__shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 4rem;
    align-items: center;
}

.fandom-path-section--reversed .fandom-path-section__shell {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.fandom-path-section--reversed .fandom-path-section__content {
    order: 2;
}

.fandom-path-section--reversed .fandom-path-section__media-wrap {
    order: 1;
}

.fandom-path-section__content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
}

.fandom-path-section__eyebrow {
    color: var(--fandom-path-accent);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
}

.fandom-path-section__title {
    color: var(--fandom-path-primary-text);
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    text-shadow: 3px 3px 0px var(--secondary-950);
    margin: 0;
}

.fandom-path-section__description {
    color: var(--fandom-path-secondary-text);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 54ch;
    text-align: start;
    margin: 0;
}

.fandom-path-section__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.fandom-path-section__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: var(--secondary-950);
    color: var(--fandom-path-accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid var(--fandom-path-accent);
}

.fandom-path-section__actions {
    margin-top: 1.5rem;
}

@media (max-width: 980px) {

    .fandom-path-section__shell,
    .fandom-path-section--reversed .fandom-path-section__shell {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fandom-path-section__content {
        align-items: center;
    }

    .fandom-path-section--reversed .fandom-path-section__content,
    .fandom-path-section--reversed .fandom-path-section__media-wrap {
        order: initial;
    }
}