/* ==========================================================================
   MaltaCode FSE Theme — Global Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header-sticky {
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	transition: box-shadow 0.2s ease;
}

.site-header-sticky.scrolled {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.wp-block-navigation .wp-block-navigation-item a {
	color: #343A40;
	text-decoration: none;
	font-weight: 500;
	padding: 0.5rem 0.75rem;
	transition: color 0.15s ease;
}

.wp-block-navigation .wp-block-navigation-item a:hover {
	color: #2E75B6;
	text-decoration: none;
}

.wp-block-navigation .wp-block-navigation-item.current-menu-item > a {
	color: #2E75B6;
	font-weight: 600;
}

/* Contact CTA button in header nav only */
.site-header-sticky .wp-block-navigation .contact-cta a {
	background: #2E75B6;
	color: white !important;
	border-radius: 6px;
	padding: 0.5rem 1.25rem;
	margin-left: 1rem;
	text-decoration: none !important;
	transition: background 0.15s ease, transform 0.1s ease;
}

.site-header-sticky .wp-block-navigation .contact-cta a:hover {
	background: #1B4F8A;
	color: white !important;
	transform: translateY(-1px);
}

/* Mobile hamburger menu overrides */
.wp-block-navigation__responsive-container.is-menu-open {
	background: #FFFFFF;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a {
	color: #343A40;
	font-size: 1.125rem;
	padding: 0.75rem 1rem;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a:hover {
	color: #2E75B6;
}

.wp-block-navigation__responsive-container-close,
.wp-block-navigation__responsive-container-open {
	color: #1B3A5C;
}

/* Footer nav link overrides */
.has-navy-background-color .wp-block-navigation .wp-block-navigation-item a {
	color: rgba(255, 255, 255, 0.75);
}

.has-navy-background-color .wp-block-navigation .wp-block-navigation-item a:hover {
	color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   Mobile Contact Bar
   -------------------------------------------------------------------------- */
.mobile-contact-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 200;
	background: #1B3A5C;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-contact-bar .bar-inner {
	display: flex;
	width: 100%;
}

.mobile-contact-bar a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	padding: 10px 8px 12px;
	color: white;
	text-decoration: none;
	font-size: 11px;
	font-weight: 500;
	gap: 4px;
	transition: background 0.15s ease;
}

.mobile-contact-bar a:hover,
.mobile-contact-bar a:active {
	background: rgba(255, 255, 255, 0.1);
	text-decoration: none;
	color: white;
}

@media (max-width: 767px) {
	.mobile-contact-bar {
		display: block;
	}

	body {
		padding-bottom: 64px;
	}
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
	color: #1B3A5C;
	font-weight: 700;
	line-height: 1.15;
}

p {
	line-height: 1.7;
	margin-bottom: 1rem;
}

a {
	color: #2E75B6;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

strong {
	font-weight: 600;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.wp-block-button__link {
	border-radius: 6px !important;
	font-weight: 600;
	transition: opacity 0.15s ease, transform 0.1s ease;
}

.wp-block-button__link:hover {
	opacity: 0.88;
	transform: translateY(-1px);
}

.wp-block-button__link:active {
	transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-white { color: white !important; }
.text-navy { color: #1B3A5C !important; }
.text-blue { color: #2E75B6 !important; }
.text-muted { color: #6C757D !important; }
.bg-azure { background-color: #E8F4FD; }
.bg-navy { background-color: #1B3A5C; }
.bg-white { background-color: #FFFFFF; }
.bg-off-white { background-color: #F8F9FA; }
.section-padding { padding-top: 3rem; padding-bottom: 3rem; }
.section-padding-lg { padding-top: 4rem; padding-bottom: 4rem; }
.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 12px; }
.shadow-sm { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08); }
.shadow-md { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }

/* --------------------------------------------------------------------------
   Trust Bar
   -------------------------------------------------------------------------- */
.trust-bar {
	background: white;
	border-bottom: 1px solid #E9ECEF;
	padding: 0.75rem 0;
	font-size: 0.875rem;
	color: #6C757D;
}

.trust-bar strong {
	color: #1B3A5C;
}

/* --------------------------------------------------------------------------
   Service Card
   -------------------------------------------------------------------------- */
.service-card {
	background: white;
	border: 1px solid #E9ECEF;
	border-radius: 12px;
	padding: 2rem;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
	box-shadow: 0 8px 24px rgba(27, 58, 92, 0.12);
	transform: translateY(-3px);
}

.service-card-icon {
	width: 52px;
	height: 52px;
	background: #E8F4FD;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   Section Divider
   -------------------------------------------------------------------------- */
.section-divider {
	border: none;
	border-top: 1px solid #E9ECEF;
	margin: 0;
}

/* --------------------------------------------------------------------------
   CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner {
	background: linear-gradient(135deg, #1B3A5C 0%, #2E75B6 100%);
	border-radius: 16px;
	padding: 3rem 2rem;
	text-align: center;
	color: white;
}

/* --------------------------------------------------------------------------
   Review Stars
   -------------------------------------------------------------------------- */
.star-rating {
	color: #C9A84C;
	letter-spacing: 2px;
}

/* --------------------------------------------------------------------------
   Images
   -------------------------------------------------------------------------- */
.wp-block-image img {
	border-radius: 8px;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
	.wp-block-columns {
		flex-wrap: wrap !important;
	}

	.wp-block-column {
		flex-basis: 100% !important;
		min-width: 100% !important;
	}
}

/* ==========================================================================
   Home Page Patterns
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero-section {
	position: relative;
	overflow: hidden;
	padding-top: 1.5rem;
	background-image: linear-gradient(
		rgba(27, 58, 92, 0.60),
		rgba(27, 58, 92, 0.70)
	), url('/wp-content/uploads/2026/03/IMG_3046-scaled.jpg');
	background-size: cover;
	background-position: center 30%;
	background-repeat: no-repeat;
}

.hero-eyebrow {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.03em;
}

.hero-headline {
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary .wp-block-button__link {
	transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn-hero-primary .wp-block-button__link:hover {
	transform: translateY(-2px);
	opacity: 0.92;
}

.btn-hero-secondary .wp-block-button__link {
	background: #25D366 !important;
	color: white !important;
	border: none !important;
}

.btn-hero-secondary .wp-block-button__link:hover {
	background: #20BA5A !important;
	opacity: 1 !important;
}

.btn-hero-ghost .wp-block-button__link {
	background: transparent !important;
	color: white !important;
	text-decoration-color: rgba(255, 255, 255, 0.6) !important;
}

.btn-hero-ghost .wp-block-button__link:hover {
	opacity: 0.9;
	transform: none;
	text-decoration-color: white !important;
}

.hero-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	line-height: 0;
}

.hero-wave svg {
	display: block;
}

/* --------------------------------------------------------------------------
   Trust Bar
   -------------------------------------------------------------------------- */
.trust-bar-section p {
	margin: 0;
}

.trust-bar-columns .wp-block-column {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1rem;
	border-right: 1px solid #E9ECEF;
}

.trust-bar-columns .wp-block-column:last-child {
	border-right: none;
}

.trust-bar-section .wp-block-column p {
	font-size: 0.8125rem;
	line-height: 1.4;
	white-space: nowrap;
}

@media (max-width: 1024px) {
	.trust-bar-section .wp-block-column p {
		white-space: normal;
		font-size: 0.75rem;
	}
}

@media (max-width: 767px) {
	.trust-bar-columns .wp-block-column {
		border-right: none;
		border-bottom: 1px solid #E9ECEF;
		padding: 0.75rem 1rem;
	}

	.trust-bar-columns .wp-block-column:last-child {
		border-bottom: none;
	}
}

/* --------------------------------------------------------------------------
   Service Cards (home page)
   -------------------------------------------------------------------------- */
.service-card--featured {
	box-shadow: 0 4px 20px rgba(46, 117, 182, 0.15);
	position: relative;
	overflow: visible;
}

.service-card--featured:hover {
	box-shadow: 0 12px 40px rgba(46, 117, 182, 0.22);
	transform: translateY(-4px);
}

.service-badge {
	position: absolute;
	top: -1px;
	right: 1.5rem;
	background: #D95B3A;
	color: white;
	font-size: 11px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 0 0 8px 8px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Watchtower
   -------------------------------------------------------------------------- */
.da-vinci-quote {
	border-left: 4px solid #2E75B6;
}

.watchtower-img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	background: #E8F4FD;
}

@media (max-width: 767px) {
	.watchtower-image-col {
		order: -1;
	}
}

/* --------------------------------------------------------------------------
   Portfolio
   -------------------------------------------------------------------------- */
.portfolio-card {
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	overflow: hidden;
}

.portfolio-card:hover {
	box-shadow: 0 8px 24px rgba(27, 58, 92, 0.1);
	transform: translateY(-3px);
}

.portfolio-card .wp-block-image {
	margin: 0;
}

.portfolio-card .wp-block-image img {
	aspect-ratio: 16/9;
	object-fit: cover;
	border-radius: 12px 12px 0 0;
}

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */
.aggregate-stars {
	font-size: 2rem;
	color: #C9A84C;
	letter-spacing: 4px;
	margin-bottom: 0.5rem;
}

.review-stars {
	font-size: 1rem;
	color: #C9A84C;
	letter-spacing: 2px;
	margin-bottom: 1rem;
}

.review-card {
	transition: box-shadow 0.2s ease;
}

.review-card:hover {
	box-shadow: 0 4px 16px rgba(27, 58, 92, 0.08);
}

.reviewer-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #E8F4FD;
	color: #2E75B6;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 600;
	flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Contact CTA
   -------------------------------------------------------------------------- */
.cta-contact-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.cta-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1.25rem 2rem;
	border-radius: 10px;
	text-decoration: none;
	min-width: 160px;
	transition: transform 0.15s ease, opacity 0.15s ease;
	gap: 4px;
}

.cta-btn:hover {
	transform: translateY(-2px);
	opacity: 0.92;
	text-decoration: none;
}

.cta-btn span {
	font-size: 1rem;
	font-weight: 600;
	color: inherit;
}

.cta-btn small {
	font-size: 0.8rem;
	opacity: 0.8;
}

.cta-btn svg {
	margin-bottom: 4px;
}

.cta-btn--white {
	background: white;
	color: #1B3A5C;
}

.cta-btn--green {
	background: #25D366;
	color: white;
}

.cta-btn--outline {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.4);
}

.cta-btn--outline:hover {
	background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 480px) {
	.cta-btn {
		min-width: 100%;
	}

	.cta-contact-row {
		flex-direction: column;
		align-items: center;
	}
}

/* ==========================================================================
   Hosting Page
   ========================================================================== */

/* --------------------------------------------------------------------------
   Difference — feature grid
   -------------------------------------------------------------------------- */
.hosting-features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.hosting-feature {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.hosting-feature svg {
	flex-shrink: 0;
	margin-top: 2px;
}

.hosting-feature p {
	font-size: 0.9rem;
	margin: 0;
}

/* --------------------------------------------------------------------------
   Stats panel
   -------------------------------------------------------------------------- */
.hosting-stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.stat-card {
	background: white;
	border-radius: 8px;
	padding: 1.25rem 1rem;
	text-align: center;
}

.stat-card p:first-child {
	font-size: 2.25rem;
	font-weight: 700;
	color: #2E75B6;
	margin: 0 0 4px;
	line-height: 1;
}

.stat-card p:last-child {
	font-size: 0.8rem;
	color: #6C757D;
	margin: 0;
}

/* --------------------------------------------------------------------------
   Plan cards
   -------------------------------------------------------------------------- */
.plan-cards .wp-block-column {
	display: flex;
	flex-direction: column;
}

.plan-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.plan-card:hover {
	box-shadow: 0 8px 24px rgba(27, 58, 92, 0.1);
	transform: translateY(-3px);
}

.plan-card--featured {
	box-shadow: 0 4px 20px rgba(46, 117, 182, 0.15);
	position: relative;
	overflow: visible;
}

.plan-card--featured:hover {
	box-shadow: 0 12px 36px rgba(46, 117, 182, 0.22);
}

.plan-badge {
	position: absolute;
	top: -1px;
	right: 1.25rem;
	background: #D95B3A;
	color: white;
	font-size: 11px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 0 0 8px 8px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.plan-feature {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 0.5rem;
}

.plan-feature svg {
	flex-shrink: 0;
	margin-top: 3px;
}

.plan-feature p {
	font-size: 0.875rem;
	color: #343A40;
	margin: 0;
}

/* --------------------------------------------------------------------------
   How-to steps
   -------------------------------------------------------------------------- */
.howto-step {
	display: flex;
	gap: 1.25rem;
	margin-bottom: 1.5rem;
}

.step-number {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #2E75B6;
	color: white;
	font-size: 0.875rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

/* --------------------------------------------------------------------------
   DNS section
   -------------------------------------------------------------------------- */
.dns-icon {
	width: 52px;
	height: 52px;
	background: #E8F4FD;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
}

.nameserver-box p {
	font-family: var(--wp--preset--font-family--mono, monospace);
}

/* --------------------------------------------------------------------------
   Hosting sign-up form
   -------------------------------------------------------------------------- */
.hosting-signup-form {
	background: #F8F9FA;
	border: 1px solid #E9ECEF;
	border-radius: 12px;
	padding: 2rem;
}

.form-row {
	margin-bottom: 1.25rem;
}

.form-row--2col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-group label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #1B3A5C;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 0.625rem 0.875rem;
	border: 1px solid #CED4DA;
	border-radius: 6px;
	font-size: 0.9375rem;
	color: #343A40;
	background: white;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	font-family: inherit;
	width: 100%;
	box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #2E75B6;
	box-shadow: 0 0 0 3px rgba(46, 117, 182, 0.15);
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.form-hint {
	font-size: 0.8rem;
	color: #6C757D;
	line-height: 1.4;
}

.form-counter {
	display: flex;
	justify-content: flex-end;
}

.form-submit-row {
	text-align: center;
	margin-top: 1.5rem;
}

.hosting-form-submit {
	background: #D95B3A;
	color: white;
	border: none;
	border-radius: 6px;
	padding: 0.875rem 2.5rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	transition: opacity 0.15s ease, transform 0.1s ease;
}

.hosting-form-submit:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.hosting-form-submit:active {
	transform: translateY(0);
}

.form-reassurance {
	font-size: 0.8rem;
	color: #6C757D;
	margin-top: 0.75rem;
	font-style: italic;
}

#hf_desc_count {
	font-weight: 600;
	color: #2E75B6;
}

@media (max-width: 767px) {
	.form-row--2col {
		grid-template-columns: 1fr;
	}

	.hosting-features-grid {
		grid-template-columns: 1fr;
	}
}

/* --------------------------------------------------------------------------
   Watchtower photo
   -------------------------------------------------------------------------- */
.watchtower-img img,
.watchtower-photo {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	object-position: center 20%;
	border-radius: 12px;
	display: block;
}

@media (max-width: 767px) {
	.watchtower-img img,
	.watchtower-photo {
		aspect-ratio: 16/9;
		object-position: center 35%;
	}
}

/* --------------------------------------------------------------------------
   Plan card button alignment
   -------------------------------------------------------------------------- */
.plan-card .wp-block-buttons {
	margin-top: auto;
	padding-top: 1.25rem;
}

.plan-card > .wp-block-group:last-child {
	margin-top: auto;
}

/* ==========================================================================
   Web Design Page
   ========================================================================== */

/* --------------------------------------------------------------------------
   Intro features
   -------------------------------------------------------------------------- */
.webdesign-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.wd-feature {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.wd-feature svg {
	flex-shrink: 0;
	margin-top: 2px;
}

.wd-feature p {
	font-size: 0.9rem;
	margin: 0;
}

/* --------------------------------------------------------------------------
   Meeting callout
   -------------------------------------------------------------------------- */
.meeting-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	color: #343A40;
	padding: 0.375rem 0;
}

.meeting-item svg {
	flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Process cards
   -------------------------------------------------------------------------- */
.process-card {
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.process-card:hover {
	box-shadow: 0 6px 20px rgba(27, 58, 92, 0.1);
	transform: translateY(-3px);
}

.process-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: #E8F4FD;
	line-height: 1;
	margin-bottom: 0.75rem;
	font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   Portfolio grid
   -------------------------------------------------------------------------- */
.portfolio-grid-full {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.pf-card {
	background: white;
	border: 1px solid #E9ECEF;
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	display: flex;
	flex-direction: column;
}

.pf-card:hover {
	box-shadow: 0 8px 28px rgba(27, 58, 92, 0.12);
	transform: translateY(-4px);
}

.pf-image {
	aspect-ratio: 16/10;
	overflow: hidden;
	background: #E8F4FD;
}

.pf-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform 0.4s ease;
	display: block;
}

.pf-card:hover .pf-image img {
	transform: scale(1.04);
}

.pf-info {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.pf-type {
	font-size: 0.75rem;
	font-weight: 600;
	color: #2E75B6;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.375rem;
}

.pf-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #1B3A5C;
	margin: 0 0 0.5rem;
}

.pf-desc {
	font-size: 0.875rem;
	color: #6C757D;
	line-height: 1.6;
	margin: 0 0 1rem;
	flex: 1;
}

.pf-link {
	font-size: 0.875rem;
	font-weight: 600;
	color: #2E75B6;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: auto;
}

.pf-link:hover {
	text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.pricing-guide p {
	margin: 0;
}

@media (max-width: 900px) {
	.portfolio-grid-full {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.portfolio-grid-full {
		grid-template-columns: 1fr;
	}

	.webdesign-features {
		grid-template-columns: 1fr;
	}

	.pricing-guide {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ==========================================================================
   Logo
   ========================================================================== */
.maltacode-logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

.maltacode-logo-header {
	height: 48px;
	width: auto;
	display: block;
}

.maltacode-logo-footer {
	height: 44px;
	width: auto;
	display: block;
	margin-bottom: 1rem;
}

@media (max-width: 767px) {
	.maltacode-logo-header {
		height: 38px;
	}

	.maltacode-logo-footer {
		height: 36px;
	}
}

/* --------------------------------------------------------------------------
   Footer nav — compact spacing
   -------------------------------------------------------------------------- */
footer .wp-block-navigation__container {
	gap: 0 !important;
	display: flex;
	flex-direction: column;
}

footer .wp-block-navigation-item {
	margin: 0 !important;
	padding: 0 !important;
}

footer .wp-block-navigation-item__content {
	padding: 0.2rem 0 !important;
	line-height: 1.6 !important;
	font-size: 0.875rem !important;
	color: rgba(255, 255, 255, 0.75) !important;
	display: block;
	text-decoration: none !important;
}

footer .wp-block-navigation-item__content:hover {
	color: white !important;
}

/* ==========================================================================
   FileMaker Page
   ========================================================================== */

.fm-stats {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 0.75rem;
}

.fm-experience-panel .fm-stats {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
}

.fm-experience-panel .stat-card {
	background: white;
	border-radius: 8px;
	padding: 1rem;
	text-align: center;
}

.fm-experience-panel .stat-card p:first-child {
	font-size: 1.875rem;
	font-weight: 700;
	color: #2E75B6;
	margin: 0 0 4px;
	line-height: 1;
}

.fm-experience-panel .stat-card p:last-child {
	font-size: 0.8rem;
	color: #6C757D;
	margin: 0;
	line-height: 1.3;
}

/* --------------------------------------------------------------------------
   Build cards
   -------------------------------------------------------------------------- */
.fm-build-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.fm-build-card {
	display: flex;
	gap: 0.875rem;
	align-items: flex-start;
	transition: box-shadow 0.2s ease;
}

.fm-build-card:hover {
	box-shadow: 0 4px 16px rgba(27, 58, 92, 0.08);
}

.fm-build-icon {
	width: 44px;
	height: 44px;
	background: #E8F4FD;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Why list
   -------------------------------------------------------------------------- */
.fm-why-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.fm-check {
	width: 28px;
	height: 28px;
	background: #2E75B6;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 2px;
}

/* --------------------------------------------------------------------------
   Approach box steps
   -------------------------------------------------------------------------- */
.fm-step {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.fm-step-num {
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, 0.15);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: 700;
	flex-shrink: 0;
}

@media (max-width: 900px) {
	.fm-build-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.fm-build-cards {
		grid-template-columns: 1fr;
	}
}

/* --------------------------------------------------------------------------
   FileMaker logo strip
   -------------------------------------------------------------------------- */
.fm-logo-strip {
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(27, 58, 92, 0.1);
	text-align: center;
}

.fm-logo-label {
	font-size: 0.75rem;
	color: #6C757D;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 600;
	margin: 0 0 0.75rem;
}

.fm-logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.fm-logo-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
}

.fm-logo-img {
	height: 48px;
	width: auto;
	display: block;
	object-fit: contain;
}

/* ==========================================================================
   About Page
   ========================================================================== */

/* --------------------------------------------------------------------------
   Photo
   -------------------------------------------------------------------------- */
.about-photo-wrap {
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.about-photo {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	object-position: center top;
	display: block;
	border-radius: 16px;
}

/* --------------------------------------------------------------------------
   Quick facts
   -------------------------------------------------------------------------- */
.about-fact {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding-bottom: 1rem;
	border-bottom: 1px solid #E9ECEF;
}

.about-fact:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.about-fact p {
	margin: 0;
}

.about-fact > div:last-child {
	flex: 1;
	min-width: 0;
}

.fact-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
	width: 36px;
	text-align: center;
	margin-top: 2px;
}

/* --------------------------------------------------------------------------
   Expertise cards
   -------------------------------------------------------------------------- */
.expertise-card {
	text-align: center;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.expertise-card:hover {
	box-shadow: 0 6px 20px rgba(27, 58, 92, 0.1);
	transform: translateY(-3px);
}

.expertise-icon {
	width: 64px;
	height: 64px;
	background: #E8F4FD;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
}

/* --------------------------------------------------------------------------
   Hobbies grid
   -------------------------------------------------------------------------- */
.about-hobbies-grid {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 1rem;
}

.hobby-card {
	background: #F8F9FA;
	border-radius: 12px;
	padding: 1.25rem;
	text-align: center;
	transition: box-shadow 0.2s ease;
}

.hobby-card:hover {
	box-shadow: 0 4px 12px rgba(27, 58, 92, 0.08);
}

.hobby-icon {
	font-size: 2rem;
	margin-bottom: 0.5rem;
	display: block;
}

.hobby-card p {
	margin: 0;
}

/* --------------------------------------------------------------------------
   Promise section
   -------------------------------------------------------------------------- */
.promise-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.promise-check {
	width: 28px;
	height: 28px;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 2px;
}

.promise-item p {
	margin: 0;
}

/* --------------------------------------------------------------------------
   Contact items in promise box
   -------------------------------------------------------------------------- */
.about-contact-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.9rem;
	padding: 0.25rem 0;
}

.about-contact-item svg {
	flex-shrink: 0;
}

.about-contact-item a {
	text-decoration: none;
}

.about-contact-item a:hover {
	text-decoration: underline;
}

@media (max-width: 767px) {
	.about-hobbies-grid {
		grid-template-columns: 1fr 1fr;
	}

	.about-photo {
		aspect-ratio: 4/3;
	}
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-channel-cards .wp-block-column {
	display: flex;
	flex-direction: column;
}

.channel-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.channel-card:hover {
	box-shadow: 0 6px 20px rgba(27, 58, 92, 0.1);
	transform: translateY(-3px);
}

.channel-icon {
	width: 68px;
	height: 68px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
}

.channel-icon--blue {
	background: #E8F4FD;
}

.channel-icon--green {
	background: #F0FDF4;
}

.channel-icon--coral {
	background: #FDF0EC;
}

.channel-cta {
	display: inline-block;
	padding: 0.625rem 1.5rem;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	transition: opacity 0.15s ease, transform 0.1s ease;
	margin-top: auto;
}

.channel-cta:hover {
	opacity: 0.88;
	transform: translateY(-1px);
	text-decoration: none;
}

.channel-cta--blue {
	background: #2E75B6;
	color: white;
}

.channel-cta--green {
	background: #25D366;
	color: white;
}

.channel-cta--outline {
	background: transparent;
	color: #2E75B6;
	border: 2px solid #2E75B6;
}

/* --------------------------------------------------------------------------
   Contact form
   -------------------------------------------------------------------------- */
.contact-form-submit {
	background: #2E75B6;
	color: white;
	border: none;
	border-radius: 6px;
	padding: 0.875rem 2.5rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	transition: opacity 0.15s ease, transform 0.1s ease;
}

.contact-form-submit:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Info panel
   -------------------------------------------------------------------------- */
.contact-info-panel {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.response-icon {
	font-size: 1.5rem;
}

.contact-detail-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.375rem 0;
	font-size: 0.9rem;
	border-bottom: 1px solid #F8F9FA;
}

.contact-detail-item:last-child {
	border-bottom: none;
}

.contact-detail-item a {
	color: #2E75B6;
	text-decoration: none;
}

.contact-detail-item a:hover {
	text-decoration: underline;
}

.contact-detail-item svg {
	flex-shrink: 0;
}

.contact-detail-item span {
	color: #343A40;
}

.contact-map {
	margin-top: 0.75rem;
}

@media (max-width: 767px) {
	.contact-channel-cards .wp-block-column {
		min-width: calc(50% - 0.5rem);
	}

	.section-padding {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	.section-padding-lg {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}

	/* Tighten all hero sections */
	.hero-section,
	.hosting-hero-section,
	.webdesign-hero-section,
	.filemaker-hero-section,
	.about-hero-section,
	.contact-hero-section,
	.reviews-hero-section {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}

	/* Tighten all content sections */
	.trust-bar-section,
	.services-section,
	.watchtower-section,
	.portfolio-section,
	.reviews-strip-section,
	.contact-cta-section,
	.hosting-difference-section,
	.hosting-plans-section,
	.hosting-howto-section,
	.hosting-dns-section,
	.hosting-form-section,
	.webdesign-intro-section,
	.webdesign-process-section,
	.webdesign-portfolio-section,
	.webdesign-pricing-section,
	.filemaker-intro-section,
	.filemaker-what-section,
	.filemaker-why-section,
	.filemaker-cta-section,
	.about-story-section,
	.about-expertise-section,
	.about-beyond-section,
	.about-promise-section,
	.contact-channels-section,
	.contact-form-section,
	.reviews-grid-section,
	.reviews-submit-section {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}
}

/* ==========================================================================
   Reviews Page
   ========================================================================== */

.reviews-page-stars {
	font-size: 2.5rem;
	color: #C9A84C;
	letter-spacing: 4px;
	margin-bottom: 0.25rem;
}

.reviews-page-score {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.9rem;
	margin: 0;
}

/* --------------------------------------------------------------------------
   Filter bar
   -------------------------------------------------------------------------- */
.reviews-filter-bar {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.review-filter {
	padding: 0.4rem 1rem;
	border-radius: 20px;
	border: 1px solid #E9ECEF;
	background: white;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	color: #6C757D;
	transition: all 0.15s ease;
	font-family: inherit;
}

.review-filter:hover,
.review-filter.active {
	background: #2E75B6;
	border-color: #2E75B6;
	color: white;
}

/* --------------------------------------------------------------------------
   Review page cards
   -------------------------------------------------------------------------- */
.reviews-page-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-bottom: 2rem;
}

.review-page-card {
	background: white;
	border: 1px solid #E9ECEF;
	border-radius: 12px;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s ease;
}

.review-page-card:hover {
	box-shadow: 0 4px 16px rgba(27, 58, 92, 0.08);
}

.rpc-stars {
	color: #C9A84C;
	font-size: 1rem;
	letter-spacing: 2px;
	margin-bottom: 0.75rem;
}

.rpc-text {
	font-size: 0.9rem;
	color: #343A40;
	line-height: 1.7;
	font-style: italic;
	flex: 1;
	margin-bottom: 1.25rem;
}

.rpc-footer {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding-top: 1rem;
	border-top: 1px solid #E9ECEF;
}

.rpc-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #E8F4FD;
	color: #2E75B6;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 600;
	flex-shrink: 0;
}

.rpc-name {
	font-weight: 600;
	font-size: 0.875rem;
	color: #1B3A5C;
	margin: 0;
}

.rpc-meta {
	font-size: 0.8rem;
	color: #6C757D;
	margin: 0;
}

/* --------------------------------------------------------------------------
   Load more
   -------------------------------------------------------------------------- */
.reviews-load-more {
	text-align: center;
	padding-top: 1rem;
}

.reviews-load-btn {
	background: transparent;
	border: 2px solid #2E75B6;
	color: #2E75B6;
	border-radius: 6px;
	padding: 0.625rem 2rem;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.15s ease;
}

.reviews-load-btn:hover {
	background: #2E75B6;
	color: white;
}

/* --------------------------------------------------------------------------
   Star picker
   -------------------------------------------------------------------------- */
.star-picker {
	display: flex;
	gap: 4px;
	margin-bottom: 0.5rem;
}

.star-pick {
	font-size: 2rem;
	color: #E9ECEF;
	cursor: pointer;
	transition: color 0.1s ease;
	line-height: 1;
}

.star-pick.active,
.star-pick:hover {
	color: #C9A84C;
}

/* --------------------------------------------------------------------------
   Review submit button
   -------------------------------------------------------------------------- */
.review-submit-btn {
	background: #2E75B6;
	color: white;
	border: none;
	border-radius: 6px;
	padding: 0.875rem 2.5rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	transition: opacity 0.15s ease, transform 0.1s ease;
}

.review-submit-btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

@media (max-width: 900px) {
	.reviews-page-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.reviews-page-grid {
		grid-template-columns: 1fr;
	}
}

/* Review form success/error messages */
.mcr-success {
	text-align: center;
	padding: 3rem 1.5rem;
}

.mcr-success-icon {
	width: 56px;
	height: 56px;
	background: #28A745;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 auto 1rem;
}

.mcr-success h3 {
	color: #1B3A5C;
	font-size: 1.25rem;
	line-height: 1.5;
}

.mcr-error {
	background: #FDF0EC;
	color: #D95B3A;
	border: 1px solid #D95B3A;
	border-radius: 6px;
	padding: 0.75rem 1rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.review-thankyou {
	text-align: center;
	padding: 3rem 2rem;
	background: #E8F4FD;
	border-radius: 12px;
	margin-top: 1rem;
}

.review-thankyou h3 {
	color: #1B3A5C;
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.review-thankyou p {
	color: #6C757D;
	font-size: 1rem;
}

/* Owner reply on review cards */
.rpc-reply {
	background: #E8F4FD;
	border-left: 3px solid #2E75B6;
	border-radius: 0 6px 6px 0;
	padding: 0.75rem;
	font-size: 0.85rem;
	color: #343A40;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.rpc-reply strong {
	color: #1B3A5C;
}

/* ==========================================================================
   NIC-MT Guide Page
   ========================================================================== */

.nicmt-breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	justify-content: center;
	margin-top: 1.5rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
}

.nicmt-breadcrumb a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
}

.nicmt-breadcrumb a:hover {
	color: white;
}

.nicmt-domain-list {
	list-style: none;
	padding: 0;
	margin: 0.75rem 0 1rem;
}

.nicmt-domain-list li {
	padding: 0.5rem 0;
	border-bottom: 1px solid #E9ECEF;
	font-size: 0.9rem;
	color: #343A40;
}

.nicmt-domain-list li:last-child {
	border-bottom: none;
}

.nicmt-domain-list strong {
	color: #1B3A5C;
}

.nicmt-cat-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.nicmt-doc-needed {
	font-size: 0.8rem;
	color: #2E75B6;
	background: #E8F4FD;
	border-radius: 6px;
	padding: 0.5rem 0.75rem;
	margin-top: 1rem;
}

.nicmt-steps {
	display: flex !important;
	flex-direction: column !important;
	gap: 0 !important;
	list-style: none !important;
	padding: 0 !important;
	max-width: 760px !important;
	margin: 0 auto !important;
}

.nicmt-step {
	display: flex !important;
	flex-direction: row !important;
	align-items: flex-start !important;
	gap: 1.5rem !important;
	padding: 1.75rem 0 !important;
	border-bottom: 1px solid #E9ECEF !important;
	border-top: none !important;
	border-left: none !important;
	border-right: none !important;
}

.nicmt-step:last-child {
	border-bottom: none !important;
}

.nicmt-step-num {
	width: 44px !important;
	height: 44px !important;
	min-width: 44px !important;
	border-radius: 50% !important;
	background: #2E75B6 !important;
	color: white !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-weight: 700 !important;
	font-size: 1.1rem !important;
	flex-shrink: 0 !important;
	margin-top: 0.125rem !important;
	line-height: 1 !important;
	box-shadow: 0 2px 8px rgba(46, 117, 182, 0.3) !important;
}

.nicmt-step-body {
	flex: 1 !important;
	padding-top: 0.125rem !important;
}

.nicmt-step-title {
	color: #1B3A5C !important;
	font-size: 1.1rem !important;
	font-weight: 600 !important;
	margin: 0 0 0.5rem 0 !important;
	padding: 0 !important;
}

.nicmt-step-body > p {
	color: #343A40 !important;
	font-size: 0.9rem !important;
	line-height: 1.7 !important;
	margin: 0 0 0.5rem 0 !important;
}

.nicmt-step-body a {
	color: #2E75B6;
}

.nicmt-facts-dl {
	margin: 0 !important;
	padding: 0 !important;
}

.nicmt-fact-row {
	display: flex !important;
	justify-content: space-between !important;
	align-items: baseline !important;
	padding: 0.5rem 0 !important;
	border-bottom: 1px solid rgba(27, 58, 92, 0.1) !important;
	gap: 1rem !important;
}

.nicmt-fact-row:last-child {
	border-bottom: none !important;
}

.nicmt-fact-row dt {
	color: #6C757D !important;
	font-weight: 500 !important;
	font-size: 0.875rem !important;
	flex-shrink: 0 !important;
}

.nicmt-fact-row dd {
	color: #1B3A5C !important;
	font-weight: 600 !important;
	font-size: 0.875rem !important;
	margin: 0 !important;
	text-align: right !important;
}

.nicmt-ns-box {
	display: flex;
	gap: 0.75rem;
	margin: 0.75rem 0;
	flex-wrap: wrap;
}

.nicmt-ns-box code {
	background: #E8F4FD;
	color: #2E75B6;
	font-weight: 600;
	padding: 0.375rem 0.875rem;
	border-radius: 6px;
	font-size: 0.875rem;
}

.nicmt-btn {
	display: block;
	text-align: center;
	padding: 0.75rem 1.5rem;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	transition: opacity 0.15s ease;
}

.nicmt-btn:hover {
	opacity: 0.88;
	text-decoration: none;
}

.nicmt-btn--primary {
	background: #2E75B6;
	color: white;
}

.nicmt-btn--primary:hover {
	color: white;
}

.nicmt-btn--green {
	background: #25D366;
	color: white;
}

.nicmt-btn--green:hover {
	color: white;
}

.nicmt-external-note {
	margin-top: 1.5rem;
	font-size: 0.8rem;
	color: #6C757D;
}

.nicmt-external-note a {
	color: #2E75B6;
}

@media (max-width: 767px) {
	.nicmt-step {
		gap: 1rem !important;
	}

	.nicmt-step-num {
		width: 36px !important;
		height: 36px !important;
		min-width: 36px !important;
		font-size: 1rem !important;
	}

	.nicmt-ns-box {
		flex-direction: column;
	}
}

/* ==========================================================================
   Blog
   ========================================================================== */

.blog-card {
	background: white !important;
	border: 1px solid #E9ECEF !important;
	border-radius: 12px !important;
	overflow: hidden !important;
	transition: box-shadow 0.2s ease, transform 0.2s ease !important;
	display: flex !important;
	flex-direction: column !important;
}

.blog-card:hover {
	box-shadow: 0 6px 20px rgba(27, 58, 92, 0.12) !important;
	transform: translateY(-3px) !important;
}

.blog-card .wp-block-post-featured-image img {
	width: 100% !important;
	height: 180px !important;
	object-fit: cover !important;
	border-radius: 0 !important;
	display: block !important;
}

.blog-card .wp-block-post-featured-image a {
	display: block !important;
}

.blog-post-content {
	font-size: 1rem;
	line-height: 1.8;
	color: #343A40;
}

.blog-post-content h2 {
	color: #1B3A5C;
	font-size: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}

.blog-post-content h3 {
	color: #1B3A5C;
	font-size: 1.25rem;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}

.blog-post-content p {
	margin-bottom: 1.25rem;
}

.blog-post-content ul,
.blog-post-content ol {
	padding-left: 1.5rem;
	margin-bottom: 1.25rem;
}

.blog-post-content li {
	margin-bottom: 0.375rem;
}

.blog-post-content a {
	color: #2E75B6;
}

.blog-post-content a:hover {
	text-decoration: underline;
}

.blog-post-content strong {
	color: #1B3A5C;
}

.blog-post-content blockquote {
	border-left: 4px solid #2E75B6;
	padding: 1rem 1.5rem;
	background: #E8F4FD;
	border-radius: 0 8px 8px 0;
	margin: 1.5rem 0;
	font-style: italic;
	color: #343A40;
}

.blog-post-author {
	background: #F8F9FA;
	border-radius: 12px;
	padding: 1.5rem;
	margin-top: 2rem;
}
