.content {
    display: flex;
    flex-direction: column;
}



.content .pack-logo {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 50px 0 50px 0;
    width: 100%;
}


.content .pack-logo img {
    height: 150px;
    width: 150px;
}



.pack-category {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
    margin: 50px auto;
    max-width: 1570px;
    min-height: 300px;
    padding: 10px;
}


.pack-category a.pack-list .pack {
    background-color: #252422;
    display: flex;
    flex-direction: column;
    height: 100%;
    outline: 3px solid #1e1e1f;
    padding: 12.5px 12.5px 15px;
    transition: transform .1s ease-in-out;
    width: 100%;
}
.pack-category a.pack-list .pack:focus-visible {
    outline: var(--pack-focus-outline);
}
.pack-category a.pack-list .pack:hover, .pack-category a.pack-list .pack:hover:focus-visible {
    background-color: var(--pack-hover);
}
.pack-category a.pack-list .pack:active, .pack-category a.pack-list .pack:active:focus-visible {
    background-color: var(--pack-hover);
    outline: var(--pack-active-outline);
    transform: scale(.95);
}


.pack-category a.pack-list .pack .thumbnail {
    aspect-ratio: 16 / 9;
    background-color: #2b2b2b;
    background-image: url(/media/assets/image_placeholder/pack-thumbnail-list.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    margin: 0 auto;
    outline: 3px solid #000;
    position: relative;
    width: 100%;
}
.pack-category a.pack-list .pack .thumbnail img {
    color: #000;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
}


.pack-category a.pack-list .pack .title {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 15px;
    max-height: 49px;
    width: 100%;
}
.pack-category a.pack-list .pack .title h3 {
    display: -webkit-box;
    height: 100%;
    overflow: hidden;
    width: 100%;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


.pack-category a.pack-list .pack .author {
    margin: 10px 0 15px;
}
.pack-category a.pack-list .pack .author h4 {
    max-height: 20px;
    white-space: nowrap;
}


.pack-category a.pack-list .pack .panel-three {
    align-items: center;
    display: flex;
    height: 25.2px;
    margin-top: auto;
    justify-content: space-between;
}


.pack-category a.pack-list .pack .panel-three .pack-type {
    align-items: center;
    background-color: #0d0d0d;
    display: flex;
    max-width: 125px;
    padding: 5px;
}
.pack-category a.pack-list .pack .panel-three .pack-type img.pack-icon {
    height: 15px;
    margin-right: 5px;
    overflow: hidden;
    width: 15px;
}
.pack-category a.pack-list .pack .panel-three .pack-type p {
    display: -webkit-box;
    font-size: .75rem;
    height: 100%;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}


.pack-category a.pack-list .pack .panel-three .download-count h3 {
    text-shadow: var(--text-wh-shadow);
}
.pack-category a.pack-list .pack .panel-three .download-count h3::before {
    background-image: url('/media/assets/icons/white/Download.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: '';
    display: inline-block;
    height: 18px;
    margin-right: 5px;
    vertical-align: middle;
    width: 18px;
}






/* @media area for pack-category */
@media only screen and (min-width: 500px) {
    .pack-category {
        grid-template-columns: repeat(2, 1fr);
    }
}



@media only screen and (min-width: 768px) {
    .pack-category {
        grid-template-columns: repeat(3, 1fr);
    }
}



@media only screen and (min-width: 1275px)  {
    .pack-category {
        grid-template-columns: repeat(4, 1fr);
    }
}