/* Blog-specific CSS styles */
h2, h3, h4, h5, h6 {
  scroll-margin-top: 100px; /* Adjust based on fixed header height */
}
h2.wp-block-heading {
    font-size: 32px;
    line-height: 51px;
    font-weight: 400;
    margin: 15px 0;
}
.main-single-details-wrapper > div > p {
    font-size: 20px;
    line-height: 30px;
}
.blog-details .post-content ul li {
    list-style: disc;
    list-style-position: inside;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
}

/* Table of contents (TOC) link styles */
.toc-link {
  transition: color 0.15s ease, font-weight 0.15s ease;
}
.toc-link:hover {
  color: #6728F5 !important; /* hover color requested */
}
.toc-link.toc-active,
.toc-link:active {
  color: #6728F5 !important; /* active color */
}

/* Smooth scrolling for in-page anchors */
html {
  scroll-behavior: smooth;
}

/** CTA Section Modern Styles */
.cta-section-modern {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: start;
    overflow: hidden;
    padding: 30px 15px 30px 20px;
	border-radius: 4px;
    margin: 20px 0;
}
.cta-content-modern {
	position: relative;
	width: 70%;
    text-align: left;
    font-family: 'Jost';
}
.cta-button-modern {
	padding: 10px 20px;
	font-size: 1em;
	color: #000;
	cursor: pointer; 
        border-radius: 6px;
        background: var(--Pastel-Verdigris, #D1F0F1);
}
p.cta-headings {
    font-size: 30px !important;
    line-height: 35px !important;
	color: var(--Verdigris, #0CB3B7);
    font-family: Jost;
    font-style: normal;
    font-weight: 500;
    margin: 0px 0px 20px 0px !important;
}
p.cta-descriptions{
    color: var(--Grey-2, #E0E0E0);
    font-family: Jost;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 40px;
padding: 0px 50px 0px 0px;
}
.cta-button-modern:hover {
    background-color: #00edd4;
    color: #000;
}
@media (max-width: 600px){
	.cta-content-modern {
		width: 95% !important;
	}
	p.cta-descriptions {
		padding: 0px 0px 0px 0px !important;
	}
}