/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* Hide focus outlines when not using keyboard */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible) {
  outline: none !important;
}

/* Only show focus outlines when using keyboard */
body:not(.using-keyboard) a:focus,
body:not(.using-keyboard) button:focus,
body:not(.using-keyboard) input:focus,
body:not(.using-keyboard) .nav-menu__link:focus,
body:not(.using-keyboard) .nav-top__link:focus, 
body:not(.using-keyboard) .nav-cta:focus,
body:not(.using-keyboard) .nav-dropdown__link:focus {
  outline: none !important;
  outline-offset: 0 !important;
}

/* Ensure keyboard users still see focus outlines */
body.using-keyboard a:focus,
body.using-keyboard button:focus,
body.using-keyboard input:focus,
body.using-keyboard .nav-menu__link:focus,
body.using-keyboard .nav-top__link:focus,
body.using-keyboard .nav-cta:focus,
body.using-keyboard .nav-dropdown__link:focus {
  outline: 2px solid #ed017d !important;
  outline-offset: 2px !important;
}

/* Klipboard Theme Overrides */

:focus {
  outline: none;
  outline-color: none;
}

/* Default CSS Reset */
/* *,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  outline: none;
} */

html,
body {
  width: 100%;
  height: 100%;
  /* overflow-x: hidden; */
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:focus,
:active {
  outline: none;
  box-shadow: none;
}

button:focus,
button:active {
  outline: none;
  box-shadow: none;
}

/* Typography */
h1 {
  font-size: 50px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #333333;
}

h2 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #333333;
}

h3 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 400;
  color: #333333;
}

h4 {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 400;
  color: #333333;
}

h5 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 400;
}

h6 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 400;
}

h6.medium {
  font-weight: 500;
}

h6.bold {
  font-weight: 700;
}


p {
  font-size: 16px;
  margin-bottom: 10px;   
  font-weight: 400;
  color: #646464;
}

ul.diamondlist-magenta li {
    background-image: url(https://620276.fs1.hubspotusercontent-na1.net/hubfs/620276/diamond-icon-magenta.svg)
}

ul.diamondlist-magenta li,ul.diamondlist-navy li,ul.diamondlist-white li {
    background-position: left 5px;
    background-repeat: no-repeat;
    background-size: 10px;
    color: #646464;
    list-style: none;
    margin-bottom: 10px;
    padding-left: 24px
}


ul.diamondlist-charcoal li {
    background-image: url(https://620276.fs1.hubspotusercontent-na1.net/hubfs/620276/diamond-icon-charcoal-01.svg)
}

ul.diamondlist-charcoal li {
    background-position: left 5px;
    background-repeat: no-repeat;
    background-size: 10px;
    color: #646464;
    list-style: none;
    margin-bottom: 10px;
    padding-left: 24px
}


/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 25px;
  }

  p {
    font-size: 17px;
  }
}



/* ======== Blog Styles ======== */
.body-container--blog-post .content-wrapper {
    max-width: 920px;
}

.button-arrow-text.sm {
    color: #ed017f;
    display: flex;
    width: fit-content;
    align-items: center;
}

.body-container--blog-post .content-wrapper .blog-post__body img {
    width: 100% !important;
    height: auto;
} 

article.blog-more-posts__post-wrapper {
    padding: 0;
}

.blog-more .blog-more-posts {
  gap: 20px;
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr;
}

.blog-more .blog-more-posts::after {
  display: none;
}

.blog-more-posts__post-content h4 a {
  text-decoration: none;
  color: #333333;
  transition: all 0.3s ease;
}

.blog-more-posts__post-content h4 a:hover {
  color: #ed017f;
}



@media (max-width: 1023px) {
  .blog-more .blog-more-posts {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .blog-more .blog-more-posts {
    grid-template-columns: 1fr;
  }
}


/* Viewport Zoom Control */


/* CTA Styles */
.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 27.5px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-cta {
  background: #333333;
  color: #FFFFFF;
}

.primary-cta:hover {
  background: #444444;
  text-decoration: none;
}

.secondary-cta {
  background: transparent;
  color: #333333;
  border: 2px solid #333333;
  text-decoration: none;
}

.secondary-cta:hover {
  background: #f5f5f5;
}


.primary-cta:hover {
  background: #444444;
  text-decoration: none;
} */

/* main.body-container-wrapper {
    padding-bottom: 60px;
}

/* Scrollbar for body */
html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 10px !important;
}

html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  background: #FCFCFC !important;
  border-radius: 8px;
}

html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background: #8B8B8B !important;
  border-radius: 8px;
}


@media (max-width: 991px) {
  .primary-cta, .secondary-cta {
    font-size: 14px;
  }
  
/*   body {
    overflow-x: clip;
  } */

}