.addonnest-blog-list {
    .card {
        max-width: 100%;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 30px;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .card-image-container {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }

    .addonnest-col-3 {
        .card-image-container {
            height: 180px;
        }
    }

    .card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .card:hover .card-image {
        transform: scale(1.05);
    }

    .card-content {
        padding: 20px;
    }

    .card-category {
        display: inline-block;
        padding: 3px 8px;
        background-color: #eff6ff;
        color: #3b82f6;
        font-size: 12px;
        font-weight: 600;
        border-radius: 4px;
        text-transform: capitalize;
        letter-spacing: .05em;
    }

    .card-content {
        .card-title {
            margin-top: 10px !important;
            font-size: 18px;
            font-weight: 700;
            color: #000000;
            line-height: 1.4;
        :hover {
            color: rgb(255, 0, 0);
            text-decoration: none;
        }
        }
    }

    .addonnest-col-3 {
        .card-content {
            .card-title {
                font-size: 16px;
            }
        }
    }

    .card-excerpt {
        margin: 0;
        color: #6B7280;
        font-size: 14px;
        line-height: 1.6;
    }

    .card-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 15px;
        padding: 10px 0 0;
        background-color: transparent;
        border-top: 1px solid #F3F4F6;
    }

    .author-name {
        font-weight: 600;
        color: #1F2937;
        transition: color 0.2s ease;
        text-transform: capitalize;
    }

    .author-name:hover {
        color: #3B82F6;
        text-decoration: none;
    }

    .publish-date {
        font-size: 12px;
        color: #9CA3AF;
        margin-top: 2px;
    }

    .read-more-btn {
        display: inline-flex;
        align-items: center;
        color: #3B82F6;
        font-weight: 600;
        font-size: 14px;
        transition: color 0.2s ease;
    }

    .read-more-btn:hover {
        color: #2563EB;
        text-decoration: none;
    }

    .btn-icon {
        width: 16px;
        height: 16px;
        margin-left: 4px;
    }
}
