.afsen-listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding: 20px;
}

.afsen-listing-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.afsen-listing-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.afsen-listing-card-link:hover .afsen-listing-card {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.afsen-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.afsen-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.afsen-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e0e0;
    color: #999;
    font-size: 14px;
}

.afsen-card-content {
    padding: 16px;
}

.afsen-card-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.afsen-card-description {
    margin: 0 0 12px 0;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.afsen-card-meta {
    margin-bottom: 12px;
    font-size: 13px;
    color: #888;
}

.afsen-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.afsen-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.afsen-amount {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
}

.afsen-currency {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.afsen-btn-cta {
    background: #27ae60;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.afsen-btn-cta:hover {
    background: #229954;
}