<style>
        .press-card {
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: 1px solid #eaeaea;
            border-radius: 10px;
        }

        .press-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }

        .press-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

        .card-body h5 {
            font-size: 1.1rem;
            font-weight: 600;
        }

        .card-text {
            font-size: 0.95rem;
            color: #555;
        }

        .timestamp {
            font-size: 0.8rem;
            color: #888;
        }

        @media (max-width: 576px) {
            .press-image {
                height: 160px;
            }
        }
    </style>