/* Single Post */


/* header fixes inclding spacing */

.post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6{
	padding-top: 2.5rem;
	padding-bottom: .25rem;
	font-weight: 700;
	line-height: 1.25em;
}

.post-content h2 {
	font-size: 2rem;
}

.post-content h3, .post-content h4, .post-content h5, .post-content h6 {
	font-size: 1.5rem;
}



/* body text fixes including spacing */

.post-content p {
	padding-bottom: 1.25rem;
	margin-bottom: 0px;
	line-height: 1.75em;
}



/* this is for your links change the color here */
.post-content p a {
	color: #1391ff;
	font-weight: 500;
	text-decoration: underline;
	transition: .2s all ease-in-out;
}

/* link hover color */
.post-content p a:hover {
	color: #06BCC1;
}



/* bulletlist item fixes */

.c-post-meta ul li:nth-child(2){
	font-weight: 400!important;
}

.post-content ul, .post-content ol {
	font-size: 1.2rem;
	font-weight: 500;
}

.post-content ul, .post-content ol {
	padding-bottom: 2.25rem;
}

/* control space between list items*/
.post-content ul li {
	line-height: 1.2em;
	margin-bottom: 1.25rem;
}




/* image fixes with spacing and border radius*/

.post-content .wp-block-image img {
	margin: 2.5rem 0rem;
	border-radius: .75rem;
}




/* use only for blockquote blocks */
.post-content blockquote {
	border-left: 1px solid #06BCC1;
	margin: 0px;
	padding: .75rem 1.25rem;
	background: #F4F8FC;
	font-size: 1.1em;
	font-weight: 400;
}

.post-content blockquote cite {
	font-size: .8em;
	font-weight: 300;
}

.post-content blockquote p {
	padding-bottom: 0px;
}


/* use only for code blocks */

.post-content .wp-block-code {
	background: #0B0515;
	padding: 1.5rem;
	border-radius: .75rem;
}

.post-content code {
	color: #89E3E4;
}




/* FOR MOBILE fixes body and header font sizes on mobile */
@media screen and (max-width: 767px) {
	.post-content p {
	font-size: 1.2rem;
}

.post-content h2 {
	font-size: 2rem;
}

.post-content h3, .post-content h4, .post-content h5, .post-content h6 {
	font-size: 1.5rem;
}
}
/* Fix overlapping admin menus */
#adminmenuwrap, #adminmenuback, #adminmenu {
    z-index: 9999 !important;
}
/* -----------------------------------
   AM2U – FluentCart Product Grid Styling
   Soft spiritual aesthetic
----------------------------------- */

/* Overall spacing between products */
.fluentcart-products .fc-product-items {
    gap: 30px !important;         /* space between cards */
}

/* Individual product card */
.fluentcart-products .fc-product-item {
    margin-bottom: 30px !important;
    padding: 18px 16px !important;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #B5D9EB;   /* soft blue border */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

/* Hover effect – gentle lift + glow */
.fluentcart-products .fc-product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(39, 169, 224, 0.25);
    border-color: #27A9E0;
}

/* Product image – soften edges */
.fluentcart-products .fc-product-thumb img {
    border-radius: 14px;
}

/* Product title – wrap nicely & use calm color */
.fluentcart-products .fc-product-title {
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    margin-top: 12px;
    margin-bottom: 8px;
    line-height: 1.3;
    font-size: 1.02rem !important;
    font-weight: 600;
    color: #163a4c; /* deep soft teal/blue */
}

/* Price styling */
.fluentcart-products .fc-product-price {
    color: #D5C6A0;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Keep content area consistent height so buttons align */
.fluentcart-products .fc-product-body {
    min-height: 120px;
}

/* Buttons – pill shape in AM2U blue */
.fluentcart-products .fc-product-footer .fc-btn,
.fluentcart-products .fc-btn {
    background: #27A9E0;
    color: #ffffff !important;
    border-radius: 999px;
    padding: 8px 20px;
    border: none;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(39, 169, 224, 0.35);
    transition: all 0.2s ease;
}

/* Button hover */
.fluentcart-products .fc-product-footer .fc-btn:hover,
.fluentcart-products .fc-btn:hover {
    background: #1f88b8;
    box-shadow: 0 6px 16px rgba(39, 169, 224, 0.5);
    transform: translateY(-1px);
}

/* Mobile tweaks – a little tighter but still airy */
@media (max-width: 768px) {
    .fluentcart-products .fc-product-items {
        gap: 20px !important;
    }
    .fluentcart-products .fc-product-item {
        padding: 14px 12px !important;
    }
}
