* {
    text-decoration: none;
    box-sizing: border-box;
}
.toollink {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    a {
        img {
            width: 40px;
            height: 40px;
            border-radius: 5px;
        }
        width: 300px;
        background: #fff;
        padding: 10px;
        height: 60px;
        display: flex;
        align-items: center;
        gap: 10px;
        border-radius: 10px;
        box-shadow: 0 0 5px rgba(0,0,0,0.1);
        color: #333;
        text-decoration: none;
        font-weight: 900;
        transition: all 0.3s ease;
        &:hover {
            transform: scale(0.98);
        }
        &:active {
            transform: scale(0.95);
            opacity: 0.5;
        }
    }
}

.news-item {
    display: flex;
    align-items: start;
    color: #333;
    text-decoration: none;
    min-height: 105px;
    border-top: 1px solid gray;
    padding: 15px 0;
    .news-info-all {
        margin-left: 170px;
        display: flex;
        flex-direction: column;
        * {text-decoration: none;}
        h2 , p {
            margin: 0;
            padding: 0;
        }
        h2 {
            font-size: 20px;
        }
        .news-meta {
            display: flex;
            gap: 10px;
        }
        .news-category {
            background: #cecece;
            color: #fff;
            border-radius: 5px;
            padding: 0px 0px;
            width: fit-content;
            width: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        p {
            font-size: 13px;
            color: gray;
        }
    }
    .img-line {
        position: absolute;
        width: 160px;
        overflow: hidden;
        aspect-ratio: 2.13 / 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    img {
        overflow: hidden;
        width: 100%;
        transform: scale(1);
        transition: all 0.3s ease-in-out;
    }
    &:hover {
        .img-line {
            img {
                transform: scale(1.05);
                opacity: 0.5;
                transition: all 0.3s ease-in-out;
            }
        }
    }
}


@media (max-width: 768px) {
    .toollink a {
        width: 100%;
    }
    .news-item {
        .news-info-all {
            margin-top: 80px;
            margin-left: 0;
            h2 {
                font-size: 16px;
            }
        }
    }
}

.more {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #333;
    margin-top: 20px;
    width: 100%;
    max-width: 400px;
    padding: 30px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100px;
    transition: all 0.3s ease;
    gap: 10px;
    &:hover {
        transform: scale(0.98);
        gap: 20px;
    }
    &:active {
        transform: scale(0.95);
        opacity: 0.5;
    }
    img {
        width: 13px;
        height: auto;
    }
}