.dlm-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.dlm-card-link:hover .dlm-card {
    background-color: #f5f5f5;
    /* transition: background-color 0.3s ease; */
}

.dlm-card {
    border: 1px solid #ddd;
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 6px;
    background: #fff;
}

.dlm-listings-container {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); */
    gap: 20px;
    margin: 30px 0;
}

.dlm-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.dlm-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dlm-title {
    font-size: 24px;
    margin: 0 0 10px;
    color: #333;
}

.dlm-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 12px;
}

.dlm-meta {
    font-size: 16px;
    margin-bottom: 5px;
}

.dlm-meta strong {
    color: #222;
}

.dlm-keywords {
    background: #f1f1f1;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 16px;
    display: inline-block;
    margin-top: 8px;
    color: #555;
}

.dlm-btn-inquire {
    display: inline-block;
    background: #0073aa;
    color: #fff;
    padding: 7px 50px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dlm-btn-inquire:hover {
    background: #005c8a;
}