/* Styling links found inside the DB content */
.news-content a {
    display: inline-flex;
    align-items: center;
    background-color: #0f172a; /* Dark Navy/Black */
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    margin: 15px 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.news-content a:hover {
    background-color: #2563eb; /* Blue Hover */
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.2);
}

/* Arrow icon inside the link */
.news-content a::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.news-content a:hover::after {
    transform: translateX(4px);
}