/* Home page */

.customer-story-home-aspect-ratio-1-1 .stories-updates-tag, .customer-story-home-aspect-ratio-2-1 .stories-updates-tag {
	display: none;
}

.customer-story-home-aspect-ratio-1-1 .customer-story-card-container {
	aspect-ratio: 1/1;
}

.customer-story-home-aspect-ratio-2-1 .customer-story-card-container {
	aspect-ratio: 2/1;
}

.customer-story-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.customer-story-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        180deg, 
        rgba(30, 54, 83, 0) 0%,    /* fully transparent at very top */
        rgba(30, 54, 83, 0) 50%,   /* still transparent halfway down */
        rgba(30, 54, 83, 1) 90%    /* solid at 90% */
    );
    z-index: 1;
}

.customer-story-img img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

@media (max-width: 1024px) {

	.customer-story-home-aspect-ratio-2-1 .customer-story-card-container {
		aspect-ratio: 1/1;
	}

}