/**
Breakpoint Variables - Define these as LESS variables for media queries
**/
/**
@media only screen and (max-width: @tablet) {
}

@media only screen and (max-width: @mobile) {
}

mobile fonts
D60px
font-size: 48px;
D24px 
font-size: 21px;
font-size: 18px;
font-size: 16px;
***/
/**
 * LinkedIn Interstitial Section Styles
 */
.linkedin-interstitial {
  padding: 80px 0;
  position: relative;
  background-color: #045B64;
  width: 100%;
}
.linkedin-interstitial .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.linkedin-interstitial .linkedin-content {
  justify-content: center;
  gap: 20px;
}
.linkedin-interstitial .linkedin-icon {
  flex-shrink: 0;
}
.linkedin-interstitial .linkedin-icon .icon-wrapper {
  width: 70px;
  height: 70px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.linkedin-interstitial .linkedin-icon .icon-wrapper svg,
.linkedin-interstitial .linkedin-icon .icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.linkedin-interstitial .linkedin-icon .icon-wrapper::after {
  content: "";
  background: url("../elements/images/search-dots-afp-yellow.svg") center center no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  pointer-events: none;
  z-index: 0;
  transition: var(--transitionAll);
}
.linkedin-interstitial .linkedin-icon .icon-wrapper:hover::after {
  background-image: url("../elements/images/search-dots-afp-orange.svg");
  transform: rotate(-180deg);
}
.linkedin-interstitial .linkedin-text {
  flex: 1;
  max-width: 800px;
  text-align: left;
}
.linkedin-interstitial .linkedin-title {
  font-size: 45px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}
.linkedin-interstitial .linkedin-description {
  font-size: 24px;
  margin: 0;
  line-height: 1.5;
  color: #fff;
  font-weight: bold;
}
.linkedin-interstitial .cta-container {
  flex-shrink: 0;
}
.linkedin-interstitial .button.callout-cta {
  background-color: var(--afp-yellow);
  color: var(--afp-teal);
  transition: var(--transitionAll);
}
.linkedin-interstitial .button.callout-cta:hover {
  background: var(--afp-orange);
  color: var(--afp-yellow);
}
@media only screen and (max-width: 768px) {
  .linkedin-interstitial {
    padding: 50px 0;
  }
  .linkedin-interstitial .linkedin-content {
    gap: 25px;
  }
  .linkedin-interstitial .linkedin-icon .icon-wrapper {
    width: 60px;
    height: 60px;
  }
  .linkedin-interstitial .linkedin-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .linkedin-interstitial .linkedin-description {
    font-size: 16px;
  }
  .linkedin-interstitial .button.callout-cta {
    font-size: 16px;
    padding: 12px 30px;
  }
}
@media only screen and (max-width: 480px) {
  .linkedin-interstitial {
    padding: 40px 0;
  }
  .linkedin-interstitial .linkedin-icon .icon-wrapper {
    width: 50px;
    height: 50px;
  }
  .linkedin-interstitial .linkedin-text {
    flex-basis: 100%;
    text-align: center;
  }
  .linkedin-interstitial .linkedin-title {
    font-size: 24px;
  }
  .linkedin-interstitial .linkedin-description {
    font-size: 14px;
  }
}
