/*lista*/
.module-blog-container .post-container{
    width: calc(33.333% - 15px);
    background: #2d2d2d;
    display: block;
    float: left;
    margin: 15px 15px 15px 0;
}
.module-blog-container .post-container:hover{
    text-decoration: none;
    cursor: pointer
}
.module-blog-container .post-container:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}
.module-blog-container .post-container .post-img:before{
    opacity: 0;
    transition: opacity .4s;
    background: #051647;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
}
.module-blog-container .post-container:hover .post-img:before  {
    opacity: .79;
    zoom:1;
}
.module-blog-container .post-container .post-img{
    overflow: hidden;
    position: relative
}
.module-blog-container .post-container .post-img img{
    width: 100%;
    height: 300px;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    background-size: cover;
    transition: transform 0.5s;
}
.module-blog-container .post-container .post-bar{
    padding: 15px;
}
.module-blog-container .post-container .post-bar .post-name{
    font-size: 18px;
    line-height: 2;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.module-blog-container .post-container .post-bar .post-date{
    color: #868686;
    font-size: 13px;
    padding-left: 5px;
}
.module-blog-container .post-container .post-bar .post-date:before{
    font-family: icons;
    content: "\e6eb";
    position: relative;
    top: 1px;
    left: -5px;
}

@media (max-width: 1000px) {
    .module-blog-container .post-container{
        width: calc(50% - 30px);
    }
}
@media (max-width: 1000px) {
    .module-blog-container .post-container{
        width: 100%;
        margin:0;
        margin-bottom: 20px;
    }
}

.module-blog-container .blog-container{
    width: 1000px;
    overflow: hidden;
    max-width: 90%;
    margin: 30px auto;
}

/*wpis*/
.module-blog-container .blog-post-container{
    margin: 30px 0

}
.module-blog-container .blog-post-container img{
    max-width: 100% !important;
}
.module-blog-container .blog-post-container ul{
    margin-left: 25px;
}
.module-blog-container .blog-post-container ul li:before{
    content: "\e642";
    font-family: icons;
    font-size: 16px;
    position: relative;
    top: 2px;
    left: -10px;
    padding-left: 10px;
}

.module-blog-container .post-intro{
    height: 300px;
    width: 100%;
    padding: 250px 25px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    height: 600px;
    background-repeat: no-repeat;
    /*background-size: cover;*/
    background-position: center center;
    /*background-attachment: fixed*/
}
.module-blog-container .post-intro h1{
    position: relative;
    z-index: 50;
    color:#fff;
    font-size: 50px !important;
    font-weight: bold;
}
.module-blog-container .post-intro:before{
    content: "";
    width: 100%;
    background: #051647;
    opacity: .82;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.module-blog-container .post-intro .post-date{
    color:#fff;
    border-top: 2px solid #ccc;
    padding-top: 7px;
    position: relative;
    z-index: 1;
    width: 150px;
    max-width: 90%;
    margin: 0 auto;
    margin-top: 45px;
    overflow: hidden;
}

.module-blog-container h2{
    font-size: 25px !important;
    line-height: 1.3 !important;
}
.module-blog-container h3{
    font-size: 20px !important;
    font-weight: bold;
    line-height: 1.5 !important;
}
.module-blog-container h4{
    font-size: 18px !important;
    font-weight: bold;
    line-height: 1.7 !important;
}

/*tags*/
.module-blog-container .post-tags-container{
    line-height: 1.4;
}
.module-blog-container .post-tags-container .tag:last-child{
    margin-left: 0
}
.module-blog-container .post-tags-container .tag{
    display: inline-block;
    margin: 7px 7px 7px 0;
}
.module-blog-container .post-tags-container .tag a{
    padding: 8px 10px 8px 12px;
    border: 1px solid #ccc;
    display: block;
    font-size: 13px;
    border-radius: 3px;
}
.module-blog-container .post-tags-container .tag a:before{
    font-family: icons;
    content: "\e6e4";
    color: #6c6c6c;
    left: -4px;
    position: relative
}
.module-blog-container .post-tags-container .tag a:hover{
    text-decoration: none;
    background: #f9f9f9;
}

.module-blog-container .see-more-container{
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #ccc;
}

/* --- STYLE DLA BLOGA (TABELE I FAQ) --- */

/* 1. Wygląd tabel na blogu (działa na każdą tabelę w artykule) */
.blog-post-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}
.blog-post-container th,
.blog-post-container td {
    padding: 12px 15px;
    border: 1px solid #d4d4d4;
    text-align: left;
}
.blog-post-container thead th,
.blog-post-container tbody tr:first-child td {
    background-color: #e9e9e9;
    font-weight: bold;
    color: #333;
}
/* Paski na tabeli naprzemiennie (efekt zebry) */
.blog-post-container tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

/* 2. Wygląd modułu FAQ (nagłówki H4) */
.blog-post-container h4 {
    font-size: 115% !important;
    font-weight: bold;
    margin-top: 30px !important;
    margin-bottom: 10px !important;
    color: #333333;
    padding-left: 0;
    position: relative;
}

/* 3. Automatyczne dodawanie litery "Q:" przed pytaniem w FAQ */
.blog-post-container h4::before {
    content: "Q: ";
    color: #cc0000;
    font-weight: bold;
    margin-right: 5px;
}

/* 4. Odstępy dla nagłówków H2 i H3 w artykule (więcej miejsca od góry) */
.module-blog-container .blog-post-container h2,
.module-blog-container .blog-post-container h3 {
    margin-top: 30px !important;
    margin-bottom: 15px !important;
}
