/* ==========================
   Dlaždice Servis / Půjčovna
   ========================== */

   .bb-tiles-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin: 3rem auto;
    max-width: 1000px;
    padding: 0 1rem;
  }
  
  .bb-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 2.2rem 1.5rem;
    text-decoration: none;
    border: 1px solid #e1e5ea;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }
  
  .bb-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
    border-color: #d0dae5;
  }
  
  .bb-tile-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 1.4rem;
    opacity: 0.85;
  }
  
  .bb-tile-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #1f2933;
    text-align: center;
  }
  
  @media (max-width: 600px) {
    .bb-tile-title {
      font-size: 1.6rem;
    }
  
    .bb-tile-img {
      width: 90px;
      height: 90px;
    }
  }
  