.story__section {
    position: relative;
}

.story__section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(252, 253, 254, 1) 50%, rgba(255, 255, 255, 0.9) 100%);
    z-index: -1;
}

.story__items {
    display: grid;
    gap: 30px;
    margin: 50px 0;
}

.story__item {
    backdrop-filter: blur(8px);
    background-color: oklab(0.999994 0.0000455678 0.0000200868 / 0.9);
    border: 1px solid;
    border-color: oklab(0.928 -0.000571842 -0.00597269 / 0.7);
    border-radius: 15px;
    padding: 30px;
    cursor: pointer;
    transition-duration: .3s;
}

.story__item:hover {
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
    border-color: oklab(0.729884 0.16093 0.0369245 / 0.3);
}

.story__background-icon {
    position: absolute;
    opacity: .1;
    right: 24px;
}

.story__background-icon img {
    width: 64px;
    height: 64px;
}

.story__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.story__header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.story__header-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to right bottom, oklab(0.729884 0.16093 0.0369245 / 0.2) 0%, oklab(0.36342 -0.000455797 -0.127774 / 0.2) 100%);
    border-radius: 50%;
    width: 64px;
    height: 64px;
}

.story__header-image span {
    display: block;
    color: oklch(0.145 0 0);
    font-size: 24px;
}

.story__header-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.story__header-name {
    margin: 0;
}

.story__header-bottom {
    display: flex;
    gap: 10px;
}

.story__header-country {
    font-size: 14px;
    line-height: 1;
}

.story__header-rating {
    display: flex;
    gap: 3px;
}

.story__header-rating svg {
    width: 12px;
    height: 12px;
}
.story__header-rating svg.fill-gold {
    fill: oklch(.828 .189 84.429);
}
.story__body p {
    font-style: italic;
}

@media screen and (min-width: 768px) {
    .story__items {
        grid-template-columns: 1fr 1fr;
    }
}