#news {
    padding: 10rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f0f8ff 50%, #e6f2ff 100%);
    position: relative;
    overflow: hidden;
}

#news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230000ff' fill-opacity='0.02'%3E%3Cpath d='M25 25.5V25H0v0h25v0.5zm0-0.5h25v25H25V25h-0.5V0h0.5v25v-0.5zM25 25v-0.5H50V0h-0.5v25H25v0.5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.news-header {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 6rem;
    position: relative;
    z-index: 2;
}

.news-header .subtitle {
    font-size: 1.4rem;
    color: #0000ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    display: block;
}

.news-header h1 {
    font-size: 4.5rem;
    color: #1a1a1a;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.news-header p {
    font-size: 1.8rem;
    color: #666;
    line-height: 1.6;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    max-width: 130rem;
    margin: 0 auto 6rem;
}

.news-card {
    background: #fff;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 255, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 255, 0.02) 0%, rgba(0, 210, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-card:hover {
    transform: translateY(-1.5rem) scale(1.02);
    box-shadow: 0 2.5rem 6rem rgba(0, 0, 255, 0.15);
    border-color: rgba(0, 0, 255, 0.1);
}

.news-card:hover::before {
    opacity: 1;
}

.news-img {
    position: relative;
    height: 22rem;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-img img {
    transform: scale(1.1);
}

.news-tag {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, #0000ff 0%, #00d2ff 100%);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 255, 0.3);
    animation: pulse 3s infinite;
}

.news-body {
    padding: 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: #888;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-meta span ion-icon {
    font-size: 1.6rem;
    color: #0000ff;
}

.news-body h3 {
    font-size: 2rem;
    color: #1a1a1a;
    line-height: 1.4;
    font-weight: 800;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.news-card:hover .news-body h3 {
    color: #0000ff;
}

.news-body p {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.read-more {
    margin-top: auto;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more ion-icon {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #0000ff;
}

.read-more:hover ion-icon {
    transform: translateX(5px);
}

.news-pending,
.news-pending:hover {
    color: #7b8797;
    cursor: default;
}

.news-pending:hover ion-icon {
    transform: none;
}

.news-actions {
    text-align: center;
}

.btn-all-news {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    padding: 1.8rem 4rem;
    background: #fff;
    color: #1a1a1a;
    border-radius: 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    border: 2px solid #f1f5f9;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.btn-all-news:hover {
    background: #0000ff;
    color: #fff;
    border-color: #0000ff;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 255, 0.2);
    transform: translateY(-5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #news {
        padding: 6rem 2rem;
    }
    .news-header h1 {
        font-size: 3.2rem;
    }
}
