/* ---------- Reusable scroll-in animation system ---------- */
.bc-anim{
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(.2,.8,.2,1);
}

/* default animation if no data-anim specified */
.bc-anim{ transform: translateY(24px); }

/* Variants */
.bc-anim[data-anim="fade"]  { transform: none; }
.bc-anim[data-anim="up"]    { transform: translateY(24px); }
.bc-anim[data-anim="left"]  { transform: translateX(28px); }  /* enters from right -> settles left */
.bc-anim[data-anim="right"] { transform: translateX(-28px); } /* enters from left -> settles right */

/* Activated */
.bc-anim.is-in{
  opacity: 1;
  transform: translate(0,0);
}

/* Stagger delays (extend if you want more) */
.bc-anim[data-delay="1"]{ transition-delay: 80ms; }
.bc-anim[data-delay="2"]{ transition-delay: 160ms; }
.bc-anim[data-delay="3"]{ transition-delay: 240ms; }
.bc-anim[data-delay="4"]{ transition-delay: 320ms; }
.bc-anim[data-delay="5"]{ transition-delay: 400ms; }
.bc-anim[data-delay="6"]{ transition-delay: 480ms; }
.bc-anim[data-delay="7"]{ transition-delay: 560ms; }
.bc-anim[data-delay="8"]{ transition-delay: 640ms; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .bc-anim{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}



/* -------- Home Hero -------- */
.bc-home-hero{
  background:#000;
  color:#fff;
  position:relative;
  overflow:hidden;
  padding-bottom: 40px;
}

/* glow */
.bc-home-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(ellipse at left center, rgba(255,255,255,0.08), rgba(0,0,0,0) 55%);
  pointer-events:none;
  z-index:1;
}

/* pinned rule */
.bc-home-hero::after{
  
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:0;
  width:1180px;
  height:4px;
  background:#fff;
  opacity:.95;
  z-index:3;
}

/* layout */
.bc-home-hero__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 8px 0 0px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    border-bottom: 3px solid #FFF;
}

.bc-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* left */
.bc-home-hero__h1{
  margin:0;
}

/* Gradient-filled logo using SVG as a mask */
.bc-home-hero__logoMask{
  display:block;
  width:min(560px, 96%);
  height:62px;
  margin:0 0 12px;

  /* Base gradient */
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #c9ccd0 52%,
      #ffffff 100%
    );

  -webkit-mask: url("/wp-content/uploads/npp.svg") no-repeat left center / contain;
          mask: url("/wp-content/uploads/npp.svg") no-repeat left center / contain;

  position: relative;
}
/* Subtle “sheen” highlight across the logo */
.bc-home-hero__logoMask::after{
  content:"";
  position:absolute;
  inset:0;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.18) 40%,
    rgba(255,255,255,0.04) 55%,
    rgba(255,255,255,0) 72%
  );

  /* Apply the SAME mask so sheen only appears inside the logo */
  -webkit-mask: url("/wp-content/uploads/npp.svg") no-repeat left center / contain;
          mask: url("/wp-content/uploads/npp.svg") no-repeat left center / contain;

  pointer-events:none;
  mix-blend-mode: screen; /* makes it feel like a highlight */
}

/* Hide fallback by default */
.bc-home-hero__logoFallback{
  display:none;
  width:min(560px, 96%);
  height:auto;
  margin:0 0 20px;
}

/* If masks aren’t supported, use the normal SVG image */
@supports not ((-webkit-mask: url("x")) or (mask: url("x"))){
  .bc-home-hero__logoMask{ display:none; }
  .bc-home-hero__logoFallback{ display:block; }
}

.bc-home-hero__h1Text{
  display:block;
  font-size:31px;
  line-height:1.12;
  font-weight:600;
  color: rgba(255,255,255,0.92);
  max-width: 520px;
}

.bc-home-hero__cta{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  height:50px;
  max-width:260px;
  padding:0 44px;
  margin: 34px auto 0;

  border:2px solid rgba(255,255,255,0.9);
  border-radius:8px;
  background: transparent;

  color:#fff;
  text-decoration:none;
  font-size:26px;
  font-weight:800;

  overflow:hidden;
  cursor:pointer;

  /* IMPORTANT: defaults so it never expands from center unless you actually enter center */
  --ripple-x: 50%;
  --ripple-y: 50%;
  --ripple-scale: 1;
}

.bc-home-hero__ctaLabel{
  position: relative;
  z-index: 2;
}

.bc-home-hero__ctaRipple{
  position:absolute;
  width:12px;
  height:12px;
  border-radius:50%;

  /* CHANGE: white ripple */
  background:#fff;

  left:var(--ripple-x);
  top:var(--ripple-y);
  transform: translate(-50%, -50%) scale(0);
  opacity:0.0;

  z-index:1;
  pointer-events:none;
    transition: opacity 220ms ease;
}

.bc-home-hero__cta.is-hovered .bc-home-hero__ctaRipple{
  opacity: 1;
  animation: bcCtaRipple 760ms cubic-bezier(.16,1,.3,1) forwards;
}

@keyframes bcCtaRipple{
  to{
    transform: translate(-50%, -50%) scale(var(--ripple-scale));
  }
}

/* CHANGE: black text while the white circle is filling */
.bc-home-hero__cta.is-hovered{
  color:#000;
  border-color: rgba(255,255,255,0.9);
}


/* RIGHT SIDE: THIS IS THE FIX
   Make a SHORT crop window and ANCHOR IMAGE TO TOP */
.bc-home-hero__media{
  align-self:end; /* sit on the rule */
}

.bc-home-hero__mediaFrame{
    height: 420px;
    overflow: hidden;
    position: relative;
    width: 585px;
}

.bc-home-hero__mediaImg{
    width: 100%;
    height: 117%;
    display: block;
    object-fit: cover;
    object-position: 50% 20px;
    transform: none !important;
}

/* hidden helper */
.bc-visually-hidden{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* responsive */
@media (max-width: 1180px){
  .bc-home-hero__inner{ padding-left:24px; padding-right:24px; }
  .bc-home-hero::after{ width: calc(100% - 48px); }
}

.mobile-break{display: inline;}

@media (max-width: 980px){
  .bc-home-hero__inner{
        max-width: 100%;
        display: flex;
        flex-direction: column;
    gap:26px;
    min-height:auto;
    padding:25px 24px 0px;
    align-items:start;
  }

  .bc-home-hero__mediaFrame{
    height:250px;
      width: 100%;
  }

  .bc-home-hero__mediaImg{
    object-position: 70% 0%;
          height: 148%;
  }
    
    .bc-home-hero__logoMask {margin: 0 auto;}

  .bc-home-hero__h1Text{
    font-size:25px;
      text-align: center;
  }
    .mobile-break{display: block;}

  .bc-home-hero__cta{
    min-width:240px;
    height:46px;
    font-size:20px;
      margin-top: 20px;
  }
    
    .bc-home-hero__content {
        width: 100%;
    }

}


.bc-built-as-one{
  background:#000;
  color:#fff;
  padding:10px 0 30px;
}

.bc-built-as-one__inner{
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

.bc-built-as-one h2{
  font-size:31px;
  font-weight:700;
  margin:0 0 20px;
    color: #FFF;
}

.bc-built-as-one p{
  font-size:1.4em;
  line-height:2;
    margin: 0;
    text-align: justify;
}

@media (max-width: 980px){
  .bc-built-as-one p{line-height:1.6; text-align: left;}
}

/* ---------- Skip animations on mobile for specific sections ---------- */
@media (max-width: 980px){
  .bc-anim-skip-mobile .bc-anim{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }
}




.bc-mega{
  background:#000;
  padding: 0px 0 60px;
  color:#fff;
}

.bc-megaRow{
  display:grid;
  grid-template-columns: 550px 1fr;
  gap: 54px;
  align-items:center;
  padding: 36px 0;
}

.bc-megaDivider{
    border: 0;
    height: 1px;
    background: rgb(255 255 255);
    margin: 0;
    opacity: 1;
}

/* left card */
.bc-megaCard{
  position:relative;
  display:block;
  height: 200px;
  border-radius: 14px;
  overflow:hidden;
  text-decoration:none;
  color:#fff;
  background: var(--bg) center / cover no-repeat;
    border: 3px solid #000;
    transition: all 0.4s ease-in-out;
}

.bc-megaCard:hover{border-color: #FFF;}
.bc-megaCard:hover .bc-megaCard__overlay{opacity: .7;}

.bc-megaCard__overlay{
  position:absolute;
    transition: all 0.2s ease-in-out;
  inset:0;
  background:
      radial-gradient(circle at 25% 50%, rgb(0 0 0 / 18%), rgba(0, 0, 0, 0.82) 70%), 
      linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.55))
}

.bc-megaCard__content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  align-items:center;
    justify-content: center;
  gap: 18px;
  padding: 0 26px;
    color: #FFF;
}


.bc-megaCard__title{
  font-size: 44px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 18px rgba(0,0,0,0.65);
    color: #FFF;
}
.bc-megaCard:hover .bc-megaCard__title{color: #FFF;}


/* right links */
.bc-megaLinks{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap: 13px;
}
.bc-megaLinks li{margin-bottom: 0!important;}

.bc-megaLinks a{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap: 16px;
  color: #FFF;
  text-decoration:none;
  font-size: 24px;
  line-height:1.2;
  font-weight: 400;
}

.bc-megaLinks a::before{
  content:"";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  background: url("https://biocare.net/wp-content/uploads/Circle-Arrow.svg") center / contain no-repeat;
    transition: all 0.2s ease;
}

.bc-megaLinks a:hover{
  opacity:0.8;
    color: #FFF;
}
.bc-megaLinks a:hover::before{
  transform: scale(1.1);
}

/* responsive */
@media (max-width: 1180px){
  .bc-megaRow{
    grid-template-columns: 460px 1fr;
    gap: 40px;
  }
  .bc-megaCard__title{ font-size: 38px; }
  .bc-megaLinks a{ font-size: 26px; }
}

@media (max-width: 980px){
  .bc-megaRow{
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 0;
  }
  .bc-megaCard{
    height: 140px;
  }
  .bc-megaCard__title{ font-size: 34px; }
  .bc-megaLinks{
    gap: 16px;
  }
  .bc-megaLinks a{
    font-size: 22px;
  }
  .bc-megaLinks a::before{
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }
}

.bc-megaCard__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff; /* icon color */
}

.bc-megaCard__svg{
  width: 100%;
  height: 100%;
  display: block;
}





/* =========================================
   Customer Testimonials (Banner + Slider)
   ========================================= */

.bc-testimonial{
  position: relative;
  background-image: url("https://biocare.net/wp-content/uploads/SHOT7-W-1-scaled.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  overflow: hidden;
}

/* light fade overlay (your design) */
.bc-testimonial__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.84) 0%,
    rgba(255,255,255,0.84) 45%,
    rgba(255,255,255,0.84) 100%
  );
  z-index: 1;
}

/* content wrapper */
.bc-testimonial__inner{
  position: relative;
  z-index: 2;
  padding-bottom: 10px;
}

/* label */
.bc-testimonial__label{
  display: inline-block;
  background: rgba(0,0,0,0.60);
  padding: 6px 34px;
  font-size: 28px;
  font-weight: 800;
  text-transform: capitalize;
  margin-bottom: 18px;
  color: #fff;
}

/* ---------------- Slider wrapper ----------------
   Fixed height so content below DOES NOT shift.
   Also provides extra vertical padding so italic
   descenders don’t clip.
-------------------------------------------------- */
.bc-testimonial__slider{
  position: relative;
  margin-top: 18px;

  height: 280px;       /* desktop banner height */
  padding: 18px 0 24px;

  overflow: hidden;
}

/* Track MUST have height so absolute slides size correctly */
.bc-testimonial__track{
  position: relative;
  height: 100%;
}

/* Each slide stacks on top of each other */
.bc-testimonial__item{
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: center; /* centers short quotes */
  
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(.2,.8,.2,1);

  pointer-events: none;
}

/* Active slide */
.bc-testimonial__item.is-active{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Quote text */
.bc-testimonial__quote{
  margin: 0;
  padding: 0;
  border: none;

  color: #000;
  font-weight: 800;
  font-style: italic;

  /* scales down gracefully; prevents giant blowouts */
  font-size: clamp(26px, 2.4vw, 44px);
  line-height: 1.18;

  /* keeps the quote block from feeling “too wide” */
  max-width: 1120px;
    text-align: center;
}

/* Author */
.bc-testimonial__author{
  display: block;
  margin-top: 22px;

  color: #000;
  font-weight: 800;
  font-style: normal;
  font-size: 24px;

  /* keeps author aligned but still tied to quote width */
  max-width: 1120px;
  width: 100%;
  text-align: right;
}

/* Reduced motion: no slide, just fade */
@media (prefers-reduced-motion: reduce){
  .bc-testimonial__item{
    transform: none !important;
    transition: opacity 200ms ease !important;
  }
}

/* Responsive */
@media (max-width: 980px){
  .bc-testimonial__label{
    font-size: 22px;
    padding: 6px 18px;
  }

  .bc-testimonial__slider{
    height: 320px;     /* more room on mobile */
    padding: 16px 0 20px;
  }

  .bc-testimonial__quote{
    font-size: clamp(22px, 5.4vw, 34px);
    max-width: 100%;
  }

  .bc-testimonial__author{
    font-size: 18px;
    max-width: 100%;
  }
}







/* --- Stats section tweaks --- */
.bc-stats{
  background:#fff;
  color:#000;
  padding: 64px 0 74px;
}

.bc-stats__title{
  color:#000;              /* header black */
  text-align:center;
  margin: 0 0 46px;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Make each tile a 2-row grid so labels align on a row */
.bc-stats__item{
  display:grid;
  grid-template-rows: 150px auto; /* fixed icon row height */
  justify-items:center;
  align-items:end;
  text-align:center;
}

/* Put the SVGs in a consistent "box" */
.bc-stats__icon{
  width: 200px;     /* a touch bigger */
  max-width: 100%;
  height: 100px;    /* forces consistent visual height */
  object-fit: contain;
  display:block;
  margin: 0;
  align-self:end;
}
.bc-stats__icon__highCap{height: 65px; margin: 0 0 20px 0;}
.bc-stats__icon__25multi{width: 215px;}

/* Force label baseline alignment */
.bc-stats__label{
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;           /* requested */
  color: rgba(0,0,0,0.9);
  min-height: 22px;           /* keeps all labels on same row */
  display:flex;
  align-items:flex-start;
  justify-content:center;
}

/* 3 columns */
.bc-stats__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 90px;
  row-gap: 5px;
  align-items:start;
}

/* tablet */
@media (max-width: 980px){
  .bc-stats__grid{
    grid-template-columns: repeat(2, 1fr);
    column-gap: 50px;
    row-gap: 44px;
  }
  .bc-stats__item{
    grid-template-rows: 140px auto;
  }
  .bc-stats__icon{
    width: 240px;
    height: 110px;
  }
    .bc-stats__title{margin-bottom: 0;}
}

/* mobile */
@media (max-width: 640px){
  .bc-stats__grid{
    grid-template-columns: 1fr;
    row-gap: 0px;
  }
  .bc-stats__item{
    grid-template-rows: 115px auto;
  }
  .bc-stats__icon{
    width: 150px;
    height: 85px;
  }
  .bc-stats__icon__highCap {
      height: 55px !important;
      margin: 0 0 0 0;
  }
}






.bc-ctaBand{
  background:#000;
  color:#fff;
  padding: 54px 0 34px;
}

.bc-ctaBand__inner{
  text-align:center;
}

.bc-ctaBand__title{
  margin: 0 0 30px;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}

.bc-ctaBand__actions{
  display:flex;
  justify-content:center;
  gap: 26px;
  flex-wrap: wrap;
}

/* CTA Button */
.bc-ctaBand__btn{
  position: relative;
  overflow: hidden;

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

  height: 55px;
  min-width: 360px;
  padding: 0 26px;

  border-radius: 8px;
  border: 3px solid transparent;

  background: #ffffff;
  color: #000000;

  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 800;

  transition: color 0.35s ease, border-color 0.35s ease;

  /* defaults if JS hasn't run yet */
  --x: 50%;
  --y: 50%;
}

/* Expanding circle that originates at cursor */
.bc-ctaBand__btn::before{
  content: "";
  position: absolute;
  left: var(--x);
  top: var(--y);

  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #000;

  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;

  transition: transform 0.55s cubic-bezier(.4,0,.2,1);
  z-index: 0;

  /* performance hint */
  will-change: transform;
}

/* Hover state */
.bc-ctaBand__btn:hover{
  color: #ffffff;
  border-color: #ffffff;
}

.bc-ctaBand__btn:hover::before{
  /* big enough to cover button; tweak if you have huge buttons */
  transform: translate(-50%, -50%) scale(40);
}

/* Keep text above the fill */
.bc-ctaBand__btn > span{
  position: relative;
  z-index: 1;
}

.bc-ctaBand__btn--ghost{
  background:#fff;
  color:#111;
  border: 3px solid rgba(255,255,255,0.85);
}

.bc-ctaBand__btn--solid{
  background:#3b82f6; /* close to the screenshot vibe */
  color:#0b0b0b;
  border: 3px solid rgba(255,255,255,0.08);
}

@media (max-width: 980px){
  .bc-ctaBand__btn{ min-width: 90%; }
  .bc-ctaBand__title{ font-size: 28px; }
    .bc-ctaBand__btn{height: 45px; font-size: 18px;}
}









.bc-news{
  background:#000;
  color:#fff;
  padding: 36px 0 46px;
}

.bc-news__header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
}

.bc-news__title{
  margin:0;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}

.bc-news__viewAll{
  color: rgba(255,255,255,0.90);
  text-decoration:none;
  font-size: 20px;
  font-weight: 600;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  min-width: fit-content;
  transition: all 0.2s ease;
    position: relative;
}

.bc-news__viewAll::after{content: ''; width: 0; height: 2px; background: #FFF; bottom: -2px; left: 0; position: absolute; transition: all 0.2s ease;}
.bc-news__viewAll:hover::after{width: 100%;}

.bc-news__viewAll:visited{
  color: rgba(255,255,255,0.90);
}

/* keep it from turning blue/purple on weird theme states */
.bc-news__viewAll:hover,
.bc-news__viewAll:focus-visible{
  color: rgb(154 154 154);
  text-decoration: none;
}

/* little “viewport” box for the arrow animation */
.bc-news__arrowBox{
  position: relative;
  width: 1.25em;
  height: 1.25em;
  display: inline-block;
  overflow: hidden; /* key: arrow can fly out/in without affecting layout */
  line-height: 1;
}

/* the arrow itself */
.bc-news__arrow{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;

  color: rgba(255,255,255,0.90); /* never black */
  transform: translate(0,0);
  opacity: 1;
  transition: none;
    
  font-size: 20px;
  font-weight: 900;
}

/* on hover, run the “fly out, wrap, fly in” loop */
.bc-news__viewAll:hover .bc-news__arrow,
.bc-news__viewAll:focus-visible .bc-news__arrow{
  animation: bcArrowFly 520ms cubic-bezier(.2,.8,.2,1) both;
}

@keyframes bcArrowFly{
  /* start: normal */
  0%{
    transform: translate(0,0);
    opacity: 1;
  }

  /* fly out to top-right + fade */
  45%{
    transform: translate(65%,-65%);
    opacity: 0;
  }

  /* instant “wrap” jump to bottom-left while hidden */
  46%{
    transform: translate(-65%,65%);
    opacity: 0;
  }

  /* fly back to center + fade in */
  100%{
    transform: translate(0,0);
    opacity: 1;
  }
}

/* optional: respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .bc-news__viewAll:hover .bc-news__arrow,
  .bc-news__viewAll:focus-visible .bc-news__arrow{
    animation: none;
  }
}

.bc-news__rule,
.bc-news__bottomRule{
  height:2px;
  background: rgba(255,255,255,0.75);
}

.bc-news__rule{ margin: 16px 0 20px; }
.bc-news__bottomRule{ margin-top: 22px; }

.bc-news__list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 12px;
}

.bc-news__link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  color: rgba(255,255,255,0.9);
  text-decoration:none;
  font-size: 26px;
  line-height: 1.25;
  padding: 8px 0;
    position: relative;
}

.bc-news__text{position: relative;}

.bc-news__link .bc-news__text::after{content: ''; position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: #FFF; transition: all 0.2s ease;}

.bc-news__link:hover .bc-news__text{
    color: #FFF;
}
.bc-news__link:hover .bc-news__text::after{width: 100%;}


.bc-news__icon{
width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: #FFF;
    color: #000;
    font-size: 26px;
    transition: all 0.2s ease;
}

.bc-news__link:hover .bc-news__icon{transform: scale(1.1);}

@media (max-width: 980px){
  .bc-news__link{ font-size: 20px; }
  .bc-news__title{ font-size: 24px; }
    .bc-news__item{margin-bottom: 0;}
}






