.home .breadcrumb-container{
	display: none;
}

h1, h2, h3, h4, h5, h6{
	margin-block-end: -0.5rem;
}


sup{
	color: red;
	font-family: Roboto;
}

li{
	padding-bottom: 10px
}


.e-n-menu-content{
	margin-top: 0px !important;
}

/* entire block is clickable */
.nav-link{
  display:block;
  padding:10px;
  border-radius:10px;
  text-decoration:none;
  color:#333 !important;
}

/* hover applies to whole block */
.nav-link:hover{
  background-color:#f4f4f4;
}

/* title */
.nav-link .nav-title{
  display:block;
  font-weight:600;
  font-size:16px;
  color:#333;
}

/* description */
.nav-link .nav-desc{
  display:block;
  font-size:14px;
  margin-top:2px;
  color:#333;
}



blockquote {
    color: #000; 
    padding-left: 10px;
    margin: 15px 0px; 
    border-left: 6px solid #ddd;
}

/*Posts*/


.post-content h3{
	padding-top: 25px;
	color: #070E14;
}

.post-content h2{
	padding-top: 50px;
	color: #070E14;
}

.post-content a{
	text-decoration: underline;
	font-weight: bold;
}

.post-content a:hover{
	color: #00cfb4;
}

.post-info{
	font-size: 14px !important;
	color: #333;
}

.post-toc{
	border-radius: 10px;
	margin-top: 50px;
	background-color: #f5f5f5;
}

.post-cta-btn a{
	text-decoration: none;
}

/*Blog FAQs*/
.rank-math-list-item{
	background-color: #f5f5f5 !important;
	margin-bottom: 20px !important;
	border: 0px !important;
	border-radius: 5px;
	padding: 5px !important
	
}

.rank-math-question {
	font-size: inherit !important;
}

.rank-math-question.faq-q-open{
	border-bottom: 0px !important;

}

.rank-math-answer{
	border-bottom: 0px !important;
	background-color: #f5f5f5 !important;

}

.rank-math-answer p{
	font-size: 1.15rem !important;
	line-height: 2rem !important;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  background-color: #0f5c6e; /* teal color */
  color: #ffffff;

  font-size: 18px;
  font-weight: 600;

  border-radius: 12px; /* rounded instead of circle */

  /* Optional enhancements */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Base container */
.grid-overlay {
    position: relative;
    overflow: hidden;
}

/* Grid lines */
.grid-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background-image:
        linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);

    background-size: 60px 60px;

    /* Soft fade (optional but recommended) */
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

/* Bottom glow (optional) */
.grid-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background: radial-gradient(
        ellipse at bottom,
        rgba(0, 255, 200, 0.15),
        transparent 60%
    );
}

/* Add this class to any section/container */
.grid-on-white {
    position: relative;
    overflow: hidden;
}

/* Grid overlay */
.grid-on-white::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;

    /* Grid lines */
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px);

    background-size: 80px 80px;

    /* Soft fade on edges */
    mask-image: radial-gradient(
        circle at center,
        rgba(0,0,0,1) 60%,
        rgba(0,0,0,0.75) 78%,
        rgba(0,0,0,0.35) 90%,
        rgba(0,0,0,0) 100%
    );

    -webkit-mask-image: radial-gradient(
        circle at center,
        rgba(0,0,0,1) 60%,
        rgba(0,0,0,0.75) 78%,
        rgba(0,0,0,0.35) 90%,
        rgba(0,0,0,0) 100%
    );
}

/* Make sure content stays above overlay */
.grid-on-white > * {
    position: relative;
    z-index: 2;
}

.ghost-btn {
font-size: 1rem;
color: #005C71;
font-weight: 500;
cursor: pointer;
display: inline-block; 
    }

.ghost-arrow {
 display: inline-block;
 transition: transform 0.2s ease;
    }
    .ghost-btn:hover .ghost-arrow {
        transform: translateX(4px); 
    }
