    .tutorial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .the-hover-card {
        display: block;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        text-decoration: none;
        color: #333;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease, box-shadow 0.3s ease;
        border: 1px solid #f3dce4;
    }

    .the-hover-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(255, 120, 155, 0.2);
        text-decoration: none;
    }

    .card-img-top {
        width: 100%;
        height: 160px;
        object-fit: cover;
    }

    .card-body {
        padding: 1rem;
    }

    .card-title {
        font-size: 1.05rem;
        font-weight: 600;
        margin-bottom: 0.4rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #111;
        /* pink */
    }

    .card-text {
        font-size: 0.9rem;
        color: #666;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .page-title {
        font-weight: 700;
        font-size: 1.8rem;
        margin-bottom: 2rem;
        color: #e91e63;
        border-bottom: 2px solid #fce4ec;
        padding-bottom: 0.5rem;
    }

    body {
        background-color: #fdfbfc;
    }