.kow-widget {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Nagłówek */
.kow-header {
    background: #0b5ed7;
    color: #ffffff;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
	margin-bottom: 0px;
}

/* Karta */
.kow-item {
    border: none;
    border-bottom: 1px solid #ddd;
    margin: 0;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.kow-item:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);

}

.kow-item img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 8px;
}

.kow-title {
    display: block;
    font-weight: 700;
    margin: 5px 0 10px 0;
	font-size: 18px;
}

/* Wyjustowany tekst */
.kow-item p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 8px 0;
    text-align: justify;
    color: #555;
}

/* Linki niebieskie */
.kow-item a,
.kow-item a:visited {
    color: #0b5ed7 !important;
    text-decoration: none;
}

.kow-item a:hover {
    color: #4b7ec8 !important;
}

/* CTA */
.kow-cta {
    display: block;
    text-align: right;
    font-style: italic;
    color: #0b5ed7;
    text-decoration: none;
	margin-bottom: 10px;
}

.kow-cta:hover {
    color: #4b7ec8 !important;
}