/* Training Process Flow - 7064dd28 */

.tpf-7064dd28-wrapper {
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.tpf-7064dd28-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.tpf-7064dd28-header-text {
    flex: 1;
    min-width: 250px;
}

.tpf-7064dd28-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tpf-7064dd28-paw-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tpf-7064dd28-paw-icon i {
    font-size: inherit;
    color: inherit;
}

.tpf-7064dd28-paw-icon svg {
    display: block;
}

.tpf-7064dd28-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.tpf-7064dd28-title-colored {
    margin-left: 8px;
}

/* Button */
.tpf-7064dd28-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.tpf-7064dd28-button:hover {
    transform: translateY(-2px);
}

.tpf-7064dd28-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tpf-7064dd28-btn-icon i {
    font-size: inherit;
    color: inherit;
}

.tpf-7064dd28-btn-icon svg {
    display: block;
}

/* Steps Grid */
.tpf-7064dd28-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.tpf-7064dd28-step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 8px;
}

/* Number Circle */
.tpf-7064dd28-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    z-index: 2;
    margin-bottom: -25px;
    position: relative;
    flex-shrink: 0;
}

/* Connector Line */
.tpf-7064dd28-connector {
    position: absolute;
    top: 25px;
    left: calc(50% + 25px);
    width: calc(100% - 50px);
    height: 3px;
    z-index: 1;
}

/* Step Card */
.tpf-7064dd28-step-card {
    width: 100%;
    box-sizing: border-box;
    padding-top: 40px;
    text-align: left;
    min-height: 160px;
}

.tpf-7064dd28-step-item:first-child .tpf-7064dd28-step-card {
    border: 2px dashed;
}

.tpf-7064dd28-step-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 10px 0;
    padding: 0;
}

.tpf-7064dd28-step-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .tpf-7064dd28-steps {
        flex-wrap: wrap;
        gap: 30px;
    }

    .tpf-7064dd28-step-item {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .tpf-7064dd28-connector {
        display: none;
    }

    .tpf-7064dd28-title {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .tpf-7064dd28-step-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tpf-7064dd28-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tpf-7064dd28-title {
        font-size: 26px;
    }
}
