/* Masonry Posts Grid Plugin */

.mpg-wrapper {
  font-family: var(--mpg-font, inherit);
  width: 100%;
}

.mpg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

/* BIG card (odd) */
.mpg-post.mpg-big {
  grid-row: span 2;
}

/* CARD styles */
.mpg-card {
  background: var(--mpg-card-bg, #f97316);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* THUMBNAIL */
.mpg-thumb {
  display: block;
  overflow: hidden;
}

.mpg-post.mpg-big .mpg-thumb img {
  width: 100%;
  height: var(--mpg-img-big, 400px);
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.mpg-post.mpg-small .mpg-thumb img {
  width: 100%;
  height: var(--mpg-img-small, 200px);
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.mpg-thumb:hover img {
  transform: scale(1.03);
}

/* CONTENT */
.mpg-content {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* CATEGORY badge */
.mpg-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  align-self: flex-start;
}

.mpg-cat {
  display: inline-block;
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 0;
}

/* TITLE */
.mpg-title {
  margin: 0 0 8px;
  font-size: var(--mpg-title-size, 18px);
  line-height: 1.3;
  color: var(--mpg-title-color, #fff);
}

.mpg-title a {
  color: inherit;
  text-decoration: none;
}

.mpg-title a:hover {
  text-decoration: underline;
}

/* EXCERPT */
.mpg-excerpt {
  font-size: var(--mpg-excerpt-size, 14px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  line-height: 1.5;
}

/* READ MORE */
.mpg-read-more {
  display: inline-block;
  color: var(--mpg-read-more-color, #fff);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  margin-top: auto;
}

.mpg-read-more:hover {
  text-decoration: underline;
}

/* VIEW MORE button */
.mpg-load-more-wrap {
  text-align: center;
  margin-top: 30px;
}

.mpg-load-more {
  background: #f97316;
  color: #fff;
  border: none;
  padding: 12px 36px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.5px;
}

.mpg-load-more:hover {
  background: #ea6c0a;
}

.mpg-load-more.mpg-loading {
  opacity: 0.7;
  cursor: wait;
}

.mpg-load-more.mpg-hidden {
  display: none;
}

/* Responsive */
@media (max-width: 600px) {
  .mpg-grid {
    grid-template-columns: 1fr;
  }
  .mpg-post.mpg-big {
    grid-row: span 1;
  }
}
