/* xl - DESKTOP STYLES */ 
.story-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.story-card-image {
    position: absolute !important;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0 !important;
}

.story-card-image .et_pb_image_wrap {
    width: 100%;
    height: 100%;
    display: block;
}

.story-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.story-card:hover .story-card-image img {
    transform: scale(1.05);
}

.story-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(10, 25, 18, 0) 35%,
        rgba(10, 25, 18, 0.15) 55%,
        rgba(10, 25, 18, 0.80) 100%
    );
}

.story-card-content {
    position: absolute !important;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 32px 36px;
	min-height: 170px;
}

@media (max-width: 767px) {
    .story-card-content {
        min-height: auto;
    }
}

