/*
Theme Name: Silk Lite
Description: Used to style the TinyMCE editor.
*/
/**
 *
 * Table of Contents
 * --------------------------------------------------
 *  1.0 - Body
 *  2.0 - Base Styles
 *    2.1 - Typography
 *    2.2 - Images
 *  3.0 - Helpers
 *    3.1 - Theme specific classes
 *    3.2 - Alignments
 *  4.0 - Media queries
 */
/**
 * 1.0 - Body
 * --------------------------------------------------
 */
html {
	padding: 24px 36px;
}

body.wp-editor {
	font-size: 18px;
	-webkit-font-smoothing: auto !important;
	line-height: 1.75;
	margin-left: auto;
	margin-right: auto;
	max-width: 660px;
}

/**
 * 2.0 - Base Styles
 *   2.1 - Typography
 *   -------------------------------------------------
 */
.hide,
.hidden,
.assistive-text,
.screen-reader-text,
[hidden] {
	display: none;
}

.inline {
	display: inline;
}

.block {
	display: block;
}

.inline-block {
	display: inline-block;
}

.table {
	display: table;
}

.table-cell {
	display: table-cell;
}

.table-row {
	display: table-row;
}

.table-row-group {
	display: table-row-group;
}

.table-column {
	display: table-column;
}

.table-column-group {
	display: table-column-group;
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-scroll {
	overflow: scroll;
}

.left {
	float: left;
}

.right {
	float: right;
}

.fit {
	max-width: 100%;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.fixed {
	position: fixed;
}

.static {
	position: static;
}

.bold {
	font-weight: bold;
}

.regular {
	font-weight: normal;
}

.italic,
h1,
h2 {
	font-style: italic;
}

.caps,
h4 {
	text-transform: uppercase;
}

.align-left {
	text-align: left;
}

.align-center {
	text-align: center;
}

.align-right {
	text-align: right;
}

.align-justify {
	text-align: justify;
}

.align-top {
	vertical-align: top;
}

.align-middle {
	vertical-align: middle;
}

.align-bottom {
	vertical-align: bottom;
}

.nowrap {
	white-space: nowrap;
}

.pointer-auto {
	pointer-events: auto;
}

.pointer-none {
	pointer-events: none;
}

h1,
h2,
h3,
blockquote,
.dropcap {
	font-family: "Playfair Display", serif;
	font-weight: normal;
	-webkit-font-smoothing: auto;
}

body,
blockquote cite,
h4 {
	font-family: "Merriweather", serif;
	font-weight: 300;
}

html {
	font-size: 87.5%;
	line-height: 1.71429;
}

body {
	color: #403b3c;
}

/* Headings */
h1 {
	color: #a33b61;
	font-size: 3.21429rem;
	line-height: 1.25;
	margin-bottom: 1.71429rem;
	margin-top: 3.42857rem;
}

h2 {
	color: #a33b61;
	font-size: 2.14286rem;
	line-height: 1.25;
	margin-bottom: 1.71429rem;
	margin-top: 3.42857rem;
}

h3 {
	font-size: 1.42857rem;
	margin-bottom: 1.71429rem;
	margin-top: 3.42857rem;
}

h4 {
	color: #a33b61;
	font-size: 0.78571rem;
	font-style: normal;
	margin-bottom: 1.71429rem;
	margin-top: 3.42857rem;
}

/* Paragraphs */
p {
	margin-bottom: 2.57143rem;
	margin-top: 0;
}

/* Links */
.mce-content-body a {
	background-image: linear-gradient(rgba(0, 0, 0, 0.25) 0%, #000000 100%);
	background-position: 0 95%;
	background-repeat: repeat-x;
	background-size: 1px 1px;
	text-decoration: none;
	text-shadow: 3px 0 white, 2px 0 white, 1px 0 white, -1px 0 white, -2px 0 white, -3px 0 white;
}
@media (-webkit-min-device-pixel-ratio: 1.75), (min-resolution: 168dpi) {
	.mce-content-body a {
		background-image: linear-gradient(rgba(0, 0, 0, 0.25) 0%, #000000 100%);
		background-position: 0 93%;
	}
}
.mce-content-body a:hover {
	background-image: linear-gradient(to bottom, #a33b61 0%, #a33b61 100%);
}

a {
	color: #000000;
	font-weight: 400;
	text-decoration: none;
	transition: all 0.15s;
}
h1 a,
.site-title a,
h2 a,
h3 a {
	color: #a33b61;
}
a:hover {
	color: #a33b61;
}
.edit-link a {
	margin: 0 6px;
}

/* Lists */
acronym {
	border-bottom: 1px dotted #b8b6b7;
}

/* Blockquotes */
blockquote {
	font-size: 1.71429rem;
	font-style: italic;
	-webkit-font-smoothing: antialiased;
	line-height: 1.6;
	margin: 2.14286rem auto;
	padding: 2.85714rem 1.07143rem;
	position: relative;
	text-align: center;
}
@media only screen and (min-width: 900px) {
	blockquote {
		margin: 3.21429rem auto;
		padding: 2.85714rem 2.14286rem;
	}
}
blockquote cite {
	background-color: white;
	bottom: -6px;
	font-size: 0.85714rem;
	font-style: normal;
	font-weight: 200;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 1;
}
blockquote:before {
	background-color: #fcc9b0;
	background-image: url("assets/svg/separator-simple-inversed.svg");
	color: white;
	content: "";
	display: block;
	height: 12px;
	left: 50%;
	max-width: 200px;
	position: absolute;
	top: 0;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 200px;
}
blockquote:after {
	background-color: #e6e6e6;
	bottom: 0;
	content: "";
	display: block;
	height: 2px;
	left: 50%;
	max-width: 200px;
	position: absolute;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 200px;
}

/* Tables */
table {
	border-top: 0;
	margin-bottom: 1.71429em;
	position: relative;
	table-layout: fixed;
	width: 100%;
	z-index: 1;
}
table th {
	text-align: left;
}
table tr {
	border-bottom: 1px solid #e6e6e6;
}
table th,
table td {
	font-family: inherit;
	font-size: inherit;
	padding: 12px;
	vertical-align: middle;
}

/* Code */
pre {
	border: 1px solid #e6e6e6;
	font-size: inherit;
	line-height: inherit;
	margin-bottom: 1.71429em;
	padding-bottom: 1.71429em;
	padding-left: 2.57143em;
	padding-right: 2.57143em;
	padding-top: 1.71429em;
	position: relative;
}

video {
	margin-bottom: 0.85714em;
}

/**
 *   2.2 - Images
 *   -------------------------------------------------
 */
img {
	height: auto;
	max-width: 100%;
}

/* Figures and Captions */
.wp-caption {
	margin-left: 0;
	margin-right: 0;
	width: auto;
}
.wp-caption img {
	display: block;
}

.wp-caption-dd {
	border-bottom: 2px solid #f2f2f2;
	font-size: 12px;
	padding: 14px 0;
}

/* Galleries */
.gallery {
	margin-left: -0.85714em;
	margin-top: -0.85714em;
}
.gallery .gallery-item {
	border: 0 solid transparent;
	border-left-width: 0.85714em;
	border-top-width: 0.85714em;
	display: inline-block;
	margin: 0;
	text-align: center;
	vertical-align: top;
}
.gallery .gallery-caption {
	border: 0;
}

.gallery-item img {
	margin: 0 auto;
}

/**
 * 3.0 - Helpers
 *   3.1 - Theme specific classes
 *   -------------------------------------------------
*/
.intro {
	font-size: 1.3125em;
	line-height: 1.75;
	margin-bottom: 2.25em;
}
@media not screen and (min-width: 900px) {
	.intro {
		color: #000000;
		font-size: 1.2em;
	}
}

@media only screen and (min-width: 1000px) {
	.twocolumn {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 50px;
		-moz-column-gap: 50px;
		column-gap: 50px;
	}
}
.dropcap {
	color: #a33b61;
	float: left;
	font-size: 5.42857em;
	line-height: 1.10526;
	line-height: 1;
	margin-bottom: -0.15789em;
	margin-right: 0.15789em;
	margin-top: -0.1em;
	text-shadow: 2px 2px 0px white, 4px 4px 0px #fcc9b0;
}

.highlight {
	margin: 0 4px;
	padding: 0 8px;
	position: relative;
}
.highlight:before {
	background: rgba(252, 201, 176, 0.4);
	bottom: -4px;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: -4px;
	z-index: -1;
}

/**
 *   3.2 - Alignments
 *   -------------------------------------------------
*/
/**
 * Fluid images for responsive purposes.
 * Offset `alt` text from surrounding copy.
 */
img {
	font-style: italic;
	height: auto;
	max-width: 100%;
}

.aligncenter,
.wp-caption.aligncenter,
.alignnone,
.wp-caption.alignnone,
.alignleft,
.wp-caption.alignleft,
.alignright,
.wp-caption.alignright {
	display: block;
	margin: 0;
	margin-bottom: 1.71429rem;
	width: auto !important;
}
@media not screen and (min-width: 740px) {
	.aligncenter,
	.wp-caption.aligncenter,
	.alignnone,
	.wp-caption.alignnone,
	.alignleft,
	.wp-caption.alignleft,
	.alignright,
	.wp-caption.alignright {
		margin-bottom: 1.2rem;
	}
}
.archive__grid .aligncenter,
.archive__grid
.alignnone,
.archive__grid
.alignleft,
.archive__grid
.alignright {
	margin-bottom: 0;
}

.aligncenter,
.wp-caption.aligncenter,
.alignnone,
.wp-caption.alignnone {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.aligncenter img,
.wp-caption.aligncenter img,
.alignnone img,
.wp-caption.alignnone img {
	margin: 0 auto;
}

.alignleft,
.wp-caption.alignleft,
.alignright,
.wp-caption.alignright {
	margin-top: 1.71429rem;
	max-width: 50%;
}
p + .alignleft,
p + .wp-caption.alignleft,
p + .alignright,
p + .wp-caption.alignright {
	margin-top: 0;
}
p > .alignleft:first-child,
p > :first-child > .alignleft:first-child,
p > .alignright:first-child,
p > :first-child > .alignright:first-child {
	margin-top: 0;
}

.alignleft,
.wp-caption.alignleft {
	float: left;
	margin-right: 3.42857rem;
}

.alignright,
.wp-caption.alignright {
	float: right;
	margin-left: 3.42857rem;
}

@media not screen and (min-width: 740px) {
	.alignleft,
	.wp-caption.alignleft {
		margin-right: 1.2rem;
	}

	.alignright,
	.wp-caption.alignright {
		margin-left: 1.2rem;
	}
}
figure {
	max-width: 100%;
}
figure img {
	display: block;
}

.wp-caption {
	text-align: left;
}

#wp-image-toolbar {
	z-index: 2;
}

/**
 * 4.0 - Media queries
 * --------------------------------------------------
 */
