.card-grid-frontend .card-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .card {
    background: #fff;
    border: 1px solid #0073aa;
    display: flex;
  flex-direction: column;
   
  }
  
  .card img {
    width: 100%;
  }
  
  .card h4 {
    margin: 0 0 0.5rem;
    font-size: 24px;
    color: #0073aa;
    text-transform: uppercase;
  }
  
  .card p {
    font-size: 20px;
    color: #000000;
    flex-grow: 1;
    
  }
  
  .card .read-more {
    text-decoration: none;
    color: #00466e;
    font-weight: bold;
    background: none;
    text-transform: uppercase;
    font-size: 22px;
    padding: 0px;
    display: inline-flex;
    align-items: center;
  }
  
  .cardArrow {
    margin-left: 6px;
    background: url("../../images/arrow_black.png") no-repeat;
    background-size: contain;
    background-position: center center;
    vertical-align: middle;
    width: 22px;
    height: 14px;
    display: inline-block;
    
  }
  
  .card .read-more:hover .arrow {
    margin-left: 10px;
  }
  
  .cardContent{
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }