.wm-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.wm-post {
  background: #111;
  color: #eee;
  border: 1px solid #333;
  padding: 15px;
  width: 31%;
  box-sizing: border-box;
}
.wm-post img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}
.wm-title {
  font-size: 1rem;
  margin-bottom: 5px;
}
.wm-date {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 10px;
}
.wm-excerpt {
  font-size: 0.9rem;
}
.wm-pagination {
  text-align: center;
  margin-bottom: 40px;
}
.wm-page-num {
  display: inline-block;
  margin: 0 5px;
  padding: 5px 10px;
  background: #333;
  color: #fff;
  cursor: pointer;
}
.wm-page-num.active {
  background: #0073aa;
}
/* RESPONSYWNOŚĆ */

/* TABLET: 2 kolumny */
@media (max-width: 960px) {
  .wm-post {
    width: 48% !important;
  }

}
@media (max-width: 768px) {
  
.wm-title a {
  font-size: 15px !important;
}
}
/* TELEFON: 1 kolumna */
@media (max-width: 600px) {
  .wm-post {
    width: 100% !important;
  }
	.wm-title a {
  font-size: 15px !important;
}


.wm-date {
  font-size: 10px;
  color: #EABE60;
}

.wm-excerpt {
  font-size:10px;
  color: #ddd;
  margin-top: 10px;
}
}

