/* ==========================================================================
   REDAKTÖRERNAS TIPS
   ========================================================================= */


/* Redaktörernas tips container */
.redaktor-tips-container {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 16px;
  padding: 24px;
  position: relative;
  z-index: 1000;
}

.redaktor-tips-container h3 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  text-align: center;
}

/* Grid layout for tips */
.redaktor-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Individual tip item */
.redaktor-tip-item {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.redaktor-tip-item img {
  border-radius: 4px;
  height: 120px;
  object-fit: cover;
  width: 100%;
  margin-bottom: 12px;
}

.redaktor-tip-item h4 {
  color: #333;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.redaktor-tip-item .author {
  color: #666;
  font-size: 0.9rem;
  margin: 0 0 4px 0;
}

.redaktor-tip-item .genre {
  color: #888;
  font-size: 0.8rem;
  font-style: italic;
  margin: 0 0 12px 0;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .redaktor-tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
  }
  
  .redaktor-tips-container {
    padding: 16px;
  }
  
  .redaktor-tip-item img {
    height: 100px;
  }
  
  .redaktor-tip-item h4 {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .redaktor-tips-grid {
    grid-template-columns: 1fr;
  }
  
  .redaktor-tip-item {
    display: flex;
    align-items: center;
    text-align: left;
  }
  
  .redaktor-tip-item img {
    flex-shrink: 0;
    height: 80px;
    margin-bottom: 0;
    margin-right: 12px;
    width: 60px;
  }
  
  .redaktor-tip-item h4 {
    margin-bottom: 4px;
  }
}
