body {
    color: var(--text-dark);
    background-color: var(--gray-light);
    line-height: 1.6
}

a {
    text-decoration: none
}

.new-de-article {
    padding: 40px;
    border-radius: 8px;
    margin: 0 auto;
    max-width: 1600px
}

.new-de-article-header {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--gray-light)
}

.new-de-article-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.3
}

.new-de-article-content {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8
}

.new-de-article-content img {
    width: 100%;
    object-fit: cover;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.new-de-article-content p {
    margin-bottom: 25px
}

.new-de-article-content h2 {
    font-size: 24px;
    margin: 35px 0 20px;
    color: var(--primary-dark)
}

.new-de-article-content ul {
    margin: 20px 0 30px 35px
}

.new-de-article-content li {
    margin-bottom: 12px
}

.new-de-article-tags {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid var(--gray-light)
}

.new-de-article-tags span {
    color: var(--text-light);
    font-weight: 500;
    display: block;
    margin-bottom: 15px
}

.new-de-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.new-de-tag {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition)
}

.new-de-tag:hover {
    background-color: var(--primary);
    color: var(--white)
}

.new-de-related-articles {
    margin: 40px auto;
    max-width: 1600px
}

.new-de-section-title {
    font-size: 26px;
    margin-bottom: 30px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 12px
}

.new-de-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    background-color: var(--primary)
}

.new-de-articles-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 30px
}

.new-de-article-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow)
}

.new-de-article-card:hover {
    box-shadow: 0 6px 15px rgb(0 0 0 / .15)
}

.new-de-card-image-link {
    display: block;
    width: 100%;
    height: 275px
}

.new-de-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition)
}

.new-de-card-content {
    background-color: #000;
    padding: 20px
}

.new-de-card-content:hover {
    background-color: var(--primary)
}

.new-de-card-title {
    font-size: 18px;
    margin-bottom: 12px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.new-de-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    width: 100%
}

.new-de-card-title a:hover {
    color: var(--primary)
}

.new-de-card-meta {
    font-size: 14px;
    color: #ccc
}

@media (max-width: 1024px) {
    .new-de-articles-grid {
        gap: 20px
    }

    .new-de-card-image-link {
        height: 250px
    }
}

@media (max-width: 768px) {
    .new-de-article {
        padding: 25px
    }

    .new-de-article-title {
        font-size: 26px
    }

    .new-de-article-content {
        font-size: 16px
    }

    .new-de-article-content h2 {
        font-size: 21px
    }

    .new-de-articles-grid {
        grid-template-columns:1fr;
        gap: 20px
    }

    .new-de-card-image-link {
        height: 200px
    }

    .new-de-section-title {
        font-size: 24px
    }

    .new-de-card-title {
        font-size: 17px
    }
}

@media (max-width: 480px) {
    .new-de-article {
        padding: 20px
    }

    .new-de-article-title {
        font-size: 22px
    }

    .new-de-tag {
        padding: 6px 12px;
        font-size: 13px
    }

    .new-de-card-content {
        padding: 15px
    }

    .new-de-card-image-link {
        height: 180px
    }

    .new-de-article-content {
        font-size: 15px
    }

    .new-de-article-content h2 {
        font-size: 20px
    }

    .new-de-section-title {
        font-size: 22px
    }

    .new-de-card-title {
        font-size: 16px
    }

    .new-de-card-meta {
        font-size: 13px
    }
}