/* Overview page specific styles */
footer{
    padding-bottom: 2vh;
}
.overview-content {
    padding-top: 0vh;
}

.system-list {
    list-style: none;
    counter-reset: system-counter;
    margin: 0;
    padding: 0;
}

.system-list li {
    counter-increment: system-counter;
    margin-bottom: 6vh;
    display: flex;
    align-items: flex-start;
}

.system-list li::before {
    content: counter(system-counter);
    font-family: 'FormaTextTest', 'Inter', sans-serif;
    font-size: 3.5vh;
    font-weight: 600;
    color: black;
    margin-right: 4vw;
    min-width: 2em;
}

.system-link {
    color: inherit;
    display: block;
    flex: 1;
    text-transform: uppercase;
    transform: scaleY(1.2);
}

.system-title {
    font-family: 'FormaTextTest', 'Inter', sans-serif;
    font-size: 4.5vh;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 1vh;
    text-transform: uppercase;
    line-height: 1.2;
    display: inline-block;
}

.system-link:hover .system-title {
    opacity: 0.7;
}

/* Mobile (small screens) */
@media (max-width: 600px) {
    .overview-content {
        padding-top: 2vh;
    }

    .system-list li {
        margin-bottom: 6vh;
    }

    .system-list li::before {
        font-size: 5vh;
        margin-right: 4vw;
        min-width: 1.5em;
    }

    .system-title {
        font-size: 4vh;
    }
}

/* Medium screens */
@media (min-width: 600px) and (max-width: 1199px) {
    .overview-content {
        padding-top: 2vh;
    }

    .system-list li {
        margin-bottom: 8vh;
    }

    .system-list li::before {
        font-size: 4vh;
        margin-right: 3vw;
    }

    .system-title {
        font-size: 5vh;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .overview-content {
        padding-top: 2vh;
    }

    .system-list li {
        margin-bottom: 10vh;
    }

    .system-list li::before {
        font-size: 3.5vh;
        margin-right: 2vw;
    }

    .system-title {
        font-size: 4vh;
    }
}
