/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 14 2026 | 16:43:34 */
  .simple-posts {
    text-align: center;
    margin: 0em auto;
    max-width: 1150px;
  }

  #post-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-bottom: 1.5em;
  }

  .post-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
  }

  .post-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    background: #f4f6f8;
  }

  .post-body {
    padding: 1rem 1.2rem;
    flex: 1;
  }

  .post-meta {
    font-size: 0.85rem;
    color: #616b75;
    margin-bottom: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .post-meta .post-cat {
    font-weight: 600;
  }

.post-meta .post-cat::after {
  content: "•";
  margin: 0 6px;
  color: #616b75;
  font-weight: normal;
}

  .post-card h3 {
    margin: 0.5em 0;
    font-size: 1.15rem;
    line-height: 1.3;
  }

  .post-card h3 a {
    text-decoration: none;
    color: #0d1722;
    font-weight: bold;
  }

  .post-card h3 a:hover {
    text-decoration: underline;
  }

  .excerpt {
    margin-top: 0.4rem;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Navigace */
  .post-nav {
    display: flex;
    justify-content: center;
    gap: 25px;
  }

  .post-nav button {
    background: #324A6D;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    padding: 10px 20px;
    border: none;
    border-radius: 22px;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .post-nav button:hover {
    background: #324a69;
  }

  .post-nav button:disabled {
    opacity: 0.5;
    cursor: default;
  }