/* Start custom CSS for html, class: .elementor-element-d7adf96 *//* --- Styl podstrony Zadania i kompetencje SZJK (Zgodny z SIW PS) --- */
.szjk-tasks-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: #333333;
}

.szjk-tasks-header {
    background-color: #00447C;
    color: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 35px;
    box-shadow: 0 4px 10px rgba(0, 68, 124, 0.15);
}

.szjk-tasks-header h1 {
    margin: 0 0 10px 0;
    font-size: 1.85rem;
    color: #ffffff;
}

.szjk-tasks-header p {
    margin: 0;
    color: #F0F4F8;
    font-size: 1.05rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Siatka kart */
.szjk-tasks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.task-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-top: 4px solid #00447C;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.task-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 68, 124, 0.08);
    border-color: #009DD1;
}

.task-icon-box {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #F3F5F7;
    color: #00447C;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.task-icon-box svg {
    width: 26px;
    height: 26px;
}

.task-content {
    flex-grow: 1;
}

.task-content h3 {
    margin: 0 0 8px 0;
    color: #00447C;
    font-size: 1.15rem;
}

.task-content p {
    margin: 0 0 15px 0;
    color: #555555;
    font-size: 0.93rem;
    line-height: 1.5;
}

/* Przycisk pobierania PDF */
.pdf-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F8FAFC;
    color: #00447C;
    border: 1px solid #00447C;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.pdf-download-btn:hover {
    background-color: #00447C;
    color: #ffffff;
}

/* Responsywność dla mniejszych ekranów i smartfonów */
@media (max-width: 768px) {
    .szjk-tasks-grid {
        grid-template-columns: 1fr;
    }
    .task-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .task-icon-box {
        margin-bottom: 5px;
    }
}/* End custom CSS */