/* ==================================================
   MEDIC INSTITUTE — GLOBAL CLEAN CSS
   Header + Burger + Footer + Lead Form
================================================== */

/* ------------------------------
   HEADER
------------------------------ */

.med-header,
.med-header *,
.med-footer-v2,
.med-footer-v2 *,
.mi-lead-section,
.mi-lead-section * {
  box-sizing: border-box;
}

.med-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(219,229,240,.8);
  backdrop-filter: blur(14px);
}

.med-header__inner {
  width: min(calc(100% - 32px), 1240px);
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.med-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: #003087;
  text-decoration: none;
  flex-shrink: 0;
}

.med-logo img {
  max-height: 90px;
  width: auto;
  display: block;
}

.med-logo__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #003087, #0a4fc2);
  box-shadow: 0 10px 30px rgba(0,48,135,.08);
  font-size: 20px;
}

.med-nav {
  display: flex;
  align-items: center;
}

.med-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.med-menu li {
  margin: 0;
  padding: 0;
}

.med-menu a {
  font-size: 15px;
  color: #304154;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s ease;
}

.med-menu a:hover {
  color: #003087;
}

.med-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.med-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.med-btn--primary {
  background: #003087;
  color: #fff;
}

.med-btn--light {
  background: #fff;
  color: #003087;
  box-shadow: 0 10px 30px rgba(0,48,135,.08);
}

.med-burger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid #dbe5f0;
  background: #fff;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.med-burger span,
.med-burger::before,
.med-burger::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #003087;
  transition: .3s ease;
}

.med-burger span {
  top: 23px;
}

.med-burger::before {
  top: 16px;
}

.med-burger::after {
  top: 30px;
}

/* Burger mobile */
@media (max-width: 920px) {
  .med-header {
    z-index: 999999 !important;
  }

  .med-header__inner {
    min-height: 74px;
    width: min(calc(100% - 20px), 1240px);
    position: relative !important;
  }

  .med-logo img {
    max-height: 74px !important;
  }

  .med-header__actions {
    display: none !important;
  }

  #med-burger {
    display: inline-block !important;
    position: relative !important;
    z-index: 1000000 !important;
  }

  #med-mobile-nav {
    display: none !important;
  }

  #med-mobile-nav.is-open {
    display: flex !important;
    position: absolute !important;
    top: 74px !important;
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    padding: 20px !important;
    border-radius: 20px !important;
    background: #fff !important;
    box-shadow: 0 18px 40px rgba(0,48,135,.14) !important;
    border: 1px solid #dbe5f0 !important;
    z-index: 999999 !important;
  }

  #med-mobile-nav.is-open .med-menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  #med-mobile-nav.is-open .med-menu li,
  #med-mobile-nav.is-open .med-menu a {
    display: block !important;
    width: 100% !important;
  }

  #med-burger.is-active span {
    opacity: 0 !important;
  }

  #med-burger.is-active::before {
    top: 23px !important;
    transform: rotate(45deg) !important;
  }

  #med-burger.is-active::after {
    top: 23px !important;
    transform: rotate(-45deg) !important;
  }
}

/* ------------------------------
   FOOTER
------------------------------ */

.med-footer-v2 {
  background:
    radial-gradient(circle at 20% 10%, rgba(22,119,255,.28), transparent 32%),
    radial-gradient(circle at 80% 30%, rgba(90,200,250,.12), transparent 30%),
    linear-gradient(135deg, #071B3B 0%, #031124 100%);
  color: #fff;
  padding: 70px 0 28px;
  overflow: hidden;
}

.med-footer-v2__container {
  width: min(calc(100% - 32px), 1240px);
  margin: 0 auto;
}

.med-footer-v2__hero,
.med-footer-v2__main,
.med-footer-v2__subscribe {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.med-footer-v2__hero {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 28px;
  padding: 34px;
  margin-bottom: 18px;
}

.med-footer-v2__brand {
  display: flex;
  gap: 18px;
  align-items: center;
}

.med-footer-v2 h3,
.med-footer-v2 h4,
.med-footer-v2 p {
  color: aliceblue;    
  margin: 0;
}

.med-footer-v2 h3 {
  color: #fff;
  max-width: 760px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.med-footer-v2 p {
  color: rgba(255,255,255,.68);
  margin-top: 10px;
}

.med-footer-v2__cta {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}

.med-footer-v2__cta h4 {
  font-size: 18px;
  color: aliceblue;
  margin-bottom: 16px;
}

.med-footer-v2__cta a,
.med-footer-v2__subscribe button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1677FF, #005BEA);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(22,119,255,.28);
}

.med-footer-v2__main {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.05fr;
  gap: 24px;
  padding: 34px;
  margin-bottom: 18px;
}

.med-footer-v2__col h4,
.med-footer-v2__contact h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #5AC8FA;
  margin-bottom: 18px;
}

.med-footer-v2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.med-footer-v2 a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
  transition: .25s ease;
}

.med-footer-v2 a:hover {
  color: #5AC8FA;
}

.med-footer-v2__contact {
  display: grid;
  align-content: start;
  gap: 12px;
}

.med-footer-v2__contact-content {
  display: grid;
  gap: 12px;
}

.med-footer-v2__contact-content > a {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.med-footer-v2__socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.med-footer-v2__socials a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-weight: 800;
}

.med-footer-v2__subscribe {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 24px;
  align-items: center;
  padding: 28px 34px;
  margin-bottom: 20px;
}

.med-footer-v2__subscribe h4 {
  color: #fff;
  font-size: 24px;
  letter-spacing: -.03em;
}

.med-footer-v2__subscribe form {
  display: flex;
  gap: 12px;
}

.med-footer-v2__subscribe input {
  width: 100%;
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 0 18px;
  outline: none;
}

.med-footer-v2__subscribe input::placeholder {
  color: rgba(255,255,255,.48);
}

.med-footer-v2__notice {
  margin: 0 0 20px;
  padding: 20px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
}

.med-footer-v2__notice p {
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.7;
}

.med-footer-v2__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.5);
  font-size: 13px;
}

.med-footer-v2__bottom div {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.med-footer-v2__toggle {
  display: none;
}

.med-footer-v2__microlegal {
  margin-top: 12px;
  text-align: center;
  color: rgba(255,255,255,.45);
  font-size: 12px;
  line-height: 1.6;
}

.med-footer-v2__subscribe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 56px;
  padding: 0 28px;
  border-radius: 16px;
  background: #1677FF;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: .25s ease;
}

.med-footer-v2__subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(22,119,255,.35);
}

@media (max-width: 820px) {
  .med-footer-v2 {
    padding: 44px 0 24px;
  }

  .med-footer-v2__container {
    width: min(calc(100% - 20px), 1240px);
  }

  .med-footer-v2__hero,
  .med-footer-v2__subscribe {
    border-radius: 22px;
  }

  .med-footer-v2__hero {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .med-footer-v2__brand {
    align-items: flex-start;
  }

  .med-footer-v2 h3 {
    font-size: 24px;
  }

  .med-footer-v2__main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
    margin-bottom: 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .med-footer-v2__col,
  .med-footer-v2__contact {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.055);
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
  }

  .med-footer-v2__toggle {
    display: flex;
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    cursor: pointer;
  }

  .med-footer-v2__toggle::after {
    content: "НАЖАТЬ";
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(90,200,250,.14);
    color: #5AC8FA;
    font-size: 11px;
    letter-spacing: .06em;
  }

  .med-footer-v2__col h4,
  .med-footer-v2__contact h4 {
    display: none;
  }

  .med-footer-v2__col ul,
  .med-footer-v2__contact-content {
    display: none !important;
    padding: 0 18px 18px;
  }

  .med-footer-v2__col.is-open ul,
  .med-footer-v2__contact.is-open .med-footer-v2__contact-content {
    display: grid !important;
  }

  .med-footer-v2__col.is-open .med-footer-v2__toggle::after,
  .med-footer-v2__contact.is-open .med-footer-v2__toggle::after {
    content: "ОТКРЫТО";
    background: rgba(22,119,255,.28);
    color: #fff;
  }

  .med-footer-v2__subscribe {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .med-footer-v2__subscribe form {
    flex-direction: column;
  }

  .med-footer-v2__subscribe button {
    width: 100%;
  }

  .med-footer-v2__bottom {
    display: grid;
    gap: 14px;
  }

  .med-footer-v2__bottom div {
    display: grid;
    gap: 8px;
  }
}

/* ------------------------------
   UNIVERSAL LEAD FORM
------------------------------ */

.mi-lead-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.18) 0, transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(0,166,81,.15) 0, transparent 22%),
    linear-gradient(135deg, #00286f 0%, #003087 48%, #0b59d7 100%);
  color: #fff;
}

.mi-lead-container {
  width: min(calc(100% - 32px), 1240px);
  margin: 0 auto;
}

.mi-lead-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 30px;
  align-items: center;
}

.mi-lead-copy {
  position: relative;
  z-index: 1;
}

.mi-lead-eyebrow {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.mi-lead-copy h2 {
  margin: 18px 0 14px;
  max-width: 680px;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.mi-lead-copy p {
  margin: 0;
  max-width: 580px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

.mi-lead-panel {
  position: relative;
  z-index: 1;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 70px rgba(0,0,0,.16);
  color: #17202a;
}

.mi-lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mi-lead-field {
  display: grid;
  gap: 8px;
}

.mi-lead-field--full {
  grid-column: 1 / -1;
}

.mi-lead-field label {
  color: #35516c;
  font-size: 14px;
  font-weight: 700;
}

.mi-lead-field input,
.mi-lead-field select,
.mi-lead-field textarea,
.mi-lead-panel input,
.mi-lead-panel select,
.mi-lead-panel textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #dbe5f0;
  border-radius: 16px;
  background: #fff;
  color: #17202a;
  outline: none;
}

.mi-lead-field textarea,
.mi-lead-panel textarea {
  min-height: 120px;
  padding: 16px;
  resize: vertical;
}

.mi-lead-field input:focus,
.mi-lead-field select:focus,
.mi-lead-field textarea:focus,
.mi-lead-panel input:focus,
.mi-lead-panel select:focus,
.mi-lead-panel textarea:focus {
  border-color: rgba(0,48,135,.4);
  box-shadow: 0 0 0 4px rgba(0,48,135,.08);
}

.mi-lead-btn,
.mi-lead-panel input[type="submit"],
.mi-lead-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 16px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  background: #003087;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease;
}

.mi-lead-btn:hover,
.mi-lead-panel input[type="submit"]:hover,
.mi-lead-panel button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,48,135,.18);
}

.mi-lead-note {
  margin-top: 14px;
  color: #5c6b7a;
  font-size: 13px;
  line-height: 1.5;
}

.mi-lead-note a {
  color: #003087;
  font-weight: 700;
}

.mi-form-success {
  margin-bottom: 20px;
  padding: 18px 22px;
  border-radius: 18px;
  background: #eefbf4;
  border: 1px solid #b7ebc8;
  color: #18794e;
  font-weight: 600;
}

@media (max-width: 920px) {
  .mi-lead-section {
    padding: 72px 0;
  }

  .mi-lead-container {
    width: min(calc(100% - 20px), 1240px);
  }

  .mi-lead-grid {
    grid-template-columns: 1fr;
  }

  .mi-lead-form-grid {
    grid-template-columns: 1fr;
  }

  .mi-lead-btn,
  .mi-lead-panel input[type="submit"],
  .mi-lead-panel button {
    width: 100%;
  }
}




/*Стили дл плашек на блоки*/


.med-icon-badge {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 24%, rgba(255,255,255,.75), transparent 28%),
    linear-gradient(135deg, #003087 0%, #1677FF 72%, #5AC8FA 100%);
  border: 1px solid rgba(22,119,255,.18);
  box-shadow:
    0 16px 34px rgba(0,48,135,.18),
    inset 0 1px 0 rgba(255,255,255,.28);
}

.med-icon-badge::before,
.med-icon-badge::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 999px;
}

.med-icon-badge::before {
  width: 28px;
  height: 7px;
  left: 17px;
  top: 28px;
}

.med-icon-badge::after {
  width: 7px;
  height: 28px;
  left: 28px;
  top: 17px;
}

.med-icon-badge--book::before,
.med-icon-badge--docs::before,
.med-icon-badge--online::before,
.med-icon-badge--diagnostics::before {
  width: 30px;
  height: 22px;
  left: 16px;
  top: 20px;
  border-radius: 7px;
  background: rgba(255,255,255,.92);
}

.med-icon-badge--book::after,
.med-icon-badge--docs::after,
.med-icon-badge--online::after,
.med-icon-badge--diagnostics::after {
  width: 22px;
  height: 3px;
  left: 20px;
  top: 31px;
  background: #1677FF;
}

.med-icon-badge--shield::before,
.med-icon-badge--expert::before,
.med-icon-badge--doctor::before,
.med-icon-badge--nurse::before {
  width: 30px;
  height: 34px;
  left: 16px;
  top: 14px;
  border-radius: 16px 16px 20px 20px;
  background: rgba(255,255,255,.92);
}

.med-icon-badge--shield::after,
.med-icon-badge--expert::after,
.med-icon-badge--doctor::after,
.med-icon-badge--nurse::after {
  width: 14px;
  height: 4px;
  left: 24px;
  top: 31px;
  background: #1677FF;
}

.med-icon-badge--target::before,
.med-icon-badge--therapy::before,
.med-icon-badge--cardio::before,
.med-icon-badge--pediatrics::before,
.med-icon-badge--clinic::before,
.med-icon-badge--dental::before,
.med-icon-badge--nursing::before,
.med-icon-badge--pharma::before {
  width: 34px;
  height: 34px;
  left: 14px;
  top: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
}

.med-icon-badge--target::after,
.med-icon-badge--therapy::after,
.med-icon-badge--cardio::after,
.med-icon-badge--pediatrics::after,
.med-icon-badge--clinic::after,
.med-icon-badge--dental::after,
.med-icon-badge--nursing::after,
.med-icon-badge--pharma::after {
  width: 14px;
  height: 14px;
  left: 24px;
  top: 24px;
  border-radius: 50%;
  background: #1677FF;
}



/*Стили для FAQ на главной*/


.med-faq-modern{
  background:#fff;
  border:1px solid rgba(0,48,135,.08);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,48,135,.06);
}

.med-faq-modern + .med-faq-modern{
  margin-top:14px;
}

.med-faq-modern summary{
  list-style:none;
  cursor:pointer;
  padding:24px 72px 24px 24px;
  font-size:18px;
  font-weight:700;
  color:#17202A;
  position:relative;
}

.med-faq-modern summary::-webkit-details-marker{
  display:none;
}

.med-faq-modern summary::after{
  content:"+";
  position:absolute;
  right:24px;
  top:50%;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  border-radius:50%;
  background:#eef5ff;
  color:#003087;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:700;
}

.med-faq-modern[open] summary::after{
  content:"−";
}

.med-faq-modern__content{
  padding:0 24px 24px;
}

.med-faq-modern__content p{
  margin:0;
  color:#5c6b7a;
  line-height:1.8;
}


/*Стили блока статей на хабах*/

.akk-container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;







.akk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 700;
}

.akk-eyebrow--dark {
  background: var(--soft-blue);
  border: 1px solid #cfe1fb;
  color: var(--blue);
}



.akk-knowledge {
  background:
    radial-gradient(circle at 8% 0%, rgba(10,79,194,.08) 0, transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.akk-knowledge__head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  margin-bottom: 28px;
}

.akk-knowledge__head h2 {
  margin: 16px 0 12px;
  max-width: 760px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.akk-knowledge__head p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.akk-knowledge__all {
  flex: 0 0 auto;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(0,48,135,.14);
}

.akk-knowledge__scroll {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.akk-knowledge-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.akk-knowledge-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0,48,135,.18);
}

.akk-knowledge-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.akk-knowledge-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.akk-knowledge-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.akk-knowledge-card h3 a {
  color: var(--text);
}

.akk-knowledge-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.akk-knowledge-card__link {
  margin-top: auto;
  padding-top: 20px;
  color: var(--blue) !important;
  font-weight: 800;
}

.akk-knowledge__pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.akk-knowledge__pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  font-weight: 800;
}

.akk-knowledge__pagination .page-numbers.current {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.akk-knowledge__empty {
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .akk-knowledge__scroll {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .akk-knowledge__head {
    display: grid;
  }

  .akk-knowledge__all {
    width: 100%;
    justify-content: center;
  }

  .akk-knowledge__scroll {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .akk-knowledge-card {
    min-width: 84%;
    scroll-snap-align: start;
  }
}

