/* Start custom CSS for html, class: .elementor-element-f201415 *//* --- Style podstrony Dobre Praktyki (Zgodne z SIW PS) --- */
.szjk-practices-wrapper {
    max-width: 950px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: #333333;
}

.szjk-practices-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-practices-header h1 {
    margin: 0 0 10px 0;
    font-size: 1.85rem;
    color: #ffffff;
}

.szjk-practices-header p {
    margin: 0;
    color: #F0F4F8;
    font-size: 1.05rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.szjk-practices-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.practice-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-left: 5px solid #00447C;
    border-radius: 6px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.practice-card:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 15px rgba(0, 68, 124, 0.08);
    border-left-color: #009DD1;
}

.practice-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #F3F5F7;
    color: #00447C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.practice-icon svg {
    width: 22px;
    height: 22px;
}

.practice-details {
    flex-grow: 1;
}

.practice-details h3 {
    margin: 0 0 5px 0;
    color: #00447C;
    font-size: 1.1rem;
    line-height: 1.4;
}

.practice-meta {
    margin: 0;
    font-size: 0.85rem;
    color: #6b7280;
}

.practice-action {
    flex-shrink: 0;
}

.pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F8FAFC;
    color: #00447C;
    border: 1px solid #00447C;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.pdf-btn:hover {
    background-color: #00447C;
    color: #ffffff;
}

/* Responsywność dla smartfonów */
@media (max-width: 768px) {
    .practice-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .practice-action {
        width: 100%;
    }
    .pdf-btn {
        width: 100%;
        justify-content: center;
    }
}/* End custom CSS */