.plan-list {
    max-width: 900px;
    height: fit-content;
    display: flex;
    flex-direction: column;

    padding-top: 28px;
    margin: 28px auto 0 auto;
    border-top: 1px solid var(--text-color);
}

.plan {
    margin: 0 0 100px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-title {
    font-family: "Tektur";
    font-size: 28px;
    padding: 0 12px;
    font-weight: 600;
    background-color: var(--text-color);
    color: var(--background-color);
    width: fit-content;
}

.plan-description {
    font-family: "Rubik";
    font-size: 18px;
}

.plan-list-splitline {
    width: 80%;
    height: 1px;
    background-color: var(--text-color);
    margin: 0 auto;
}

.plan-statusbar {
    display: flex;

    width: 70%;
    height: 25px;
    margin: 0 auto;

    background: var(--background-color);
    border: 3px solid var(--text-color);

    position: relative;
}

.plan-statusbar-fill {
    height: 100%;

    background: var(--text-color);

    margin: 0 auto 0 0;
}

.plan-statusbar-name {
    font-family: "Tektur";
    font-weight: 700;
    font-size: 18px;
    mix-blend-mode: difference;

    width: 100%;
    text-align: center;

    position: absolute;
}


@media (max-width: 610px) {
    .plan-statusbar {
        width: 100%;
    }

    .plan-title {
        font-size: 24px;
        font-weight: 500;
    }

    .plan-description {
        font-size: 16px;
        font-weight: 300;
    }

    .plan-list-splitline {
        width: 90%;
    }
}