9 April, 2026

CAK

/* Default styles for the news card */ .news-card { border: 1px solid #ccc; padding: 20px; margin-bottom: 20px; /* Provides spacing between articles */ transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effects */ cursor: pointer; /* Changes cursor to a hand pointer */ } /* Styles to apply when the mouse hovers over the news-card */ .news-card:hover { box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); /* Adds a shadow for depth */ transform: translateY(-5px); /* Slightly lifts the card */ } /* Optional: Style for elements inside the card on hover */ .news-card:hover h3 { color: #007bff; /* Changes title color on hover */ text-decoration: underline; } /* Ensure images are responsive within the card */ .news-card img { max-width: 100%; height: auto; display: block; margin-bottom: 15px; } .news-card a{ color: blue; text-decoration: underline; }