/* News & Media CSS with dt- prefix */

.dt-news-container {
    margin-top: 40px;
    margin-bottom: 40px;
}

.dt-news-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.dt-news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dt-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.dt-news-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.dt-news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dt-news-card:hover .dt-news-image {
    transform: scale(1.05);
}

.dt-news-body {
    padding: 20px;
}

.dt-news-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.dt-news-date {
    color: #e74c3c;
    font-weight: 600;
    letter-spacing: 1px;
}

.dt-news-author {
    color: #666;
    letter-spacing: 1px;
}

.dt-news-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    line-height: 25px;
    letter-spacing: 1px;
}

.dt-news-description {
    font-size: 14px;
    color: #666;
    line-height: 25px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.dt-news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dt-read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #0f3057 0%, #2572cf 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.dt-read-more-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: #fff;
}

.dt-read-more-btn i {
    margin-left: 8px;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .dt-news-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .dt-news-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dt-news-container {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .dt-news-image-wrapper {
        height: 200px;
    }

    .dt-news-title {
        font-size: 16px;
        min-height: auto;
    }

    .dt-news-description {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .dt-news-card {
        border-radius: 6px;
    }

    .dt-news-body {
        padding: 15px;
    }

    .dt-news-meta {
        gap: 15px;
        font-size: 12px;
    }

    .dt-news-title {
        font-size: 15px;
    }

    .dt-news-description {
        font-size: 13px;
    }

    .dt-read-more-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}