.dio-news-hero-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.dio-news-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #0f172a;
    display: flex;
    min-height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.dio-news-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.dio-news-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.dio-news-card:hover .dio-news-bg {
    transform: scale(1.05);
}

.dio-news-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0f172a 10%, rgba(15, 23, 42, 0.8) 40%, transparent 100%);
    background: linear-gradient(to right, #0f172a 30%, transparent 100%);
}

.dio-news-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 650px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dio-badge {
    background: #7000C5;
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.dio-news-title a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    display: block;
}

.dio-news-desc {
    color: #e7f6ff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.85;
}

.dio-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #7000C5;
    color: white !important;
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dio-btn:hover {
    background: #e800ff;
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(112, 0, 197, 0.4);
}

@media (max-width: 960px) {
    .dio-news-gradient {
        background: linear-gradient(to top, #0f172a 40%, transparent 100%);
    }
    .dio-news-content {
        padding: 40px 30px;
        margin-top: auto;
    }
    .dio-news-card {
        min-height: 550px;
    }
}