/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 01 2026 | 10:24:53 */

/* PAGE */
.archive-page {
  margin-top: 100px;
}

.archive-title {
  font-size: 36px;
  margin-bottom: 30px;
}

/* GRID */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.post-card {
  position: relative;
}

.post-card__inner {
  display: block;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

/* HOVER */
.post-card__inner:hover {
  transform: translateY(-6px);
  border-color: rgba(225,6,0,0.5);
}

/* IMAGE */
.post-card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.post-card__content {
  padding: 18px;
}

/* META */
.post-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}

.post-card__cat {
  color: #e10600;
}

/* TITLE */
.post-card__title {
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
}

/* PAGINATION */
.pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.pagination .page-numbers {
  margin: 0 5px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  color: #fff;
  transition: 0.2s;
}

.pagination .page-numbers:hover {
  background: #e10600;
}

.pagination .current {
  background: #e10600;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }

  .post-card__image img {
    height: 180px;
  }
}
