.bejegyzes-lista {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    font-family: "source-sans-pro", Sans-serif;
  }
  
  .bejegyzes-item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
  }
  
  .bejegyzes-kep {
    position: relative;
    margin-bottom: 5px;
  }
  
  .bejegyzes-kep img {
    width: 100%;
    height: 400px !important;
    object-fit: cover !important;
  }
  
  .ikon {
    position: absolute;
    bottom: -10px;
    right: 30px;
    width: 60px;
    height: 60px;
    border: none;
    background: linear-gradient(135deg, #F21D1D, #F27329, #F28A2E);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 2;
    padding: 20px;
}
  
  .bejegyzes-link-icon:hover {
    background-color: #333;
  }
  
  .bejegyzes-link-icon svg {
    fill: #fff;
    width: 25px;
    height: 25px;
}
  
  .bejegyzes-tartalom {
    margin-top: 12px;
  }
  
  .bejegyzes-kategoria {
    font-size: 13px;
    font-weight: 700;
    color: #F24822;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  
  .bejegyzes-cim {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 6px;
    text-transform: uppercase;
    color: #1A1A1A;
    line-height: 27px;
  }
  
  .bejegyzes-reszlet {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
  }
  

  
  @media (max-width: 768px) {
    .bejegyzes-lista {
      grid-template-columns: 1fr;
    }

    .ikon {
        width: 55px;
        height: 55px;
    }
  
    .bejegyzes-cim {
        font-size: 19px;
        line-height: 24px;
    }
  
    .bejegyzes-reszlet {
      font-size: 14px;
    }

    .bejegyzes-kep img {
        width: 100%;
        height: 250px !important;
        object-fit: cover !important;
    }
  }