.tutorials-intro {
    max-width: 760px;
}

.section-title p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.step-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.step-copy {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.step-copy span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #ecfdf5;
    color: #166534;
    font-weight: 800;
}

.step-copy h3 {
    margin: 0;
    color: #222;
    font-size: 1rem;
    font-weight: 800;
}

.tips-card {
    display: flex;
    gap: 22px;
    padding: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--fi-border);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.tips-icon {
    flex: 0 0 128px;
}

.tips-icon img {
    width: 128px;
    height: 128px;
    object-fit: contain;
}

.tips-list {
    margin: 0;
    padding-left: 1.2rem;
}

.tips-list li {
    margin-bottom: .65rem;
    color: #374151;
    line-height: 1.6;
}

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

.tutorial-card {
    display: flex;
    gap: 18px;
    height: 100%;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 16px;
    background: #fff;
    color: inherit;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.tutorial-card:hover {
    transform: translateY(-2px);
    border-color: rgba(25, 135, 84, .25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    color: inherit;
}

.tutorial-card h2 {
    color: #222;
    font-weight: 700;
}

.tutorial-card p {
    color: #666;
    font-size: .95rem;
    line-height: 1.55;
}

.tutorial-thumb {
    flex: 0 0 88px;
}

.tutorial-thumb img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 575.98px) {
    .tips-card {
        flex-direction: column;
    }

    .tips-icon {
        flex-basis: auto;
    }

    .tutorial-card {
        flex-direction: column;
    }

    .tutorial-thumb {
        flex-basis: auto;
    }
}
