.pp-random-posts__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
  }
  
  .pp-random-posts__more { text-decoration: none; }
  
  .pp-random-posts__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
  
  @media (max-width: 1100px) {
    .pp-random-posts__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
  @media (max-width: 560px) {
    .pp-random-posts__grid { grid-template-columns: 1fr; }
  }
  
  .pp-post-card {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
  
  .pp-post-card__img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    display: block;
    background: rgba(0,0,0,.03);
  }
  
  .pp-post-card__body {
    padding: 12px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .pp-post-card__title {
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
  }
  
  .pp-post-card__meta {
    font-size: 12px;
    opacity: .7;
  }
  
  .pp-post-card__excerpt {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    opacity: .9;
  }
  
  .pp-post-card__link {
    margin-top: auto;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
  }
  

  .pp-post-card--link {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    color: inherit;
  }
  
  .pp-post-card--link:hover {
    border-color: rgba(0,0,0,.18);
  }
  
  .pp-post-card--link:focus {
    outline: 2px solid rgba(0,0,0,.25);
    outline-offset: 2px;
  }