/* RomsFull-Card-v2.0.css | Autor: Robinson Avila | By: WinDroidMODs */

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 600px) and (max-width: 899px) {
  .posts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
}
@media (min-width: 900px) {
  .posts-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .posts-grid {
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .posts-grid {
    gap: 0.8rem;
  }
}
.post-card,
#related-posts-root .post-card,
.apk-container .post-card {
  background: rgba(255, 87, 34, 0.15);
  border-radius: 30px;
  overflow: hidden;
  border: none;
  text-decoration: none !important;
  display: block;
  color: inherit;
  position: relative;
  box-shadow: none;
  transition: none;
}
.post-card:hover {
  transform: none;
  box-shadow: none;
}
.post-card__img {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 30px;
}
.post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: none;
  border-radius: 40px;
}
.post-card:hover .post-card__img img {
  transform: none;
}
.post-card__img .img-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 40px;
  pointer-events: none;
}
.post-card:hover .img-overlay {
  opacity: 1;
}
.img-overlay i {
  font-size: 2rem;
  color: white;
  background: rgba(255, 87, 34, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.post-card__featured-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  pointer-events: none;
}
.post-card__body {
  padding: 0 10px 10px 10px;
  text-align: center;
}
.post-card__title,
#related-posts-root .post-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #f5f5f5;
  word-break: break-word;
}
.post-card__title:hover,
#related-posts-root .post-card__title:hover {
  color: #FF5722;
}
@media (max-width: 768px) {
  .post-card__title,
  #related-posts-root .post-card__title {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .post-card__title,
  #related-posts-root .post-card__title {
    font-size: 0.85rem;
  }
}
.post-card__version {
  font-size: 0.75rem;
  color: #aaa;
  background: rgba(0, 0, 0, 0.3);
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}
.post-card__date {
  font-size: 0.7rem;
  color: #9e9e9e;
  margin-bottom: 0.5rem;
}
.rating-stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
}
.rating-star {
  width: 16px;
  height: 16px;
  display: inline-block;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  box-shadow: 0 0 4px rgba(255, 215, 0, 0.5), inset 0 0 4px rgba(255, 255, 255, 0.8);
}
.rating-star.full {
  background: radial-gradient(circle at 30% 30%, #fff8c5 0%, #ffd700 40%, #ffa500 100%);
}
.rating-star.empty {
  background: #e0e0e0;
}
.post-card__tags, .post-card__meta, .post-card__snippet {
  display: none;
}
