﻿.eigene-empfehlung-link {
    text-decoration: none !important;
}

.eigene-empfehlung-link:hover .empfehlung-titel {
    color: #B64D1A !important;
}

.eigene-empfehlung-box {
    position: relative;
    background: #f0f0f0;
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    max-width: 1400px;
}

.empfehlung-stempel {
    position: absolute;
    top: 20px;
    right: 40px;
    background: transparent;
    color: #5a5a5a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 0;
}

.empfehlung-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.empfehlung-bild {
    flex-shrink: 0;
    width: 200px;
}

.empfehlung-bild img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.empfehlung-text {
    flex: 1;
    padding-top: 40px;
}

.empfehlung-titel {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--link-color);
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.empfehlung-beschreibung {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    color: #666;
    margin-bottom: 30px;
}

.empfehlung-button {
    display: inline-block;
    background: #B64D1A;
    color: white;
    text-decoration: none;
    padding: 10px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
    text-align: center;
    width: 100%;
}

.empfehlung-button:hover {
    background: #B64D1A;
    color: white;
    text-decoration: none;
}

@media (max-width: 968px) {
    .empfehlung-text {
        padding-top: 0;
    }
    .empfehlung-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .empfehlung-bild {
        width: 100%;
        max-width: 400px;
    }
    
    .empfehlung-stempel {
        position: static;
        text-align: right;
        margin-bottom: 20px;
        margin-top: 0;
        padding-top: 0;
    }
    
    .eigene-empfehlung-box {
        padding: 30px 20px;
    }
    
    .empfehlung-titel {
        font-size: 26px;
        line-height: 1.2;
    }
    
    .empfehlung-beschreibung {
        font-size: 16px;
    }
    
    .empfehlung-button {
        display: block;
        padding: 12px 20px;
        font-size: 16px;
    }
}