/* =========================================================
   DPT PREDICTIONS PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.predictions-hero {

    position: relative;

    min-height: 100vh;

    padding:
        145px 0
        90px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: #ffffff;

    background:

        radial-gradient(
            circle at 76% 45%,
            rgba(255,255,255,.07),
            transparent 28%
        ),

        radial-gradient(
            circle at 16% 85%,
            rgba(72,55,44,.09),
            transparent 30%
        ),

        #080808;

}


.prediction-grid-background {

    position: absolute;

    inset: 0;

    opacity: .15;

    background-image:

        linear-gradient(
            rgba(255,255,255,.04) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.04) 1px,
            transparent 1px
        );

    background-size:
        56px 56px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 95%
        );

}


.prediction-orbit {

    position: absolute;

    border:
        1px solid
        rgba(255,255,255,.055);

    border-radius: 50%;

}


.prediction-orbit-one {

    width: 570px;
    height: 570px;

    right: -200px;
    top: 100px;

}


.prediction-orbit-two {

    width: 330px;
    height: 330px;

    left: -140px;
    bottom: -120px;

}


.predictions-hero-layout {

    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        1fr .93fr;

    gap: 75px;

    align-items: center;

}



/* =========================================================
   HERO COPY
========================================================= */

.predictions-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    color:
        rgba(255,255,255,.54);

    font-size: .64rem;

    font-weight: 800;

    letter-spacing: .18em;

}


.predictions-eyebrow span {

    width: 35px;
    height: 35px;

    display: grid;

    place-items: center;

    color: #ffffff;

    border:
        1px solid
        rgba(255,255,255,.22);

    border-radius: 50%;

    letter-spacing: 0;

}


.predictions-hero-copy h1 {

    margin-top: 28px;

    font:
        700
        clamp(4rem,7.5vw,7.5rem)
        /.88
        var(--display-font);

    letter-spacing:
        -.075em;

}


.predictions-hero-copy h1 em {

    display: block;

    color:
        rgba(255,255,255,.42);

    font-style: normal;

}


.predictions-hero-description {

    max-width: 670px;

    margin-top: 30px;

    color:
        rgba(255,255,255,.57);

    font-size: .96rem;

}


.predictions-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 32px;

}


.predictions-primary-button,
.predictions-secondary-button {

    min-height: 49px;

    padding:
        0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border-radius: 4px;

    font-size: .67rem;

    font-weight: 800;

    transition:
        transform .25s ease;

}


.predictions-primary-button {

    color: #111111;

    background: #ffffff;

}


.predictions-secondary-button {

    color: #ffffff;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid
        rgba(255,255,255,.15);

}


.predictions-primary-button:hover,
.predictions-secondary-button:hover {

    transform:
        translateY(-3px);

}



/* =========================================================
   HERO DATA
========================================================= */

.prediction-hero-data {

    max-width: 680px;

    margin-top: 44px;

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 1px;

    background:
        rgba(255,255,255,.09);

    border:
        1px solid
        rgba(255,255,255,.09);

}


.prediction-hero-data div {

    padding:
        13px 15px;

    background:
        rgba(8,8,8,.92);

}


.prediction-hero-data span,
.prediction-hero-data strong {

    display: block;

}


.prediction-hero-data span {

    color:
        rgba(255,255,255,.25);

    font-size: .46rem;

    font-weight: 800;

    letter-spacing: .11em;

}


.prediction-hero-data strong {

    margin-top: 3px;

    color:
        rgba(255,255,255,.76);

    font-size: .62rem;

}



/* =========================================================
   TERMINAL
========================================================= */

.prediction-terminal {

    border:
        1px solid
        rgba(255,255,255,.12);

    background:
        rgba(255,255,255,.022);

    box-shadow:
        0 45px 100px
        rgba(0,0,0,.38);

}


.prediction-terminal-header {

    padding:
        14px 17px;

    display: flex;

    justify-content:
        space-between;

    color:
        rgba(255,255,255,.33);

    border-bottom:
        1px solid
        rgba(255,255,255,.09);

    font-size: .50rem;

    font-weight: 800;

    letter-spacing: .13em;

}


.prediction-terminal-status {

    display: flex;

    align-items: center;

    gap: 6px;

}


.prediction-terminal-status i {

    font-size: .33rem;

    color: #ffffff;

}


.prediction-terminal-body {

    padding:
        46px 35px;

}


.prediction-terminal-stage {

    display: grid;

    grid-template-columns:
        43px 1fr;

    gap: 15px;

    align-items: center;

    opacity: .38;

    transition:
        opacity .3s ease,
        transform .3s ease;

}


.prediction-terminal-stage.active {

    opacity: 1;

    transform:
        translateX(7px);

}


.prediction-terminal-stage > span {

    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(255,255,255,.18);

    border-radius: 50%;

    font:
        700 .65rem
        var(--display-font);

}


.prediction-terminal-stage.active > span {

    color: #111111;

    background: #ffffff;

}


.prediction-terminal-stage small {

    display: block;

    color:
        rgba(255,255,255,.29);

    font-size: .45rem;

    font-weight: 800;

    letter-spacing: .12em;

}


.prediction-terminal-stage strong {

    display: block;

    margin-top: 2px;

    font-size: .67rem;

}


.prediction-terminal-line {

    width: 1px;
    height: 31px;

    margin:
        6px 0
        6px 20px;

    background:
        rgba(255,255,255,.12);

}


.prediction-terminal-equation {

    padding:
        20px;

    border-top:
        1px solid
        rgba(255,255,255,.09);

}


.prediction-terminal-equation > span {

    color:
        rgba(255,255,255,.25);

    font-size: .45rem;

    font-weight: 800;

    letter-spacing: .12em;

}


.prediction-terminal-equation > div {

    margin-top: 12px;

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 10px;

    color:
        rgba(255,255,255,.70);

    font:
        600 .68rem
        var(--display-font);

}


.prediction-terminal-equation i {

    color:
        rgba(255,255,255,.21);

    font-size: .58rem;

}


.prediction-terminal-footer {

    padding:
        14px 17px;

    color:
        rgba(255,255,255,.30);

    border-top:
        1px solid
        rgba(255,255,255,.09);

    font-size: .52rem;

    text-align: center;

}



/* =========================================================
   SECTIONS
========================================================= */

.prediction-principle,
.prediction-program,
.prediction-readiness,
.falsification-protocol,
.prediction-priorities,
.experimental-pipeline,
.prediction-status-section {

    position: relative;

    padding:
        112px 0;

}


.prediction-section-heading,
.prediction-principle-layout {

    display: grid;

    grid-template-columns:
        .40fr 1.1fr;

    gap: 80px;

    margin-bottom: 60px;

}


.prediction-section-number {

    display: block;

    margin-bottom: 8px;

    color:
        rgba(20,20,20,.17);

    font:
        700 3.3rem
        var(--display-font);

    line-height: 1;

}


.dark-heading
.prediction-section-number,
.prediction-program
.prediction-section-number {

    color:
        rgba(255,255,255,.14);

}


.prediction-section-heading h2,
.prediction-principle h2 {

    max-width: 850px;

    font:
        700
        clamp(2.8rem,5vw,5rem)
        /.95
        var(--display-font);

    letter-spacing:
        -.057em;

}


.prediction-section-heading
> div:last-child
> p,
.prediction-principle-layout
> div:last-child
> p {

    max-width: 740px;

    margin-top: 18px;

    opacity: .58;

}



/* =========================================================
   FIT VS PREDICTION
========================================================= */

.prediction-vs-fit {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 9px;

    margin-top: 45px;

}


.prediction-method {

    min-height: 280px;

    padding: 25px;

    border:
        1px solid
        rgba(20,20,20,.12);

}


.prediction-method > span {

    color: #99999d;

    font-size: .48rem;

    font-weight: 800;

    letter-spacing: .12em;

}


.prediction-method h3 {

    margin-top: 8px;

    font:
        700 1.55rem
        var(--display-font);

}


.weak-method {

    opacity: .58;

}


.strong-method {

    border:
        2px solid #181818;

}


.method-flow {

    margin-top: 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 8px;

}


.method-flow span {

    padding:
        8px 10px;

    border:
        1px solid
        rgba(20,20,20,.12);

    font-size: .54rem;

    font-weight: 800;

}


.method-flow i {

    color: #aaa;

    font-size: .57rem;

}


.prediction-method p {

    margin-top: 30px;

    color: #727277;

    font-size: .68rem;

}



/* =========================================================
   FILTER BAR
========================================================= */

.prediction-filter-bar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    margin-bottom: 15px;

}


.prediction-filters {

    display: flex;

    flex-wrap: wrap;

    gap: 5px;

}


.prediction-filter {

    min-height: 38px;

    padding:
        0 14px;

    color:
        rgba(255,255,255,.45);

    background:
        transparent;

    border:
        1px solid
        rgba(255,255,255,.10);

    cursor: pointer;

    font-size: .57rem;

    font-weight: 800;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease;

}


.prediction-filter:hover {

    color: #ffffff;

    border-color:
        rgba(255,255,255,.30);

}


.prediction-filter.active {

    color: #111111;

    background: #ffffff;

    border-color: #ffffff;

}


.prediction-filter-count {

    display: flex;

    align-items: baseline;

    gap: 6px;

}


.prediction-filter-count strong {

    color: #ffffff;

    font:
        700 1.5rem
        var(--display-font);

}


.prediction-filter-count span {

    color:
        rgba(255,255,255,.28);

    font-size: .45rem;

    font-weight: 800;

    letter-spacing: .11em;

}



/* =========================================================
   PREDICTION ENTRY
========================================================= */

.prediction-entry {

    display: grid;

    grid-template-columns:
        105px 1fr;

    margin-bottom: 9px;

    color: #ffffff;

    background:
        rgba(255,255,255,.022);

    border:
        1px solid
        rgba(255,255,255,.10);

    transition:
        border-color .28s ease,
        background .28s ease,
        transform .28s ease;

}


.prediction-entry:hover {

    border-color:
        rgba(255,255,255,.25);

    background:
        rgba(255,255,255,.035);

}


.prediction-entry.filtered-out {

    display: none;

}


.prediction-entry.open {

    border-color:
        rgba(255,255,255,.32);

}


.prediction-entry-index {

    padding: 27px 20px;

    border-right:
        1px solid
        rgba(255,255,255,.09);

}


.prediction-entry-index span {

    display: block;

    color:
        rgba(255,255,255,.16);

    font:
        700 2.5rem
        var(--display-font);

}


.prediction-entry-index small {

    display: block;

    margin-top: 7px;

    color:
        rgba(255,255,255,.28);

    font-size: .45rem;

    font-weight: 800;

    letter-spacing: .12em;

}


.prediction-entry-main {

    padding:
        26px 30px;

}


.prediction-entry-header {

    display: flex;

    justify-content: space-between;

    gap: 30px;

    align-items: flex-start;

}


.prediction-status {

    display: inline-block;

    padding:
        4px 7px;

    color:
        rgba(255,255,255,.42);

    border:
        1px solid
        rgba(255,255,255,.11);

    font-size: .43rem;

    font-weight: 800;

    letter-spacing: .10em;

}


.prediction-status.development {

    color: #ffffff;

    border-color:
        rgba(255,255,255,.28);

}


.prediction-status.requires-equation {

    border-style: dashed;

}


.prediction-entry h3 {

    margin-top: 9px;

    font:
        700
        clamp(1.4rem,2.4vw,2.1rem)
        var(--display-font);

    letter-spacing:
        -.035em;

}


.prediction-expand-button {

    flex:
        0 0 auto;

    min-width: 105px;

    min-height: 37px;

    padding:
        0 11px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 10px;

    color:
        rgba(255,255,255,.50);

    background:
        transparent;

    border:
        1px solid
        rgba(255,255,255,.11);

    cursor: pointer;

    font-size: .54rem;

    font-weight: 800;

}


.prediction-expand-button:hover {

    color: #ffffff;

}


.prediction-claim {

    max-width: 780px;

    margin-top: 15px;

    color:
        rgba(255,255,255,.48);

    font-size: .75rem;

}



/* =========================================================
   EQUATION
========================================================= */

.prediction-equation {

    margin-top: 20px;

    padding:
        14px 17px;

    display: grid;

    grid-template-columns:
        160px 1fr;

    gap: 20px;

    align-items: center;

    background: #080808;

    border:
        1px solid
        rgba(255,255,255,.08);

}


.prediction-equation > span {

    color:
        rgba(255,255,255,.24);

    font-size: .43rem;

    font-weight: 800;

    letter-spacing: .12em;

}


.prediction-equation > div {

    color:
        rgba(255,255,255,.80);

    font-family:
        "Cambria Math",
        "Times New Roman",
        serif;

    font-size:
        clamp(1.1rem,2vw,1.45rem);

    text-align: center;

}


.equation-incomplete {

    border-style: dashed;

}



/* =========================================================
   EXPANDABLE DETAILS
========================================================= */

.prediction-expandable {

    display: grid;

    grid-template-rows:
        0fr;

    opacity: 0;

    transition:
        grid-template-rows .4s ease,
        opacity .35s ease,
        padding .35s ease;

}


.prediction-entry.open
.prediction-expandable {

    grid-template-rows:
        1fr;

    opacity: 1;

    padding-top: 23px;

}


.prediction-detail-grid {

    min-height: 0;

    overflow: hidden;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 7px;

}


.prediction-detail-grid > div {

    padding: 18px;

    border:
        1px solid
        rgba(255,255,255,.09);

}


.prediction-detail-grid span {

    color:
        rgba(255,255,255,.25);

    font-size: .43rem;

    font-weight: 800;

    letter-spacing: .12em;

}


.prediction-detail-grid p {

    margin-top: 7px;

    color:
        rgba(255,255,255,.45);

    font-size: .65rem;

}


.falsification-detail {

    border:
        1px solid
        rgba(255,255,255,.25)
        !important;

}



/* =========================================================
   READINESS TABLE
========================================================= */

.readiness-table-wrap {

    overflow-x: auto;

    border:
        1px solid
        rgba(20,20,20,.12);

}


.prediction-readiness-table {

    width: 100%;

    border-collapse: collapse;

}


.prediction-readiness-table th,
.prediction-readiness-table td {

    padding:
        15px 18px;

    text-align: left;

    border-bottom:
        1px solid
        rgba(20,20,20,.08);

}


.prediction-readiness-table th {

    color: #99999d;

    font-size: .49rem;

    font-weight: 800;

    letter-spacing: .10em;

}


.prediction-readiness-table td {

    color: #55555a;

    font-size: .66rem;

}


.prediction-readiness-table
tbody tr {

    transition:
        background .2s ease;

}


.prediction-readiness-table
tbody tr:hover {

    background: #f7f7f5;

}


.prediction-readiness-table td:first-child {

    color: #111111;

    font:
        700 .74rem
        var(--display-font);

}


.matrix-yes {

    color: #111111;

    font-weight: 800;

}


.matrix-partial {

    color: #777;

    font-weight: 800;

}


.matrix-no {

    color: #bbb;

    font-weight: 800;

}


.readiness-key {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 15px;

    color: #77777c;

    font-size: .57rem;

}


.readiness-key span {

    display: flex;

    align-items: center;

    gap: 6px;

}



/* =========================================================
   FALSIFICATION FLOW
========================================================= */

.falsification-flow {

    display: grid;

    grid-template-columns:
        1fr 45px
        1fr 45px
        1fr 45px
        1fr;

    align-items: center;

}


.falsification-stage {

    min-height: 260px;

    padding: 22px;

    border:
        1px solid
        rgba(255,255,255,.10);

}


.falsification-stage > span {

    color:
        rgba(255,255,255,.16);

    font:
        700 1.5rem
        var(--display-font);

}


.falsification-stage > i {

    display: block;

    margin-top: 35px;

    color:
        rgba(255,255,255,.62);

}


.falsification-stage h3 {

    margin-top: 15px;

    font:
        700 1rem
        var(--display-font);

}


.falsification-stage p {

    margin-top: 7px;

    color:
        rgba(255,255,255,.40);

    font-size: .61rem;

}


.falsification-arrow {

    display: grid;

    place-items: center;

    color:
        rgba(255,255,255,.20);

}


.falsification-statement {

    margin-top: 35px;

    padding: 34px;

    text-align: center;

    border:
        1px solid
        rgba(255,255,255,.12);

}


.falsification-statement span {

    color:
        rgba(255,255,255,.28);

    font-size: .47rem;

    font-weight: 800;

    letter-spacing: .13em;

}


.falsification-statement blockquote {

    max-width: 900px;

    margin:
        15px auto 0;

    color:
        rgba(255,255,255,.80);

    font:
        600
        clamp(1.4rem,2.6vw,2.4rem)
        /1.15
        var(--display-font);

}



/* =========================================================
   PRIORITIES
========================================================= */

.priority-list {

    border-top:
        1px solid
        rgba(20,20,20,.12);

}


.priority-item {

    min-height: 155px;

    padding:
        26px 10px;

    display: grid;

    grid-template-columns:
        90px 1fr auto;

    gap: 30px;

    align-items: center;

    border-bottom:
        1px solid
        rgba(20,20,20,.12);

    transition:
        padding .3s ease,
        background .3s ease;

}


.priority-item:hover {

    padding-left: 20px;

    padding-right: 20px;

    background: #ffffff;

}


.priority-rank {

    color:
        rgba(20,20,20,.15);

    font:
        700 2.3rem
        var(--display-font);

}


.priority-item span {

    color: #99999d;

    font-size: .45rem;

    font-weight: 800;

    letter-spacing: .12em;

}


.priority-item h3 {

    margin-top: 4px;

    font:
        700 1.25rem
        var(--display-font);

}


.priority-item p {

    max-width: 740px;

    margin-top: 6px;

    color: #717176;

    font-size: .66rem;

}


.priority-item > a {

    min-height: 42px;

    padding:
        0 13px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #ffffff;

    background: #111111;

    font-size: .56rem;

    font-weight: 800;

}



/* =========================================================
   EXPERIMENTAL PIPELINE
========================================================= */

.experimental-pipeline-track {

    position: relative;

    display: grid;

    grid-template-columns:
        repeat(6,1fr);

}


.pipeline-line {

    position: absolute;

    top: 27px;

    left: 8.33%;

    width: 83.33%;
    height: 1px;

    background:
        rgba(20,20,20,.12);

}


.pipeline-line span {

    display: block;

    width: 0;

    height: 100%;

    background: #111111;

    transition:
        width 1.3s ease;

}


.pipeline-stage {

    position: relative;

    z-index: 3;

    text-align: center;

}


.pipeline-node {

    width: 55px;
    height: 55px;

    margin:
        0 auto 19px;

    display: grid;

    place-items: center;

    color: #777;

    background: #ffffff;

    border:
        1px solid
        rgba(20,20,20,.17);

    border-radius: 50%;

    font:
        700 .63rem
        var(--display-font);

}


.pipeline-stage.completed
.pipeline-node {

    color: #ffffff;

    background: #111111;

}


.pipeline-stage.current
.pipeline-node {

    border:
        2px solid #45372e;

    box-shadow:
        0 0 0 7px
        rgba(69,55,46,.07);

}


.pipeline-stage > span {

    color: #99999d;

    font-size: .43rem;

    font-weight: 800;

    letter-spacing: .10em;

}


.pipeline-stage strong {

    display: block;

    margin-top: 4px;

    font-size: .61rem;

}



/* =========================================================
   SCIENTIFIC STATUS
========================================================= */

.prediction-status-layout {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 90px;

}


.prediction-status-layout
> div:first-child
> span {

    color:
        rgba(255,255,255,.27);

    font-size: .49rem;

    font-weight: 800;

    letter-spacing: .13em;

}


.prediction-status-layout h2 {

    margin-top: 10px;

    font:
        700
        clamp(2.7rem,4.8vw,4.8rem)
        /.94
        var(--display-font);

    letter-spacing:
        -.055em;

}


.prediction-status-layout
> div:last-child
> p {

    margin-bottom: 17px;

    color:
        rgba(255,255,255,.48);

    font-size: .76rem;

}


.prediction-status-layout a {

    min-height: 44px;

    margin-top: 10px;

    padding:
        0 15px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #111111;

    background: #ffffff;

    font-size: .57rem;

    font-weight: 800;

}



/* =========================================================
   CONTINUE
========================================================= */

.prediction-continue {

    padding:
        90px 0;

}


.prediction-continue-layout {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 50px;

}


.prediction-continue-layout
> div:first-child span {

    color: #99999d;

    font-size: .47rem;

    font-weight: 800;

    letter-spacing: .13em;

}


.prediction-continue h2 {

    margin-top: 7px;

    font:
        700
        clamp(2.3rem,4.3vw,4.1rem)
        /.96
        var(--display-font);

    letter-spacing:
        -.055em;

}


.prediction-continue-links {

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

}


.prediction-continue-links a {

    min-height: 43px;

    padding:
        0 14px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #111111;

    border:
        1px solid
        rgba(20,20,20,.13);

    font-size: .57rem;

    font-weight: 800;

}


.prediction-continue-primary {

    color: #ffffff !important;

    background: #111111;

}



/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1050px) {

    .predictions-hero-layout {

        grid-template-columns:
            1fr;

    }


    .prediction-terminal {

        max-width: 720px;

    }


    .falsification-flow {

        grid-template-columns:
            1fr 1fr;

        gap: 10px;

    }


    .falsification-arrow {

        display: none;

    }


    .experimental-pipeline-track {

        grid-template-columns:
            repeat(3,1fr);

        gap:
            35px 10px;

    }


    .pipeline-line {

        display: none;

    }


    .prediction-status-layout {

        grid-template-columns:
            1fr;

        gap: 45px;

    }

}



@media(max-width:760px) {

    .prediction-section-heading,
    .prediction-principle-layout {

        grid-template-columns:
            1fr;

        gap: 20px;

    }


    .prediction-vs-fit {

        grid-template-columns:
            1fr;

    }


    .prediction-filter-bar {

        align-items: flex-start;

        flex-direction: column;

    }


    .prediction-entry {

        grid-template-columns:
            1fr;

    }


    .prediction-entry-index {

        padding:
            17px 20px;

        display: flex;

        align-items: baseline;

        gap: 10px;

        border-right: 0;

        border-bottom:
            1px solid
            rgba(255,255,255,.09);

    }


    .prediction-entry-index span {

        font-size: 1.6rem;

    }


    .prediction-detail-grid {

        grid-template-columns:
            1fr;

    }


    .prediction-equation {

        grid-template-columns:
            1fr;

    }


    .prediction-equation > div {

        text-align: left;

    }


    .priority-item {

        grid-template-columns:
            65px 1fr;

    }


    .priority-item > a {

        grid-column:
            2;

        width: fit-content;

    }


    .experimental-pipeline-track {

        grid-template-columns:
            1fr 1fr;

    }


    .prediction-continue-layout {

        flex-direction: column;

        align-items: flex-start;

    }

}



@media(max-width:520px) {

    .predictions-hero {

        padding-top: 125px;

    }


    .prediction-hero-data {

        grid-template-columns:
            1fr;

    }


    .prediction-entry-main {

        padding:
            22px 18px;

    }


    .prediction-entry-header {

        flex-direction: column;

    }


    .prediction-expand-button {

        width: 100%;

    }


    .method-flow {

        align-items: stretch;

        flex-direction: column;

    }


    .method-flow i {

        transform:
            rotate(90deg);

        text-align: center;

    }


    .falsification-flow {

        grid-template-columns:
            1fr;

    }


    .experimental-pipeline-track {

        grid-template-columns:
            1fr;

    }


    .priority-item {

        grid-template-columns:
            1fr;

    }


    .priority-item > a {

        grid-column: auto;

    }

}