img.logo {
	max-height: 150px;
}

.banner {
	border-top: 10px solid #ff0000;
	border-bottom: 10px solid #ff0000;
    height: 370px; /* wysokość kontenera dla dużych ekranów */
    overflow: hidden; /* przycina nadmiar obrazka */
}

.banner img.object-cover {
    width: 100%;          /* wypełnia szerokość kontenera */
    height: 100%;         /* wypełnia wysokość kontenera */
    object-fit: cover;    /* zachowuje proporcje i przycina nadmiar */
    object-position: center; /* środek obrazka zawsze widoczny */
}

.banner h1 {
	font-weight: 700; 
    font-size: clamp(1.5rem, 5vw, 4rem); /* minimalnie 1.5rem, idealnie 5% szerokości ekranu, max 6rem */
}

.marker1 {
    color: #ff0000 !important;
	/*font-weight: bold;*/
}

.card img {
		max-width: 75%;
		margin-top: 20px;
		margin-bottom: 20px;
}

.footer {
	border-top: 10px solid #ff0000;
}

.text-indent {
    text-indent: 1em;
}

.text-justify {
    text-align: justify !important;
}

/* Dla małych ekranów */
@media (max-width: 768px) {
	img.logo {
		max-height: 70px;
	}
	
    .banner {
		border-top: 5px solid #ff0000;
		border-bottom: 5px solid #ff0000;
        max-height: 210px;
    }
	
	.card img {
		max-width: 50%;
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.footer {
		border-top: 5px solid #ff0000;
	}	
}
