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

.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) {
    .tutorial-card {
        flex-direction: column;
    }

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