:root {
  --scroll-padding-top: 0;
  --spotlight-primary-color: #be0d0f; /* Main Color (style.css - .color-one) */
  --spotlight-primary-color-light: #dc2b2d;
  --spotlight-primary-color-dark: #9f0000;
  --spotlight-primary-contrast-color: #fff;
}

.container-spotlight,
.spotlight-dp-wrapper {
  --spotlight-name-color: var(--spotlight-primary-color);
}

/* Detail Page - Stacked (dp1) ---------------------------- */
.spotlight-dp-container.spotlight-dp1 {
  --spotlight-item-bg: #fff;
  --spotlight-item-border: 1px solid #ccc;
  --spotlight-item-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  --spotlight-name-color: var(--spotlight-primary-color);
  --spotlight-link-color: var(--spotlight-primary-color);
}

/* Detail Page - Slanted, Slanted with Icons (dp2, dp3) --- */
.spotlight-dp-container.spotlight-dp2,
.spotlight-dp-container.spotlight-dp3 {
  --spotlight-icon-weight: 600;
  --spotlight-icon-code: '\f19d'; /* graduation-cap */
  --spotlight-icon-color: var(--spotlight-primary-color);
  --spotlight-bg: #fff;
  --spotlight-item-rotate: rotate(-2deg);
  --spotlight-item-rotate-even: rotate(2deg);
  --spotlight-item-content-bg: #f8f9fa;
  --spotlight-name-color: var(--spotlight-primary-color);
  --spotlight-link-color: var(--spotlight-primary-color);
}

/* Executive (he244) -------------------------------------- */
.spotlight-as-container.spotlight-he244 {
  --spotlight-box-shadow: 0 0 0 4px #fff, 0 0 15px #333;
  --spotlight-img-bg: rgba(0, 0, 0, 0.7);
  --spotlight-content-color: #fff;
  --spotlight-links-bg: var(--spotlight-primary-color);
  --spotlight-link-bg: var(--spotlight-primary-contrast-color);
  --spotlight-link-color: var(--spotlight-primary-color);
  --spotlight-link-hover-bg: var(--spotlight-primary-color-dark);
  --spotlight-link-hover-color: var(--spotlight-primary-contrast-color);
}

/* Shutter (he289) ---------------------------------------- */
.spotlight-as-container.spotlight-he289 {
  --spotlight-overlay-bg: var(--spotlight-primary-color-dark);
  --spotlight-overlay-border: 1px solid var(--spotlight-primary-contrast-color);
  --spotlight-content-color: var(--spotlight-primary-contrast-color);
  --spotlight-link-border: 1px solid var(--spotlight-primary-contrast-color);
  --spotlight-link-hover-bg: var(--spotlight-primary-color);
  --spotlight-link-hover-color: var(--spotlight-primary-contrast-color);
}

/* Banded (he299) ----------------------------------------- */
.spotlight-as-container.spotlight-he299 {
  --spotlight-item-bg: var(--spotlight-primary-color);
  --spotlight-item-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  --spotlight-content-bg: var(--spotlight-primary-color);
  --spotlight-content-color: var(--spotlight-primary-contrast-color);
  --spotlight-links-bg: var(--spotlight-primary-contrast-color);
  --spotlight-link-color: var(--spotlight-primary-color);
}

/* Shifty (he301) ----------------------------------------- */
.spotlight-as-container.spotlight-he301 {
  --spotlight-item-bg: radial-gradient(circle farthest-corner at 22.4% 21.7%, #000 0%, var(--spotlight-primary-color) 100.2%);
  --spotlight-item-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
  --spotlight-item-border: 4px solid #fff;
  --spotlight-content-color: #fff;
  --spotlight-link-border: 2px solid var(--spotlight-primary-contrast-color);
  --spotlight-link-bg: var(--spotlight-primary-contrast-color);
  --spotlight-link-color: var(--spotlight-primary-color);
  --spotlight-link-hover-bg: var(--spotlight-primary-color);
  --spotlight-link-hover-color: var(--spotlight-primary-contrast-color);
}

/* Slide Left (he304) ------------------------------------- */
.spotlight-as-container.spotlight-he304 {
  --icon-width: 40px;
  --icon-width-neg: -40px;
  --spotlight-item-bg: linear-gradient(135deg, transparent, #000 85%);
  --spotlight-content-color: #fff;
  --spotlight-link-bg: transparent;
  --spotlight-link-color: var(--spotlight-primary-color);
  --spotlight-link-hover-bg: var(--spotlight-primary-color);
  --spotlight-link-hover-color: var(--spotlight-primary-contrast-color);
}

/* Frame (he305) ------------------------------------------ */
.spotlight-as-container.spotlight-he305 {
  --spotlight-item-bg: linear-gradient(var(--spotlight-primary-color-light), var(--spotlight-primary-color-dark));
  --spotlight-content-color: var(--spotlight-primary-contrast-color);
  --spotlight-link-bg: var(--spotlight-primary-contrast-color);
  --spotlight-link-color: var(--spotlight-primary-color);
  --spotlight-link-hover-bg: var(--spotlight-primary-color-dark);
  --spotlight-link-hover-color: var(--spotlight-primary-contrast-color);
  --spotlight-link-hover-box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.7);
}

/* =========== END CSS Custom Properties ====================================== */

/* ----------- BEGIN m2 specific stuff -------------------- */
.container-spotlight *,
.container-spotlight *::before,
.container-spotlight *::after,
.spotlight-dp-wrapper *,
.spotlight-dp-wrapper *::before,
.spotlight-dp-wrapper *::after {
  line-height: 1.2;
}

/* Animation Style page */
.container-spotlight .container {
  background-color: #fff;
  overflow-x: inherit; /* Foundation reset for .container */
}

.spotlight-as-container .hidden,
.spotlight-dp-container .hidden {
  display: none !important;
}
/* ----------- END m2 specific stuff ---------------------- */

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-padding-top);
}

.spotlight-as-container,
.spotlight-dp-container {
  margin-bottom: 3em;
  opacity: 0;
  transition: opacity 0.3s;
}

.spotlight-as-container.reveal,
.spotlight-dp-container.reveal {
  opacity: 1;
}

.spotlight-as-container img,
.spotlight-dp-container img {
  display: block;
  height: auto;
  width: 100%;
}

.spotlight-as-link em,
.spotlight-dp-link em {
  margin-right: 0.5em;
}

.spotlight-as-link {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.spotlight-name {
  color: var(--spotlight-name-color);
  font-size: clamp(28px, 2.664vw, 32px);
  font-weight: bold;
  margin: 0 0 0.25em;
  text-align: center;
}

.spotlight-description {
  font-size: clamp(14px, 1.5vw, 18px);
  margin-bottom: 1em;
}

/* Detail page - dp1 = Stacked ---------------------------- */
.spotlight-dp1 .spotlight-dp-item {
  background-color: var(--spotlight-item-bg);
  border: var(--spotlight-item-border);
  box-shadow: var(--spotlight-item-box-shadow);
  font-size: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 2em;
  padding: 0.75em;
}

.spotlight-dp1 img {
  margin-bottom: 0.5em;
}

@media (min-width: 768px) {
  .spotlight-dp1 .spotlight-dp-item {
    display: flow-root;
  }

  .spotlight-dp1 img {
    float: left;
    margin: 0 0.75em 0.75em 0;
    width: 50%;
  }

  .spotlight-dp1 .spotlight-dp-item:nth-child(even) img {
    float: right;
    margin: 0 0 0.75em 0.75em;
  }
}

@media (min-width: 992px) {
  .spotlight-dp1 img {
    width: 45%;
  }
}

@media (min-width: 1200px) {
  .spotlight-dp1 img {
    width: 40%;
  }
}

.spotlight-dp1 .spotlight-dp-name {
  color: var(--spotlight-name-color);
  font-size: 28px;
  margin: 0;
}

.spotlight-dp1 .spotlight-dp-title {
  font-size: 20px;
  font-style: italic;
  margin: 0 0 0.375em;
}

.spotlight-dp1 .spotlight-dp-link {
  color: var(--spotlight-link-color);
  font-size: 16px;
  text-decoration: underline;
}

.spotlight-dp1 .spotlight-dp-description {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 1em;
}

.spotlight-dp1 .spotlight-dp-description:empty {
  margin-top: 0;
}

/* Detail page - dp2 = Slanted, dp3 = Slanted with Icons */
.spotlight-dp2,
.spotlight-dp3 {
  background-color: var(--spotlight-bg);
}

.spotlight-dp2 .spotlight-dp-item,
.spotlight-dp3 .spotlight-dp-item {
  font-size: 16px;
  margin-bottom: 3em;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-transform: var(--spotlight-item-rotate);
  transform: var(--spotlight-item-rotate);
}

.spotlight-dp2 .spotlight-dp-item:nth-child(even),
.spotlight-dp3 .spotlight-dp-item:nth-child(even) {
  -webkit-transform: var(--spotlight-item-rotate-even);
  transform: var(--spotlight-item-rotate-even);
}

.spotlight-dp2 .spotlight-dp-content,
.spotlight-dp3 .spotlight-dp-content {
  background-color: var(--spotlight-item-content-bg);
  padding: 0.75em;
  grid-column: 1/-1;
  -webkit-transform: translate(1em, -1em);
  transform: translate(1em, -1em);
}

.spotlight-dp2 .spotlight-dp-item:nth-child(even) .spotlight-dp-content,
.spotlight-dp3 .spotlight-dp-item:nth-child(even) .spotlight-dp-content {
  -webkit-transform: translate(-1em, -1em);
  transform: translate(-1em, -1em);
}

.spotlight-dp2 .spotlight-dp-content::before,
.spotlight-dp3 .spotlight-dp-content::before {
  content: var(--spotlight-icon-code);
  font-family: 'Font Awesome 5 Pro', sans-serif;
  font-size: 4em;
  font-weight: var(--spotlight-icon-weight);
  color: var(--spotlight-icon-color);
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(-5%, -80%);
  transform: translate(-5%, -80%);
}

.spotlight-dp2 .spotlight-dp-item:nth-child(even) .spotlight-dp-content::before,
.spotlight-dp3 .spotlight-dp-item:nth-child(even) .spotlight-dp-content::before {
  right: auto;
  left: 0;
  -webkit-transform: translate(5%, -80%);
  transform: translate(5%, -80%);
}

/* Hide Icons for "Slanted" */
.spotlight-dp2 .spotlight-dp-content::before {
  display: none;
}

.spotlight-dp2 .spotlight-dp-name,
.spotlight-dp3 .spotlight-dp-name {
  color: var(--spotlight-name-color);
  font-size: 30px;
  margin: 0;
}

.spotlight-dp2 .spotlight-dp-title,
.spotlight-dp3 .spotlight-dp-title {
  font-size: 24px;
  font-style: italic;
  margin-bottom: 0.375em;
}

.spotlight-dp2 .spotlight-dp-link,
.spotlight-dp3 .spotlight-dp-link {
  color: var(--spotlight-link-color);
  display: block;
  font-size: 18px;
  text-decoration: underline;
}

.spotlight-dp2 .spotlight-dp-description,
.spotlight-dp3 .spotlight-dp-description {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 1em;
}

.spotlight-dp2 .spotlight-dp-description:empty,
.spotlight-dp3 .spotlight-dp-description:empty {
  margin-top: 0;
}

.spotlight-dp2 .spotlight-dp-item:nth-child(even) .spotlight-dp-name,
.spotlight-dp2 .spotlight-dp-item:nth-child(even) .spotlight-dp-title,
.spotlight-dp2 .spotlight-dp-item:nth-child(even) .spotlight-dp-link,
.spotlight-dp2 .spotlight-dp-item:nth-child(even) .spotlight-dp-description,
.spotlight-dp3 .spotlight-dp-item:nth-child(even) .spotlight-dp-name,
.spotlight-dp3 .spotlight-dp-item:nth-child(even) .spotlight-dp-title,
.spotlight-dp3 .spotlight-dp-item:nth-child(even) .spotlight-dp-link,
.spotlight-dp3 .spotlight-dp-item:nth-child(even) .spotlight-dp-description {
  text-align: right;
}

/* Adjustments for 4:3 & 16:9 aspect ratios --------------- */
.spotlight-dp2.spotlight-dp-4by3 img,
.spotlight-dp2.spotlight-dp-16by9 img,
.spotlight-dp3.spotlight-dp-4by3 img,
.spotlight-dp3.spotlight-dp-16by9 img {
  grid-column: 1/9;
}
.spotlight-dp2.spotlight-dp-4by3 .spotlight-dp-item:nth-child(even) img,
.spotlight-dp2.spotlight-dp-16by9 .spotlight-dp-item:nth-child(even) img,
.spotlight-dp3.spotlight-dp-4by3 .spotlight-dp-item:nth-child(even) img,
.spotlight-dp3.spotlight-dp-16by9 .spotlight-dp-item:nth-child(even) img {
  grid-column: 5/-1;
}

/* Adjustments for 1:1 aspect ratio ----------------------- */
.spotlight-dp2.spotlight-dp-1by1 img,
.spotlight-dp3.spotlight-dp-1by1 img {
  grid-column: 1/7;
}
.spotlight-dp2.spotlight-dp-1by1 .spotlight-dp-item:nth-child(even) img,
.spotlight-dp3.spotlight-dp-1by1 .spotlight-dp-item:nth-child(even) img {
  grid-column: 7/-1;
}

/* Adjustments for 3:4 aspect ratio ----------------------- */
.spotlight-dp2.spotlight-dp-3by4 img,
.spotlight-dp3.spotlight-dp-3by4 img {
  grid-column: 1/7;
}
.spotlight-dp2.spotlight-dp-3by4 .spotlight-dp-content,
.spotlight-dp3.spotlight-dp-3by4 .spotlight-dp-content {
  grid-column: 7/-1;
  align-self: flex-end;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: calc(100% + 2em);
  -webkit-transform: translate(-1em, 1em);
  transform: translate(-1em, 1em);
}
.spotlight-dp2.spotlight-dp-3by4 .spotlight-dp-item:nth-child(even) img,
.spotlight-dp3.spotlight-dp-3by4 .spotlight-dp-item:nth-child(even) img {
  grid-column: 7/-1;
  -ms-flex-order: 2;
  order: 2;
}
.spotlight-dp2.spotlight-dp-3by4 .spotlight-dp-item:nth-child(even) .spotlight-dp-content,
.spotlight-dp3.spotlight-dp-3by4 .spotlight-dp-item:nth-child(even) .spotlight-dp-content {
  grid-column: 1/7;
  align-self: flex-start;
  -webkit-transform: translate(-1em, 1em);
  transform: translate(-1em, 1em);
  width: calc(100% + 2em);
}
.spotlight-dp2.spotlight-dp-3by4 .spotlight-dp-item {
  margin-bottom: 5em;
}
.spotlight-dp3.spotlight-dp-3by4 .spotlight-dp-item {
  margin-bottom: 7em;
}

/* Grid - Animation Styles -------------------------------- */
.spotlight-as-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-gap: 15px;
  isolation: isolate;
}

/* Executive (he244) -------------------------------------- */
.spotlight-he244 .spotlight-as-item {
  line-height: 1.5;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
  z-index: 1;
}

.spotlight-he244 .spotlight-as-item:hover,
.spotlight-he244 .spotlight-as-item:focus-within {
  box-shadow: var(--spotlight-box-shadow);
}

.spotlight-he244 .spotlight-as-item::before {
  content: '';
  background-color: var(--spotlight-img-bg);
  width: 100%;
  height: calc(100% - 42px);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.5s ease;
}

.spotlight-he244 .spotlight-as-item:hover::before,
.spotlight-he244 .spotlight-as-item:focus-within::before {
  opacity: 1;
}

.spotlight-he244 .spotlight-as-item img {
  transition: all 0.5s ease;
}

.spotlight-he244 .spotlight-as-item:hover img,
.spotlight-he244 .spotlight-as-item:focus-within img {
  -webkit-transform: translateY(-41px);
  transform: translateY(-41px);
}

.spotlight-he244 .spotlight-as-content {
  color: var(--spotlight-content-color);
  width: 100%;
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  padding: 0 0.5em;
  position: absolute;
  top: 44%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  transition: all 0.3s ease 0.1s;
}

.spotlight-he244 .spotlight-as-item:hover .spotlight-as-content,
.spotlight-he244 .spotlight-as-item:focus-within .spotlight-as-content {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.spotlight-he244 .spotlight-as-name {
  color: var(--spotlight-content-color);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 0.125em;
  text-transform: capitalize;
}

.spotlight-he244 .spotlight-as-title {
  display: block;
  font-size: 16px;
  font-style: italic;
  text-transform: capitalize;
}

.spotlight-he244 .spotlight-as-link {
  color: var(--spotlight-content-color);
  display: block;
  font-size: 16px;
}

.spotlight-he244 .spotlight-as-links {
  background-color: var(--spotlight-links-bg);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  transition: all 0.4s ease;

  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-he244 li {
  display: inline-block;
  margin: 0 0.25em;
}

.spotlight-he244 li a {
  background-color: var(--spotlight-link-bg);
  border-radius: 0.25em;
  color: var(--spotlight-link-color);
  font-size: 16px;
  transition: all 0.4s ease;

  display: flex;
  align-items: center;
  height: 26px;
  padding: 0 8px;
}

.spotlight-he244 li a:hover,
.spotlight-he244 li a:focus {
  background-color: var(--spotlight-link-hover-bg);
  color: var(--spotlight-link-hover-color);
  text-decoration: none;
}

.spotlight-he244 li a .fa-ellipsis-h {
  display: none;
}

.spotlight-he244 .spotlight-as-item:hover .spotlight-as-links,
.spotlight-he244 .spotlight-as-item:focus-within .spotlight-as-links {
  opacity: 1;
}

.spotlight-he244 .spotlight-as-content > .spotlight-as-links {
  display: none;
}

/* Shutter (he289) ---------------------------------------- */
.spotlight-he289 .spotlight-as-item {
  overflow: hidden;
  position: relative;
  text-align: center;
}

.spotlight-he289 .spotlight-as-item::before,
.spotlight-he289 .spotlight-as-item::after {
  content: '';
  background-color: var(--spotlight-overlay-bg);
  position: absolute;
  inset: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: all 0.5s ease 0s;
}

.spotlight-he289 .spotlight-as-item::after {
  background-color: var(--spotlight-overlay-bg);
  border: var(--spotlight-overlay-border);
  inset: 8px;
  transition: all 0.5s ease 0.2s;
}

.spotlight-he289 .spotlight-as-item:hover::before,
.spotlight-he289 .spotlight-as-item:focus-within::before {
  opacity: 0.5;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.spotlight-he289 .spotlight-as-item:hover::after,
.spotlight-he289 .spotlight-as-item:focus-within::after {
  opacity: 0.35;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.spotlight-he289 .spotlight-as-item .spotlight-as-content {
  color: var(--spotlight-content-color);
  -webkit-filter: blur(5px);
  filter: blur(5px);
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  z-index: 2;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.4s ease 0.3s;
}

.spotlight-he289 .spotlight-as-item:hover .spotlight-as-content,
.spotlight-he289 .spotlight-as-item:focus-within .spotlight-as-content {
  -webkit-filter: blur(0);
  filter: blur(0);
  opacity: 1;
}

.spotlight-he289 .spotlight-as-name {
  color: var(--spotlight-content-color);
  font-size: 20px;
  font-weight: 200;
  margin: 0 0 0.125em;
  text-transform: capitalize;
}

.spotlight-he289 .spotlight-as-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.25em;
  text-transform: uppercase;
}

.spotlight-he289 .spotlight-as-link {
  color: var(--spotlight-content-color);
  display: block;
  font-size: 14px;
}

.spotlight-he289 .spotlight-as-links {
  list-style: none;
  margin: 1em 0 0;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-he289 li {
  display: inline-block;
  margin: 0 0.25em;
}

.spotlight-he289 li a {
  border: var(--spotlight-link-border);
  color: var(--spotlight-content-color);
  font-size: 14px;
  height: 31px;
  padding: 0 0.75em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.spotlight-he289 li a .fa-ellipsis-h {
  display: none;
}

.spotlight-he289 li a:hover,
.spotlight-he289 li a:focus {
  background-color: var(--spotlight-link-hover-bg);
  color: var(--spotlight-link-hover-color);
}

.spotlight-he289 .spotlight-as-item > .spotlight-as-links {
  display: none;
}

/* Banded (he299) ----------------------------------------- */
.spotlight-he299 .spotlight-as-item {
  background-color: var(--spotlight-item-bg);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.spotlight-he299 .spotlight-as-item:hover,
.spotlight-he299 .spotlight-as-item:focus-within {
  box-shadow: var(--spotlight-item-box-shadow);
}

.spotlight-he299 .spotlight-as-item img {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  transition: all 0.3s ease-in-out;
}

.spotlight-he299 .spotlight-as-item:hover img,
.spotlight-he299 .spotlight-as-item:focus-within img {
  opacity: 0.5;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition-delay: 0.2s;
}

.spotlight-he299 .spotlight-as-item .spotlight-as-content {
  background-color: var(--spotlight-content-bg);
  color: var(--spotlight-content-color);
  padding: 5px 5px 5px 20px;
  opacity: 0;
  position: absolute;
  bottom: 45%;
  left: 50%;
  width: 101%;
  z-index: 2;
  -webkit-transform: translateX(-50%) translateY(50%);
  transform: translateX(-50%) translateY(50%);
  transition: all 0.3s ease-in-out;
}

.spotlight-he299 .spotlight-as-item:hover .spotlight-as-content,
.spotlight-he299 .spotlight-as-item:focus-within .spotlight-as-content {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(25%);
  transform: translateX(-50%) translateY(25%);
  transition-delay: 0.2s;
}

.spotlight-he299 .spotlight-as-name {
  color: var(--spotlight-content-color);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 0.125em;
  text-transform: capitalize;
}

.spotlight-he299 .spotlight-as-title {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 0.25em;
  text-transform: uppercase;
}

.spotlight-he299 .spotlight-as-link {
  color: var(--spotlight-content-color);
  display: block;
  font-size: 14px;
}

.spotlight-he299 .spotlight-as-links {
  background-color: var(--spotlight-links-bg);
  list-style: none;
  margin: 0;
  padding: 5px 25px 5px 5px;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: right;
  transition: all 0.3s ease-in-out;
  width: 100%;
  z-index: 1;
}

.spotlight-he299 li {
  display: inline-block;
  margin: 0 0 0 1em;
  opacity: 0;
  -webkit-transform: translateY(-40px);
  transform: translateY(-40px);
  transition: all 0.3s ease-in-out;
  transition-delay: 0.2s;
}

.spotlight-he299 li a {
  color: var(--spotlight-link-color);
  font-size: 16px;
}

.spotlight-he299 li a .fa-ellipsis-h {
  display: none;
}

.spotlight-he299 .spotlight-as-item:hover .spotlight-as-links,
.spotlight-he299 .spotlight-as-item:focus-within .spotlight-as-links {
  opacity: 1;
  -webkit-transform: translateY(29px);
  transform: translateY(29px);
  transition-delay: 0.2s;
}

.spotlight-he299 .spotlight-as-item:hover .spotlight-as-links li,
.spotlight-he299 .spotlight-as-item:focus-within .spotlight-as-links li {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.spotlight-he299 .spotlight-as-item:hover li:nth-child(2) {
  transition-delay: 0.4s;
}

.spotlight-he299 .spotlight-as-item > .spotlight-as-links {
  display: none;
}

/* Shifty (he301) ----------------------------------------- */
.spotlight-he301 .spotlight-as-item {
  background-image: var(--spotlight-item-bg);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.spotlight-he301 .spotlight-as-item:hover,
.spotlight-he301 .spotlight-as-item:focus-within {
  box-shadow: var(--spotlight-item-box-shadow);
}

.spotlight-he301 .spotlight-as-item::before {
  content: '';
  border: var(--spotlight-item-border);
  opacity: 0;
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: 8px;
  right: 8px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.spotlight-he301 .spotlight-as-item:hover::before,
.spotlight-he301 .spotlight-as-item:focus-within::before {
  opacity: 0.9;
  top: 8px;
  bottom: 8px;
}

.spotlight-he301 .spotlight-as-item img {
  -webkit-transform: scale(1.1) translateX(4%);
  transform: scale(1.1) translateX(4%);
  transition: all 0.4s ease-in-out;
}

.spotlight-he301 .spotlight-as-item:hover img,
.spotlight-he301 .spotlight-as-item:focus-within img {
  opacity: 0.25;
  -webkit-transform: scale(1.1) translateX(-4%);
  transform: scale(1.1) translateX(-4%);
}

.spotlight-he301 .spotlight-as-item .spotlight-as-content {
  color: var(--spotlight-content-color);
  opacity: 0;
  -webkit-transform: translateX(20%);
  transform: translateX(20%);
  position: absolute;
  top: 18px;
  left: 20px;
  width: calc(100% - 40px);
  transition: all 0.3s ease-out;
  z-index: 1;
}

.spotlight-he301 .spotlight-as-item:hover .spotlight-as-content,
.spotlight-he301 .spotlight-as-item:focus-within .spotlight-as-content {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 0.3s;
}

.spotlight-he301 .spotlight-as-item .spotlight-as-links {
  list-style: none;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  right: 15px;
  bottom: 18px;
  z-index: 1;
  -webkit-transform: translateX(-20%);
  transform: translateX(-20%);
  transition: all 0.3s ease-out;

  display: flex;
  align-items: center;
}

.spotlight-he301 .spotlight-as-item:hover .spotlight-as-links,
.spotlight-he301 .spotlight-as-item:focus-within .spotlight-as-links {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 0.3s;
}

.spotlight-he301 .spotlight-as-name {
  color: var(--spotlight-content-color);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 0.125em;
  text-transform: uppercase;
}

.spotlight-he301 .spotlight-as-title {
  display: block;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 0.25em;
  text-transform: capitalize;
}

.spotlight-he301 .spotlight-as-link {
  color: var(--spotlight-content-color);
  display: block;
  font-size: 16px;
}

.spotlight-he301 li {
  display: inline-block;
  margin: 0 5px;
}

.spotlight-he301 li a {
  background-color: var(--spotlight-link-bg);
  border: var(--spotlight-link-border);
  color: var(--spotlight-link-color);
  font-size: 15px;
  height: 28px;
  padding: 0 0.75em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.spotlight-he301 li a .fa-ellipsis-h {
  display: none;
}

.spotlight-he301 li a:hover, .spotlight-he301 li a:focus {
  background-color: var(--spotlight-link-hover-bg);
  color: var(--spotlight-link-hover-color);
}

.spotlight-he301 .spotlight-as-content .spotlight-as-links {
  display: none;
}

/* Adjustments for 16by9 */
.spotlight-as-16by9.spotlight-he301 .spotlight-as-item:hover::before,
.spotlight-as-16by9.spotlight-he301 .spotlight-as-item:focus-within::before {
  top: 6px;
  bottom: 6px;
}

.spotlight-as-16by9.spotlight-he301 .spotlight-as-item::before {
  border: 3px solid #fff;
  left: 6px;
  right: 6px;
}

.spotlight-as-16by9.spotlight-he301 .spotlight-as-item .spotlight-as-content {
  top: 12px;
  left: 15px;
  width: calc(100% - 30px);
}

.spotlight-as-16by9.spotlight-he301 .spotlight-as-item .spotlight-as-links {
  right: 10px;
  bottom: 14px;
}

.spotlight-as-16by9.spotlight-he301 li a {
  font-size: 14px;
  height: 26px;
}

.spotlight-as-16by9.spotlight-he301 .spotlight-as-name {
  font-size: 18px;
}

/* Slide Left (he304) ------------------------------------- */
.spotlight-he304 .spotlight-as-item {
  overflow: hidden;
  position: relative;
}

.spotlight-he304 .spotlight-as-item::before {
  content: '';
  background-image: var(--spotlight-item-bg);
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  transition: all 0.25s ease-in;
}

.spotlight-he304 .spotlight-as-item:hover::before,
.spotlight-he304 .spotlight-as-item:focus-within::before {
  opacity: 0.9;
  right: var(--icon-width);
}

.spotlight-he304 .spotlight-as-item img {
  transition: all 0.25s ease-in;
}

.spotlight-he304 .spotlight-as-item:hover img,
.spotlight-he304 .spotlight-as-item:focus-within img {
  -webkit-transform: translateX(var(--icon-width-neg));
  transform: translateX(var(--icon-width-neg));
}

.spotlight-he304 .spotlight-as-item .spotlight-as-content {
  color: var(--spotlight-content-color);
  text-align: right;
  opacity: 0;
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: calc(100% - (var(--icon-width) + 12px));
  z-index: 2;
  transition: all 0.25s ease-in;
}

.spotlight-he304 .spotlight-as-item:hover .spotlight-as-content,
.spotlight-he304 .spotlight-as-item:focus-within .spotlight-as-content {
  opacity: 1;
  -webkit-transform: translateX(var(--icon-width-neg));
  transform: translateX(var(--icon-width-neg));
}

.spotlight-he304 .spotlight-as-item .spotlight-as-links {
  list-style: none;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.25s ease-in;
}

.spotlight-he304 .spotlight-as-item:hover .spotlight-as-links,
.spotlight-he304 .spotlight-as-item:focus-within .spotlight-as-links {
  opacity: 1;
}

.spotlight-he304 .spotlight-as-name {
  color: var(--spotlight-content-color);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 0.125em;
  text-transform: uppercase;
}

.spotlight-he304 .spotlight-as-title {
  display: block;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 0.25em;
  text-transform: capitalize;
}

.spotlight-he304 .spotlight-as-link {
  color: var(--spotlight-content-color);
  display: block;
  font-size: 16px;
}

.spotlight-he304 li {
  margin: 0.5em 0;
}

.spotlight-he304 li a {
  background-color: var(--spotlight-link-bg);
  color: var(--spotlight-link-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  height: var(--icon-width);
  width: var(--icon-width);
  text-decoration: none;
  transition: all 0.3s;
}

.spotlight-he304 li a span {
  display: none;
}

.spotlight-he304 li a:hover, .spotlight-he304 li a:focus {
  background-color: var(--spotlight-link-hover-bg);
  color: var(--spotlight-link-hover-color);
}

.spotlight-he304 .spotlight-as-content .spotlight-as-links {
  display: none;
}

/* Frame (he305) ------------------------------------------ */
.spotlight-he305 .spotlight-as-item {
  overflow: hidden;
  position: relative;
}

.spotlight-he305 .spotlight-as-item::before {
  content: '';
  background-image: var(--spotlight-item-bg);
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: all 0.3s ease 0s;
}

.spotlight-he305 .spotlight-as-item:hover::before,
.spotlight-he305 .spotlight-as-item:focus-within::before {
  opacity: 0.85;
  inset: 8px;
}

.spotlight-he305 .spotlight-as-item img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  transition: all 0.3s ease 0s;
}

.spotlight-he305 .spotlight-as-item:hover img,
.spotlight-he305 .spotlight-as-item:focus-within img {
  -webkit-filter: grayscale(70%);
  filter: grayscale(70%);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.spotlight-he305 .spotlight-as-item .spotlight-as-content {
  color: var(--spotlight-content-color);
  opacity: 0;
  padding: 0 16px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  z-index: 2;
  width: 100%;
  text-align: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: all 0.3s ease 0s;
}

.spotlight-he305 .spotlight-as-item:hover .spotlight-as-content,
.spotlight-he305 .spotlight-as-item:focus-within .spotlight-as-content {
  opacity: 1;
  bottom: 16px;
}

.spotlight-he305 .spotlight-as-item .spotlight-as-links {
  list-style: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 16px;
  z-index: 1;
  white-space: nowrap;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: all 0.25s ease-in;

  display: flex;
  align-items: center;
}

.spotlight-he305 .spotlight-as-item:hover .spotlight-as-links,
.spotlight-he305 .spotlight-as-item:focus-within .spotlight-as-links {
  opacity: 1;
}

.spotlight-he305 .spotlight-as-item li {
  margin: 0 25px;
  display: inline-block;
  transition: all 0.3s ease 0s;
}

.spotlight-he305 .spotlight-as-item:hover li,
.spotlight-he305 .spotlight-as-item:focus-within li {
  margin: 0 5px;
}

.spotlight-he305 .spotlight-as-name {
  color: var(--spotlight-content-color);
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 0.125em;
  text-transform: uppercase;
}

.spotlight-he305 .spotlight-as-title {
  display: block;
  font-size: 16px;
  margin-bottom: 0.25em;
}

.spotlight-he305 .spotlight-as-link {
  color: var(--spotlight-content-color);
  display: block;
  font-size: 16px;
}

.spotlight-he305 li a {
  background-color: var(--spotlight-link-bg);
  border-radius: 0.25em;
  color: var(--spotlight-link-color);
  display: flex;
  align-items: center;
  font-size: 16px;
  height: 32px;
  padding: 0 0.75em;
  text-align: center;
  transition: all 0.3s ease 0s;
}

.spotlight-he305 li a .fa-ellipsis-h {
  display: none;
}

.spotlight-he305 li a:hover,
.spotlight-he305 li a:focus {
  background-color: var(--spotlight-link-hover-bg);
  color: var(--spotlight-link-hover-color);
  box-shadow: var(--spotlight-link-hover-box-shadow);
  text-decoration: none;
}

.spotlight-he305 .spotlight-as-content .spotlight-as-links {
  display: none;
}

/* Adjustments for 16by9 */
.spotlight-as-16by9.spotlight-he305 .spotlight-as-item:hover::before,
.spotlight-as-16by9.spotlight-he305 .spotlight-as-item:focus-within::before {
  inset: 6px;
}

.spotlight-as-16by9.spotlight-he305 .spotlight-as-item:hover .spotlight-as-content,
.spotlight-as-16by9.spotlight-he305 .spotlight-as-item:focus-within .spotlight-as-content {
  bottom: 12px;
}

.spotlight-as-16by9.spotlight-he305 .spotlight-as-item .spotlight-as-content {
  padding: 0 12px;
}

.spotlight-as-16by9.spotlight-he305 .spotlight-as-name {
  font-size: 18px;
}

.spotlight-as-16by9.spotlight-he305 .spotlight-as-title,
.spotlight-as-16by9.spotlight-he305 .spotlight-as-link {
  font-size: 14px;
}

.spotlight-as-16by9.spotlight-he305 .spotlight-as-item .spotlight-as-links {
  top: 12px;
}

.spotlight-as-16by9.spotlight-he305 li a {
  font-size: 14px;
  height: 28px;
}
/* Frame animation style update script */
.spotlight-he305 .spotlight-as-item img {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.spotlight-he305 .spotlight-as-item:hover img,
.spotlight-he305 .spotlight-as-item:focus-within img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

