.container {
    position: relative;
    overflow: hidden;
    width: 380px;
    height: 840px;
    border-radius: 20px;
    flex-shrink: 0;
    border: 5px solid var(--light-grey) !important;
    background-color: var(--das-blue);
}

.story-card {
    height: 80%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.story-card-position-container {
    margin-bottom: 20px;

    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.story-card-position-description {
    font-weight: 500;
    line-height: 1.3;
    color: white;
    margin: 0;
}

.story-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    top: 80%;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
}

.story-card-logo {
    position: absolute;
    left: 0;
    right: 0;
    height: 20%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-card-logo img {
    width: auto;
    height: 100px;
}

.story-card-text {
    position: absolute;
    height: 80%;
    bottom: 0;

    background-color: var(--grey-background);
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    /**padding-bottom: var(--wp--preset--spacing--10);*/
    padding-bottom: 0;

    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container:hover .story-card-content {
    top: 0;
    margin-top: 0;
}

.container:hover .story-card-logo {
    bottom: 80%;
}

.container:hover .story-card-text {
    top: 20%;
}

.story-card-quote {
    margin: auto 0 !important;
    padding: var(--wp--preset--spacing--10);

    line-height: 1.3;
    text-align: center;
    font-style: italic;
    font-weight: 400;
    color: var(--das-blue);
}

.story-card-button {
    margin-bottom: 1em !important;
    background: var(--das-blue);
    padding: 20px 30px;
    border-radius: 15px;
	
    transition: transform 0.5s;
}

.story-card-button a {
    color: white;
    text-decoration: none;
}

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


/* v2 */

.card-container {
    border: 2px solid var(--das-blue);
    border-radius: 20px;
    background: var(--light-grey);
    color: black;
    padding: 20px;
    font-size: 1.4rem;
	display: flex;
	flex-direction: column;
}

.card-header {
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin-left: 20px;
}

/* ? */
div.card-container  div.wp-block-image  > img {
	display: block;
    max-width: 180px;
	width: auto;
	height: auto;
	
	border-radius: 20px;
}

.card-quote {
	padding-top: 20px;
    margin: auto 0 !important;

    line-height: 1.3;
    text-align: center;
    font-style: italic;
    font-weight: 400;
}

.card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 20px 0;
	margin-top: auto;
}

.card-logo > img {
	width: auto;
	height: 100px;
}

.card-button {
	background: var(--orange);
	padding: 10px 30px;
	border-radius: 15px !important;
	display: inline-block;
	text-align: center;
	margin: 0 auto;
}

.card-button > a {
	color: white !important;
	text-decoration: none;
}

.card-content {
	display: flex;
	flex-flow: column;
}
