/**
 * Majsterkowo WordPress Module Styles
 * 
 * @author Łukasz Więcek
 * @version 1.0.0
 */

.wordpress-post-card {
  height: 100%;
}

.wordpress-post-card .card {
  border: 1px solid #e9ecef;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.wordpress-post-card .card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-color: #aaa;
}

.wordpress-post-card .card-title {
  margin-bottom: 0;
}

.wordpress-post-card .card-title a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

.wordpress-post-card .card-title a:hover {
  color: #007bff;
  text-decoration: none;
}

.wordpress-post-card .card-text.text-muted {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.wordpress-post-card .material-icons {
  font-size: 1rem;
  vertical-align: middle;
}

.wordpress-post-card .btn .material-icons {
  font-size: 0.875rem;
  margin-left: 0.25rem;
}

.wordpress-post-card .card-body {
  padding: 1rem;
}

.card-img-top-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.wp-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.wp-featured-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 0.875rem;
  text-align: center;
}

.wp-featured-image-placeholder .material-icons {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.wp-featured-image-placeholder .placeholder-text {
  font-weight: 500;
  opacity: 0.7;
}

@media (max-width: 576px) {
  .card-img-top-wrapper {
    height: 150px;
  }
  
  .wp-featured-image-placeholder .material-icons {
    font-size: 2rem;
  }
}
