/* Frontend ad styles */
.ut-ads {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Of gebruik 'flex-start' of 'center' */
}

.ut-ad {
    flex: 0 0 32%;
    margin-bottom: 2%; /* Ruimte tussen de rijen */
    box-sizing: border-box;
    border: 1px solid #ccc;
    text-align: center;
}

.ut-ad img {
    max-width: 100%;
    height: auto;
}

.ut-ad h3 {
    font-size: 1.2em;
    margin-top: 10px;
}

.ut-ad p {
    font-size: 14px;
    text-align: left;
    color: #555;
    padding: 10px;
}

.ut-ad a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.ut-ad a:hover {
    background: #005177;
}

/* Responsieve styling */
@media (max-width: 768px) {
    .ut-ad {
        flex: 0 0 48%; /* 2 kolommen op tablets */
        margin-bottom: 4%;
    }
}

@media (max-width: 480px) {
    .ut-ad {
        flex: 0 0 100%; /* Volledige breedte op mobiele apparaten */
        margin-bottom: 5%;
    }
}
