/* ==========================================================================
   EchoFeel Blog — navy / purple color theme
   Palette: navy #26276a | accent #857eb0 | dark #25294b | soft #f4f3f9
   ========================================================================== */

:root {
	--ef-navy: #26276a;
	--ef-navy-deep: #1c1d52;
	--ef-accent: #857eb0;
	--ef-accent-soft: #d4d0e8;
	--ef-accent-wash: #f4f3f9;
	--ef-dark: #25294b;
	--ef-text: #2a2a3a;
	--ef-muted: #6b6b7b;
	--ef-line: #e0dde9;
	--ef-white: #ffffff;
}

.ef-blog-main {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	max-width: 85% !important;
	width: 85%;
	margin-left: auto;
	margin-right: auto;
	--wp--style--global--content-size: 100%;
	--wp--style--global--wide-size: 100%;
	color: var(--ef-text);
}

body .wp-site-blocks {
	background: linear-gradient(180deg, var(--ef-accent-wash) 0%, #fff 220px);
}

.ef-blog-main.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	max-width: 85%;
}

.ef-blog-content,
.ef-single-content {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.ef-blog-query.alignwide,
.ef-blog-query.alignfull,
.ef-blog-content .wp-block-query {
	max-width: 100% !important;
	width: 100%;
}

.ef-single-title,
.ef-single-header .wp-block-post-title,
.ef-single-content > .wp-block-group:first-child .wp-block-post-title {
	margin: 0 0 14px;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.25;
	color: var(--ef-navy);
}

.ef-single-post-content {
	font-size: 16px;
	line-height: 1.75;
	color: var(--ef-text);
	width: 100%;
	max-width: 100% !important;
}

/* Override theme.json 645px content width inside single posts */
.ef-single-main .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
.ef-single-main .wp-block-post-content > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
.ef-single-main .ef-single-post-content > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	max-width: 100% !important;
}

.ef-single-main .wp-block-post-content,
.ef-single-main .ef-single-post-content {
	width: 100%;
}

.ef-single-main .wp-block-post-content.alignfull,
.ef-single-main .ef-single-post-content.alignfull {
	max-width: 100% !important;
}

/* Post cards */
.ef-post-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.ef-post-card {
	margin: 0;
	padding: 0;
	border: 1px solid var(--ef-line);
	border-radius: 12px;
	background: var(--ef-white);
	box-shadow: 0 6px 20px rgba(38, 39, 106, .07);
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

.ef-post-card:hover {
	border-color: var(--ef-accent);
	box-shadow: 0 12px 32px rgba(38, 39, 106, .14);
	transform: translateY(-3px);
}

.ef-post-list > .ef-post-card:last-child {
	margin-bottom: 0;
}

/* Keep image + text side-by-side without overlap */
.ef-post-card__columns.wp-block-columns {
	display: flex !important;
	flex-wrap: nowrap !important;
	gap: 0 !important;
	margin: 0 !important;
	align-items: stretch !important;
	width: 100% !important;
	max-width: 100% !important;
}

.ef-post-card__image-col.wp-block-column {
	flex: 0 0 38% !important;
	width: 38% !important;
	max-width: 38% !important;
	min-width: 0 !important;
	padding: 0 !important;
	overflow: hidden;
	border-right: 1px solid var(--ef-line);
	box-sizing: border-box;
}

.ef-post-card__body-col.wp-block-column {
	flex: 1 1 62% !important;
	width: 62% !important;
	max-width: 62% !important;
	min-width: 0 !important;
	padding: 28px 30px !important;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.ef-post-card__image-col .ef-post-card__image,
.ef-post-card__image-col .wp-block-post-featured-image {
	height: 100%;
	width: 100%;
	max-width: 100%;
	margin: 0 !important;
	overflow: hidden;
}

.ef-post-card__image-col .ef-post-card__image img,
.ef-post-card__image-col .wp-block-post-featured-image img {
	width: 100% !important;
	max-width: 100% !important;
	height: 100%;
	min-height: 240px;
	display: block;
	object-fit: cover;
	border-radius: 0;
	transition: transform .35s ease;
}

.ef-post-card:hover .ef-post-card__image-col img {
	transform: scale(1.04);
}

.ef-post-card__image-col a {
	display: block;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.ef-post-card__category {
	margin: 0 0 10px;
}

.ef-post-card__category a,
.ef-post-card__category .wp-block-post-terms__prefix {
	display: inline-block;
	padding: 4px 10px;
	background: var(--ef-accent-wash);
	color: var(--ef-navy);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 3px;
}

.ef-post-card__category a:hover {
	background: var(--ef-navy);
	color: var(--ef-white);
}

.ef-post-card__title {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--ef-navy);
}

.ef-post-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color .2s ease;
}

.ef-post-card__title a:hover {
	color: var(--ef-accent);
}

.ef-post-card__excerpt {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--ef-muted);
}

.ef-post-card__excerpt p {
	margin: 0;
}

.ef-post-card__read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
	padding: 10px 20px;
	background: var(--ef-navy);
	color: var(--ef-white) !important;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .6px;
	text-transform: uppercase;
	text-decoration: none !important;
	border-radius: 4px;
	transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
	width: fit-content;
}

.ef-post-card__read-more::after {
	content: "\f178";
	font-family: FontAwesome;
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
}

.ef-post-card__read-more:hover {
	background: var(--ef-accent);
	color: var(--ef-white) !important;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(38, 39, 106, .25);
}

.ef-post-card__meta {
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--ef-line);
	align-items: center;
}

.ef-post-card__comments a,
.ef-post-card__date,
.ef-post-card__date a {
	font-size: 12px;
	color: var(--ef-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
	white-space: nowrap;
}

.ef-post-card__comments a:hover,
.ef-post-card__date a:hover {
	color: var(--ef-navy);
}

.ef-blog-pagination {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid var(--ef-line);
}

.ef-blog-pagination .wp-block-query-pagination-previous,
.ef-blog-pagination .wp-block-query-pagination-next,
.ef-blog-pagination .page-numbers {
	color: var(--ef-navy);
	text-decoration: none;
	font-size: 14px;
}

.ef-blog-pagination .page-numbers.current {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 32px;
	background: var(--ef-navy);
	color: var(--ef-white);
	border-radius: 4px;
}

/* Page layout — main + sidebar */
.ef-page-layout {
	align-items: flex-start;
	margin: 0;
	gap: 36px;
}

.ef-page-main-col,
.ef-page-sidebar-col {
	min-width: 0;
}

.ef-page-main-col {
	flex-basis: 60% !important;
	width: 60% !important;
}

.ef-page-sidebar-col {
	flex-basis: 40% !important;
	width: 40% !important;
	position: sticky;
	top: 24px;
}

.ef-archive-title {
	margin: 0 0 12px;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	color: var(--ef-navy);
}

.ef-archive-desc {
	margin: 0 0 28px;
	color: var(--ef-muted);
	font-size: 15px;
	line-height: 1.6;
}

/* Single post formatting */
.ef-single-header,
.ef-single-content > .wp-block-group:first-child {
	margin-bottom: 28px;
	padding: 22px 24px 20px;
	background: var(--ef-white);
	border: 1px solid var(--ef-line);
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(38, 39, 106, .06);
	position: relative;
	overflow: hidden;
}

.ef-single-header::before,
.ef-single-content > .wp-block-group:first-child::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--ef-navy), var(--ef-accent));
}

.ef-single-category,
.ef-single-header .wp-block-post-terms,
.ef-single-content > .wp-block-group:first-child .wp-block-post-terms {
	margin: 0 0 12px;
}

.ef-single-category a,
.ef-single-header .wp-block-post-terms a,
.ef-single-content > .wp-block-group:first-child .wp-block-post-terms a {
	display: inline-block;
	padding: 4px 10px;
	background: var(--ef-accent-wash);
	color: var(--ef-navy) !important;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	text-decoration: none !important;
	border-radius: 3px;
	border: 1px solid var(--ef-accent-soft);
}

.ef-single-category a:hover,
.ef-single-header .wp-block-post-terms a:hover,
.ef-single-content > .wp-block-group:first-child .wp-block-post-terms a:hover {
	background: var(--ef-navy);
	color: var(--ef-white) !important;
	border-color: var(--ef-navy);
}

.ef-single-meta,
.ef-single-header .ef-single-meta,
.ef-single-content > .wp-block-group:first-child .wp-block-group {
	gap: 8px 18px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--ef-line);
	font-size: 13px;
	color: var(--ef-muted);
	text-transform: uppercase;
	letter-spacing: .4px;
}

.ef-single-meta a,
.ef-single-meta .wp-block-post-date a,
.ef-single-meta .wp-block-post-author-name a,
.ef-single-meta .wp-block-post-comments-link a,
.ef-single-content > .wp-block-group:first-child .wp-block-group a {
	color: var(--ef-muted) !important;
	text-decoration: none !important;
}

.ef-single-meta a:hover,
.ef-single-content > .wp-block-group:first-child .wp-block-group a:hover {
	color: var(--ef-navy) !important;
}

.ef-single-featured-image,
.ef-single-content > .wp-block-post-featured-image {
	margin: 0 0 32px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(38, 39, 106, .12);
	border: 1px solid var(--ef-line);
}

.ef-single-featured-image img,
.ef-single-content > .wp-block-post-featured-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 0;
}

.ef-single-post-content p {
	margin: 0 0 1.25em;
}

.ef-single-post-content h2,
.ef-single-post-content h3,
.ef-single-post-content h4 {
	margin: 1.6em 0 .7em;
	color: var(--ef-navy);
	line-height: 1.3;
}

.ef-single-post-content ul,
.ef-single-post-content ol {
	margin: 0 0 1.25em;
	padding-left: 1.4em;
}

.ef-single-post-content a {
	color: var(--ef-navy);
}

.ef-single-post-content a:hover {
	color: var(--ef-accent);
}

.ef-single-tags {
	border-top: 1px solid var(--ef-line);
	margin-top: 20px;
}

.ef-single-tags a {
	display: inline-block;
	margin: 0 6px 8px 0;
	padding: 5px 12px;
	background: var(--ef-accent-wash);
	color: var(--ef-navy);
	border-radius: 20px;
	font-size: 12px;
	text-decoration: none;
}

.ef-single-tags a:hover {
	background: var(--ef-navy);
	color: var(--ef-white);
}

/* Sidebar */
.ef-sidebar {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.ef-sidebar-widget {
	margin: 0;
	padding: 22px 20px;
	width: 100%;
	box-sizing: border-box;
	background: var(--ef-white);
	border: 1px solid var(--ef-line);
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(38, 39, 106, .06);
	position: relative;
	overflow: hidden;
}

.ef-sidebar-widget::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--ef-navy), var(--ef-accent));
}

.ef-sidebar-widget__title {
	position: relative;
	margin: 0 0 18px;
	padding-left: 14px;
	font-size: 16px;
	font-weight: 700;
	text-transform: none;
	color: var(--ef-navy);
	border: none;
}

.ef-sidebar-widget__title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	bottom: 2px;
	width: 4px;
	background: var(--ef-accent);
	border-radius: 2px;
}

/* Recent posts */
.ef-recent-posts,
.ef-recent-posts.wp-block-latest-posts {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ef-recent-posts li {
	margin: 0;
	padding: 12px 0;
	border-bottom: 1px dashed var(--ef-line);
}

.ef-recent-posts li:first-child {
	padding-top: 0;
}

.ef-recent-posts li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.ef-recent-posts a {
	display: block;
	color: var(--ef-navy);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	transition: color .2s ease;
}

.ef-recent-posts a:hover {
	color: var(--ef-accent);
}

.ef-recent-posts .wp-block-latest-posts__post-date {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: var(--ef-muted);
	text-transform: uppercase;
	letter-spacing: .4px;
}

/* Archives & categories */
.ef-archives-list,
.ef-categories-list,
.ef-archives-list.wp-block-archives,
.ef-categories-list.wp-block-categories {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ef-archives-list li,
.ef-categories-list li {
	margin: 0;
	border-bottom: 1px dashed var(--ef-line);
}

.ef-archives-list li:last-child,
.ef-categories-list li:last-child {
	border-bottom: none;
}

.ef-archives-list a,
.ef-categories-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 11px 0;
	color: var(--ef-text);
	font-size: 14px;
	text-decoration: none;
	transition: color .2s ease;
}

.ef-archives-list a:hover,
.ef-categories-list a:hover {
	color: var(--ef-navy);
}

.ef-archives-list .wp-block-archives-list__post-count,
.ef-categories-list .wp-block-categories-list__post-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 22px;
	padding: 0 6px;
	background: var(--ef-accent-wash);
	color: var(--ef-navy);
	font-size: 11px;
	font-weight: 700;
	border-radius: 11px;
}

/* Follow Us grid */
.ef-follow-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ef-follow-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 42px;
	border-radius: 21px;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	transition: opacity .2s ease, transform .2s ease;
}

.ef-follow-btn:hover {
	opacity: 0.88;
	transform: translateY(-1px);
	color: #fff;
}

.ef-follow-x {
	background: #000;
}

.ef-follow-facebook {
	background: #1877f2;
}

.ef-follow-instagram {
	background: #e4405f;
}

.ef-follow-linkedin {
	background: #0a66c2;
}

.ef-follow-youtube {
	background: #ff0000;
}

.ef-follow-grid li:nth-child(5) {
	grid-column: 1;
}

/* Comments + Leave a Comment form */
.ef-comments {
	padding: 32px 28px;
	background: var(--ef-white);
	border: 1px solid var(--ef-line);
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(38, 39, 106, .06);
	position: relative;
	overflow: hidden;
}

.ef-comments::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--ef-navy), var(--ef-accent));
}

.ef-comments__heading {
	margin: 0 0 8px;
	font-size: 1.5rem;
	color: var(--ef-navy);
}

.ef-comments__title {
	margin: 0 0 24px;
	color: var(--ef-muted);
	font-weight: 500;
}

.ef-comment {
	padding: 18px;
	background: var(--ef-accent-wash);
	border-radius: 8px;
	border: 1px solid var(--ef-line);
}

.ef-comment__inner {
	gap: 14px;
}

.ef-comment__avatar img {
	border-radius: 50%;
	border: 2px solid var(--ef-accent-soft);
}

.ef-comment__meta {
	gap: 10px;
	margin-bottom: 8px;
	align-items: baseline;
}

.ef-comment__author {
	font-weight: 700;
	color: var(--ef-navy);
	font-size: 14px;
}

.ef-comment__author a {
	color: inherit;
	text-decoration: none;
}

.ef-comment__date {
	font-size: 12px;
	color: var(--ef-muted);
}

.ef-comment__content {
	font-size: 15px;
	line-height: 1.6;
	color: var(--ef-text);
}

.ef-comment__content p {
	margin: 0 0 .6em;
}

.ef-comment__actions {
	gap: 14px;
	margin-top: 8px;
	font-size: 13px;
}

.ef-comment__actions a {
	color: var(--ef-navy);
	text-decoration: none;
}

.ef-comment__actions a:hover {
	color: var(--ef-accent);
}

.ef-leave-comment {
	margin-top: 36px;
	padding-top: 28px;
	border-top: 1px solid var(--ef-line);
	max-width: 100%;
}

.ef-leave-comment__heading {
	margin: 0 0 8px;
	font-size: 1.35rem;
	color: var(--ef-navy);
}

.ef-leave-comment__note {
	margin: 0 0 22px;
	font-size: 13px;
	color: var(--ef-muted);
}

.ef-comment-form .comment-reply-title,
.ef-comments .comment-reply-title {
	font-size: 1.2rem;
	margin: 0 0 16px;
	color: var(--ef-navy);
}

.ef-comment-form .comment-form,
.ef-comments .comment-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ef-comment-form .comment-form-comment,
.ef-comment-form .comment-form-author,
.ef-comment-form .comment-form-email,
.ef-comment-form .comment-form-url,
.ef-comments .comment-form-comment,
.ef-comments .comment-form-author,
.ef-comments .comment-form-email,
.ef-comments .comment-form-url {
	margin: 0;
}

.ef-comment-form label,
.ef-comments .comment-form label {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--ef-navy);
}

.ef-comment-form input[type="text"],
.ef-comment-form input[type="email"],
.ef-comment-form input[type="url"],
.ef-comment-form textarea,
.ef-comments .comment-form input[type="text"],
.ef-comments .comment-form input[type="email"],
.ef-comments .comment-form input[type="url"],
.ef-comments .comment-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--ef-line);
	border-radius: 6px;
	font-size: 14px;
	font-family: inherit;
	color: var(--ef-text);
	background: var(--ef-white);
	transition: border-color .2s ease, box-shadow .2s ease;
	box-sizing: border-box;
}

.ef-comment-form textarea,
.ef-comments .comment-form textarea {
	min-height: 140px;
	resize: vertical;
}

.ef-comment-form input:focus,
.ef-comment-form textarea:focus,
.ef-comments .comment-form input:focus,
.ef-comments .comment-form textarea:focus {
	outline: none;
	border-color: var(--ef-accent);
	box-shadow: 0 0 0 3px rgba(133, 126, 176, .2);
}

.ef-comment-form .form-submit,
.ef-comments .comment-form .form-submit {
	margin: 4px 0 0;
}

.ef-comment-form .form-submit input[type="submit"],
.ef-comments .comment-form .form-submit input[type="submit"],
.ef-comment-form input[type="submit"],
.ef-comments .comment-form input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	background: var(--ef-navy);
	color: var(--ef-white);
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .4px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.ef-comment-form .form-submit input[type="submit"]:hover,
.ef-comments .comment-form .form-submit input[type="submit"]:hover,
.ef-comment-form input[type="submit"]:hover,
.ef-comments .comment-form input[type="submit"]:hover {
	background: var(--ef-accent);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(38, 39, 106, .25);
}

.ef-comment-form .comment-form-cookies-consent,
.ef-comments .comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	color: var(--ef-muted);
}

.ef-comment-form .comment-form-cookies-consent label,
.ef-comments .comment-form-cookies-consent label {
	font-weight: 400;
	margin: 0;
}

.ef-comment-form .required,
.ef-comments .comment-form .required {
	color: #c62828;
}

/* More Posts — bordered card */
.ef-more-posts {
	background: var(--ef-white);
	border: 1px solid var(--ef-line);
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(38, 39, 106, .06);
	position: relative;
	overflow: hidden;
	max-width: 100% !important;
}

.ef-more-posts::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--ef-navy), var(--ef-accent));
}

.ef-more-posts__heading {
	margin: 0 0 8px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--ef-line);
	color: var(--ef-navy);
}

.ef-more-posts__query,
.ef-more-posts__list {
	width: 100%;
	max-width: 100%;
}

.ef-more-posts__item {
	border-bottom: 1px dashed var(--ef-line) !important;
	gap: 16px;
	transition: background .2s ease;
}

.ef-more-posts__item:last-child {
	border-bottom: none !important;
}

.ef-more-posts__item:hover {
	background: var(--ef-accent-wash);
}

.ef-more-posts__title {
	margin: 0;
	flex: 1;
	min-width: 0;
}

.ef-more-posts__title a {
	color: var(--ef-navy);
	text-decoration: none;
	font-weight: 600;
	transition: color .2s ease;
}

.ef-more-posts__title a:hover {
	color: var(--ef-accent);
}

.ef-more-posts__date,
.ef-more-posts__date a {
	color: var(--ef-muted);
	font-size: 13px;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
}

.ef-more-posts__date a:hover {
	color: var(--ef-navy);
}

/* Responsive */
@media (max-width: 991px) {
	.ef-blog-main {
		width: 92%;
		max-width: 92% !important;
	}

	.ef-page-layout {
		flex-direction: column;
	}

	.ef-page-main-col,
	.ef-page-sidebar-col {
		flex-basis: 100% !important;
		width: 100% !important;
	}

	.ef-page-sidebar-col {
		position: static;
		margin-top: 12px;
	}
}

@media (max-width: 767px) {
	.ef-blog-main {
		width: 100%;
		max-width: 100% !important;
	}

	.ef-post-list {
		gap: 20px;
	}

	.ef-post-card__columns.wp-block-columns {
		flex-direction: column !important;
		flex-wrap: wrap !important;
	}

	.ef-post-card__image-col.wp-block-column,
	.ef-post-card__body-col.wp-block-column {
		flex: 0 0 100% !important;
		flex-basis: 100% !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	.ef-post-card__image-col.wp-block-column {
		border-right: none;
		border-bottom: 1px solid var(--ef-line);
	}

	.ef-post-card__image-col .ef-post-card__image img,
	.ef-post-card__image-col .wp-block-post-featured-image img {
		min-height: 200px;
		max-height: 240px;
	}

	.ef-post-card__body-col.wp-block-column {
		padding: 20px 18px !important;
	}

	.ef-post-card__title {
		font-size: 20px;
	}

	.ef-post-card__read-more {
		padding: 9px 16px;
		font-size: 12px;
	}

	.ef-comments {
		padding: 22px 16px;
	}

	.ef-sidebar-widget {
		padding: 18px 16px;
	}
}
