/* Display Anzeige Card Styles - Shared card component */

.anzeige-card-link {
    display: block;
    flex: 0 0 193.33px; /* Exactly 193.33px per card from Figma Frame 11 */
    width: 193.33px;
    min-width: 193.33px;
    max-width: 193.33px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Hover effects for cards */
.anzeige-card-link:hover {
    transform: translateY(-4px);
    transition: all 0.2s ease;
}

.anzeige-card-link:hover img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Anzeige Card Styles - From Figma Frame 11 */
.anzeige-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    height: auto;
}

.anzeige-image {
    height: 280px;
    position: relative;
    border-radius: 16px;
    flex-shrink: 0;
    width: 100%;
    overflow: hidden;
}

.anzeige-image img {
    position: absolute;
    max-width: none;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 16px;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.no-image {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.anzeige-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    position: relative;
    flex-shrink: 0;
    color: #141414;
    width: 100%;
    line-height: normal;
}

.anzeige-name {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    font-weight: 600;
    position: relative;
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
    width: 100%;
}

.anzeige-location {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    font-weight: 300;
    position: relative;
    flex-shrink: 0;
    font-size: 14px;
    line-height: 1.2;
    margin: 0;
    width: 100%;
}