/* Elegantes Styling für Stellenangebote Widget */
 .stellenangebot-widget {
    background: #f0f4f8;
    padding: 40px 30px;
    border-radius:0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    max-width: 100%;
    margin: auto;
  }
.stellenangebot-title {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #3a7bd5, #00d2ff);
    border-radius: 2px;
}

.stellenangebot-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.stellenangebot-intro {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #4a5568;
    font-weight: 400;
}

.stellenangebot-tasks {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.stellenangebot-tasks li {
    position: relative;
    padding: 12px 0 12px 40px;
    margin-bottom: 8px;
    font-size: 1.05em;
    line-height: 1.6;
    color: #2d3748;
    transition: all 0.3s ease;
}

.stellenangebot-tasks li:hover {
    transform: translateX(5px);
    color: #2d3748;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}

.stellenangebot-button {
    display: inline-block;
    display: inline-flex;
        align-items: center;
        padding: 16px 36px;
        background: linear-gradient(135deg, #264065, #00d2ff);
        color: white;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.7rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
        text-decoration: none;
        width: fit-content;
}

.stellenangebot-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #38bdf8, #00d2ff); color: black;
}

.stellenangebot-button:hover::before {
    left: 100%;
}

.stellenangebot-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .stellenangebot-widget {
        padding: 30px 25px;
        margin: 20px;
    }
    
    .stellenangebot-title {
        font-size: 1.8em;
    }
    
    .stellenangebot-tasks li {
        padding: 10px 0 10px 35px;
        font-size: 1em;
    }
    
    .checkmark {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .stellenangebot-button {
        padding: 14px 28px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .stellenangebot-widget {
        padding: 25px 20px;
        margin: 15px;
    }
    
    .stellenangebot-title {
        font-size: 1.5em;
    }
    
    .stellenangebot-intro {
        font-size: 1em;
    }
}