.postcard {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding-top: 60px;
    overflow: hidden;
}

.postcard > * { flex: 0 0 100%; }

.postcard .text-area {
    order: 2;
    padding: 30px;
}

.postcard .img-area {
    position: relative;
    display: none;
    order: 1;
}

.postcard .img-area .background {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: auto 100%;
    background-position: left center;
    background-repeat: no-repeat;
}

@media (min-width: 860px) {
    .postcard .text-area {
        flex: 2;
        order: 1;
        padding: 62px 0 62px 62px;
    }

    .postcard .text-area .inner { min-height: 700px;}
    
    .postcard .img-area {
        display: block;
        flex: 3;
        order: 2;
    }
}

@media (min-width: 1260px) {
    .postcard .text-area { padding: 122px 0 122px 126px; }

    .postcard .text-area .inner {
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }
}

.postcard h2 {
    margin-bottom: 18px;
    font-size: 70px;
    font-weight: 100;
}

.postcard h2 small {
    display: block;
    margin-top: 4px;
    font-size: 30px;
    font-weight: 700;
}

@media (max-width: 859px) {
    .postcard h2 {
        font-size: 50px;
        line-height: 1;
    }
    
    .postcard h2 small {
        font-size: 23px;
        margin-top: 10px;
        line-height: 1.2;
    }   
}

.postcard .read-more {
    display: inline-block;
	margin-bottom: 16px;
	padding: 18px 28px;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 1px;
	color: #1a1a1a;
	text-transform: uppercase;
	text-decoration: none;
	background-color: #FDB924;
	transition: background-color 400ms cubic-bezier(0,0,0.3,1);
	cursor: pointer;
}

.postcard .read-more:hover {
    text-decoration: none;
    background-color: #F7AA02;
}

.postcard .core-styles ul:not([class*="block-grid-"]),
.postcard .core-styles ol:not([class*="block-grid-"]) {
    padding-left: 1.3125rem;
    font-size: 20px;
    font-weight: 300;
    list-style-type: disc;
}

@media (max-width: 859px) {
    .postcard .core-styles ul:not([class*="block-grid-"]),
    .postcard .core-styles ol:not([class*="block-grid-"]) { line-height: 1.2; }
}

.postcard .core-styles ol:not([class*="block-grid-"]) { list-style: decimal; }

.postcard .core-styles ul:not([class*="block-grid-"]) li::before,
.postcard .core-styles ol:not([class*="block-grid-"]) li::before { content: none; }

.postcard .core-styles p {
    max-width: 525px;
    font-size: 20px;
    font-weight: 300;
}

@media (max-width: 859px) {
    .postcard .core-styles p { line-height: 1.2; }
}

.postcard .core-styles blockquote { position: relative; }

.postcard .core-styles blockquote::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 61px;
    height: 50px;
    background-image: url(/includes/public/assets/shared/quotes.png);
    background-size: 100%;
    transform: translate(calc(-100% - 20px),-50%);
}

.postcard .core-styles blockquote p { margin-bottom: 8px; }

.postcard .core-styles blockquote p strong { font-weight: 700; }