/* Pillars Explorer Page */

.pillars-explorer-page {
    background: #f8f9fa;
    color: #4a5568;
}

.pillars-explorer-container {
    width: min(1320px, calc(100% - 2rem));
    margin-inline: auto;
}

/* Hero */

.pillars-explorer-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(214, 158, 46, 0.14), transparent 28%),
        radial-gradient(circle at left bottom, rgba(255, 255, 255, 0.08), transparent 32%),
        linear-gradient(135deg, #16324f 0%, #1a365d 52%, #21486e 100%);
}

.pillars-explorer-hero__backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        radial-gradient(circle at 85% 12%, rgba(214, 158, 46, 0.1), transparent 22%);
    pointer-events: none;
}

.pillars-explorer-hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.5rem;
    padding: 3rem 0 2.5rem;
}

.pillars-explorer-hero__eyebrow {
    margin: 0;
    color: #f0d79b;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pillars-explorer-hero__title {
    margin: 0.85rem 0 0;
    color: #ffffff;
    font-family: 'Merriweather', serif;
    font-size: clamp(2.4rem, 4.8vw, 4.5rem);
    line-height: 1.08;
}

.pillars-explorer-hero__intro {
    max-width: 42rem;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
}

.pillars-explorer-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 1.125rem;
}

.pillars-explorer-hero__chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0.625rem 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
}

.pillars-explorer-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-top: 1.5rem;
}

.pillars-explorer-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0.875rem 1.125rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    transition:
        border-color 180ms ease,
        background-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.pillars-explorer-secondary-link:hover,
.pillars-explorer-secondary-link:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(8, 22, 39, 0.22);
}

.pillars-explorer-hero-card {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    box-shadow: 0 16px 34px rgba(6, 18, 32, 0.18);
}

.pillars-explorer-hero-card__label {
    margin: 0;
    color: #d69e2e;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pillars-explorer-hero-card__title {
    margin: 0.65rem 0 0;
    color: #ffffff;
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    line-height: 1.35;
}

.pillars-explorer-hero-card__text {
    margin: 0.85rem 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
}

.pillars-explorer-hero-card__list {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.pillars-explorer-hero-card__list li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.55rem 0;
    color: #f7f3e8;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.5;
}

.pillars-explorer-hero-card__list-label {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Shared headings */

.pillars-explorer-section-head {
    margin-bottom: 1rem;
}

.pillars-explorer-section-head--centered {
    text-align: center;
    display: grid;
    justify-items: center;
}

.pillars-explorer-section-title {
    margin: 0;
    color: #1a365d;
    font-family: 'Merriweather', serif;
    font-size: 1.65rem;
    line-height: 1.25;
}

.pillars-explorer-section-title--light {
    color: #ffffff;
}

.pillars-explorer-section-text {
    max-width: 42rem;
    margin: 0.65rem 0 0;
    color: #4a5568;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
}

.pillars-explorer-section-text--light {
    color: rgba(255, 255, 255, 0.84);
}

/* Temple section */

.pillars-explorer-temple {
    position: relative;
    overflow: hidden;
    padding: 2.25rem 0 2rem;
    background:
        radial-gradient(circle at 50% 22%, rgba(214, 158, 46, 0.22), transparent 20%),
        radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.06), transparent 34%),
        linear-gradient(180deg, #0f2740 0%, #13314d 48%, #173a59 100%);
}

.pillars-explorer-temple__backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.06), transparent 18%),
        radial-gradient(circle at 80% 18%, rgba(214, 158, 46, 0.08), transparent 16%),
        radial-gradient(circle at 50% 100%, rgba(214, 158, 46, 0.12), transparent 32%);
    opacity: 0.9;
}

.pillars-explorer-temple__container {
    position: relative;
    z-index: 1;
}

.pillars-explorer-orbit-shell {
    position: relative;
}

.pillars-explorer-orbit-mobile-frame {
    position: relative;
}

.pillars-explorer-orbit {
    position: relative;
    width: min(100%, 980px);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    min-height: 720px;
}

.pillars-explorer-orbit__floor {
    position: absolute;
    left: 50%;
    bottom: 9%;
    width: 82%;
    height: 22%;
    transform: translateX(-50%);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 244, 217, 0.32), rgba(214, 158, 46, 0.11) 56%, rgba(214, 158, 46, 0) 76%);
    filter: blur(10px);
    opacity: 0.98;
}

.pillars-explorer-orbit__ring {
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    border: 1px solid rgba(240, 215, 155, 0.18);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 0 0 18px rgba(255, 255, 255, 0.015);
}

.pillars-explorer-orbit-preview {
    position: absolute;
    inset: 50% auto auto 50%;
    width: min(380px, 56%);
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
}

.pillars-explorer-orbit-preview--standalone {
    pointer-events: auto;
}

.pillars-explorer-orbit-preview__inner {
    position: relative;
    padding: 1.6rem 1.35rem;
    border: 1px solid rgba(214, 158, 46, 0.32);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 250, 241, 0.98) 0%, rgba(247, 242, 230, 0.96) 100%);
    box-shadow:
        0 24px 46px rgba(6, 18, 33, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    text-align: center;
    animation: pillarsExplorerPreviewIn 320ms ease;
}

.pillars-explorer-orbit-preview__inner::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 36px;
    border: 1px solid rgba(240, 215, 155, 0.14);
    pointer-events: none;
}

.pillars-explorer-orbit-preview__eyebrow {
    margin: 0;
    color: #8b6a26;
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pillars-explorer-orbit-preview__title {
    margin: 0.7rem 0 0;
    color: #1a365d;
    font-family: 'Merriweather', serif;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    line-height: 1.28;
}

.pillars-explorer-orbit-preview__summary {
    margin: 0.85rem auto 0;
    color: #4a5568;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 30ch;
}

.pillars-explorer-orbit-preview__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1rem;
}

.pillars-explorer-orbit-preview__chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.55rem 0.8rem;
    border: 1px solid #e3dbcf;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #1a365d;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.pillars-explorer-orbit-preview__cta {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
    pointer-events: auto;
}

/* Image-based pillar buttons */

.pillars-explorer-orbit-pillars {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    width: 132px;
    padding: 0;
    border: 0;
    background: transparent;
    transform: translate(-50%, -50%);
    text-align: center;
    cursor: pointer;
    z-index: 2;
    transition:
        transform 220ms ease,
        filter 220ms ease,
        opacity 220ms ease;
}

.pillars-explorer-orbit-pillars:hover,
.pillars-explorer-orbit-pillars:focus-visible {
    transform: translate(-50%, calc(-50% - 6px));
}

.pillars-explorer-orbit-pillars__image-wrap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 14px 28px rgba(7, 19, 34, 0.34));
}

.pillars-explorer-orbit-pillars__image {
    display: block;
    width: 92px;
    height: auto;
    user-select: none;
    pointer-events: none;
    transform-origin: center bottom;
    transition:
        transform 220ms ease,
        filter 220ms ease,
        opacity 220ms ease;
}

.pillars-explorer-orbit-pillars__image-wrap::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 64px;
    height: 18px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(214, 158, 46, 0.28), rgba(214, 158, 46, 0));
    filter: blur(6px);
    opacity: 0.72;
    pointer-events: none;
}

.pillars-explorer-orbit-pillars__icon-badge {
    position: absolute;
    left: 50%;
    top: 16%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    transform: translateX(-50%);
    border: 1px solid rgba(240, 215, 155, 0.42);
    border-radius: 999px;
    background: rgba(18, 44, 71, 0.84);
    box-shadow:
        0 10px 18px rgba(6, 18, 33, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(3px);
}

.pillars-explorer-orbit-pillars__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f4d179;
    font-size: 0.95rem;
    line-height: 1;
    text-shadow: 0 0 14px rgba(244, 209, 121, 0.2);
    transition:
        color 180ms ease,
        transform 180ms ease,
        text-shadow 180ms ease;
}

.pillars-explorer-orbit-pillars__label {
    max-width: 11ch;
    color: rgba(255, 255, 255, 0.82);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.35;
    text-transform: uppercase;
    transition: color 180ms ease, opacity 180ms ease;
}

.pillars-explorer-orbit-pillars--active {
    transform: translate(-50%, calc(-50% - 8px));
    z-index: 4;
}

.pillars-explorer-orbit-pillars--active .pillars-explorer-orbit-pillars__image {
    transform: scale(1.08);
    filter: drop-shadow(0 10px 28px rgba(214, 158, 46, 0.18)) brightness(1.04);
}

.pillars-explorer-orbit-pillars--active .pillars-explorer-orbit-pillars__image-wrap::after {
    opacity: 1;
    background: radial-gradient(circle, rgba(214, 158, 46, 0.42), rgba(214, 158, 46, 0));
}

.pillars-explorer-orbit-pillars--active .pillars-explorer-orbit-pillars__icon-badge {
    border-color: rgba(240, 215, 155, 0.72);
    background: rgba(18, 44, 71, 0.92);
    box-shadow:
        0 12px 22px rgba(214, 158, 46, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.pillars-explorer-orbit-pillars--active .pillars-explorer-orbit-pillars__icon {
    color: #f7dfa0;
    transform: scale(1.06);
    text-shadow:
        0 0 0 8px rgba(214, 158, 46, 0.08),
        0 0 18px rgba(244, 209, 121, 0.32);
}

.pillars-explorer-orbit-pillars--active .pillars-explorer-orbit-pillars__label {
    color: #ffffff;
}

/* Detail section */

.pillars-explorer-main {
    padding: 1.75rem 0 2rem;
}

.pillars-explorer-main__layout {
    display: grid;
    gap: 1.5rem;
}

.pillars-explorer-preview {
    border: 1px solid #e4ddd1;
    border-radius: 16px;
    background: #fffdf8;
    box-shadow: 0 12px 28px rgba(26, 54, 93, 0.08);
    padding: 1.25rem;
}

.pillars-explorer-preview__header {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.pillars-explorer-preview__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 999px;
    background: #fff3d6;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.pillars-explorer-preview__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d69e2e;
    font-size: 1.1rem;
    line-height: 1;
}

.pillars-explorer-preview__eyebrow {
    margin: 0;
    color: #1a365d;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pillars-explorer-preview__title {
    margin: 0.3rem 0 0;
    color: #1a365d;
    font-family: 'Merriweather', serif;
    font-size: 1.45rem;
    line-height: 1.35;
}

.pillars-explorer-preview__mandate {
    margin: 1rem 0 0;
    color: #8b6a26;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.65;
}

.pillars-explorer-preview__description {
    margin: 0.9rem 0 0;
    color: #4a5568;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.75;
}

.pillars-explorer-preview__impact {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: #f7f2e6;
    color: #1a365d;
    font-family: 'Inter', sans-serif;
    font-size: 0.93rem;
    font-weight: 600;
    line-height: 1.7;
}

.pillars-explorer-preview-stats {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.15rem;
}

.pillars-explorer-stat-card {
    padding: 0.95rem;
    border: 1px solid #e4ddd1;
    border-radius: 12px;
    background: #ffffff;
}

.pillars-explorer-stat-card__label {
    margin: 0;
    color: #83672b;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pillars-explorer-stat-card__value {
    margin: 0.45rem 0 0;
    color: #1a365d;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.55;
}

.pillars-explorer-preview-block {
    margin-top: 1.15rem;
}

.pillars-explorer-preview-block__title {
    margin: 0;
    color: #1a365d;
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
}

.pillars-explorer-list {
    margin: 0.8rem 0 0;
    padding: 0;
    list-style: none;
}

.pillars-explorer-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.65;
}

.pillars-explorer-list__dot {
    width: 8px;
    height: 8px;
    margin-top: 0.45rem;
    border-radius: 999px;
    background: #d69e2e;
    flex-shrink: 0;
}

.pillars-explorer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 1.1rem;
}

.pillars-explorer-tag {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0.625rem 0.8rem;
    border: 1px solid #e3dbcf;
    border-radius: 999px;
    background: #ffffff;
    color: #1a365d;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
}

.pillars-explorer-preview__actions {
    margin-top: 1.25rem;
}

/* Info strip */

.pillars-explorer-info-strip {
    padding: 1.5rem 0 2rem;
    background: #14354b;
}

.pillars-explorer-info-strip__grid {
    display: grid;
    gap: 0.875rem;
}

.pillars-explorer-info-card {
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
}

.pillars-explorer-info-card__title {
    margin: 0;
    color: #d69e2e;
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    line-height: 1.3;
}

.pillars-explorer-info-card__text {
    margin: 0.7rem 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.75;
}

/* Focus */

.pillars-explorer-orbit-pillars:focus-visible,
.pillars-explorer-secondary-link:focus-visible {
    outline: 2px solid #d69e2e;
    outline-offset: 4px;
}

/* Animations */

@keyframes pillarsExplorerPreviewIn {
    0% {
        opacity: 0;
        transform: scale(0.96);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.pillars-explorer-orbit-preview__inner,
.pillars-explorer-orbit-preview__chips,
.pillars-explorer-orbit-mobile-frame,
.pillars-explorer-orbit {
    box-sizing: border-box;
}

/* Responsive */

@media (min-width: 768px) {
    .pillars-explorer-container {
        width: min(1320px, calc(100% - 2.5rem));
    }

    .pillars-explorer-preview-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pillars-explorer-info-strip__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pillars-explorer-temple {
        padding: 2.75rem 0 2.5rem;
    }
}

@media (min-width: 1100px) {
    .pillars-explorer-hero__container {
        grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.78fr);
        align-items: center;
        gap: 2rem;
        padding: 4rem 0 3rem;
    }

    .pillars-explorer-main__layout {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
    }

    .pillars-explorer-preview {
        padding: 1.5rem;
    }
}

@media (max-width: 899px) {
    .pillars-explorer-temple {
        overflow: hidden;
    }

    .pillars-explorer-temple__container,
    .pillars-explorer-orbit-shell,
    .pillars-explorer-orbit-preview,
    .pillars-explorer-orbit-preview__inner,
    .pillars-explorer-orbit-mobile-frame {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .pillars-explorer-orbit-shell {
        display: grid;
        gap: 1rem;
        overflow: hidden;
    }

    .pillars-explorer-orbit-preview {
        position: relative;
        inset: auto;
        transform: none;
        order: 0;
        z-index: auto;
    }

    .pillars-explorer-orbit-preview__inner {
        padding: 1.25rem 1rem;
        border-radius: 22px;
    }

    .pillars-explorer-orbit-preview__summary {
        max-width: 100%;
    }

    .pillars-explorer-orbit-preview__chips {
        gap: 0.5rem;
    }

    .pillars-explorer-orbit-preview__chip {
        min-width: 0;
        max-width: 100%;
        text-align: center;
    }

    .pillars-explorer-orbit-mobile-frame {
        position: relative;
        order: 1;
        overflow: hidden;
        padding-inline: 0;
        margin-inline: 0;
    }

    .pillars-explorer-orbit-mobile-frame::before,
    .pillars-explorer-orbit-mobile-frame::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 1.5rem;
        z-index: 3;
        pointer-events: none;
    }

    .pillars-explorer-orbit-mobile-frame::before {
        left: 0;
        background: linear-gradient(90deg, #153551 0%, rgba(21, 53, 81, 0) 100%);
    }

    .pillars-explorer-orbit-mobile-frame::after {
        right: 0;
        background: linear-gradient(270deg, #153551 0%, rgba(21, 53, 81, 0) 100%);
    }

    .pillars-explorer-orbit {
        order: 1;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        align-items: flex-end;
        gap: 0.9rem;
        width: 100%;
        max-width: 100%;
        min-height: auto;
        min-width: 0;
        aspect-ratio: auto;
        margin: 0;
        padding: 0.35rem 1rem 0.75rem;
        scroll-snap-type: x proximity;
        -ms-overflow-style: none;
        scrollbar-width: none;
        box-sizing: border-box;
    }

    .pillars-explorer-orbit::-webkit-scrollbar {
        display: none;
    }

    .pillars-explorer-orbit__floor,
    .pillars-explorer-orbit__ring {
        display: none;
    }

    .pillars-explorer-orbit-pillars {
        position: relative;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 112px;
        min-width: 112px;
        flex: 0 0 112px;
        scroll-snap-align: start;
    }

    .pillars-explorer-orbit-pillars:hover,
    .pillars-explorer-orbit-pillars:focus-visible {
        transform: none !important;
    }

    .pillars-explorer-orbit-pillars__image {
        width: 78px;
    }

    .pillars-explorer-orbit-pillars__icon-badge {
        width: 32px;
        height: 32px;
        top: 17%;
    }

    .pillars-explorer-orbit-pillars__icon {
        font-size: 0.82rem;
    }
}

@media (max-width: 599px) {
    .pillars-explorer-container {
        width: min(100% - 1.25rem, 1320px);
    }

    .pillars-explorer-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pillars-explorer-secondary-link {
        width: 100%;
    }

    .pillars-explorer-temple {
        padding: 2rem 0 1.75rem;
    }

    .pillars-explorer-section-title {
        font-size: 1.9rem;
    }

    .pillars-explorer-section-text {
        font-size: 0.95rem;
    }

    .pillars-explorer-orbit-preview__inner {
        padding: 1.125rem 0.9rem;
        border-radius: 20px;
    }

    .pillars-explorer-orbit-preview__title {
        font-size: 1.2rem;
    }

    .pillars-explorer-orbit-preview__summary {
        font-size: 0.92rem;
    }

    .pillars-explorer-orbit-preview__chips {
        justify-content: center;
    }

    .pillars-explorer-orbit-preview__chip {
        font-size: 0.76rem;
        padding: 0.5rem 0.7rem;
    }

    .pillars-explorer-orbit-mobile-frame::before,
    .pillars-explorer-orbit-mobile-frame::after {
        width: 1.1rem;
    }

    .pillars-explorer-orbit {
        gap: 0.75rem;
        padding: 0.25rem 0.85rem 0.65rem;
    }

    .pillars-explorer-orbit-pillars {
        width: 100px;
        min-width: 100px;
        flex-basis: 100px;
    }

    .pillars-explorer-orbit-pillars__image {
        width: 70px;
    }

    .pillars-explorer-orbit-pillars__icon-badge {
        width: 30px;
        height: 30px;
    }

    .pillars-explorer-orbit-pillars__icon {
        font-size: 0.78rem;
    }

    .pillars-explorer-orbit-pillars__label {
        font-size: 0.7rem;
        max-width: 10ch;
    }

    .pillars-explorer-preview {
        padding: 1rem;
    }

    .pillars-explorer-preview__header {
        gap: 0.75rem;
    }

    .pillars-explorer-preview__icon-wrap {
        width: 48px;
        height: 48px;
    }

    .pillars-explorer-preview__icon {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .pillars-explorer-secondary-link,
    .pillars-explorer-orbit-pillars,
    .pillars-explorer-orbit-pillars__image,
    .pillars-explorer-orbit-pillars__icon,
    .pillars-explorer-orbit-preview__inner,
    .pillars-explorer-orbit-pillars__label {
        transition: none;
        animation: none;
    }

    .pillars-explorer-secondary-link:hover,
    .pillars-explorer-orbit-pillars:hover,
    .pillars-explorer-orbit-pillars:focus-visible,
    .pillars-explorer-orbit-pillars--active {
        transform: none !important;
    }

    .pillars-explorer-orbit-pillars--active .pillars-explorer-orbit-pillars__image,
    .pillars-explorer-orbit-pillars--active .pillars-explorer-orbit-pillars__icon {
        transform: none;
    }

    .pillars-explorer-orbit {
        scroll-behavior: auto;
    }
}