﻿.nyhedCardContainer {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
}

    .nyhedCardContainer > div {
        display: flex;
        flex-wrap: wrap;
        gap: 30px 70px;
        justify-content: center;
        width: 100%;
    }

.nyhedCard {
    border: 1px solid var(--button-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    flex: 0 0 250px;
    display: inline-block;
    -webkit-text-decoration: none;
    text-decoration: none;
}

    .nyhedCard:hover {
        transform: translateY(-5px);
        background-color: var(--secondary-color);
    }

    .nyhedCard img {
        width: 100%;
        height: 180px;
        object-fit: fill;
        display: block;
    }

.nyhedContent {
    padding: 15px;
}

    .nyhedContent h5 {
        margin-top: 0;
        color: var(--primary-color);
        font-weight: 600;
    }

    .nyhedContent p {
        font-size: 14px;
        color: #555;
        margin-bottom: 10px;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .nyhedCard {
        width: 100%;
        max-width: 350px;
        flex: 1 0 auto;
    }
    h2
    {
        display: flex;
        justify-content: center;
        padding-top: 1rem;
    }
}
