.duck-image {
    height: 300px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0.375rem;
}

.duck-image.placeholder::after {
    content: '🦆';
    font-size: 6rem;
    color: #dee2e6;
}

.duck-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-container {
    height: 400px;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
}

.map-container.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container.placeholder::after {
    content: '🗺️';
    font-size: 4rem;
    color: #dee2e6;
}

@media (max-width: 768px) {
    .duck-image {
        height: 200px;
    }

    .map-container {
        height: 300px;
    }
}
