  .small_card_scope {
    --small_card-width: 14vw;
    --small_card-bg: hsl(214.6, 57.8%, 82.4%);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    background: #f6f7fb;
    padding: 24px;
    color: #111;
  }

  .small_card_scope .small_card_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* wyśrodkowanie w kontenerze */
  }

  .small_card_scope .small_card_link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
  }

  .small_card_scope .small_card {
    width: var(--small_card-width);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    aspect-ratio: 4 / 5;
    box-shadow: 0 6px 18px rgba(15, 20, 30, 0.08);
    background: var(--small_card-bg);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    min-width: 120px;
  }

  .small_card_scope .small_card_link:hover .small_card,
  .small_card_scope .small_card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(15, 20, 30, 0.12);
  }

  .small_card_scope .small_card_media {
    flex: 1 1 auto;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    padding: 8px;
  }

  .small_card_scope .small_card_media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
  }

  .small_card_scope .small_card_meta {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    gap: 8px;
  }

  .small_card_scope .small_card_age {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: #222;
  }

  .small_card_scope .small_card_age_icon {
    background: #708594;
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .small_card_scope .small_card_price {
    font-weight: 700;
  }

  .small_card_scope .small_card_price small {
    font-weight: 400;
    margin-left: 4px;
    color: #444;
  }

  @media (max-width: 900px) {
    .small_card_scope {
      --small_card-width: 22vw;
    }
  }

  @media (max-width: 600px) {
    .small_card_scope {
      --small_card-width: 45vw;
    }
  }