<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

.item-page .item-image{
  float: left;
  margin: 0px 0 20px 0;
}
.item-page .item-image img{
    width: 100%;
    height: auto;
}
.item-page .com-content-article__body{
    float: right;
}
.item-page .com-content-article__body p:first-child{
    margin-top: 0px;
}
.article-info{
    font-size: 0.8em;
}

@media screen and (max-width: 600px) {
	.item-page{
		display: flex;
		flex-direction: column;
	}
	.item-image{
			width: 100%;
		}
	.com-content-article__body, .item-page.item-image{
		width: 100%;
		float: none;
	}
}/* KONIEC  (max-width: 600px)*/

@media screen and (min-width:601px) and (max-width: 900px) {
	.item-page .item-image{
    width: 25%
	}
  .item-page .com-content-article__body{
    width: 70%;
  }

}/* KONIEC (min-width:601px) and (max-width: 900px)*/

@media screen and (min-width:901px) and (max-width: 1400px) {
  .item-page .item-image{
    width: 28%
	}
  .item-page .com-content-article__body, .item-page .article-info{
    width: 70%;
  }
}/* KONIEC (min-width:901px) and (max-width: 1400px) */

@media screen and (min-width: 1401px) {

  .item-page .item-image{
    width: 28%
	}
  .item-page .com-content-article__body{
    width: 70%;
  }
}</pre></body></html>