/*Adds border radius on Blog Thumbnails*/
#respond,
.article-content-col .nv-post-thumbnail-wrap a img,
.nv-ft-post .nv-ft-wrap:not(.layout-covers) {
	border-radius: 24px;
}

.article-content-col .nv-ft-wrap a img {
	border-radius: 24px 24px 0px 0px;
}

/*Adds style for Stripe buttons*/
.wpfs-form--inline {
	width:100%!important;
	
}
.wpfs-mr-2{margin:0!important;}
.wpfs-btn-primary{background-color: var(--nv-secondary-accent)!important;
	box-shadow:none!important;
	padding:8px 16px!important;
	height:auto!important;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400&family=Playfair+Display:wght@700&display=swap');

/* Site Title Style */
.site-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #c91414 !important;
  font-weight: 700;
}

/* Site Tagline Style */
.header .site-description,
#site-description,
.header-top .site-description {
    font-size: 22px !important;
    font-family: 'Montserrat', sans-serif !important;
    color: #2f5593 !important;
    font-weight: 500 !important;
}
.nv-title-tagline-wrap small {
    font-size: 16px !important;
    font-family: 'Montserrat', sans-serif !important;
    color: #2f5593 !important;
    font-weight: 500 !important;
}
/* General style for all buttons */
.wp-block-button__link {
  padding: 8px 16px !important;
  font-size: 15px !important;
  border-radius: 6px !important;
}

/* Specific targeting for 'Enroll For The Course' button */
.wp-block-buttons .wp-block-button:nth-child(2) .wp-block-button__link {
  padding: 8px 16px !important;
  font-size: 15px !important;
}
.wp-block-buttons .wp-block-button:first-child {
  margin-right: 100px; /* You can increase this value if you want more space */
}
/* Make the story title red, italic, and centered */
span.highlight {
  color: #c91414;
  font-style: italic;
  text-align: left;
  display: block; /* Makes the span behave like a heading (optional) */
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-size: 1.4em;
}

}
/* Target story paragraph block(s) directly under the group */
.wp-block-group p {
  color: #103c78;
  font-size: 18px;
  line-height: 1.7;
}
/* Outer wrapper: stretches the pink background full-width */
.wp-block-group__inner-container.wp-block-group-is-layout-constrained {
  background-color: #fff5f7;
  padding: 2em 0;
  margin-top: 2em;
  margin-bottom: 2em;

  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}

/* Inner content: keeps the text centered and constrained */
.wp-block-group__inner-container.wp-block-group-is-layout-constrained > p {
  color: #003366; /* Deep blue */
	max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1em;
  padding-right: 1em;
}
/* Center the entire button group */
.wp-block-buttons {
  text-align: center;
  margin-top: 2em;
}

/* Style each button */
.wp-block-button__link {
  background-color: #063c9a; /* deep blue */
  color: white !important;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  margin: 0 0.5em;
  display: inline-block;
  transition: background-color 0.3s ease;
}

/* Hover effect */
.wp-block-button__link:hover {
  background-color: #052e7d; /* darker blue on hover */
}
.wp-block-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 2em;
}

.wp-block-button__link span {
  display: inline-block;
  text-align: center;
}
/* Specifically target the white button to keep its blue text */
.wp-block-button__link[style*="background-color:#ffffff"] {
  color: #0a2279 !important;
}
.wp-block-button__link {
  font-family: 'Playfair Display', serif !important;
}
/* Force all buttons to use Playfair Display, no matter what */
a.wp-block-button__link,
.wp-block-button__link span {
  font-family: 'Playfair Display', serif !important;
}
/* Maximum override power for all button text */
a.wp-block-button__link,
a.wp-block-button__link span,
.wp-block-button .wp-block-button__link,
.wp-block-buttons .wp-block-button__link,
.wp-element-button,
.has-montserrat-font-family.wp-block-button__link {
  font-family: 'Playfair Display', serif !important;
}
h2.has-playfair-display-font-family {
  color: #c91414 !important;
}
p.has-text-align-center {
  color: #0a2279 !important;
}
/* Collapse spacing between the heading and subheading */
.wp-block-group h2.wp-block-heading.has-text-align-center {
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
  line-height: 1.1 !important;
}
/* Style for the "Proceed to Checkout" button on the Cart page */
.wc-block-cart__submit-button.contained.wc-block-components-button {
    background-color: #09247c; /* Your exact brand blue from the logo */
    color: #ffffff; /* White text color */
    padding: 15px 30px; /* Adjust padding for button size (top/bottom, left/right) */
    border-radius: 8px; /* Slightly more rounded corners for a modern look */
    text-decoration: none; /* Removes the underline */
    display: inline-block; /* Ensures padding and width work correctly */
    font-size: 1.2em; /* Makes the font larger */
    font-weight: bold; /* Makes the text bold */
    text-align: center; /* Centers text within the button */
    line-height: 1; /* Adjusts line height for text within button */
    transition: background-color 0.3s ease; /* Smooth transition on hover */
}

/* Hover effect for the button */
.wc-block-cart__submit-button.contained.wc-block-components-button:hover {
    background-color: #061a52; /* A slightly darker shade of your brand blue for hover effect */
    cursor: pointer; /* Changes cursor to a pointer on hover */
}

/* To ensure the text inside the button is styled correctly if it's within a div */
.wc-block-cart__submit-button.contained.wc-block-components-button .wc-block-components-button_text {
    color: #ffffff; /* Ensure text remains white even if child div has other styles */
}
/* Hide emoji and 'Your cart is currently empty' */
.woocommerce-cart .wc-block-cart__empty-cart__title,
.woocommerce-cart .wc-block-cart__empty-cart__description,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block > p,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block svg {
    display: none !important;
}

/* Hide dotted line */
.woocommerce-cart hr.wp-block-separator {
    display: none !important;
}

/* Carefully hide only the 'New in store' heading */
.woocommerce-cart h2.wp-block-heading:before {
    content: "";
    display: none !important;
}
.woocommerce-cart h2.wp-block-heading {
    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
}

/* Center align course product box contents */
.woocommerce-cart .wc-block-grid__product {
    text-align: center;
}
.woocommerce-cart .wc-block-grid__product img,
.woocommerce-cart .wc-block-grid__product .wc-block-grid__product-title,
.woocommerce-cart .wc-block-grid__product .wc-block-grid__product-price,
.woocommerce-cart .wc-block-grid__product .wp-block-button {
    margin-left: auto;
    margin-right: auto;
    display: block;
}
/* Center align the product card in the cart 'new product suggestion' section */
.woocommerce-cart .wc-block-grid__product,
.woocommerce-cart .wc-block-grid__product * {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
/* Hide green notice on checkout */
.woocommerce-notices-wrapper .woocommerce-message {
    display: none !important;
}
}
/* Clean and friendly WooCommerce checkout error box */
.woocommerce-error {
  background-color: #fff4e5 !important;
  border-left: 4px solid #f89c1e !important;
  color: #4a2700 !important;
  font-size: 16px !important;
  padding: 15px 20px !important;
  list-style: none !important;
  font-weight: 500 !important;
  margin-bottom: 30px !important;
  box-shadow: none !important;
}

/* Tidy list of errors */
.woocommerce-error li {
  margin-bottom: 5px !important;
}

/* Optional: Hide the default red Woo icon */
.woocommerce-error::before {
  display: none !important;
}
.wp-block-jetpack-rating-star svg {
  color: #FFD700 !important; /* Gold */
  fill: #FFD700 !important;  
  stroke: #FFD700 !important;
}


}
