/* Wöchentliches Horoskop - Frontend Styles */

.wh-all-horoscopes {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.wh-week-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.wh-week-header h2 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 2em;
}

.wh-week-header p {
    color: #666;
    font-size: 1.1em;
    margin: 0;
}

.wh-horoscopes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.wh-horoscope-item {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    border: 1px solid #d1d9e6;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.wh-horoscope-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(91, 74, 157, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f3f7 100%);
}

.wh-sign-title {
    color: #5b4a9d;
    font-size: 1.5em;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #7c6bb3;
}

.wh-horoscope-text {
    color: #2c3e50;
    line-height: 1.6;
    font-size: 1em;
}

.wh-horoscope-single {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    border: 1px solid #d1d9e6;
    border-radius: 8px;
    padding: 30px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.wh-horoscope-single .wh-sign-title {
    font-size: 2em;
    text-align: center;
}

.wh-week-info {
    text-align: center;
    color: #666;
    font-style: italic;
    margin: 10px 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #d1d9e6;
}

.wh-error {
    background: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid #c62828;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wh-horoscopes-grid {
        grid-template-columns: 1fr;
    }
    
    .wh-week-header h2 {
        font-size: 1.5em;
    }
    
    .wh-horoscope-item {
        padding: 15px;
    }
}
