.section26 {
    background-color: #ffffff;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section26 a {
    text-decoration: none;
    color: #000;
}

.section26_container {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
}

.section26_header h1 {
    text-align: left;
    margin-top: 20px;
}

.section26_news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.section26_news-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
}

.section26_news-item:hover {
    transform: translateY(-5px);
}

.section26_news-item-img {
    position: relative;
    overflow: hidden;
}

.section26_news-item-img img {
    width: 100%;
    height: 28vh;
    object-fit: cover;
    transition: transform 0.3s;
}

.section26_news-item:hover img {
    transform: scale(1.1);
}
.section26_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.616);
    display: none;
    justify-content: center;
    align-items: center;
}

.section26_news-item:hover .section26_overlay {
    display: flex;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.section26_like-icon {
    width: 5vh;
    height: 5vh;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    cursor: pointer;
    animation: draw 0.5s ease-in-out;
    transition: fill 0.3s;
}

/*click like icon, not hover*/
.section26_like-icon.clicked {
    fill: #ff0000;
    stroke: #ff0000;
}

@keyframes draw {
    from {
        stroke-dasharray: 0, 100;
    }

    to {
        stroke-dasharray: 100, 0;
    }
}

.section26_news-item-content {
    padding: 15px;
}

.section26_news-category {
    margin-top: 2vh;
    background-color: #e0f7fa;
    color: #00695c;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.5vh;
    margin-bottom: 10px;
}

.section26_news-category:hover {
    background-color: #00695c;
    color: #e0f7fa;
    transform: scale(1.1);
    transition: 0.5s ease-in-out;

}

.section26_news-title{
    font-size: 1.8vh;
    margin: 2vh 0vh 0vh 0;
}

.section26_news-title:hover {
    color: #00695c;
    font-size: 2vh;
    transition: 0.5s ease-in-out;
}



.section26_news-meta {
    font-size: 1.6vh;
    margin: 2vh 0vh 0vh 0;
    color: #999;
}

.section26_news-meta svg {
    margin-left: 5px;
}

@media screen and (max-width: 1028px) {
    .section26_news-title {
        font-size: 1.2vh;
    }

    .section26_news-meta {
        font-size: 1vh;
    }

    .section26_news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }


}