/* BASE STYLES */
img {
	object-fit: contain;
}

/* LaTeX images - centered with spacing */
img.latex {
	display: block;
	margin: 0 auto 1em;
}

/* Figure spacing */
figure {
	padding-bottom: 1.5em;
}

/* Resized figures should not have extra padding */
figure.aligncenter.size-large.is-resized {
	padding-bottom: 0 !important;
}

/* Lock/paywall icon sizing */
figure.aligncenter.size-large.is-resized img[src*="lock-paywall.svg"] {
	width: 48px;
	height: 48px;
}

/* HEADING DECORATIONS */
/* H2 - Full line decoration on both sides */
h2 {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
}

h2:before,
h2:after {
	content: '';
	border-top: 4px solid;
	margin: 0 20px 0 0;
	flex: 1 0 20px;
}

h2:after {
	margin: 0 0 0 20px;
}

/* H3 - Dotted line decoration on right side */
h3 {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
}

h3:after {
	content: '';
	border-top: 2px dotted;
	margin: 0 0 0 20px;
	flex: 1 0 20px;
}

/* Text transformation */
.post-header,
h2,
h3,
h4,
h5,
h6 {
	text-transform: uppercase;
}

/* INSTAGRAM GALLERY */
.wp-block-jetpack-instagram-gallery__grid-post {
	position: relative;
}

.wp-block-jetpack-instagram-gallery__grid-post::after {
	content: "";
	display: block;
	padding-bottom: 100%;
}

.wp-block-jetpack-instagram-gallery__grid-post img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

/* TABLES */
.post-content td {
	padding: 5px;
	line-height: 120%;
	text-align: center;
}

/* PAYWALL & SUBSCRIPTION */
.wp-block-group.jetpack-subscribe-paywall {
	padding: 28px !important;
}

.wp-block-group.is-layout-flex.wp-block-group-is-layout-flex {
	margin-top: 20px;
}

.wp-block-group__inner-container.wp-container-core-group-is-layout-440eca66 > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	max-width: 550px !important;
}

.wp-block-jetpack-subscriber-login {
	display: inline-block;
	padding: 12px 20px;
	background-color: #3F4854;
	text-decoration: none;
	border-radius: 0;
	transition: background-color .3s ease;
}

.wp-block-jetpack-subscriber-login:hover {
	background-color: #13C4A5;
}

.wp-block-jetpack-subscriber-login a {
	text-align: center;
	font-size: 14px;
	color: white !important;
}

/* MEDIA TEXT BLOCK */
.wp-block-media-text__media {
	padding: 20px;
}

/* COLUMNS */
.column.column-2.one-third.medium-padding {
	text-align: center;
}

/* QUOTE BLOCK OVERRIDES */
.wp-block-quote,
.wp-block-quote.is-layout-flow p {
	border: none;
	background: none;
	padding: 0;
	margin: 1em 0;
	font-style: italic;
	font-size: inherit;
	text-align: left !important;
}

.wp-block-quote::before,
.wp-block-quote::after {
	content: none !important;
}

.wp-block-quote {
	border-left: 4px solid #333;
	padding-left: 1em;
}

.wp-block-quote cite {
	display: block;
	font-style: normal;
	font-size: .9em;
	text-align: right;
	margin-top: .5em;
	color: #555;
}

/* HIDE SHARING BUTTONS */
.sharedaddy,
.sd-sharing {
	display: none;
}

/* ADMONITION INFO */
.admonition-info {
	background-color: #E5F8F6;
/* Light green background */
	border-left: 5px solid #13C4A5;
/* Bright green accent line */
	padding: 16px;
	margin: 20px 0;
	border-radius: 4px;
	color: #333333;
/* Dark grey text for readability */
}