
.ahof-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    justify-content: center; 
    padding: 40px;
    width: 80%
}

.ahof-card-container h2 {
  	font-family: roboto-slab;
}

.ahof-card-link {
    text-decoration: none; 
    color: inherit; 
    display: block; 
    }

.ahof-card {
        border-radius: 10px;
        border: 2px solid;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        width: 300px;
        height: 600px;
        overflow: hidden;
        text-align: left;
        transition: transform 0.2s ease-in-out;
    }

.ahof-card:hover {
    transform: scale(1.02);
    }
    
.ahof-card-img {
        margin-left: auto;
        margin-right: auto;
        width: auto;
  		max-width: 300px;
        max-height: 300px;
    }
    
.ahof-card-content {
        padding: 20px;
        padding-Top: 10px;
    }
      
.ahof-card-title {
        width: 100%;
        height: auto;
    }
      
.ahof-card-text {
        width: 100%;
        height: auto;
    }
      
.ahof-card-button {
        width: auto;
    }











