body {
  padding-top: 86px !important;
  margin: 0;
  font-family: 'Inter', 'Fira Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6em;
  color: #1f2937;
  background-color: #ffffff;
}

:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --dark-color: #1f2937;
  --gray-color: #3b4240;
  --gray-light: #e5e7eb;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  --radius-md: 0.5rem;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1200px;
}

.fop2-page-container {
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

.fop2-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  padding: var(--spacing-sm) 0;
}

.fop2-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
}

.logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.fop2-logo {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
}

.fop2-logo img {
  display: block;
  width: 44px;
  height: 45px !important;
  object-fit: contain;
}

.logo-subtitle,
.logo-subtitle:hover {
  margin-left: 12px;
  margin-right: 8px;
  font-family: 'Gochi Hand', cursive;
  font-size: 1.75rem;
  color: var(--gray-color);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.fop2-nav-panel {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-color);
  padding: 0.25rem 0.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: var(--dark-color);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--primary-color);
}

.nav-menu li a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.nav-cta {
  margin-left: var(--spacing-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff !important;
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pd5 {
  padding: 0.5rem 0.875rem !important;
}

.fop2-doc-search {
  margin: 0;
  min-width: 220px;
}

.footer {
  background-color: var(--dark-color);
  color: #ffffff;
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
  margin-top: var(--spacing-xxl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.fop2-logo-footer {
  width: 32px;
  height: 32px;
}

.fop2-logo-footer img {
  width: 30px !important;
  height: 25px !important;
}

.logo-subtitle-footer {
  font-family: 'Gochi Hand', cursive;
  font-size: 1rem;
  color: var(--gray-light);
  margin-left: 4px;
}

.footer-description {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: var(--spacing-md);
}

.footer-description-small {
  color: #9ca3af;
  font-size: 0.6rem;
  margin-bottom: var(--spacing-md);
  margin-top: 1rem;
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
}

.social-link {
  width: 36px;
  height: 36px;
  background-color: #374151;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
}

.footer-title {
  font-family: 'Poppins', 'Fira Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: #ffffff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin: 0;
  padding: 0;
}

.footer-links li a {
  color: #9ca3af;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: var(--spacing-lg);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
}

.footer-copyright,
.footer-legal a {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-legal a:hover {
  color: #ffffff;
  text-decoration: none;
}

.kb-article {
  max-width: 900px;
  margin: 0 auto;
}

.kb-article h1,
.kb-index__title {
  font-family: 'Poppins', 'Fira Sans', sans-serif;
  color: var(--dark-color);
}

.kb-article .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: var(--spacing-lg);
}

.article-nav {
  margin: var(--spacing-xl) 0 0;
}

.article-nav a {
  color: var(--primary-color);
  font-weight: 600;
}

@media (max-width: 992px) {
  body {
    padding-top: 78px !important;
  }

  .nav-toggle {
    display: block;
  }

  .fop2-nav-panel {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    background-color: #ffffff;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: left 0.3s ease;
    gap: var(--spacing-md);
    z-index: 999;
  }

  .fop2-nav-panel.active {
    left: 0;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-cta {
    margin-left: 0;
  }

  .fop2-doc-search {
    min-width: 0;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .fop2-page-container,
  .container {
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
  }

  .logo-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 380px) {
  .logo-subtitle {
    display: none;
  }
}

pre {
    position: relative;
    color: #ffffff;
    padding: 0.5rem;
    margin: 1.2rem 0;
    background: #282c34;
    border: 0;
    border-radius: 2px;
    line-height: 1.4rem;
}

em {
  font-family: "Patrick Hand"
}

.headerDoc {
  color: #005580;
}

@media (max-width: 767px) {
    #toc {
        position: relative;
        width: 100%;
        margin: 0px 0px 20px 0px;
     }
}

div.notices.warning p:first-of-type {
    border-top: 30px solid rgba(217, 83, 79, 0.8);
    background: #FAE2E2;
}

div.notices.note p:first-of-type {
    border-top: 30px solid #6AB0DE;
    background: #E7F2FA;
}

div.notices.tip p:first-of-type {
    border-top: 30px solid rgba(92, 184, 92, 0.8);
    background: #E6F9E6;
}

div.notices.info p:first-of-type {
    border-top: 30px solid #F0B37E;
    background: #FFF2DB;
}

div.notices.warning p {
    border-top: none;
    background: #FAE2E2;
}

div.notices.note p {
    border-top: none;
    background: #E7F2FA;
}

div.notices.info p {
    border-top: none;
    background: #FFF2DB;
}

div.notices.tip p {
    border-top: none;
    background: #E6F9E6;
}

div.notices p {
    padding: 15px;
    display: block;
    font-size: 1rem;
    margin-top: 0rem;
    margin-bottom: 0rem;
    color: #666;
}

div.notices {
    margin: 2rem 0;
    position: relative;
}

div.notices p:first-child:before {
    position: absolute;
    top: 2px;
    color: #fff;
    font-size: 1rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f0eb";
    left: 10px;
}

div.notices.info p:first-child:after {
    content: 'Info';
    position: absolute;
    top: 2px;
    color: #fff;
    left: 2rem;
}

div.notices.warning p:first-child:after {
  content: 'Warning';
  position: absolute;
  top: 2px;
  color: #fff;
  left: 2rem;
}


div.notices.note p:first-child:after {
  content: 'Note';
  position: absolute;
  top: 2px;
  color: #fff;
  left: 2rem;
}

div.notices.tip p:first-child:after {
  content: 'Tip';
  position: absolute;
  top: 2px;
  color: #fff;
  left: 2rem;
}


.shadowimage {
  border: 2px solid #e6e6e6 !important;
  padding: 2px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 900px;
  text-align:center;
  margin: 3rem auto;
  display: block;
  text-align: center;
}

kbd {
  background-color: #f7f7f7;
  border: 1px solid #ccc;
  color: #333;
  font-size: 1ref;
  line-height: 1.4;
  text-shadow: 0 1px 0 #fff;
  display: inline-block;
  padding: .1em .6em;
  margin: 0 .1em;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(0,0,0,.2), 0 0 0 2px #fff inset;
  border-radius: 3px;
}


kbd {
  padding: 2px 2px 0px 2px !important;
}

blockquote {
  background-color: #f0f0e0;
  border: 1px solid #ccc;
  border-left: 10px solid #bbb;
  padding-bottom: 1em;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 5px 5px 0px 10px;
}

p code {
  padding: 6px !important;
  white-space: nowrap;
  color: rgb(248,248,242);
  background: rgb(39,40,34);
  border: 0;
  border-radius:2px;
  padding: 0px 2px;
}


.divider {
position: relative;
margin-top: 50px;
margin-bottom: 50px;
height: 1px;
}

.div-transparent:before {
content: "";
position: absolute;
top: 0;
left: 5%;
right: 5%;
width: 90%;
height: 3px;
background-image: linear-gradient(to right, transparent, rgb(48,49,51), transparent);
}

.div-arrow-down:after {
content: "";
position: absolute;
z-index: 1;
top: -7px;
left: calc(50% - 7px);
width: 14px;
height: 14px;
transform: rotate(45deg);
background-color: white;
border-bottom: 1px solid rgb(48,49,51);
border-right: 1px solid rgb(48,49,51);
}

.div-tab-down:after {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: calc(50% - 10px);
width: 20px;
height: 14px;
background-color: white;
border-bottom: 1px solid rgb(48,49,51);
border-left: 1px solid rgb(48,49,51);
border-right: 1px solid rgb(48,49,51);
border-radius: 0 0 8px 8px;
}

.div-stopper:after {
content: "";
position: absolute;
z-index: 1;
top: -6px;
left: calc(50% - 7px);
width: 14px;
height: 12px;
background-color: white;
border-left: 1px solid rgb(48,49,51);
border-right: 1px solid rgb(48,49,51);
}

.div-dot:after {
content: "";
position: absolute;
z-index: 1;
top: -9px;
left: calc(50% - 9px);
width: 18px;
height: 18px;
background-color: goldenrod;
border: 1px solid rgb(48,49,51);
border-radius: 50%;
box-shadow: inset 0 0 0 2px white, 0 0 0 4px white;
}

img.logo { margin: 0 !important; }

.container-fluid img {
    margin: 3rem auto;
    display: block;
    text-align: center;
}
.container-fluid img.border {
    border: 2px solid #e6e6e6 !important;
    padding: 2px;
}

.container-fluid img.shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

p em code {
  background: inherit;
  color: #111;
  border: 0;
  font-weight: bold;
}

hr {
margin: 30px 0 20px 0;
}

code, kbd, pre, samp {
    font-family: "Consolas", menlo, monospace;
    font-size: 92%;
}
code {
    border-radius: 2px;
    white-space: nowrap;
    color: #5e5e5e;
    background: #FFF7DD;
    border: 1px solid #fbf0cb;
    padding: 0px 2px;
}
code + .copy-to-clipboard {
    margin-left: -1px;
    border-left: 0 !important;
    font-size: inherit !important;
    vertical-align: middle;
    height: 21px;
    top: 0;
}

pre code {
    color: whitesmoke;
    background: inherit;
    white-space: inherit;
    border: 0;
    padding: 0;
    margin: 0;
    font-size: 15px;
}


.copy-to-clipboard {
    background-image: url(../images/clippy.svg);
    background-position: 50% 50%;
    background-size: 16px 16px;
    background-repeat: no-repeat;
    width: 27px;
    height: 1.45rem;
    top: -1px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    color: #5e5e5e;
    background-color: #FFF7DD;
    margin-left: -.2rem;
    cursor: pointer;
    border-radius: 0 2px 2px 0;
    margin-bottom: 1px;
}
.copy-to-clipboard:hover {
    background-color: #E8E2CD;
}
pre .copy-to-clipboard {
    position: absolute;
    right: 4px;
    top: 4px;
    background-color: #C1C4C6;
    color: #ccc;
    border-radius: 2px;
}
pre .copy-to-clipboard:hover {
    background-color: #00bdf3;
    color: #fff;
}

.navbar .brand {
  font-family: 'Patrick Hand', cursive;
  color: #354059;
  font-size: 1.5em;
}

a.h3:hover { text-decoration: none;}

.tocify-header {
    display:block;
}

.tocify-header > li > a, .nav-list .nav-header {
    margin: 0px;
}

.tocify-header > li > a {
    padding: 3px 25px;
    display: block;
    color: #0088cc !important;
}

.tocify-header > li > a {
    margin-right: -15px;
    margin-left: -15px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.tocify-subheader > li > a {
    padding: 3px 25px;
    display: block;
    color: #0088cc !important;
}

.tocify-header > li > a:hover, .nav > li > a:focus {
    text-decoration: none;
    background-color: #eeeeee;
}


.tocify-subheader > li > a {
    margin-right: -15px;
    margin-left: -15px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.nav-list > .active > a, .nav-list > .active > a:hover, .nav-list > .active > a:focus {
    color: #ffffff !important;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
    background-color: #0088cc;
}

nav {
    border: 1px solid #d4d4d4;
}

.navbar {
padding: 0 0.5rem;
}

.noborder { border: 0 !important;}

.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  margin: 10px 0;
  font-family: inherit;
  color: #354059;
  text-rendering: optimizelegibility;
}

.navbar .brand:hover, .navbar .brand:focus {
    text-decoration: none;
}

.cards-section {
  padding: 20px 0;
  background: #f9f9fb;
}

.cards-section .title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
}

.cards-section .intro {
  margin: 0 auto;
  max-width: 800px;
  margin-bottom: 30px;
  color: #616670;
}

.cards-section .cards-wrapper {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.cards-section .item {
  margin-bottom: 30px;

}

.cards-section .item .icon-holder {
  margin-bottom: 15px;
}

.cards-section .item .icon {
  font-size: 36px;
}

.cards-section .item .title {
  font-size: 1.5rem;
  font-weight: 600;
}

.cards-section .item .intro {
  margin-bottom: 15px;
}

.tile {
  border-top: 8px solid #343537;
  background-color: #fff;
  box-shadow: 0.5px 2px 4px 0 #bdbdbd;
  width: 100%;
  height: 220px;
  margin: 10px;
  padding: 10px;
  -webkit-transition: 250ms;
  transition: 250ms;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  will-change: transform;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.tile .tile-title {
  font-size: 20px;
  letter-spacing: .4px;
  color: #202020;
  height: 89px;
  width: 100%;
  margin: 0px;
  padding: 0px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: auto;
  align-self: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.tile .tile-description {
  font-size: 14px;
  letter-spacing: .2px;
  line-height: 1.25;
  color: #757575;
  height: 89px;
  width: 100%;
  margin: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: auto;
  align-self: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
a.tile:hover { text-decoration: none; }
.tile:hover {
  -webkit-transform: translate3d(0,-6px,0);
  transform: translate3d(0,-6px,0);
}

.tile-divider {
  height: 2px;
  width: 100%;
  margin: 0 5px 10px 5px;
  border: .5px solid #343537;
  background-color: #343537;
  -ms-flex-item-align: auto;
  align-self: auto;
}

.cards-section .item-inner {
  border-top: 8px solid #343537;
  box-shadow: 0.5px 2px 4px 0 #bdbdbd;

  padding: 45px 30px;
  background: #fff;
  position: relative;

  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  _height: 100%;
}

.cards-section .item-inner .alink {
  position: absolute;
  width: 100%;
  _height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.cards-section .item-inner:hover {
  background: #f5f5f5;
}

.cards-section .item-primary .item-inner {
  border-top: 3px solid #40babd;
}

.cards-section .item-primary .item-inner:hover .title {
  color: #2d8284;
}

.cards-section .item-primary .icon {
  color: #40babd;
}

.cards-section .item-green .item-inner {
  border-top: 3px solid #75c181;
  border-bottom: 1px solid #ddd;
}

.cards-section .item-green .item-inner:hover .title {
  color: #48a156;
}

.cards-section .item-green .icon {
  color: #75c181;
}

.cards-section .item-blue .item-inner {
  border-top: 3px solid #58bbee;
}

.cards-section .item-blue .item-inner:hover .title {
  color: #179de2;
}

.cards-section .item-blue .icon {
  color: #58bbee;
}

.cards-section .item-orange .item-inner {
  border-top: 3px solid #F88C30;
}

.cards-section .item-orange .item-inner:hover .title {
  color: #d46607;
}

.cards-section .item-orange .icon {
  color: #F88C30;
}

.cards-section .item-red .item-inner {
  border-top: 3px solid #f77b6b;
}

.cards-section .item-red .item-inner:hover .title {
  color: #f33a22;
}

.cards-section .item-red .icon {
  color: #f77b6b;
}

.cards-section .item-pink .item-inner {
  border-top: 3px solid #EA5395;
}

.cards-section .item-pink .item-inner:hover .title {
  color: #d61a6c;
}

.cards-section .item-pink .icon {
  color: #EA5395;
}

.cards-section .item-purple .item-inner {
  border-top: 3px solid #8A40A7;
}

.cards-section .item-purple .item-inner:hover .title {
  color: #5c2b70;
}

.cards-section .item-purple .icon {
  color: #8A40A7;
}

b,strong {
    font-weight: 1000;
}

.post-meta {
    padding: 4px 3px 4px 0px;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    margin-bottom: 15px;
    font-size: 12px;
}
.post-meta .date {
    background: url(../images/calendar-icon.png) no-repeat left center;
}
.post-meta > span {
    display: inline-block;
    padding-left: 22px;
    margin-right: 15px;
    line-height: 22px;
}
.post-meta .category {
    background: url(../images/category-icon.png) no-repeat left center;
}
.post-meta .comments {
    background: url(../images/comment-icon.png) no-repeat left center;
}
.post-meta .like-count {
    float: right;
    background: url(../images/like-icon.png) no-repeat 4px 6px;
}

.searchsection { margin-top:10px; margin-bottom:30px;}

@media only all and (max-width: 59.938em) {
     #navigation {
         position: static;
         margin-right: 0 !important;
         width: 100%;
         display: table;
     }
}
#navigation > .nav {
     position: fixed;
     top: 0;
     bottom: 0;
     width: 4rem;
     font-size: 50px;
     height: 100%;
     cursor: pointer;
     display: table;
     text-align: center;
}
#navigation > .nav > i {
     display: table-cell;
     vertical-align: middle;
     text-align: center;
}
@media only all and (max-width: 59.938em) {
    #navigation > .nav {
         display: table-cell;
         position: static;
         top: auto;
         width: 50%;
         text-align: center;
         height: 100px;
         line-height: 100px;
         padding-top: 0;
     }
     #navigation > .nav > i {
         display: inline-block;
     }
 }

#navigation.nav:hover {
     background: #F6F6F6;
 }
#navigation a.nav-prev {
     left: 0;
 }
#navigation a.nav-next {
     right: 0;
}

#navigation > a:focus {
  text-decoration: none;
}

#navigation a:hover { text-decoration:none;}

/* Knowledge base index */
.kb-index {
  background-color: #f7f9fc;
}

.kb-index__header {
  _max-width: 680px;
}

.kb-index__title {
  color: #005580;
  font-weight: 600;
}

.kb-index__intro {
  font-size: 1.125rem;
}

.kb-index__list {
  position: relative;
  z-index: 1;
}

.kb-entry {
  border-radius: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kb-entry:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.kb-entry__link {
  color: inherit;
}

.kb-entry__link:hover {
  color: #005580;
  text-decoration: none;
}

.kb-entry__meta > * {
  margin-right: 1rem;
}

.kb-entry__meta > *:last-child {
  margin-right: 0;
}

.kb-entry__tags .badge {
  font-size: 0.75rem;
  font-weight: 500;
}

.kb-entry__summary p:last-child {
  margin-bottom: 0;
}

.kb-entry__cta {
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 575px) {
  .kb-entry {
    border-radius: 0.5rem;
  }

  .kb-entry__meta > * {
    margin-right: 0.5rem;
  }
}

.fop2-navbar {
  border: 0;
  padding: var(--spacing-sm) 0;
}

.fop2-navbar .container,
.footer .container,
.fop2-page-container {
  max-width: 1200px;
}

.fop2-navbar .btn {
  margin-bottom: 0;
}
