.akof-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));

    gap: 20px;

    margin-top: 30px;
}

.akof-card {

    background: #fff;

    border-radius: 16px;

    padding: 20px;

    text-align: center;

    box-shadow:
        0 5px 20px rgba(0,0,0,.08);

    transition: .3s;
}

.akof-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 10px 30px rgba(0,0,0,.15);
}

.akof-card img {

    width: 100%;
    height: auto;
}

.akof-title {

    font-size: 16px;

    margin: 15px 0;
}

.akof-title a {

    text-decoration: none;
    color: #222;
}

.akof-price {

    font-size: 22px;

    font-weight: bold;

    color: #f1b600;

    margin-bottom: 15px;
}

.akof-button .button {

    background: #f1b600 !important;

    color: #000 !important;

    border-radius: 10px;

    padding: 12px 18px;
}