a.pack-list {
    margin-right: 10px;
}
a.pack-list:last-child {
    margin-right: 0px;
}


a.pack-list .pack {
    background-color: #252422;
    display: flex;
    flex-direction: column;
    height: 270px;
    position: relative;
    /* only put `scroll-snap-align: center; on a certain HTML files if it's a carousel*/
    transition: transform .1s ease-in-out;
    width: 250px;
}
a.pack-list .pack:focus-visible {
    outline: var(--pack-focus-outline);
}
a.pack-list .pack:hover, a.pack-list .pack:hover:focus-visible {
    background-color: var(--pack-hover);
}
a.pack-list .pack:active,a.pack-list .pack:active:focus-visible {
    background-color: var(--pack-hover);
    outline: var(--pack-active-outline);
    transform: scale(.95);
}


a.pack-list .pack .thumbnail {
    aspect-ratio: 16/9;
    background-color: #2b2b2b;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    outline: 1px solid #000;
    position: relative;
    width: 90%;
}
a.pack-list .pack .thumbnail::after {
    content: "";
    display: block;
    padding-bottom: 37.04%;
}
a.pack-list .pack .thumbnail img {
    color: #000;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
}


a.pack-list .pack .info {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    height: 100px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    width: 90%;
}


a.pack-list .pack .info .title {
    max-height: 49px;
}
a.pack-list .pack .info .title h3 {
    display: -webkit-box;
    height: 100%;
    overflow: hidden;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


a.pack-list .pack .info .author {
    margin-bottom: 10px;
    margin-top: 5px;
}
a.pack-list .pack .info .author h5 {
    max-height: 20px;
    white-space: nowrap;
}


a.pack-list .pack .panel-three {
    align-items: center;
    display: flex;
    height: 25.2px;
    margin-top: auto;
    justify-content: space-between;
}


a.pack-list .pack .panel-three .pack-type {
    align-items: center;
    background-color: #0d0d0d;
    display: flex;
    padding: 5px;
}
a.pack-list .pack .panel-three .pack-type img.pack-icon {
    height: 15px;
    margin-right: 5px;
    overflow: hidden;
    width: 15px;
}
a.pack-list .pack .panel-three .pack-type p {
    font-size: .75rem;
}


a.pack-list .pack .panel-three .price h3 {
    color: var(--rfb-blue);
    text-shadow: var(--rfb-blue-shadow);
}
a.pack-list .pack .panel-three .price h3.free {
    color: var(--rfb-green) !important;
    text-shadow: var(--rfb-green-shadow) !important;
}