#app-grid {
    padding: 25px;
    box-sizing: border-box;
    width: 100%;
}

a.app-badge {
    display: inline-block;
    width: 480px;
    height: 125px;
    border-radius: 10px;
    background-color: var(--c-element);
    margin: 10px 1%;
    padding: 10px;
    transition: .2s cubic-bezier(0, 0.55, 0.25, 1);
    position: relative;
}

a.app-badge:hover {
    transform: scale(1.03);
    box-shadow: 0px 0px 13px #ffffff0f;
}

div.app-badge-icon {
    overflow: hidden;
    float: left;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    color: var(--c-accent);
}

.app-badge svg {
    max-width: 85px;
    max-height: 85px;
}
/* Limits the height of images, but allows non-square icons */
.app-badge img {
    max-width: 100%;
    max-height: 85px;
}

div.app-badge-text {
    float: left;
    position: absolute;
    overflow: hidden;
    top: 50%;
    transform: translateY(-50%);
    left: 27%;
    right: 0;
    padding-right: 20px;
}

.app-badge-text h3 {
    font-size: 18px;
    color: var(--c-accent);
    font-weight: bold;
    margin: 0px;
}

.app-badge-text p {
    font-size: 14px;
    color: var(--c-text-el);
}
