  /*
Implementation Skeleton v3 - 12/6/18
Add styles to overwrite customer CSS, USE WITH CAUTION.
*/

@media (min-width: 1200px) {
.site-navigation.modal .modal-dialog .modal-content {
border: none;
background-color: none;
}
}

/* Circular text background with stroke */
.text-highlight {
  display: inline-block;           /* keeps it from stretching full-width */
  background-color: #5EB4E5;       /* light blue background */
  border-radius: 50%;              /* 50% makes it fully circular when height ≈ width */
  padding: 0.35em 0.7em;           /* padding — adjust as needed */
  line-height: 1.4;                /* helps with vertical centering */
  font-weight: 900;
  color: #25245B;
  outline: 2px solid #25245B;      
  outline-offset: 3px;             
  transition: all 0.3s ease;       /* for hover effects */
}

.text-highlight:hover {
  background-color: #83d2ff;           /* slightly brighter blue */
  outline: 3px solid #25245B;          /* thicker outline */
  outline-offset: 5px;                 /* push it further out */
  box-shadow: 0 0 15px rgba(30, 64, 175, 0.5);  /* soft blue glow around everything */
}

/* Circular text background with stroke - 2nd go */
.custom-numbered-list {
  display: inline-block;           /* keeps it from stretching full-width */
  background-color: #5EB4E5;       /* light blue background */
  border-radius: 50%;              /* 50% makes it fully circular when height ≈ width */
  padding: 0.35em 0.7em;           /* padding — adjust as needed */
  line-height: 1.4;                /* helps with vertical centering */
  font-weight: 900;
  color: #25245B;
  outline: 2px solid #25245B;      
  outline-offset: 3px;             
  transition: all 0.3s ease;       /* for hover effects */
  float: left;
  margin: 0 1.2em 0.6em 0;	   /* right and bottom margins */
}

.custom-numbered-list:hover {
  transform: scale(1.06);
  background-color: #83d2ff;           /* slightly brighter blue */
  outline: 3px solid #25245B;          /* thicker outline */
  outline-offset: 5px;                 /* push it further out */
  box-shadow: 0 0 15px rgba(30, 64, 175, 0.5);  /* soft blue glow around everything */
}

/* Image display options */
/* ---------------------------------------------------------------------------------------------- */

.image-row {
  display: flex;
  width: 100%;
  gap: 10px;
}

.img-wrap {
  flex: 1 1 0;
  display: flex;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-style: solid;
  border-radius: 12px;
  border-color: #25245B;
  border-width: 3px;
}

.img-wrap:first-child {
  flex: 2;
}
.img-wrap:last-child {
  flex: 1;
}

/* Mobile / small screens */
@media (max-width: 768px) {
  .img-wrap:last-child {
    display:none;
  }
}

/* At a Glance Container */
/* ---------------------------------------------------------------------------------------------- */

.glance-container {
  position: sticky;
  width: 100%;
  height: auto;
  z-index: 4;
  border-radius: 12px;
  box-shadow: 0 0 0 3px #25245B;
  top: 20px;
  padding: 5px 10px 10px 10px;
}

.glance-container h2, .glance-container h3, .glance-container h4 {
  padding-bottom: 0px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.glance-container h2 {
  font-size: xx-large;
}

.glance-container h3 {
  font-size: larger;
}

.glance-container h4, .glance-container h5, .glance-container h6 {
  font-size: large;
}

.glance-container .bordered-heading {
  padding-bottom: 10px;
}

/* Mobile / small screens */
@media (max-width: 768px) {
.glance-container {
  display: none;
  }
}

/* Desktop / large screens */
@media (min-width: 769px) {
.glance-mobile {
  display: none;
  }
}

.glance-mobile {
  width: 100%;
  height: auto;
  z-index: 4;
  border-radius: 12px;
  box-shadow: 0 0 0 3px #25245B;
  padding: 5px 15px 15px 15px;
  margin-bottom: 20px;
}

/* Percentage Bar */
/* ---------------------------------------------------------------------------------------------- */

.percentage-bar {
  width: 100%;
  height: 16px;
  background: #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.percentage-bar-fill {
  width: calc(var(--progress) * 1%);
  height: 100%;
  background: var(--color, #4a90e2);
  border-radius: 8px;
}

/* Video Header Edits */
/* ---------------------------------------------------------------------------------------------- */

.video-caption {
    width: 70%;
    background-color: transparent;
    color: #fff;
    text-shadow: 1px 1px 2px #24235B;
}

.video-caption h1 {
    font-family: "Schibsted Grotesk", sans-serif;
    color: #d6dee2;
    font-weight: 900;
	font-size: 90px;
    text-shadow: 2px 2px 2px #24235B;
}

@media (max-width: 1024px) {
    .video-caption {
        width: 80%;
    }
}

@media (max-width: 1024px) {
	    .video-caption h1 {
        font-size: 50px;
    }
}

.video-caption .cta-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.video-caption .cta-list li {
  display: inline-block;
  margin-right: 15px;
}


/* WYSIWYG Styles */
/* ---------------------------------------------------------------------------------------------- */

.roustel-accent { /* Roustel Accent Font */
font-family: "Roustel", cursive;
font-weight: 100;
}

.grotesk-heading { /* Grotesk Heading Font */
font-family: "Schibsted Grotesk", sans-serif;
font-weight: 900;
}