.practice-finish {
    margin-top: 2rem;
}

.finish-card {
    max-width: 760px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcf9 100%);
    border: 1px solid rgba(25, 135, 84, 0.12);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    box-shadow: 0 16px 40px rgba(16, 24, 40, 0.08);
}

.finish-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.finish-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(25, 135, 84, 0.12);
    color: #198754;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.finish-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(25, 135, 84, 0.1);
    color: #146c43;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.finish-title {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 800;
    color: #17324d;
    margin-bottom: 0.75rem;
}

.finish-text {
    max-width: 560px;
    margin: 0 auto 1.5rem;
    color: #5b6b7d;
    font-size: 1.02rem;
    line-height: 1.7;
}

.finish-actions {
    margin-bottom: 1.75rem;
}

.finish-divider {
    position: relative;
    margin: 1.75rem 0 1.25rem;
    text-align: center;
}

.finish-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
    transform: translateY(-50%);
}

.finish-divider span {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0 0.85rem;
    background: #fff;
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.finish-recommendation {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
    background: #ffffff;
    border: 1px solid #eef2f4;
    border-radius: 18px;
    padding: 1rem;
    max-width: 620px;
    margin: 0 auto;
}

.finish-recommendation-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.finish-recommendation-title {
    font-size: 1rem;
    font-weight: 700;
    color: #17324d;
    margin-bottom: 0.35rem;
}

.finish-recommendation-text {
    color: #5b6b7d;
    font-size: 0.95rem;
    line-height: 1.65;
}

.finish-recommendation-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #198754;
    font-weight: 700;
    text-decoration: none;
}

.finish-recommendation-link:hover {
    color: #146c43;
    text-decoration: underline;
}

.finish-note {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: #98a2b3;
}

@media (max-width: 576px) {
    .finish-card {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .finish-recommendation {
        flex-direction: column;
        gap: 0.75rem;
    }

    .finish-actions .btn {
        width: 100%;
    }
}