:root{
  --c-primary:#3171EE;
  --c-white:#FFFFFF;
  --c-hero:#8F9FF9;
  --c-black:#000000;
  --c-dark:#1E1E1E;
  --c-gray:#808080;
  --c-deep:#100E0C;
  --c-bg:#F5F5F5;

  --W_DESKTOP: 90rem;
  --W_MOBILE: 24.375rem;

  --pad-desktop: 1.875rem;
  --pad-mobile: 1rem;

  --ease: cubic-bezier(.2,.8,.2,1);
  --dur: 420ms;

  --headerH: 5.75rem;

  --shadowSoft: 0 0.65rem 1.6rem rgba(0,0,0,.08);
  --borderSoft: 1px solid rgba(255,255,255,.92);
}

html{
  font-size: calc(100vw / 90);
  scroll-behavior: smooth;
}

@media (max-width: 1000px){
  html{
    font-size: calc(100vw / 24.375);
  }
}

html,
body{
  overflow-x: hidden;
}

@supports (overflow: clip){
  html,
  body{
    overflow-x: clip;
  }
}

*,
*::before,
*::after{
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p{
  margin: 0;
}

ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

a{
  color: inherit;
  text-decoration: none;
}

img,
svg{
  display: block;
  max-width: 100%;
  height: auto;
}

button{
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

input{
  font: inherit;
}

:focus-visible{
  outline: 0.18rem solid rgba(255,255,255,.45);
  outline-offset: 0.18rem;
  border-radius: 0.4rem;
}

body{
  font-family: "Lexend", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--c-dark);
  background: var(--c-bg);
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  position: relative;
}

.container{
  width: 100%;
  max-width: var(--W_DESKTOP);
  margin: 0 auto;
  padding-left: var(--pad-desktop);
  padding-right: var(--pad-desktop);
}

@media (max-width: 1000px){
  .container{
    max-width: var(--W_MOBILE);
    padding-left: var(--pad-mobile);
    padding-right: var(--pad-mobile);
  }
}

.sr-only{
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===================== REVEAL ===================== */
[data-reveal]{
  opacity: 0;
  will-change: transform, opacity;
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal="fade"]{
  transform: none;
  transition: opacity 1.2s var(--ease);
}

[data-reveal].is-visible{
  opacity: 1;
  transform: none;
}

/* ===================== HERO ===================== */
.hero{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #6f88d6;
}

.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__inner{
  position: relative;
  z-index: 1;
}

/* ===================== HEADER ===================== */
.header{
  position: relative;
  width: 100%;
  z-index: 20;
  background: var(--c-primary);
}

.header__row{
  display: grid;
  grid-template-columns: 12rem 1fr 18rem;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--headerH);
}

.logo{
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--c-white);
  font-size: 2rem;
  line-height: 1;
}

.nav{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 1rem;
  color: var(--c-white);
  font-weight: 500;
}

.nav a{
  position: relative;
  transition: opacity var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}

.nav a::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur) var(--ease);
}

.nav a:hover::after{
  transform: scaleX(1);
}

.header__right{
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.header-search{
  position: relative;
  width: 14.3rem;
  height: 2.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  overflow: hidden;
  flex: 0 0 auto;
}

.header-search__input{
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--c-dark);
  padding: 0 3.2rem 0 1.1rem;
  font-size: 1rem;
  font-weight: 400;
}

.header-search__input::placeholder{
  color: rgba(30,30,30,.55);
}

.header-search__button{
  position: absolute;
  top: 50%;
  right: 0.9rem;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #444;
}

.header-search__button svg{
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lang{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  height: 2.85rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  color: var(--c-primary);
  font-weight: 600;
  font-size: 1rem;
  background: rgba(255,255,255,.94);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.lang--m{
  display: none;
}

.burger{
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadowSoft);
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  user-select: none;
}

.burger:active{
  transform: translateY(0.08rem);
}

.burger__icon{
  position: relative;
  width: 1.35rem;
  height: 0.12rem;
  background: var(--c-primary);
  display: block;
  border-radius: 999px;
}

.burger__icon::before,
.burger__icon::after{
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.12rem;
  background: var(--c-primary);
  border-radius: 999px;
  transition: transform var(--dur) var(--ease), top var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.burger__icon::before{
  top: -0.42rem;
}

.burger__icon::after{
  top: 0.42rem;
}

/* ===================== DECOR ===================== */
.hero__decor{
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero__decor img{
  width: 100%;
  height: auto;
}

.hero__decor--globe-top-left{
  top: 7.5rem;
  left: -0.5rem;
  width: 6.2rem;
}

.hero__decor--shape-left{
  top: 14.8rem;
  left: 9rem;
  width: 8.2rem;
  opacity: .28;
}

.hero__decor--globe-right{
  top: 8.5rem;
  right: 11.5rem;
  width: 5em;
}

.hero__decor--globe-small-right{
  top: 22.3rem;
  right: 3rem;
  width: 4.8rem;
}

.hero__decor--globe-bottom-left{
  left: 25rem;
  bottom: 3.2rem;
  width: 4.6rem;
}

.hero__decor--group-bottom-right{
  right: 11.2rem;
  bottom: 1.8rem;
  width: 11.2rem;
  opacity: .45;
}

/* ===================== HERO CONTENT ===================== */
.hero__content{
  min-height: calc(100vh - var(--headerH));
  padding-top: 2.6rem;
  padding-bottom: 7.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero__title{
  max-width: 70rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 0.95;
  font-size: 5.4rem;
  color: var(--c-white);
  text-transform: uppercase;
}

.hero__title span{
  display: block;
  margin-top: 0.6rem;
  font-weight: 700;
}

.hero-search{
  position: relative;
  width: 31.8rem;
  height: 4rem;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  overflow: hidden;
  box-shadow: 0 0.8rem 1.8rem rgba(0,0,0,.08);
  margin-top: 2.4rem;
}

.hero-search__input{
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--c-dark);
  padding: 0 3.8rem 0 1.35rem;
  font-size: 1.08rem;
  font-weight: 400;
}

.hero-search__input::placeholder{
  color: rgba(30,30,30,.52);
}

.hero-search__button{
  position: absolute;
  top: 50%;
  right: 1.15rem;
  transform: translateY(-50%);
  width: 1.65rem;
  height: 1.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #444;
}

.hero-search__button svg{
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-links{
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  flex-wrap: wrap;
}

.hero-link{
  min-width: 7.4rem;
  height: 3rem;
  padding: 0 1.15rem;
  border-radius: 0.5rem;
  border: var(--borderSoft);
  color: var(--c-white);
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.hero-link--wide{
  min-width: 13.4rem;
}

.hero-link:hover{
  transform: translateY(0.08rem);
  background: rgba(255,255,255,.12);
}

/* ===================== WAVE ===================== */
.hero__wave{
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  line-height: 0;
}

.hero__wave svg{
  width: 100%;
  height: 9rem;
}

.hero__wave path{
  fill: var(--c-bg);
}

/* ===================== DRAWER ===================== */
.drawer{
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  overflow: hidden;
}

.drawer__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.28);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.drawer__panel{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 18.5rem;
  background: rgba(49,113,238,.97);
  backdrop-filter: blur(0.6rem);
  border-left: 1px solid rgba(255,255,255,.14);
  box-shadow: -1.2rem 0 2.4rem rgba(0,0,0,.16);
  transform: translateX(105%);
  transition: transform var(--dur) var(--ease);
  padding: 1.2rem 1.2rem 1.2rem;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  will-change: transform;
}

.drawer__top{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 0.2rem;
}

.drawer__close{
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.drawer__close:active{
  transform: translateY(0.08rem);
}

.drawer__close svg{
  width: 1.1rem;
  height: 1.1rem;
  stroke: rgba(255,255,255,.9);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.drawer__nav{
  display: grid;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.drawer__nav a{
  display: block;
  padding: 0.95rem 1.05rem;
  border-radius: 1rem;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.94);
  font-weight: 700;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.drawer__nav a:active{
  transform: translateY(0.08rem);
  background: rgba(255,255,255,.14);
}

.drawer__search{
  margin-top: 0.55rem;
  position: relative;
  width: 100%;
  height: 3.2rem;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  overflow: hidden;
}

.drawer__search input{
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 3.4rem 0 1.1rem;
  color: var(--c-dark);
  font-size: 1rem;
}

.drawer__search button{
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1.4rem;
  color: #444;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.drawer__search svg{
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.drawer__lang{
  margin-top: 0.2rem;
  width: 100%;
  height: 3.2rem;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--c-primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.is-drawer-open .drawer{
  pointer-events: auto;
}

.is-drawer-open .drawer__backdrop{
  opacity: 1;
}

.is-drawer-open .drawer__panel{
  transform: translateX(0);
}

.is-drawer-open .burger__icon{
  background: transparent;
}

.is-drawer-open .burger__icon::before{
  top: 0;
  transform: rotate(45deg);
}

.is-drawer-open .burger__icon::after{
  top: 0;
  transform: rotate(-45deg);
}

/* ===================== MOBILE ===================== */
@media (max-width: 1000px){
  .header__row{
    grid-template-columns: 1fr auto;
    min-height: 4.6rem;
  }

  .nav{
    display: none;
  }

  .header-search,
  .lang--d{
    display: none;
  }

  .lang--m{
    display: inline-flex;
    height: 2.9rem;
    padding: 0 1.15rem;
    background: rgba(255,255,255,.94);
  }

  .burger{
    display: inline-flex;
  }

  .header__right{
    gap: 0.55rem;
  }

  .logo{
    font-size: 2rem;
  }

  .hero__decor--globe-top-left{
    top: 5rem;
    left: -0.9rem;
    width: 4rem;
  }

  .hero__decor--shape-left{
    top: 10.8rem;
    left: 0.4rem;
    width: 3.6rem;
    opacity: .2;
  }

  .hero__decor--globe-right{
    top: 13.5rem;
    right: -0.35rem;
    width: 5.2rem;
  }

  .hero__decor--globe-small-right{
    right: -0.35rem;
    bottom: 6.8rem;
    top: auto;
    width: 3.2rem;
  }

  .hero__decor--globe-bottom-left{
    left: 0.3rem;
    bottom: 9rem;
    width: 2.6rem;
  }

  .hero__decor--group-bottom-right{
    right: 11.35rem;
    bottom: 3.5rem;
    width: 4rem;
    opacity: .28;
  }

  .hero__content{
    min-height: calc(100vh - 4.6rem);
    padding-top: 2.8rem;
    padding-bottom: 5.5rem;
  }

  .hero__title{
    font-size: 2.25rem;
    max-width: 21rem;
    line-height: 1.03;
  }

  .hero__title span{
    margin-top: 0.3rem;
  }

  .hero-search{
    width: 100%;
    height: 3.25rem;
    margin-top: 1.5rem;
  }

  .hero-search__input{
    font-size: 1rem;
    padding-left: 1rem;
    padding-right: 3.3rem;
  }

  .hero-search__button{
    right: 0.95rem;
  }

  .hero-search__button svg{
    width: 1.35rem;
    height: 1.35rem;
  }

  .hero-links{
    margin-top: 1.35rem;
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-link,
  .hero-link--wide{
    width: 100%;
    min-width: 100%;
    height: 2.95rem;
    font-size: 1rem;
  }

  .hero__wave svg{
    height: 6rem;
  }
}

@media (prefers-reduced-motion: reduce){
  *{
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal]{
    opacity: 1 !important;
    transform: none !important;
  }
}












/* ===================== REVEAL UP ===================== */
[data-reveal="up"]{
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  will-change: transform, opacity;
  transition:
    opacity .9s var(--ease),
    transform .9s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal].is-visible{
  opacity: 1;
  transform: none;
}

/* ===================== TOOLS OF THE MONTH ===================== */
.tools-month{
  padding: 2.1rem 0 1.3rem;
  background: var(--c-bg);
}

.tools-month__frame{
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.55);
  padding: 1.45rem 1.45rem 1.55rem;
}

.tools-month__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tools-month__title{
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111;
}

.tools-month__all{
  min-width: 14.8rem;
  height: 3.1rem;
  padding: 0 1.2rem;
  border-radius: 0.22rem;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.tools-month__all:hover{
  opacity: .94;
}

.tools-month__all:active{
  transform: translateY(0.08rem);
}

.tools-grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}

.tool-card{
  border: 1px solid rgba(49,113,238,.75);
  border-radius: 0.18rem;
  background: transparent;
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  min-height: 21rem;
}

.tool-card__media{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 14.6rem;
  background:
    linear-gradient(180deg, rgba(54,149,210,.96) 0%, rgba(54,149,210,.92) 100%);
  border-radius: 0.08rem;
  overflow: hidden;
}

.tool-card__logo{
  color: rgba(255,255,255,.95);
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.tool-card__title{
  margin-top: 0.55rem;
  color: #222;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 500;
}

.tool-card__btn{
  margin-top: auto;
  width: 100%;
  height: 2.1rem;
  border-radius: 0.15rem;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.tool-card__btn:hover{
  opacity: .94;
}

.tool-card__btn:active{
  transform: translateY(0.08rem);
}

/* ===================== VIDEO REVIEWS ===================== */
.video-month{
  padding: 1.1rem 0 2.1rem;
  background: var(--c-bg);
}

.video-month__frame{
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.55);
  padding: 1.45rem 1.45rem 1.55rem;
}

.video-month__top{
  margin-bottom: 1rem;
}

.video-month__title{
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111;
}

.video-grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.95rem;
}

.video-card{
  min-width: 0;
}

.video-card__link{
  display: block;
}

.video-card__thumb{
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(49,113,238,.75);
  border-radius: 0.18rem;
  overflow: hidden;
  background: #d8d8d8;
}

.video-card__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__play{
  position: absolute;
  inset: 0;
  margin: auto;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(49,113,238,.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.65rem 1.4rem rgba(0,0,0,.18);
}

.video-card__play svg{
  width: 1.25rem;
  height: 1.25rem;
  fill: #fff;
  stroke: none;
  transform: translateX(0.08rem);
}

.video-card__name{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  min-height: 4.2rem;
  padding: 0.8rem 0.5rem;
  border: 1px solid rgba(49,113,238,.75);
  border-radius: 0.18rem;
  background: transparent;
  color: #222;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.video-card__link:hover .video-card__name{
  transform: translateY(0.05rem);
  color: var(--c-primary);
  border-color: rgba(49,113,238,1);
}

/* ===================== MOBILE ===================== */
@media (max-width: 1000px){
  [data-reveal="up"]{
    transform: translate3d(0, 1.6rem, 0);
  }

  .tools-month{
    padding: 1.25rem 0 0.8rem;
  }

  .video-month{
    padding: 0.8rem 0 1.4rem;
  }

  .tools-month__frame,
  .video-month__frame{
    padding: 1rem;
  }

  .tools-month__top{
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0.9rem;
  }

  .tools-month__title,
  .video-month__title{
    font-size: 1.9rem;
  }

  .tools-month__all{
    width: 100%;
    min-width: 100%;
    height: 3rem;
  }

  .tools-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .tool-card{
    min-height: 15.8rem;
    padding: 0.55rem;
  }

  .tool-card__media{
    height: 9.4rem;
  }

  .tool-card__logo{
    font-size: 1.15rem;
    letter-spacing: 0.06em;
  }

  .tool-card__title{
    margin-top: 0.45rem;
    font-size: 1rem;
  }

  .tool-card__btn{
    height: 2.25rem;
    font-size: 0.92rem;
  }

  .video-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .video-card__play{
    width: 2.55rem;
    height: 2.55rem;
  }

  .video-card__play svg{
    width: 1.05rem;
    height: 1.05rem;
  }

  .video-card__name{
    min-height: 3.35rem;
    margin-top: 0.55rem;
    font-size: 0.95rem;
    padding: 0.65rem 0.4rem;
  }
}
/* 3 */
/* ===================== VIDEO REVIEWS (IFRAMES) ===================== */
.video-month{
  padding: 1.1rem 0 2.1rem;
  background: var(--c-bg);
}

.video-month__frame{
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.55);
  padding: 1.45rem 1.45rem 1.55rem;
}

.video-month__top{
  margin-bottom: 1rem;
}

.video-month__title{
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111;
}

.video-grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.95rem;
}

.video-embed{
  border: 1px solid rgba(49,113,238,.75);
  border-radius: 0.18rem;
  overflow: hidden;
  background: #d8d8d8;
  aspect-ratio: 16 / 9;
}

.video-embed iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===================== TOOLS MONTH IMAGE FIX ===================== */
.tool-card__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===================== NEWEST OF TOOLS ===================== */
.newest-tools{
  padding: 2.2rem 0 1.6rem;
  background: var(--c-bg);
}

.newest-tools__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

.newest-tools__title{
  font-size: 3.1rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111;
}

.newest-tools__text{
  margin-top: 1.35rem;
  font-size: 1.12rem;
  line-height: 1.55;
  color: rgba(30,30,30,.72);
  max-width: 36rem;
}

.newest-tools__btn{
  margin-top: 2.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.1rem;
  padding: 0 2.1rem;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.2rem;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.newest-tools__btn:hover{ opacity: .94; }
.newest-tools__btn:active{ transform: translateY(0.08rem); }

.newest-tools__right{
  border-radius: 0.18rem;
  overflow: hidden;
}

.newest-tools__right img{
  width: 100%;
  height: auto;
  display: block;
}

/* ===================== PARTNERS (AUTO LOOP) ===================== */
.partners{
  padding: 1.6rem 0 2.6rem;
  background: var(--c-bg);
}

.partners__frame{
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.55);
  padding: 1.45rem 1.45rem 1.55rem;
}

.partners__title{
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111;
  margin-bottom: 1.2rem;
}

.partners__carousel{
  overflow: hidden;
  position: relative;
}

.partners__track{
  display: flex;
  gap: 1.25rem;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.partner{
  width: 11.8rem;
  height: 11.8rem;
  border-radius: 0.18rem;
  overflow: hidden;
  border: 1px solid rgba(49,113,238,.35);
  background: #fff;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.partner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.partners__dots{
  margin-top: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.dot{
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: rgba(0,0,0,.12);
}

.dot.is-active{
  background: rgba(0,0,0,.22);
}

/* ===================== MOBILE ===================== */
@media (max-width: 1000px){
  .video-month__frame,
  .partners__frame{
    padding: 1rem;
  }

  .video-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .newest-tools{
    padding: 1.5rem 0 1.2rem;
  }

  .newest-tools__grid{
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .newest-tools__title{
    font-size: 2.35rem;
    text-align: left;
  }

  .newest-tools__text{
    font-size: 1.05rem;
    max-width: 22rem;
  }

  .newest-tools__btn{
    width: 12.8rem;
  }

  .partner{
    width: 9.6rem;
    height: 9.6rem;
  }
}

@media (prefers-reduced-motion: reduce){
  .partners__track{ transform: none !important; }
}

/* ===================== BENEFITS ===================== */
.benefits{
  padding: 2.2rem 0 2.8rem;
  background: var(--c-bg);
}

.benefits__head{
  text-align: center;
}

.benefits__title{
  font-size: 3.2rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111;
}

.benefits-top{
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  overflow: hidden;
  background: rgba(255,255,255,.45);
}

.benefits-top .benefit-card{
  border-right: 1px solid rgba(49,113,238,.45);
}

.benefits-top .benefit-card:last-child{
  border-right: 0;
}

.benefit-card{
  min-width: 0;
}

.benefit-card--icon{
  padding: 1.2rem 1.15rem 1.2rem;
  min-height: 13.7rem;
}

.benefit-card__icon{
  width: 4.75rem;
  height: 4.75rem;
  margin-bottom: 1.25rem;
}

.benefit-card__icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.benefit-card__title{
  font-size: 1.08rem;
  line-height: 1.22;
  font-weight: 800;
  color: #222;
}

.benefit-card__text{
  margin-top: 0.7rem;
  max-width: 23rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: rgba(30,30,30,.68);
}

.benefits-list{
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.benefit-card--number{
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.45);
  padding: 1.1rem 1.1rem 1.1rem;
  min-height: 8.55rem;
}

.benefit-card--wide{
  grid-column: 1 / -1;
  min-height: auto;
}

.benefit-card__number-title{
  font-size: 1.05rem;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #111;
}

.benefit-card__number-text{
  margin-top: 0.8rem;
  max-width: 39rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(30,30,30,.72);
}

.benefits__bottom{
  margin-top: 1.15rem;
  display: flex;
  justify-content: center;
}

.benefits__btn{
  min-width: 11.2rem;
  height: 2.55rem;
  padding: 0 1.4rem;
  border-radius: 0.18rem;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.benefits__btn:hover{
  opacity: .94;
}

.benefits__btn:active{
  transform: translateY(0.08rem);
}

/* ===================== BENEFITS MOBILE ===================== */
@media (max-width: 1000px){
  .benefits{
    padding: 1.5rem 0 1.9rem;
  }

  .benefits__title{
    font-size: 2.35rem;
  }

  .benefits-top{
    margin-top: 1rem;
    grid-template-columns: 1fr;
  }

  .benefits-top .benefit-card{
    border-right: 0;
    border-bottom: 1px solid rgba(49,113,238,.45);
  }

  .benefits-top .benefit-card:last-child{
    border-bottom: 0;
  }

  .benefit-card--icon{
    min-height: auto;
    padding: 1rem;
  }

  .benefit-card__icon{
    width: 4rem;
    height: 4rem;
    margin-bottom: 0.95rem;
  }

  .benefit-card__title{
    font-size: 1.25rem;
  }

  .benefit-card__text{
    max-width: none;
    font-size: 1rem;
    line-height: 1.5;
  }

  .benefits-list{
    margin-top: 1rem;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .benefit-card--number{
    min-height: auto;
    padding: 1rem;
  }

  .benefit-card__number-title{
    font-size: 1.18rem;
    line-height: 1.28;
  }

  .benefit-card__number-text{
    max-width: none;
    font-size: 1rem;
    line-height: 1.5;
  }

  .benefits__bottom{
    margin-top: 1rem;
  }

  .benefits__btn{
    width: 100%;
    max-width: 14rem;
    height: 2.9rem;
  }
}

/* ===================== BLOG LATEST ===================== */
.blog-latest{
  padding: 2.2rem 0 1.6rem;
  background: var(--c-bg);
}

.blog-latest__frame{
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.55);
  padding: 1.45rem 1.45rem 1.55rem;
}

.blog-latest__grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.6rem;
  align-items: start;
}

.blog-latest__title{
  font-size: 3.2rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111;
  max-width: 22rem;
}

.blog-latest__text{
  margin-top: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(30,30,30,.72);
  max-width: 30rem;
}

.blog-latest__right{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.blog-card{
  border: 1px solid rgba(49,113,238,.65);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.35);
  padding: 0.9rem;
  display: grid;
  gap: 0.75rem;
}

.blog-card__media{
  border-radius: 0.12rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  background: #d9d9d9;
}

.blog-card__media img{
  width: 100%;
  height: auto;
  display: block;
}

.blog-card__title{
  font-size: 1.22rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.blog-card__title a{
  color: var(--c-primary);
}

.blog-card__excerpt{
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(30,30,30,.7);
}

.blog-card__btn{
  margin-top: 0.2rem;
  width: 13.4rem;
  height: 2.7rem;
  border-radius: 0.18rem;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.blog-card__btn:hover{ opacity: .94; }
.blog-card__btn:active{ transform: translateY(0.08rem); }

/* ===================== REVIEWS ===================== */
.reviews{
  padding: 1.4rem 0 2.6rem;
  background: var(--c-bg);
}

.reviews__frame{
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.55);
  padding: 1.45rem 1.45rem 1.55rem;
}

.reviews__title{
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111;
  margin-bottom: 1.25rem;
}

.reviews__scroller{
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 0.3rem;
  cursor: grab;
}

.reviews__scroller:active{
  cursor: grabbing;
}

.reviews__track{
  display: flex;
  gap: 1.4rem;
  width: max-content;
  padding-bottom: 0.2rem;
}

.review-card{
  width: 22.8rem;
  min-height: 16.5rem;
  background: rgba(245,245,245,.9);
  border-radius: 0.2rem;
  padding: 1.1rem 1.1rem 1.15rem;
  border: 1px solid rgba(0,0,0,.06);
}

.review-card__stars{
  color: #8F9FF9;
  letter-spacing: 0.18rem;
  font-size: 1.05rem;
  line-height: 1;
  margin-bottom: 0.9rem;
}

.review-card__top{
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.review-card__name{
  font-size: 2.05rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #111;
}

.review-card__rate{
  font-size: 0.95rem;
  color: rgba(0,0,0,.8);
  font-weight: 700;
}

.review-card__text{
  margin-top: 0.9rem;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(0,0,0,.45);
}

/* ===================== MOBILE ===================== */
@media (max-width: 1000px){
  .blog-latest{
    padding: 1.5rem 0 1.1rem;
  }

  .blog-latest__frame,
  .reviews__frame{
    padding: 1rem;
  }

  .blog-latest__grid{
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .blog-latest__title{
    font-size: 2.35rem;
    max-width: none;
  }

  .blog-latest__text{
    margin-top: 0.9rem;
    max-width: 22rem;
    font-size: 1rem;
  }

  .blog-latest__right{
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .blog-card__btn{
    width: 100%;
    height: 2.9rem;
  }

  .reviews{
    padding: 1.1rem 0 2.1rem;
  }

  .reviews__title{
    font-size: 2.35rem;
    margin-bottom: 0.9rem;
  }

  .review-card{
    width: 18.8rem;
    min-height: 15.5rem;
  }

  .review-card__name{
    font-size: 1.8rem;
  }
}


/* ===================== SEO ABOUT (SCROLL) ===================== */
.seo-about{
  padding: 1.6rem 0 1.2rem;
  background: var(--c-bg);
}

.seo-about__frame{
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.55);
  padding: 1.25rem 1.25rem 1.25rem;
}

.seo-about__title{
  font-size: 2.1rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111;
}

.seo-about__scroll{
  margin-top: 0.9rem;
  max-height: 7.8rem;              /* невисокий блок */
  overflow: auto;
  padding-right: 0.6rem;           /* щоб текст не впирався в скрол */
  color: rgba(0,0,0,.62);
  font-size: 1.02rem;
  line-height: 1.55;
  scrollbar-width: thin;
}

.seo-about__scroll::-webkit-scrollbar{ width: 0.5rem; }
.seo-about__scroll::-webkit-scrollbar-track{ background: rgba(0,0,0,.06); border-radius: 999px; }
.seo-about__scroll::-webkit-scrollbar-thumb{ background: rgba(0,0,0,.28); border-radius: 999px; }

/* ===================== FAQ ===================== */
.faq{
  padding: 1.2rem 0 1.6rem;
  background: var(--c-bg);
}

.faq__frame{
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.55);
  padding: 1.25rem;
}

.faq__title{
  font-size: 2.1rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111;
  margin-bottom: 1rem;
}

.faq__list{
  display: grid;
  gap: 0.75rem;
}

.faq__item{
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.35);
  overflow: hidden;
}

.faq__q{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  text-align: left;
  color: rgba(0,0,0,.78);
  font-size: 1.02rem;
  font-weight: 600;
}

.faq__chev{
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  transition: transform var(--dur) var(--ease);
}

.faq__chev svg{
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(0,0,0,.65);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq__a{
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height .55s var(--ease),
    opacity .35s var(--ease);
}

.faq__a-inner{
  padding: 0 1rem 1rem;
  color: rgba(0,0,0,.62);
  font-size: 1rem;
  line-height: 1.55;
}

.faq__item.is-open .faq__a{
  max-height: 20rem;
  opacity: 1;
}

.faq__item.is-open .faq__chev{
  transform: rotate(180deg);
}

/* ===================== FOOTER ===================== */
.site-footer{
  background: var(--c-primary);
  color: rgba(255,255,255,.92);
  padding: 2.4rem 0 1.2rem;
}

.site-footer__top{
  display: grid;
  grid-template-columns: 18rem 1fr;
  gap: 2.2rem;
  align-items: start;
}

.site-footer__logo img{
  width: 10.5rem;
  height: auto;
  display: block;
}

.site-footer__cols{
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 2.2rem;
}

.site-footer__h{
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.95);
}

.site-footer__col a{
  display: block;
  padding: 0.4rem 0;
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  transition: opacity var(--dur) var(--ease);
  width: fit-content;
}

.site-footer__col a:hover{ opacity: .88; }

.site-footer__social{
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.sf-ico{
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 0.6rem;
  background: rgba(255,255,255,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.sf-ico:hover{ opacity: .9; }
.sf-ico:active{ transform: translateY(0.08rem); }

.sf-ico svg{
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: rgba(255,255,255,.92);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__mail{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  color: rgba(255,255,255,.88);
  font-weight: 600;
}

.sf-mail-ico svg{
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: rgba(255,255,255,.92);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__line{
  margin-top: 2rem;
  height: 1px;
  background: rgba(255,255,255,.22);
}

.site-footer__bottom{
  padding-top: 1.1rem;
  text-align: center;
  color: rgba(255,255,255,.82);
  font-size: 1rem;
}

/* MOBILE */
@media (max-width: 1000px){
  .seo-about__frame,
  .faq__frame{
    padding: 1rem;
  }

  .seo-about__scroll{
    max-height: 10.5rem;
  }

  .site-footer__top{
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .site-footer__cols{
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .site-footer__bottom{
    text-align: left;
  }
}

/* ===================== CATEGORIES PAGE ===================== */
.page--categories{
  background: var(--c-bg);
}

.page-header{
  position: relative;
}

.nav a[aria-current="page"],
.drawer__nav a[aria-current="page"],
.site-footer__col a[aria-current="page"]{
  opacity: .82;
}

.category-main{
  background: var(--c-bg);
}

.category-hero{
  padding: 2.1rem 0 3.1rem;
}

.breadcrumbs{
  max-width: 63.45rem;
  margin: 0 auto 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(30,30,30,.58);
  font-size: 0.95rem;
  font-weight: 500;
}

.breadcrumbs a{
  color: var(--c-primary);
}

.category-calendar{
  max-width: 63.45rem;
  min-height: 27rem;
  margin: 0 auto;
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background:
    linear-gradient(135deg, rgba(49,113,238,.94) 0%, rgba(143,159,249,.92) 100%);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 23.75rem;
  gap: 2rem;
  align-items: center;
  padding: 2.35rem;
  overflow: hidden;
  position: relative;
}

.category-calendar::after{
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -8rem;
  width: 21rem;
  height: 21rem;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  pointer-events: none;
}

.category-calendar__content,
.category-calendar__widget{
  position: relative;
  z-index: 1;
}

.category-eyebrow{
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  color: rgba(255,255,255,.82);
  margin-bottom: 0.8rem;
}

.category-calendar h1{
  font-size: 4.25rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  color: #fff;
}

.category-calendar p:not(.category-eyebrow){
  margin-top: 1.05rem;
  max-width: 33rem;
  color: rgba(255,255,255,.84);
  font-size: 1.12rem;
  line-height: 1.55;
}

.category-search{
  margin-top: 1.8rem;
  width: 31.25rem;
  max-width: 100%;
  height: 3.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 7.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  overflow: hidden;
  box-shadow: 0 0.8rem 1.7rem rgba(0,0,0,.12);
}

.category-search input{
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 1.25rem;
  color: var(--c-dark);
  font-size: 1rem;
}

.category-search input::placeholder{
  color: rgba(30,30,30,.5);
}

.category-search button{
  height: 100%;
  background: var(--c-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  transition: opacity var(--dur) var(--ease);
}

.category-search button:hover{
  opacity: .92;
}

.category-calendar__widget{
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 0.3rem;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(0.75rem);
  padding: 1rem;
}

.calendar-widget__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.calendar-widget__arrows{
  display: flex;
  gap: 0.45rem;
}

.calendar-widget__arrows span{
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  position: relative;
}

.calendar-widget__arrows span::before{
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.45rem;
  height: 0.45rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.calendar-widget__arrows span:first-child::before{
  transform: rotate(-135deg);
}

.calendar-widget__arrows span:last-child::before{
  transform: rotate(45deg);
}

.calendar-widget__grid{
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.calendar-widget__grid span,
.calendar-widget__grid b{
  min-width: 0;
  height: 2.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.2rem;
  font-size: 0.8rem;
  line-height: 1;
  color: rgba(255,255,255,.8);
}

.calendar-widget__grid span{
  font-weight: 700;
  color: rgba(255,255,255,.62);
}

.calendar-widget__grid b{
  font-weight: 600;
  background: rgba(255,255,255,.1);
}

.calendar-widget__grid b.is-active{
  background: #fff;
  color: var(--c-primary);
}

.calendar-widget__event{
  margin-top: 1rem;
  padding: 0.9rem;
  border-radius: 0.25rem;
  background: rgba(255,255,255,.94);
  color: var(--c-dark);
}

.calendar-widget__event span{
  display: block;
  margin-bottom: 0.3rem;
  color: var(--c-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.calendar-widget__event strong{
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

.categories-board{
  padding: 0 0 2.8rem;
}

.categories-layout{
  max-width: 63.45rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 18.75rem minmax(0, 1fr);
  gap: 3.75rem;
  align-items: start;
}

.filter-form{
  display: grid;
  gap: 1.75rem;
}

.filter-panel{
  margin: 0;
  padding: 1.2rem;
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.55);
}

.filter-panel legend,
.filter-panel summary{
  color: #111;
  font-size: 1.22rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

.filter-panel legend{
  width: 100%;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(49,113,238,.35);
}

.filter-panel--details{
  padding: 0;
}

.filter-panel summary{
  min-height: 3.85rem;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}

.filter-panel summary::-webkit-details-marker{
  display: none;
}

.filter-panel summary::after{
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--dur) var(--ease);
}

.filter-panel[open] summary::after{
  transform: rotate(225deg);
}

.filter-panel__body{
  padding: 0 1.2rem 1.2rem;
}

.filter-option{
  min-height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(30,30,30,.82);
  font-size: 1rem;
  font-weight: 500;
}

.filter-option + .filter-option{
  margin-top: 0.55rem;
}

.filter-option input{
  order: 2;
  appearance: none;
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 auto;
  border: 1px solid rgba(49,113,238,.65);
  border-radius: 0.18rem;
  background: #fff;
  display: grid;
  place-items: center;
}

.filter-option input::after{
  content: "";
  width: 0.55rem;
  height: 0.85rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) scale(0);
  transition: transform var(--dur) var(--ease);
}

.filter-option input:checked{
  background: var(--c-primary);
  border-color: var(--c-primary);
}

.filter-option input:checked::after{
  transform: rotate(45deg) scale(1);
}

.filter-submit{
  height: 2.85rem;
  border-radius: 0.18rem;
  background: var(--c-primary);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.filter-submit:hover{
  opacity: .94;
}

.filter-submit:active{
  transform: translateY(0.08rem);
}

.offers-column{
  min-width: 0;
}

.offers-toolbar{
  margin-bottom: 1rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.offers-toolbar h2{
  color: #111;
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.offers-toolbar p{
  margin-top: 0.4rem;
  color: rgba(30,30,30,.58);
  font-size: 0.95rem;
  line-height: 1.45;
}

.sort-control select{
  min-width: 10rem;
  height: 2.7rem;
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.85);
  color: rgba(30,30,30,.82);
  padding: 0 0.85rem;
  font: inherit;
  font-size: 0.95rem;
}

.offer-list{
  display: grid;
  gap: 0.65rem;
}

.offer-card{
  min-height: 9.6rem;
  display: grid;
  grid-template-columns: 8.05rem minmax(0, 1fr) 12.1rem;
  gap: 1rem;
  align-items: start;
  padding: 0.65rem;
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.55);
}

.offer-card__media{
  width: 8.05rem;
  height: 8.05rem;
  border-radius: 0.16rem;
  overflow: hidden;
  border: 1px solid rgba(49,113,238,.22);
  background: #fff;
}

.offer-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card__body{
  min-width: 0;
  padding-top: 0.05rem;
}

.offer-card h3{
  color: #111;
  font-size: 1.9rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.offer-card h3 a{
  transition: color var(--dur) var(--ease);
}

.offer-card h3 a:hover{
  color: var(--c-primary);
}

.offer-meta{
  margin: 0.95rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.offer-meta div{
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  min-width: 0;
  color: rgba(30,30,30,.75);
  font-size: 0.98rem;
  line-height: 1.35;
}

.offer-meta dt{
  font-weight: 900;
}

.offer-meta dd{
  margin: 0;
  min-width: 0;
}

.offer-card__button{
  justify-self: end;
  width: 12.1rem;
  height: 2.7rem;
  border-radius: 0.18rem;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 800;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.offer-card__button:hover{
  opacity: .94;
}

.offer-card__button:active{
  transform: translateY(0.08rem);
}

.pagination{
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  color: rgba(30,30,30,.72);
  font-size: 1.05rem;
  font-weight: 800;
}

.pagination a{
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.35rem;
  border-radius: 0.18rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pagination a.is-active{
  background: var(--c-primary);
  color: #fff;
}

.category-about{
  padding: 0 0 2.6rem;
}

.category-about__frame{
  max-width: 86.6rem;
  margin: 0 auto;
  border: 1px solid rgba(49,113,238,.45);
  border-radius: 0.18rem;
  background: rgba(255,255,255,.55);
  padding: 1.25rem;
}

.category-about h2{
  color: #111;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.category-about__scroll{
  margin-top: 1rem;
  max-height: 9rem;
  overflow: auto;
  padding-right: 0.7rem;
  color: rgba(30,30,30,.66);
  font-size: 1rem;
  line-height: 1.55;
  scrollbar-width: thin;
}

.category-about__scroll p + p{
  margin-top: 0.8rem;
}

.category-about__scroll::-webkit-scrollbar{
  width: 0.5rem;
}

.category-about__scroll::-webkit-scrollbar-track{
  background: rgba(0,0,0,.06);
  border-radius: 999px;
}

.category-about__scroll::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.28);
  border-radius: 999px;
}

@media (max-width: 1000px){
  .category-hero{
    padding: 1.2rem 0 1.5rem;
  }

  .breadcrumbs{
    max-width: none;
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
  }

  .category-calendar{
    max-width: none;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.15rem;
  }

  .category-calendar h1{
    font-size: 2.75rem;
  }

  .category-calendar p:not(.category-eyebrow){
    font-size: 1rem;
    line-height: 1.5;
  }

  .category-search{
    height: auto;
    grid-template-columns: 1fr;
    border-radius: 0.35rem;
  }

  .category-search input{
    height: 3.15rem;
  }

  .category-search button{
    height: 3rem;
  }

  .category-calendar__widget{
    padding: 0.85rem;
  }

  .calendar-widget__grid{
    gap: 0.28rem;
  }

  .calendar-widget__grid span,
  .calendar-widget__grid b{
    height: 1.85rem;
    font-size: 0.72rem;
  }

  .categories-board{
    padding-bottom: 1.6rem;
  }

  .categories-layout{
    max-width: none;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .filter-form{
    gap: 0.85rem;
  }

  .filter-panel{
    padding: 1rem;
  }

  .filter-panel--details{
    padding: 0;
  }

  .filter-panel summary{
    min-height: 3.4rem;
    padding: 1rem;
  }

  .filter-panel__body{
    padding: 0 1rem 1rem;
  }

  .filter-submit{
    height: 3rem;
  }

  .offers-toolbar{
    align-items: stretch;
    flex-direction: column;
  }

  .offers-toolbar h2{
    font-size: 1.9rem;
  }

  .sort-control select{
    width: 100%;
  }

  .offer-card{
    min-height: auto;
    grid-template-columns: 6.4rem minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0.65rem;
  }

  .offer-card__media{
    width: 6.4rem;
    height: 6.4rem;
  }

  .offer-card h3{
    font-size: 1.45rem;
  }

  .offer-meta{
    margin-top: 0.65rem;
  }

  .offer-meta div{
    flex-direction: column;
    gap: 0.1rem;
    font-size: 0.92rem;
  }

  .offer-card__button{
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    height: 2.85rem;
  }

  .pagination{
    flex-wrap: wrap;
    margin-top: 1.25rem;
  }

  .category-about{
    padding-bottom: 1.7rem;
  }

  .category-about__frame{
    padding: 1rem;
  }

  .category-about h2{
    font-size: 1.9rem;
  }

  .category-about__scroll{
    max-height: 11.5rem;
  }
}

/* ===================== CRM CATEGORY PAGE ===================== */
.page--categories{
  --crm-border: rgba(49,113,238,.46);
  --crm-border-strong: rgba(49,113,238,.72);
  --crm-panel: rgba(255,255,255,.42);
  --crm-text-muted: rgba(30,30,30,.62);
  --headerH: 5rem;
  background: #f5f5f5;
}

.page--categories .header__row{
  min-height: var(--headerH);
}

.crm-page{
  background: #f5f5f5;
  padding-bottom: 2rem;
}

.crm-hero{
  padding: 0.85rem 0 1.15rem;
}

.crm-breadcrumb{
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(30,30,30,.68);
  font-size: 0.78rem;
  line-height: 1.3;
  margin-bottom: 0.65rem;
}

.crm-breadcrumb a{
  color: rgba(30,30,30,.76);
  text-decoration: underline;
  text-underline-offset: 0.12rem;
}

.crm-hero__frame{
  min-height: 8rem;
  border: 1px solid var(--crm-border);
  background: var(--crm-panel);
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(21rem, 1fr);
}

.crm-hero__intro{
  padding: 1.05rem 1.35rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--crm-border);
}

.crm-hero__intro h1{
  color: #111;
  font-size: 2.45rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.crm-author{
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(30,30,30,.72);
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 600;
}

.crm-author__avatar{
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 65% 38%, #fff 0 .16rem, transparent .17rem),
    linear-gradient(135deg, #8f9ff9 0%, #3171ee 58%, #ff7a2f 100%);
  box-shadow: 0 0 0 0.15rem rgba(49,113,238,.12);
  flex: 0 0 auto;
}

.crm-hero__text{
  padding: 1.05rem 1.35rem;
  display: flex;
  align-items: center;
}

.crm-hero__text p{
  max-width: 36rem;
  color: rgba(30,30,30,.62);
  font-size: 0.92rem;
  line-height: 1.5;
}

.crm-catalog{
  padding: 0.55rem 0 1.6rem;
}

.crm-catalog__layout{
  display: grid;
  grid-template-columns: 18.75rem minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.crm-sidebar{
  min-width: 0;
}

.crm-filter-form{
  display: grid;
  gap: 1rem;
}

.crm-select,
.crm-filter-card{
  border: 1px solid var(--crm-border);
  background: rgba(255,255,255,.42);
}

.crm-select{
  display: block;
  height: 2.4rem;
  position: relative;
}

.crm-select::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 0.8rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1px solid var(--c-primary);
  border-bottom: 1px solid var(--c-primary);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.crm-select select{
  width: 100%;
  height: 100%;
  appearance: none;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0 2rem 0 0.7rem;
}

.crm-filter-card{
  margin: 0;
  padding: 0.85rem 0.7rem 0.7rem;
}

.crm-filter-card legend{
  display: block;
  width: 100%;
  color: #111;
  font-size: 0.84rem;
  line-height: 1.2;
  font-weight: 700;
  padding-bottom: 0.55rem;
}

.crm-filter-card label{
  min-height: 1.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  color: rgba(30,30,30,.84);
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 500;
}

.crm-filter-card label + label{
  margin-top: 0.16rem;
}

.crm-filter-card input{
  appearance: none;
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--crm-border);
  background: #fff;
  flex: 0 0 auto;
}

.crm-filter-card input:checked{
  background:
    linear-gradient(var(--c-primary), var(--c-primary)) center / 0.48rem 0.48rem no-repeat,
    #fff;
}

.crm-results{
  min-width: 0;
  border: 1px solid var(--crm-border);
  background: rgba(255,255,255,.36);
  padding: 1rem;
}

.crm-list{
  display: grid;
  gap: 0.75rem;
}

.crm-card{
  min-height: 8.9rem;
  border: 1px solid var(--crm-border);
  background: rgba(255,255,255,.55);
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr) 10.6rem;
  gap: 0.75rem;
  align-items: start;
  padding: 0.55rem;
  position: relative;
}

.crm-card__media{
  width: 8rem;
  height: 7.7rem;
  border: 1px solid var(--crm-border);
  background: #fff;
  position: relative;
  overflow: hidden;
}

.crm-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crm-card__badge{
  position: absolute;
  top: -0.12rem;
  left: -0.12rem;
  z-index: 1;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 55% 45%, #fff 0 .17rem, transparent .18rem),
    linear-gradient(135deg, #ffb322 0%, #ff7a2f 48%, #3171ee 50%, #3171ee 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.85);
}

.crm-card__body{
  min-width: 0;
  padding-top: 0.12rem;
}

.crm-card h2{
  color: #111;
  font-size: 1.25rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.crm-card h2 a{
  color: inherit;
  transition: color var(--dur) var(--ease);
}

.crm-card h2 a:hover{
  color: var(--c-primary);
}

.crm-rating{
  margin-top: 0.22rem;
  display: flex;
  align-items: center;
  gap: 0.24rem;
  color: rgba(30,30,30,.72);
  font-size: 0.74rem;
  line-height: 1.2;
  font-weight: 700;
}

.crm-rating__stars{
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
}

.crm-rating__stars i{
  width: 0.55rem;
  height: 0.55rem;
  background: var(--c-primary);
  clip-path: polygon(50% 0%, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
}

.crm-card p{
  margin-top: 0.45rem;
  color: rgba(30,30,30,.62);
  font-size: 0.74rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.crm-card__button{
  justify-self: end;
  width: 10.2rem;
  height: 2.5rem;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.15;
  font-weight: 800;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.crm-card__button:hover{
  opacity: .94;
}

.crm-card__button:active{
  transform: translateY(0.08rem);
}

.crm-pagination{
  margin-top: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  color: #111;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 700;
}

.crm-pagination a{
  min-width: 0.8rem;
  height: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.crm-pagination a.is-active{
  color: var(--c-primary);
}

.crm-tools,
.crm-about,
.crm-faq,
.crm-articles{
  padding: 0.65rem 0 1.25rem;
}

.crm-section-frame{
  border: 1px solid var(--crm-border);
  background: rgba(255,255,255,.42);
  padding: 1rem;
}

.crm-section-frame h2{
  color: #111;
  font-size: 1.2rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 0.9rem;
}

.crm-video-links{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 3.4rem;
  align-items: center;
}

.crm-video-links a{
  height: 3rem;
  border: 1px solid var(--c-primary);
  background: rgba(255,255,255,.6);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.crm-video-links a:hover{
  background: var(--c-primary);
  color: #fff;
}

.crm-about__scroll{
  max-height: 7.9rem;
  overflow: auto;
  padding-right: 0.75rem;
  color: rgba(30,30,30,.66);
  font-size: 0.82rem;
  line-height: 1.5;
  scrollbar-width: thin;
}

.crm-about__scroll::-webkit-scrollbar{
  width: 0.5rem;
}

.crm-about__scroll::-webkit-scrollbar-track{
  background: rgba(0,0,0,.06);
}

.crm-about__scroll::-webkit-scrollbar-thumb{
  background: #111;
}

.crm-faq__list{
  display: grid;
  gap: 0.8rem;
}

.crm-faq__item{
  border: 1px solid var(--crm-border) !important;
  border-radius: 0;
  background: rgba(255,255,255,.42);
}

.crm-faq__q{
  min-height: 2.95rem;
  padding: 0.55rem 0.75rem !important;
  font-size: 0.82rem !important;
  line-height: 1.25;
  font-weight: 500 !important;
}

.crm-faq__chev{
  width: 1rem !important;
  height: 1rem !important;
}

.crm-faq__answer-inner{
  padding: 0 0.75rem 0.75rem !important;
  color: rgba(30,30,30,.66);
  font-size: 0.78rem !important;
  line-height: 1.45 !important;
}

.crm-articles__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.crm-article-card{
  min-width: 0;
  border: 1px solid var(--c-primary);
  background: rgba(255,255,255,.48);
  padding: 0.8rem;
}

.crm-article-card__media{
  display: block;
  height: 10.4rem;
  overflow: hidden;
  background: #103b78;
}

.crm-article-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crm-article-card__body{
  margin-top: 0.62rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: end;
}

.crm-article-card h3{
  min-width: 0;
  color: var(--c-primary);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
}

.crm-article-card time{
  color: rgba(30,30,30,.68);
  font-size: 0.68rem;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 1000px){
  .page--categories{
    --headerH: 4.6rem;
  }

  .crm-page{
    padding-bottom: 1rem;
  }

  .crm-hero{
    padding: 0.8rem 0 1rem;
  }

  .crm-hero__frame{
    grid-template-columns: 1fr;
  }

  .crm-hero__intro{
    border-right: 0;
    border-bottom: 1px solid var(--crm-border);
    padding: 1rem;
  }

  .crm-hero__intro h1{
    font-size: 2rem;
  }

  .crm-hero__text{
    padding: 1rem;
  }

  .crm-hero__text p{
    font-size: 0.92rem;
  }

  .crm-catalog{
    padding-bottom: 0.95rem;
  }

  .crm-catalog__layout{
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .crm-filter-form{
    gap: 0.75rem;
  }

  .crm-filter-card{
    padding: 0.75rem;
  }

  .crm-results{
    padding: 0.65rem;
  }

  .crm-card{
    grid-template-columns: 6.2rem minmax(0, 1fr);
    gap: 0.65rem;
    min-height: auto;
  }

  .crm-card__media{
    width: 6.2rem;
    height: 6.2rem;
  }

  .crm-card h2{
    font-size: 1.12rem;
  }

  .crm-card p{
    -webkit-line-clamp: 4;
  }

  .crm-card__button{
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    height: 2.75rem;
  }

  .crm-tools,
  .crm-about,
  .crm-faq,
  .crm-articles{
    padding: 0.5rem 0 0.95rem;
  }

  .crm-section-frame{
    padding: 0.85rem;
  }

  .crm-video-links{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .crm-video-links a{
    height: 2.75rem;
  }

  .crm-about__scroll{
    max-height: 10.5rem;
    font-size: 0.86rem;
  }

  .crm-articles__grid{
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .crm-article-card__media{
    height: 11rem;
  }
}

/* ===================== PRODUCT PAGE ===================== */
.page--product{
  --product-border: rgba(49,113,238,.46);
  --product-border-strong: rgba(49,113,238,.72);
  --product-panel: rgba(255,255,255,.52);
  --product-muted: rgba(30,30,30,.64);
  --headerH: 5rem;
  background: #f5f5f5;
}

.page--product .header__row{
  min-height: var(--headerH);
}

.product-page{
  background: #f5f5f5;
  padding-bottom: 2rem;
}

.product-top{
  padding: 1.95rem 0 1.45rem;
}

.product-breadcrumb{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.42rem;
  color: rgba(30,30,30,.68);
  font-size: 0.96rem;
  line-height: 1.35;
  margin-bottom: 1.15rem;
}

.product-breadcrumb a{
  color: rgba(30,30,30,.78);
  transition: color var(--dur) var(--ease);
}

.product-breadcrumb a:hover{
  color: var(--c-primary);
}

.product-hero{
  display: grid;
  grid-template-columns: 18.95rem minmax(0, 1fr) 20.45rem;
  gap: 2.65rem;
  align-items: start;
}

.product-hero__logo{
  width: 18.95rem;
  height: 18.95rem;
  border: 1px solid var(--product-border);
  background: #fff;
  overflow: hidden;
}

.product-hero__logo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero__content{
  min-width: 0;
  padding-top: 0.05rem;
}

.product-hero__content h1{
  color: #111;
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.product-hero__lead{
  margin-top: 0.9rem;
  color: rgba(30,30,30,.72);
  font-size: 1.1rem;
  line-height: 1.45;
  max-width: 35rem;
}

.product-rating{
  margin-top: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(30,30,30,.72);
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 700;
}

.product-rating--small{
  margin-top: 0;
  font-size: 0.9rem;
}

.product-rating__stars{
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
}

.product-rating__stars i{
  width: 1.05rem;
  height: 1.05rem;
  background: var(--c-primary);
  clip-path: polygon(50% 0%, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
}

.product-rating--small .product-rating__stars i{
  width: 0.82rem;
  height: 0.82rem;
}

.product-review-button{
  margin-top: 0.9rem;
  width: 12.15rem;
  height: 2.58rem;
  border: 1px solid var(--c-primary);
  background: rgba(255,255,255,.5);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 800;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.product-review-button:hover{
  background: var(--c-primary);
  color: #fff;
}

.product-review-button:active{
  transform: translateY(0.08rem);
}

.product-hero__description{
  margin-top: 0.9rem;
  max-width: 41.65rem;
  color: var(--product-muted);
  font-size: 1rem;
  line-height: 1.52;
}

.product-hero__action{
  display: flex;
  justify-content: flex-end;
}

.product-main-button{
  width: 20.45rem;
  height: 4.15rem;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.28rem;
  line-height: 1.1;
  font-weight: 900;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.product-main-button:hover{
  opacity: .94;
}

.product-main-button:active{
  transform: translateY(0.08rem);
}

.product-section{
  padding: 1.05rem 0 1.65rem;
}

.product-section__frame{
  border: 1px solid var(--product-border);
  background: var(--product-panel);
  padding: 1.25rem;
}

.product-section__frame h2{
  color: #111;
  font-size: 1.9rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 1.2rem;
}

.product-richtext{
  color: var(--product-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.product-richtext p + p{
  margin-top: 0.85rem;
}

.product-feature-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-feature-card{
  min-height: 9.4rem;
  border: 1px solid var(--product-border);
  background: rgba(255,255,255,.42);
  padding: 1rem;
}

.product-feature-card h3{
  color: #111;
  font-size: 1.12rem;
  line-height: 1.2;
  font-weight: 900;
}

.product-feature-card p{
  margin-top: 0.72rem;
  color: var(--product-muted);
  font-size: 0.94rem;
  line-height: 1.48;
}

.product-media-grid,
.product-video-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-media-card,
.product-video-card{
  display: block;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--product-border);
  background: #fff;
  overflow: hidden;
}

.product-media-card img,
.product-video-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur) var(--ease);
}

.product-media-card:hover img,
.product-video-card:hover img{
  transform: scale(1.025);
}

.product-video-card{
  position: relative;
}

.product-video-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.16);
}

.product-video-card__play{
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 1;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 50%;
  background: var(--c-primary);
  box-shadow: 0 0.7rem 1.4rem rgba(0,0,0,.18);
}

.product-video-card__play::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 0.55rem solid transparent;
  border-bottom: 0.55rem solid transparent;
  border-left: 0.82rem solid #fff;
}

.product-reviews__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-review-card{
  border: 1px solid var(--product-border);
  background: rgba(255,255,255,.45);
  padding: 1rem;
  min-height: 11rem;
}

.product-review-card h3{
  margin-top: 0.85rem;
  color: #111;
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 900;
}

.product-review-card p{
  margin-top: 0.75rem;
  color: var(--product-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.product-pros-cons__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-list-panel{
  border: 1px solid var(--product-border);
  background: rgba(255,255,255,.42);
  padding: 1rem;
}

.product-list-panel h3{
  color: #111;
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 0.85rem;
}

.product-list-panel ul{
  display: grid;
  gap: 0.7rem;
}

.product-list-panel li{
  position: relative;
  padding-left: 1.55rem;
  color: var(--product-muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.product-list-panel li::before{
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--c-primary);
}

.product-list-panel--cons li::before{
  background: transparent;
  border: 1px solid var(--c-primary);
}

.product-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.product-tags a{
  min-height: 2.58rem;
  border: 1px solid var(--c-primary);
  background: rgba(255,255,255,.5);
  color: #111;
  padding: 0.62rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 700;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.product-tags a:hover{
  background: var(--c-primary);
  color: #fff;
}

.product-integration-grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.62rem;
}

.product-integration-card{
  min-height: 18rem;
  border: 1px solid var(--product-border);
  background: rgba(255,255,255,.42);
  padding: 0.65rem;
  position: relative;
}

.product-integration-card img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.04);
}

.product-integration-card h3{
  margin-top: 0.65rem;
  color: #111;
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 800;
}

.product-integration-card p{
  margin-top: 0.5rem;
  color: rgba(30,30,30,.7);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-integration-card span{
  position: absolute;
  right: 0.85rem;
  bottom: 3.1rem;
  min-width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.product-pricing-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-price-card{
  border: 1px solid var(--product-border);
  background: rgba(255,255,255,.48);
}

.product-price-card__head{
  min-height: 13.5rem;
  background: var(--c-primary);
  color: #fff;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-price-card h3{
  font-size: 1.85rem;
  line-height: 1.1;
  font-weight: 900;
}

.product-price-card strong{
  display: block;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.product-price-card span{
  color: rgba(255,255,255,.78);
  font-size: 0.95rem;
  font-weight: 700;
}

.product-price-card ul{
  padding: 1rem 1.25rem 1.4rem;
  display: grid;
  gap: 0.8rem;
}

.product-price-card li{
  position: relative;
  padding-left: 1.7rem;
  color: var(--product-muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.product-price-card li::before{
  content: "";
  position: absolute;
  top: 0.03rem;
  left: 0;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--c-primary);
}

.product-price-card li::after{
  content: "";
  position: absolute;
  top: 0.32rem;
  left: 0.32rem;
  width: 0.5rem;
  height: 0.28rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.product-alternative-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-alternative-card{
  min-width: 0;
  border: 1px solid var(--product-border);
  background: rgba(255,255,255,.42);
  padding: 0.75rem;
  display: grid;
  grid-template-columns: 5.2rem minmax(0, 1fr);
  gap: 0.8rem;
  position: relative;
}

.product-alternative-card img{
  width: 5.2rem;
  height: 5.2rem;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.05);
}

.product-alternative-card h3{
  color: #111;
  font-size: 1.15rem;
  line-height: 1.15;
  font-weight: 900;
}

.product-alternative-card h3 a:hover{
  color: var(--c-primary);
}

.product-alternative-card p{
  margin-top: 0.45rem;
  color: var(--product-muted);
  font-size: 0.86rem;
  line-height: 1.42;
}

.product-alternative-card > a{
  grid-column: 1 / -1;
  height: 2.35rem;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 800;
}

.product-contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr 1.2fr;
  gap: 2rem;
}

.product-contact-item{
  min-width: 0;
}

.product-contact-item h3{
  color: #111;
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 0.95rem;
}

.product-contact-item a,
.product-contact-item p{
  display: block;
  color: var(--product-muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.product-contact-item a + a{
  margin-top: 0.35rem;
}

.product-contact-item a:hover{
  color: var(--c-primary);
}

.product-faq__list{
  display: grid;
  gap: 0.8rem;
}

.product-faq__item{
  border: 1px solid var(--product-border) !important;
  border-radius: 0;
  background: rgba(255,255,255,.42);
}

.product-faq__q{
  min-height: 3rem;
  padding: 0.7rem 0.85rem !important;
  font-size: 0.96rem !important;
  line-height: 1.25;
  font-weight: 600 !important;
}

.product-faq__chev{
  width: 1.1rem !important;
  height: 1.1rem !important;
}

.product-faq__answer-inner{
  padding: 0 0.85rem 0.85rem !important;
  color: var(--product-muted);
  font-size: 0.94rem !important;
  line-height: 1.5 !important;
}

.product-article-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-article-card{
  border: 1px solid var(--c-primary);
  background: rgba(255,255,255,.42);
  padding: 0.8rem;
}

.product-article-card__media{
  display: block;
  height: 11rem;
  overflow: hidden;
  background: #123d78;
}

.product-article-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-article-card__body{
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: end;
}

.product-article-card h3{
  color: var(--c-primary);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
}

.product-article-card time{
  color: rgba(30,30,30,.66);
  font-size: 0.72rem;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 1000px){
  .page--product{
    --headerH: 4.6rem;
  }

  .product-page{
    padding-bottom: 1rem;
  }

  .product-top{
    padding: 1.2rem 0 0.8rem;
  }

  .product-breadcrumb{
    font-size: 0.88rem;
    margin-bottom: 0.85rem;
  }

  .product-hero{
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-hero__logo{
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .product-hero__content h1{
    font-size: 2.35rem;
  }

  .product-hero__lead,
  .product-hero__description{
    font-size: 1rem;
  }

  .product-hero__action{
    justify-content: stretch;
  }

  .product-main-button,
  .product-review-button{
    width: 100%;
  }

  .product-section{
    padding: 0.75rem 0 1.05rem;
  }

  .product-section__frame{
    padding: 1rem;
  }

  .product-section__frame h2{
    font-size: 1.75rem;
    margin-bottom: 0.9rem;
  }

  .product-media-grid,
  .product-video-grid,
  .product-reviews__grid,
  .product-feature-grid,
  .product-pros-cons__grid,
  .product-alternative-grid,
  .product-article-grid,
  .product-pricing-grid,
  .product-contact-grid{
    grid-template-columns: 1fr;
  }

  .product-integration-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .product-integration-card{
    min-height: 14.5rem;
  }

  .product-tags{
    gap: 0.7rem;
  }

  .product-tags a{
    width: 100%;
  }

  .product-price-card__head{
    min-height: 11rem;
  }

  .product-price-card strong{
    font-size: 2.75rem;
  }

  .product-alternative-card{
    grid-template-columns: 4.8rem minmax(0, 1fr);
  }

  .product-alternative-card img{
    width: 4.8rem;
    height: 4.8rem;
  }

  .product-article-card__media{
    height: 11rem;
  }
}

/* ===================== ABOUT PAGE ===================== */
.page--about{
  --about-border: rgba(49,113,238,.46);
  --about-panel: rgba(255,255,255,.52);
  --about-muted: rgba(30,30,30,.65);
  --headerH: 5rem;
  background: #f5f5f5;
}

.page--about .header__row{
  min-height: var(--headerH);
}

.about-page{
  background: #f5f5f5;
  padding-bottom: 2rem;
}

.about-hero{
  padding: 1.8rem 0 1.35rem;
}

.about-breadcrumb{
  display: flex;
  align-items: center;
  gap: 0.42rem;
  color: rgba(30,30,30,.68);
  font-size: 0.95rem;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.about-breadcrumb a{
  color: rgba(30,30,30,.78);
}

.about-breadcrumb a:hover{
  color: var(--c-primary);
}

.about-hero__frame{
  border: 1px solid var(--about-border);
  background: var(--about-panel);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
  gap: 1.4rem;
  align-items: stretch;
  padding: 1.25rem;
}

.about-hero__content{
  min-width: 0;
  padding: 1.45rem 0.7rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-eyebrow{
  color: var(--c-primary);
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.about-hero h1{
  color: #111;
  font-size: 4.6rem;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.about-hero__content > p:not(.about-eyebrow){
  margin-top: 1.2rem;
  max-width: 43rem;
  color: var(--about-muted);
  font-size: 1.12rem;
  line-height: 1.55;
}

.about-hero__actions{
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.about-primary-link,
.about-secondary-link{
  min-width: 12rem;
  height: 3.05rem;
  border: 1px solid var(--c-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.25rem;
  font-size: 0.98rem;
  font-weight: 800;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.about-primary-link{
  background: var(--c-primary);
  color: #fff;
}

.about-secondary-link{
  background: rgba(255,255,255,.55);
  color: #111;
}

.about-primary-link:hover,
.about-secondary-link:hover{
  background: #111;
  border-color: #111;
  color: #fff;
}

.about-primary-link:active,
.about-secondary-link:active{
  transform: translateY(0.08rem);
}

.about-hero__media{
  min-height: 27rem;
  border: 1px solid var(--about-border);
  overflow: hidden;
  background: #fff;
}

.about-hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section{
  padding: 0.75rem 0 1.35rem;
}

.about-section__frame{
  border: 1px solid var(--about-border);
  background: var(--about-panel);
  padding: 1.25rem;
}

.about-section__frame h2{
  color: #111;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 1.05rem;
}

.about-richtext{
  color: var(--about-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.about-richtext p + p{
  margin-top: 0.8rem;
}

.about-stats__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-stat-card{
  border: 1px solid var(--about-border);
  background: rgba(255,255,255,.42);
  min-height: 8.8rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-stat-card strong{
  color: var(--c-primary);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
}

.about-stat-card span{
  color: var(--about-muted);
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 700;
}

.about-mission__grid,
.about-editorial__grid{
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.about-values{
  display: grid;
  gap: 0.85rem;
}

.about-value-card,
.about-process-card,
.about-audience-card,
.about-team-card{
  border: 1px solid var(--about-border);
  background: rgba(255,255,255,.42);
  padding: 1rem;
}

.about-value-card h3,
.about-process-card h3,
.about-audience-card h3{
  color: #111;
  font-size: 1.22rem;
  line-height: 1.15;
  font-weight: 900;
}

.about-value-card p,
.about-process-card p,
.about-audience-card p{
  margin-top: 0.62rem;
  color: var(--about-muted);
  font-size: 0.95rem;
  line-height: 1.48;
}

.about-process__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-process-card{
  min-height: 14rem;
}

.about-process-card span{
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.about-audience__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-audience-card{
  min-height: 10rem;
}

.about-check-list{
  display: grid;
  gap: 0.75rem;
}

.about-check-list li{
  position: relative;
  border: 1px solid var(--about-border);
  background: rgba(255,255,255,.42);
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  color: var(--about-muted);
  font-size: 0.96rem;
  line-height: 1.42;
}

.about-check-list li::before{
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--c-primary);
}

.about-check-list li::after{
  content: "";
  position: absolute;
  top: 1.08rem;
  left: 1.27rem;
  width: 0.46rem;
  height: 0.25rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.about-team__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-team-card{
  min-height: 11.5rem;
}

.about-team-card__avatar{
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 38%, #fff 0 .35rem, transparent .36rem),
    linear-gradient(135deg, #8f9ff9 0%, #3171ee 55%, #0f2c67 100%);
  margin-bottom: 1rem;
}

.about-team-card h3{
  color: #111;
  font-size: 1.15rem;
  line-height: 1.15;
  font-weight: 900;
}

.about-team-card p{
  margin-top: 0.42rem;
  color: var(--about-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.about-faq__list{
  display: grid;
  gap: 0.8rem;
}

.about-faq__item{
  border: 1px solid var(--about-border) !important;
  border-radius: 0;
  background: rgba(255,255,255,.42);
}

.about-faq__q{
  min-height: 3rem;
  padding: 0.75rem 0.9rem !important;
  font-size: 0.98rem !important;
  line-height: 1.25;
  font-weight: 600 !important;
}

.about-faq__chev{
  width: 1.1rem !important;
  height: 1.1rem !important;
}

.about-faq__answer-inner{
  padding: 0 0.9rem 0.9rem !important;
  color: var(--about-muted);
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
}

.about-cta{
  padding-bottom: 2.2rem;
}

.about-cta__frame{
  border: 1px solid var(--about-border);
  background: var(--c-primary);
  color: #fff;
  padding: 1.35rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 14rem;
  gap: 1.5rem;
  align-items: center;
}

.about-cta__frame h2{
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.about-cta__frame p{
  margin-top: 0.55rem;
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  line-height: 1.45;
}

.about-cta__frame a{
  height: 3.05rem;
  background: #fff;
  color: var(--c-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 900;
}

@media (max-width: 1000px){
  .page--about{
    --headerH: 4.6rem;
  }

  .about-page{
    padding-bottom: 1rem;
  }

  .about-hero{
    padding: 1.1rem 0 0.8rem;
  }

  .about-hero__frame,
  .about-mission__grid,
  .about-editorial__grid,
  .about-cta__frame{
    grid-template-columns: 1fr;
  }

  .about-hero__content{
    padding: 0.4rem 0;
  }

  .about-hero h1{
    font-size: 2.75rem;
  }

  .about-hero__content > p:not(.about-eyebrow){
    font-size: 1rem;
  }

  .about-hero__actions{
    flex-direction: column;
  }

  .about-primary-link,
  .about-secondary-link,
  .about-cta__frame a{
    width: 100%;
  }

  .about-hero__media{
    min-height: 14rem;
  }

  .about-section{
    padding: 0.55rem 0 1rem;
  }

  .about-section__frame{
    padding: 1rem;
  }

  .about-section__frame h2{
    font-size: 1.75rem;
  }

  .about-stats__grid,
  .about-process__grid,
  .about-audience__grid,
  .about-team__grid{
    grid-template-columns: 1fr;
  }

  .about-stat-card,
  .about-process-card,
  .about-audience-card,
  .about-team-card{
    min-height: auto;
  }

  .about-stat-card strong{
    font-size: 2.55rem;
  }

  .about-cta__frame h2{
    font-size: 1.75rem;
  }
}

/* ===================== ABOUT2 PAGE ===================== */
.page--about2{
  --about2-border: rgba(49,113,238,.52);
  --about2-panel: rgba(255,255,255,.35);
  --about2-muted: rgba(30,30,30,.72);
  --headerH: 5rem;
  background: #f5f5f5;
}

.page--about2 .header__row{
  min-height: var(--headerH);
}

.about2-page{
  background: #f5f5f5;
}

.about2-intro{
  padding: 1.65rem 0 1.55rem;
}

.about2-breadcrumb{
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(30,30,30,.66);
  font-size: 0.82rem;
  line-height: 1.35;
  margin-bottom: 1.55rem;
}

.about2-breadcrumb a{
  color: rgba(30,30,30,.72);
  text-decoration: underline;
  text-underline-offset: 0.12rem;
}

.about2-intro__content{
  text-align: center;
}

.about2-intro h1{
  color: #1d1d1d;
  font-size: 2.45rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.about2-intro p{
  margin: 1.35rem auto 0;
  max-width: 82rem;
  color: var(--about2-muted);
  font-size: 0.84rem;
  line-height: 1.42;
}

.about2-panel-section{
  padding: 0 0 3.15rem;
}

.about2-panel{
  border: 1px solid var(--about2-border);
  background: var(--about2-panel);
  display: grid;
  grid-template-columns: 14.4rem minmax(0, 1fr);
  min-height: 17.55rem;
}

.about2-panel__title{
  border-right: 1px solid var(--about2-border);
  padding: 1.6rem 1.4rem;
}

.about2-panel h2{
  color: #1d1d1d;
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

.about2-panel__text{
  padding: 1.55rem 1.8rem;
}

.about2-panel p{
  color: var(--about2-muted);
  font-size: 0.84rem;
  line-height: 1.42;
}

.about2-text-section{
  border-top: 1px solid var(--about2-border);
  border-bottom: 1px solid var(--about2-border);
  padding: 1.95rem 0 3.6rem;
}

.about2-text{
  text-align: center;
}

.about2-text h2{
  color: #1d1d1d;
  font-size: 1.55rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

.about2-text p{
  margin: 1.8rem auto 0;
  max-width: 82.6rem;
  color: var(--about2-muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.about2-cta{
  background: var(--c-primary);
  padding: 3.25rem 0 3rem;
}

.about2-cta__inner{
  min-height: 11rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about2-cta h2{
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about2-cta a{
  margin-top: 1.65rem;
  min-width: 9.8rem;
  height: 2.15rem;
  background: #fff;
  color: var(--c-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 600;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.about2-cta a:hover{
  opacity: .92;
}

.about2-cta a:active{
  transform: translateY(0.08rem);
}

@media (max-width: 1000px){
  .page--about2{
    --headerH: 4.6rem;
  }

  .about2-intro{
    padding: 1.1rem 0 1.2rem;
  }

  .about2-breadcrumb{
    margin-bottom: 1.1rem;
  }

  .about2-intro h1{
    font-size: 2rem;
  }

  .about2-intro p,
  .about2-panel p,
  .about2-text p{
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .about2-panel-section{
    padding-bottom: 1.6rem;
  }

  .about2-panel{
    grid-template-columns: 1fr;
  }

  .about2-panel__title{
    border-right: 0;
    border-bottom: 1px solid var(--about2-border);
    padding: 1rem;
  }

  .about2-panel__text{
    padding: 1rem;
  }

  .about2-text-section{
    padding: 1.4rem 0 2rem;
  }

  .about2-text p{
    margin-top: 1rem;
  }

  .about2-cta{
    padding: 2rem 0;
  }

  .about2-cta h2{
    font-size: 1.12rem;
  }
}

/* ===================== BLOG CATEGORY PAGE ===================== */
.page--blog,
.page--article{
  --blog-border: rgba(49,113,238,.58);
  --blog-muted: rgba(30,30,30,.68);
  --blog-hero: #8F9FF9;
  --headerH: 5rem;
  background: #f5f5f5;
}

.page--blog .header__row,
.page--article .header__row{
  min-height: var(--headerH);
}

.blog-page,
.article-page{
  background: #f5f5f5;
}

.blog-category{
  padding: 2.15rem 0 3.1rem;
}

.blog-breadcrumb{
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.65rem;
  color: rgba(30,30,30,.7);
  font-size: 0.9rem;
  line-height: 1.35;
}

.blog-breadcrumb a{
  color: rgba(30,30,30,.72);
  text-decoration: underline;
  text-underline-offset: 0.12rem;
}

.blog-title-frame{
  border: 1px solid var(--blog-border);
  background: rgba(255,255,255,.32);
  min-height: 5rem;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.blog-title-frame h1{
  color: #111;
  font-size: 2.35rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 2.7rem;
}

.blog-post-card{
  border: 1px solid var(--blog-border);
  background: rgba(255,255,255,.34);
  padding: 0.85rem;
  min-height: 25.5rem;
}

.blog-post-card__media{
  display: block;
  height: 13.2rem;
  overflow: hidden;
  background: #0f3b75;
}

.blog-post-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur) var(--ease);
}

.blog-post-card:hover .blog-post-card__media img{
  transform: scale(1.025);
}

.blog-post-card h2{
  margin-top: 0.85rem;
  color: var(--c-primary);
  font-size: 1.22rem;
  line-height: 1.17;
  font-weight: 700;
  letter-spacing: 0;
}

.blog-post-card h2 a:hover{
  color: #111;
}

.blog-post-card p{
  margin-top: 0.75rem;
  color: rgba(30,30,30,.66);
  font-size: 0.86rem;
  line-height: 1.42;
}

.blog-post-card time{
  display: block;
  margin-top: 1rem;
  color: rgba(30,30,30,.72);
  font-size: 0.72rem;
  line-height: 1.2;
}

.blog-pagination{
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #111;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
}

.blog-pagination a{
  min-width: 0.9rem;
  height: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination a.is-active{
  color: var(--c-primary);
}

/* ===================== BLOG ARTICLE PAGE ===================== */
.article-hero{
  background: var(--blog-hero);
  padding: 2.35rem 0 2.7rem;
}

.article-breadcrumb{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  color: rgba(255,255,255,.74);
  font-size: 0.9rem;
  line-height: 1.35;
  margin-bottom: 0.9rem;
}

.article-breadcrumb a{
  color: rgba(255,255,255,.78);
  text-decoration: underline;
  text-underline-offset: 0.12rem;
}

.article-hero h1{
  max-width: 47rem;
  color: #fff;
  font-size: 3.2rem;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.article-meta{
  margin-top: 1.05rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.article-author,
.article-meta time,
.article-meta > span{
  min-height: 2.1rem;
  background: rgba(255,255,255,.92);
  color: rgba(30,30,30,.78);
  display: inline-flex;
  align-items: center;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 700;
}

.article-author{
  gap: 0.45rem;
}

.article-author__avatar{
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 60% 38%, #fff 0 .16rem, transparent .17rem),
    linear-gradient(135deg, #8f9ff9 0%, #3171ee 55%, #ff7a2f 100%);
  flex: 0 0 auto;
}

.article-content-section{
  padding: 2.25rem 0 3rem;
}

.article-layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  gap: 3rem;
  align-items: start;
}

.article-content{
  min-width: 0;
  color: rgba(30,30,30,.72);
  font-size: 0.93rem;
  line-height: 1.55;
}

.article-content p + p,
.article-content figure + p,
.article-content h2 + p{
  margin-top: 1.25rem;
}

.article-content h2{
  margin-top: 1.65rem;
  color: #111;
  font-size: 1.65rem;
  line-height: 1.15;
  font-weight: 900;
}

.article-featured-image{
  margin: 1.65rem 0 0;
  height: 31rem;
  overflow: hidden;
  background: #0f3b75;
}

.article-featured-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-sidebar{
  display: grid;
  gap: 1.6rem;
  position: sticky;
  top: 1rem;
}

.article-toc h2,
.article-related h2{
  color: #111;
  font-size: 1.15rem;
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.75rem;
}

.article-toc nav{
  display: grid;
  gap: 0.7rem;
}

.article-toc a{
  height: 2.45rem;
  border: 1px solid var(--c-primary);
  background: rgba(255,255,255,.42);
  color: var(--c-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 700;
}

.article-related__list{
  display: grid;
  gap: 1rem;
}

.article-related-card{
  border: 1px solid var(--blog-border);
  background: rgba(255,255,255,.42);
  padding: 0.65rem;
}

.article-related-card img{
  width: 100%;
  height: 8.7rem;
  object-fit: cover;
  background: #0f3b75;
}

.article-related-card h3{
  margin-top: 0.65rem;
  color: var(--c-primary);
  font-size: 1rem;
  line-height: 1.18;
  font-weight: 700;
}

.article-related-card time{
  display: block;
  margin-top: 0.6rem;
  color: rgba(30,30,30,.68);
  font-size: 0.68rem;
  line-height: 1.2;
}

@media (max-width: 1000px){
  .page--blog,
  .page--article{
    --headerH: 4.6rem;
  }

  .blog-category{
    padding: 1.2rem 0 2rem;
  }

  .blog-title-frame{
    margin-bottom: 1rem;
  }

  .blog-title-frame h1{
    font-size: 2rem;
  }

  .blog-grid{
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .blog-post-card{
    min-height: auto;
  }

  .blog-post-card__media{
    height: 11.5rem;
  }

  .article-hero{
    padding: 1.4rem 0 1.7rem;
  }

  .article-hero h1{
    font-size: 2.25rem;
  }

  .article-meta{
    gap: 0.6rem;
  }

  .article-content-section{
    padding: 1.35rem 0 2rem;
  }

  .article-layout{
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .article-featured-image{
    height: 13.5rem;
  }

  .article-sidebar{
    position: static;
  }
}

/* ===================== COUPONS PAGE ===================== */
.page--coupons{
  --crm-border: rgba(49,113,238,.46);
  --crm-border-strong: rgba(49,113,238,.72);
  --crm-panel: rgba(255,255,255,.42);
  --crm-text-muted: rgba(30,30,30,.62);
  --headerH: 5rem;
  background: #f5f5f5;
}

.page--coupons .header__row{
  min-height: var(--headerH);
}

.coupon-page{
  background: #f5f5f5;
  padding-bottom: 2rem;
}

.coupon-hero{
  padding-bottom: 1.05rem;
}

.page--coupons .crm-hero__frame{
  min-height: 7.3rem;
}

.page--coupons .crm-hero__intro h1{
  font-size: 2.08rem;
  line-height: 1.06;
  text-transform: none;
}

.coupon-catalog{
  padding: 0.35rem 0 1.45rem;
}

.coupon-results{
  width: min(100%, 62.2rem);
  margin: 0 auto;
  border: 1px solid var(--crm-border);
  background: rgba(255,255,255,.36);
  padding: 1rem;
}

.coupon-list{
  display: grid;
  gap: 0.75rem;
}

.coupon-card{
  min-height: 7rem;
  border: 1px solid var(--crm-border);
  background: rgba(255,255,255,.56);
  display: grid;
  grid-template-columns: 7.7rem minmax(0, 1fr) 8.8rem;
  gap: 0.85rem;
  align-items: center;
  padding: 0.55rem;
}

.coupon-card__media{
  width: 7.7rem;
  height: 5.75rem;
  border: 1px solid var(--crm-border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.coupon-card__media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
}

.coupon-card__body{
  min-width: 0;
}

.coupon-card h2{
  color: #111;
  font-size: 1.05rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.coupon-card h2 a{
  transition: color var(--dur) var(--ease);
}

.coupon-card h2 a:hover{
  color: var(--c-primary);
}

.coupon-card p{
  margin-top: 0.4rem;
  color: rgba(30,30,30,.62);
  font-size: 0.72rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.coupon-card__button{
  width: 8.65rem;
  height: 2.35rem;
  justify-self: end;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.15;
  font-weight: 800;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.coupon-card__button:hover{
  opacity: .94;
}

.coupon-card__button:active{
  transform: translateY(0.08rem);
}

.coupon-pagination{
  margin-top: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  color: #111;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 700;
}

.coupon-pagination a{
  min-width: 0.8rem;
  height: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.coupon-pagination a.is-active{
  color: var(--c-primary);
}

@media (max-width: 1000px){
  .page--coupons{
    --headerH: 4.6rem;
  }

  .coupon-page{
    padding-bottom: 1rem;
  }

  .page--coupons .crm-hero__intro h1{
    font-size: 1.85rem;
  }

  .coupon-catalog{
    padding-bottom: 0.95rem;
  }

  .coupon-results{
    padding: 0.65rem;
  }

  .coupon-card{
    grid-template-columns: 6.2rem minmax(0, 1fr);
    gap: 0.65rem;
    min-height: auto;
  }

  .coupon-card__media{
    width: 6.2rem;
    height: 5.6rem;
  }

  .coupon-card h2{
    font-size: 1rem;
  }

  .coupon-card p{
    font-size: 0.76rem;
    -webkit-line-clamp: 4;
  }

  .coupon-card__button{
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    height: 2.7rem;
  }
}

/* ===================== CALENDAR PAGE ===================== */
.page--calendar{
  --crm-border: rgba(49,113,238,.46);
  --crm-border-strong: rgba(49,113,238,.72);
  --crm-panel: rgba(255,255,255,.42);
  --crm-text-muted: rgba(30,30,30,.62);
  --headerH: 5rem;
  background: #f5f5f5;
}

.page--calendar .header__row{
  min-height: var(--headerH);
}

.calendar-page{
  background: #f5f5f5;
  padding-bottom: 2rem;
}

.calendar-hero{
  padding: 2.05rem 0 3.2rem;
}

.calendar-breadcrumb{
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(30,30,30,.68);
  font-size: 0.78rem;
  line-height: 1.3;
  margin-bottom: 1.8rem;
}

.calendar-breadcrumb a{
  color: rgba(30,30,30,.76);
  text-decoration: underline;
  text-underline-offset: 0.12rem;
}

.calendar-hero h1{
  color: #1d1d1d;
  text-align: center;
  font-size: 2.35rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.calendar-plugin-slot{
  width: min(100%, 61.25rem);
  min-height: 26.25rem;
  margin: 1.7rem auto 0;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.calendar-plugin-slot p{
  color: #1d1d1d;
  font-size: 2.1rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

.calendar-events{
  padding: 0 0 3.45rem;
}

.calendar-events__layout{
  width: min(100%, 61.25rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 18rem minmax(0, 1fr);
  gap: 3.6rem;
  align-items: start;
}

.calendar-filter-form{
  display: grid;
  gap: 1.2rem;
}

.calendar-filter-card,
.calendar-select{
  border: 1px solid var(--crm-border);
  background: rgba(255,255,255,.42);
}

.calendar-filter-card{
  margin: 0;
  padding: 0.85rem 0.75rem 0.78rem;
}

.calendar-filter-card legend{
  display: block;
  width: 100%;
  color: #111;
  font-size: 0.86rem;
  line-height: 1.2;
  font-weight: 700;
  padding-bottom: 0.72rem;
}

.calendar-filter-card label{
  min-height: 1.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  color: rgba(30,30,30,.84);
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 500;
}

.calendar-filter-card label + label{
  margin-top: 0.16rem;
}

.calendar-filter-card input{
  appearance: none;
  width: 1.05rem;
  height: 1.05rem;
  border: 1px solid var(--crm-border);
  background: #fff;
  flex: 0 0 auto;
}

.calendar-filter-card input:checked{
  background:
    linear-gradient(var(--c-primary), var(--c-primary)) center / 0.5rem 0.5rem no-repeat,
    #fff;
}

.calendar-select{
  height: 2.9rem;
  position: relative;
  display: block;
}

.calendar-select::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 0.8rem;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.calendar-select select{
  width: 100%;
  height: 100%;
  appearance: none;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0 2rem 0 0.75rem;
}

.calendar-results{
  min-width: 0;
  border: 1px solid var(--crm-border);
  background: rgba(255,255,255,.36);
  padding: 1rem;
}

.calendar-list{
  display: grid;
  gap: 0.75rem;
}

.calendar-card{
  min-height: 8.9rem;
  border: 1px solid var(--crm-border);
  background: rgba(255,255,255,.55);
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr) 10.6rem;
  gap: 0.75rem;
  align-items: start;
  padding: 0.55rem;
}

.calendar-card__media{
  width: 8rem;
  height: 7.7rem;
  border: 1px solid var(--crm-border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.calendar-card__media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.85rem;
}

.calendar-card__body{
  min-width: 0;
  padding-top: 0.48rem;
}

.calendar-card h2{
  color: #111;
  font-size: 1.45rem;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.calendar-card h2 a{
  transition: color var(--dur) var(--ease);
}

.calendar-card h2 a:hover{
  color: var(--c-primary);
}

.calendar-card dl{
  margin: 0.7rem 0 0;
  display: grid;
  gap: 0.25rem;
}

.calendar-card dl div{
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  min-width: 0;
}

.calendar-card dt,
.calendar-card dd{
  margin: 0;
  color: #111;
  font-size: 0.74rem;
  line-height: 1.2;
}

.calendar-card dt{
  font-weight: 900;
}

.calendar-card dd{
  font-weight: 600;
}

.calendar-card__button{
  justify-self: end;
  width: 10.2rem;
  height: 2.5rem;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.15;
  font-weight: 800;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.calendar-card__button:hover{
  opacity: .94;
}

.calendar-card__button:active{
  transform: translateY(0.08rem);
}

.calendar-pagination{
  margin-top: 1.55rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  color: #111;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 700;
}

.calendar-pagination a{
  min-width: 0.8rem;
  height: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.calendar-pagination a.is-active{
  color: var(--c-primary);
}

.calendar-note{
  margin-top: 1.2rem;
  color: rgba(30,30,30,.62);
  font-size: 0.68rem;
  line-height: 1.35;
}

.calendar-about{
  padding: 0.7rem 0 5.5rem;
}

@media (max-width: 1000px){
  .page--calendar{
    --headerH: 4.6rem;
  }

  .calendar-page{
    padding-bottom: 1rem;
  }

  .calendar-hero{
    padding: 1.25rem 0 1.7rem;
  }

  .calendar-breadcrumb{
    margin-bottom: 1.1rem;
  }

  .calendar-hero h1{
    font-size: 2rem;
  }

  .calendar-plugin-slot{
    min-height: 13.5rem;
    margin-top: 1.1rem;
    padding: 1rem;
  }

  .calendar-plugin-slot p{
    font-size: 1.35rem;
  }

  .calendar-events{
    padding-bottom: 1.35rem;
  }

  .calendar-events__layout{
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .calendar-filter-form{
    gap: 0.75rem;
  }

  .calendar-filter-card{
    padding: 0.75rem;
  }

  .calendar-results{
    padding: 0.65rem;
  }

  .calendar-card{
    grid-template-columns: 6.2rem minmax(0, 1fr);
    gap: 0.65rem;
    min-height: auto;
  }

  .calendar-card__media{
    width: 6.2rem;
    height: 6.2rem;
  }

  .calendar-card h2{
    font-size: 1.15rem;
  }

  .calendar-card__button{
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    height: 2.75rem;
  }

  .calendar-about{
    padding-bottom: 2rem;
  }
}

.softio-product-search{
  width:100%;
  min-height:52px;
  border:1px solid rgba(24, 34, 50, .14);
  border-radius:14px;
  padding:0 16px;
  font:inherit;
  outline:none;
  background:#fff;
}
.softio-filter-button{
  width:100%;
  min-height:48px;
  border:0;
  border-radius:14px;
  margin-top:12px;
  background:#111827;
  color:#fff;
  font:inherit;
  font-weight:700;
  cursor:pointer;
}
.softio-category-list{
  margin-top:18px;
}
.softio-filter-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
  color:inherit;
  text-decoration:none;
  border-bottom:1px solid rgba(24, 34, 50, .08);
}
.softio-filter-link:last-child{
  border-bottom:0;
}
.softio-filter-link strong{
  min-width:32px;
  height:32px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(24, 34, 50, .06);
  font-size:12px;
}
.softio-filter-link.is-active span,
.softio-filter-link:hover span{
  color:#111827;
  font-weight:700;
}
.softio-filter-link.is-active strong,
.softio-filter-link:hover strong{
  background:#111827;
  color:#fff;
}
.softio-card-terms{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:10px 0 0;
}
.softio-card-terms a{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  background:rgba(24, 34, 50, .06);
  padding:5px 10px;
  color:inherit;
  text-decoration:none;
  font-size:12px;
  line-height:1.2;
}
.softio-card-terms a:hover{
  background:#111827;
  color:#fff;
}
.softio-product-terms{
  margin-top:18px;
}
.softio-empty-products{
  padding:32px;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(24, 34, 50, .08);
}
.crm-pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
@media (max-width: 768px){
  .softio-filter-button{min-height:44px;}
}
