.review-header {
    margin: auto;
    padding: 10px;
    max-width: 620px;
    color:  #fff;
    text-align: center;
}

.review-card-list {
    display: flex;
    overflow-y: hidden;
    flex-direction: row;
    position: relative;
    scroll-snap-type: x proximity;
    gap: 20px;
}

.review-card-list::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
.review-card-list::-webkit-scrollbar-thumb {
    background: #4d4e64;
}

.review-card-list::-webkit-scrollbar-track {
    background: #FFF4D5;
}


.review-card {
    margin: 20px 0px;
    min-width: 250px;
    padding: 1.5rem;
    border-radius: 16px;
    background: white;
    display: flex;
    flex-direction: column;
    transition: .2s;
    scroll-snap-align: start;
    clear: both;
    position: relative;
    z-index: 0;
    border: 4px solid #FFF4D5;
}
.review-card-header h5{
    margin: 0;
}

.review-card:hover {
    transform: translateY(-1rem);
    z-index: 1;
}

.review-card:not(:first-child) {
    transition: .2s;
}

.review-card-header {
    height: 20%;
    margin-bottom: auto;
}

.review-card-header p {
    font-size: 14px;
    margin: 0 0 1rem;
}

.review-card-header h2 {
    font-size: 20px;
    margin: .25rem 0 auto;
    text-decoration: none;
    color: inherit;
    border: 0;
    display: inline-block;
    cursor: pointer;
}

.review-card-header h2:hover {
    background: linear-gradient(90deg,#ff8a00,#e52e71);
    text-shadow: none;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.review-card-author {
    margin: 1rem 0 0;
    display: flex;
    grid-template-columns: 75px 1fr;
    align-items: center;
    position: relative;
    flex-direction: column;
}

.author-avatar {
    grid-area: auto;
    align-self: start;
    position: relative;
    box-sizing: border-box;
}

.author-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: block;
    overflow: hidden;
    margin: 16px 10px;
}

.tags a:hover {
    background: linear-gradient(90deg,#ff8a00,#e52e71);
    text-shadow: none;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-box-decoration-break: clone;
    background-clip: text;
    border-color: white;
}
