.experience-page {
    width: 100%;
    height: auto;
    background-color: var(--primary-colour);
    color: var(--white-colour);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}

.experience-page.sold-auctions {
    border-top: 2px solid var(--dark-colour);
    margin-bottom: 0;
}

.title {
    text-align: center;
    font-weight: var(--font-weight-semibold);
    margin-top: 8rem;
    margin-bottom: 1.25rem;
    font-size: var(--font-size-xl);
    line-height: 1;
}

.experience-page .experience-grid {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    max-width: var(--site-max-width);
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem;
}

.experience-grid .experience-item {
    color: inherit;
    text-decoration: inherit;
    position: relative;
    aspect-ratio: 16 / 9;
    width: 320px;
    max-width: 100%;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 1rem;
}

.experience-item img {
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0px;
    color: transparent;
    filter: blur(5px);
    transition: 0.3s ease;
}

.experience-item .game-icon {
    width: 125px;
    height: auto;
    display: flex;
    margin: auto;
    filter: blur(0px);
    border-radius: var(--border-radius-s);
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.85));
}

.experience-item:hover img {
    scale: 1.075;
    transition: 0.3s ease;
}

.experience-item .experience-details {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    height: 50%;
    /* background: linear-gradient(rgba(0, 00, 00, 0), rgba(0, 0, 0, .9)); */
    background: linear-gradient(180deg,rgba(31, 31, 31, 0) 0%, rgba(7, 7, 7, 0.44) 46%, rgba(0, 0, 0, 0.8) 69%, rgba(0, 0, 0, 1) 100%);
}

.experience-details .details-container {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
}

.details-container .game-name {
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowwrap;
    text-wrap: nowwrap;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: var(--font-weight-semibold);
}

.details-container .publisher-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.publisher-details .author {
    margin: 0;
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: .25rem;
    overflow: hidden;
    font-size: .875rem;
    line-height: 1.25rem;
    color: rgb(229, 229, 229);
    text-overflow: ellipsis;
}

.author span {
    font-weight: var(--font-weight-semibold);
    text-overflow: ellipsis;
    overflow: hidden;
}

.publisher-details .experience-stats {
    display: flex;
    flex-shrink: 0;
    gap: .5rem;
    font-size: .875rem;
    line-height: 1.25rem;
}

.experience-stats p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-semibold);
    margin: 0;
}

.experience-stats p i {
    margin-right: 2.5px;
    color: lightgreen;
}

.experience-details p i span {
    text-decoration: none;
    font-style: normal;
    color: rgb(0, 174, 255);
}

.auctions-section {
    width: 100%;
    height: 100vh;
}