.stages {
    margin-top: 12.5rem;
}

.stages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3.75rem;
}

.stages__card {
    background: #f3f4f6;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stages__card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.stages__card-num {
    font-size: 2rem;
    font-weight: 600;
    color: var(--black);
}

.stages__card-label {
    font-size: 1.35rem;
    font-weight: 600;
    color: #9598a1;
    white-space: nowrap;
}

.stages__card-list {
    list-style: disc;
    padding-left: 2rem;
}

.stages__card-list li {
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.stages__card-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .stages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stages__card {
        padding: 1.25rem;
        min-height: 12.5rem;
    }
}

@media (max-width: 639px) {
    .stages__grid {
        grid-template-columns: 1fr;
    }

    .stages__card {
        min-height: auto;
    }
}
