/* ===== wanted_items.css ===== */

.wanted-grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.wanted-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 16px;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.wanted-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.wanted-item h3 {
    color: #264653;
    margin-bottom: 8px;
}

.wanted-item .price-range {
    color: #2a9d8f;
    font-weight: bold;
}

.wanted-item .contact-email a {
    color: #e76f51;
    text-decoration: none;
}

.wanted-item .contact-email a:hover {
    text-decoration: underline;
}
