.page-heading__title {
  display: flex;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.page-heading__underline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 48px;
  width: 100%;
}

.page-heading__description {
  max-width: 640px;
  color: #797986;
  font-size: 14px;
  text-align: center;
  margin: 16px auto 0;
}

.page-heading--mb {
  margin-bottom: 24px;
}

.page-heading--small .page-heading__title {
  font-size: 24px;
}

@media (min-width: 768px) {
  .page-heading__title {
    font-size: 48px;
  }
}
.t-container-wide {
  width: 100%;
  padding: 32px 16px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 576px) {
  .t-container-wide {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 768px) {
  .t-container-wide {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 1024px) {
  .t-container-wide {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 1280px) {
  .t-container-wide {
    max-width: 1440px;
  }
}
.t-btn {
  --t-btn-background: null;
  --t-btn-color: null;
  --t-btn-border-color: null;
  --t-btn-hover-background: null;
  --t-btn-hover-color: null;
  --t-btn-hover-border-color: null;
  --t-btn-active-background: null;
  --t-btn-active-color: null;
  --t-btn-active-border-color: null;
  --t-btn-disabled-background: null;
  --t-btn-disabled-color: null;
  --t-btn-disabled-border-color: null;
  --t-btn-focus-background: null;
  --t-btn-focus-color: null;
  --t-btn-focus-border-color: null;
  --t-btn-border-radius: 8px;
  --t-btn-padding-y: 9px;
  --t-btn-padding-x: 23px;
  --t-btn-padding-left: var(--t-btn-padding-x);
  --t-btn-font-size: 14px;
  --t-btn-icon-size: 20px;
  --t-btn-border-width: 1px;
  --t-btn-font-weight: 400;
  --t-btn-min-width: auto;
  --t-btn-min-height: auto;
  --t-btn-gap: 6px;
  --t-btn-line-height: 20px;
  --t-btn-focus-box-shadow: 0 0 0 3px #cfccff;
  --t-btn-text-decoration: none;
  padding: var(--t-btn-padding-y) var(--t-btn-padding-x);
  padding-left: var(--t-btn-padding-left);
  border-radius: var(--t-btn-border-radius);
  font-size: var(--t-btn-font-size);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: var(--t-btn-line-height);
  gap: var(--t-btn-gap);
  min-height: var(--t-btn-min-height);
  min-width: var(--t-btn-min-width);
  font-weight: var(--t-btn-font-weight);
  -webkit-text-decoration: var(--t-btn-text-decoration);
  text-decoration: var(--t-btn-text-decoration);
}
.t-btn i {
  flex-shrink: 0;
  font-size: var(--t-btn-icon-size);
}
.t-btn {
  background-color: var(--t-btn-background);
  color: var(--t-btn-color);
  cursor: pointer;
  border: var(--t-btn-border-width) solid var(--t-btn-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, opacity 0.15s ease-in-out;
}
.t-btn:hover {
  background-color: var(--t-btn-hover-background);
  color: var(--t-btn-hover-color);
  border-color: var(--t-btn-hover-border-color);
}
.t-btn:active, .t-btn:active:hover {
  background-color: var(--t-btn-active-background);
  color: var(--t-btn-active-color);
  border-color: var(--t-btn-active-border-color);
}
.t-btn:focus-visible {
  background-color: var(--t-btn-focus-background);
  color: var(--t-btn-focus-color);
  border-color: var(--t-btn-focus-border-color);
  box-shadow: var(--t-btn-focus-box-shadow);
  outline: none;
}
.t-btn:disabled, .t-btn.t-btn-disabled, .t-btn:disabled:hover, .t-btn.t-btn-disabled:hover, .t-btn:disabled:focus, .t-btn.t-btn-disabled:focus, .t-btn:disabled:active, .t-btn.t-btn-disabled:active, .t-btn:disabled:active:hover, .t-btn.t-btn-disabled:active:hover {
  background-color: var(--t-btn-disabled-background);
  color: var(--t-btn-disabled-color);
  border-color: var(--t-btn-disabled-border-color);
  cursor: not-allowed;
}

/**
    How to add a new icon?
    * Add the SVG source file to '~/Assets/Icons/svg'
    * In case you want to add a color variation to this icon, check the Gulp task called 'icons'
    * Add a variable here with SVG file name in the following template: $svg-icons-{file-name}_{color}: '{file-name}_{color}.svg'
    * Add a new 'scss' file, name it using the following template: '_svg-icons-{file-name}_{color}.scss'. Use other files as example for the content
*/
/*
  HEX to filter conversion:
  https://isotropic.co/tool/hex-color-to-css-filter/
*/
.t-btn.t-btn-white {
  --t-btn-background: #ffffff;
  --t-btn-color: #222229;
  --t-btn-border-color: #d7d7de;
  --t-btn-hover-background: #f5f5f5;
  --t-btn-hover-color: #222229;
  --t-btn-hover-border-color: #d7d7de;
  --t-btn-active-background: #e8e8ec;
  --t-btn-active-color: #222229;
  --t-btn-active-border-color: #d7d7de;
  --t-btn-disabled-color: #a2a2af;
  --t-btn-disabled-background: #f5f5f5;
  --t-btn-disabled-border-color: #d7d7de;
  --t-btn-focus-background: #ffffff;
  --t-btn-focus-color: #222229;
  --t-btn-focus-border-color: #d7d7de;
}
.t-btn.t-btn-white:hover i {
  filter: invert(10%) sepia(11%) saturate(766%) hue-rotate(201deg) brightness(99%) contrast(92%);
}
.t-btn.t-btn-white:active i, .t-btn.t-btn-white:active:hover i {
  filter: invert(10%) sepia(11%) saturate(766%) hue-rotate(201deg) brightness(99%) contrast(92%);
}
.t-btn.t-btn-white:focus i {
  filter: invert(10%) sepia(11%) saturate(766%) hue-rotate(201deg) brightness(99%) contrast(92%);
}
.t-btn.t-btn-white:disabled i, .t-btn.t-btn-white.t-btn-disabled i, .t-btn.t-btn-white:disabled:hover i, .t-btn.t-btn-white.t-btn-disabled:hover i, .t-btn.t-btn-white:disabled:focus i, .t-btn.t-btn-white.t-btn-disabled:focus i, .t-btn.t-btn-white:disabled:active i, .t-btn.t-btn-white.t-btn-disabled:active i, .t-btn.t-btn-white:disabled:active:hover i, .t-btn.t-btn-white.t-btn-disabled:active:hover i {
  filter: invert(70%) sepia(7%) saturate(323%) hue-rotate(202deg) brightness(90%) contrast(100%);
}

.t-btn.t-btn-primary {
  --t-btn-background: #746dff;
  --t-btn-color: #ffffff;
  --t-btn-border-color: #746dff;
  --t-btn-hover-background: #9590ff;
  --t-btn-hover-color: #ffffff;
  --t-btn-hover-border-color: #9590ff;
  --t-btn-active-background: #5336d6;
  --t-btn-active-color: #ffffff;
  --t-btn-active-border-color: #5336d6;
  --t-btn-disabled-color: #a2a2af;
  --t-btn-disabled-background: #e8e8ec;
  --t-btn-disabled-border-color: #e8e8ec;
  --t-btn-focus-background: #746dff;
  --t-btn-focus-color: #ffffff;
  --t-btn-focus-border-color: #746dff;
}
.t-btn.t-btn-primary i {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}
.t-btn.t-btn-primary:hover i {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}
.t-btn.t-btn-primary:active i, .t-btn.t-btn-primary:active:hover i {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}
.t-btn.t-btn-primary:focus i {
  filter: invert(99%) sepia(100%) saturate(2%) hue-rotate(72deg) brightness(105%) contrast(100%);
}
.t-btn.t-btn-primary:disabled i, .t-btn.t-btn-primary.t-btn-disabled i, .t-btn.t-btn-primary:disabled:hover i, .t-btn.t-btn-primary.t-btn-disabled:hover i, .t-btn.t-btn-primary:disabled:focus i, .t-btn.t-btn-primary.t-btn-disabled:focus i, .t-btn.t-btn-primary:disabled:active i, .t-btn.t-btn-primary.t-btn-disabled:active i, .t-btn.t-btn-primary:disabled:active:hover i, .t-btn.t-btn-primary.t-btn-disabled:active:hover i {
  filter: invert(70%) sepia(7%) saturate(323%) hue-rotate(202deg) brightness(90%) contrast(100%);
}

.t-btn.tw-pagination-item {
  --t-btn-padding-y: 0;
  --t-btn-padding-x: 0;
  --t-btn-min-width: 32px;
  --t-btn-min-height: 32px;
  --t-btn-border-radius: 4px;
}

.t-btn.tw-pagination-item--active {
  --t-btn-font-weight: 700;
}

.svg-icons {
  vertical-align: middle;
  display: inline-block;
  background-size: 1em;
  width: 1em;
  height: 1em;
}

.svg-icons.lazyload {
  background-image: none;
}

.svg-icons_baseline {
  vertical-align: baseline;
}

.svg-icons--color-white {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(64deg) brightness(107%) contrast(101%);
}

.svg-icons--color-border {
  filter: invert(89%) sepia(4%) saturate(231%) hue-rotate(164deg) brightness(103%) contrast(93%);
}

.svg-icons--color-muted {
  filter: invert(90%) sepia(8%) saturate(170%) hue-rotate(158deg) brightness(87%) contrast(87%);
}

.svg-icons--color-gray-60 {
  filter: invert(70%) sepia(7%) saturate(323%) hue-rotate(202deg) brightness(90%) contrast(100%);
}

.svg-icons--color-gray-70 {
  filter: invert(48%) sepia(7%) saturate(548%) hue-rotate(202deg) brightness(97%) contrast(89%);
}

.svg-icons--color-yellow-60 {
  filter: invert(88%) sepia(100%) saturate(1110%) hue-rotate(314deg) brightness(103%) contrast(101%);
}

.svg-icons--color-yellow-40 {
  filter: invert(89%) sepia(15%) saturate(1180%) hue-rotate(332deg) brightness(104%) contrast(102%);
}

.svg-icons-chevron-left {
  background-image: url(https://cdn.twee.com/e/dist_20260722121329/icons/icons-sprite.svg#svg--chevron-left);
}

.svg-icons-chevron-right {
  background-image: url(https://cdn.twee.com/e/dist_20260722121329/icons/icons-sprite.svg#svg--chevron-right);
}

.tw-pagination__controls {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.cb-fixed-ratio {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cb-fixed-ratio.cb-fixed-ratio_contain .cb-fixed-ratio__element {
  -o-object-fit: contain;
  object-fit: contain;
}
.cb-fixed-ratio .cb-fixed-ratio__element {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cb-fixed-ratio_tool-thumbnail {
  padding-bottom: 100%;
}

.cb-fixed-ratio_tool-preview-icon {
  padding-bottom: 100%;
}

.cb-fixed-ratio_video {
  padding-bottom: 56.25%;
}

.cb-fixed-ratio_logo {
  padding-bottom: 33.3333333333%;
}

.cb-fixed-ratio_pdf-logo {
  padding-bottom: 100%;
}

.cb-fixed-ratio_pdf-logo-editor {
  padding-bottom: 56.25%;
}

.cb-fixed-ratio--school-logo {
  padding-bottom: 100%;
}

.cb-fixed-ratio--project-tool {
  padding-bottom: 75%;
}

.cb-fixed-ratio_lesson-cover {
  padding-bottom: 58.8235294118%;
}

.blog-post-preview {
  position: relative;
}

.blog-post-preview__image {
  border-radius: 12px;
  overflow: hidden;
}

.blog-post-preview__image .cb-fixed-ratio {
  padding-bottom: 255px;
}

.blog-post-preview__image .blog-featured-image {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}

.blog-post-preview__title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  margin-top: 0.5rem;
}

.blog-post-preview__anchor {
  text-decoration: none;
  color: black;
}
.blog-post-preview__anchor:hover, .blog-post-preview__anchor:focus {
  color: #746dff;
}

.blog-post-preview__anchor::before {
  content: "";
  display: block;
  inset: 0;
  position: absolute;
}

.blog-post-preview__date {
  margin-top: 8px;
  font-size: 12px;
  color: #797986;
}

.blog__heading {
  margin-bottom: 48px;
}

.blog__heading .page-heading__title {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTM2IiBoZWlnaHQ9IjMzIiB2aWV3Qm94PSIwIDAgMTM2IDMzIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8ZyBzdHlsZT0ibWl4LWJsZW5kLW1vZGU6bXVsdGlwbHkiPgo8cGF0aCBkPSJNMTEgMzNWOUgxMC40MjhDOS44MTUgOSA5LjIwMyA5LjEwOSA4LjY3NiA5LjQyMkM2LjkyNiAxMC40NjIgMyAxMy42MTcgMyAyMUMzIDIzLjE4OSAyLjA2NSAyNi4wNjcgMS4wOTkgMjguNDU2QzAuMjQ5IDMwLjU1NyAxLjc0MiAzMyA0LjAwOSAzM0gxMVpNMTcuOTQ2MiAxOC44MDE1TDIwLjQzOTMgMzAuNTM5NkwxNy45NDYyIDE4LjgwMTVaTTUxLjI4ODIgMTQuNTE0NEw1Mi44NjA3IDI2LjQxMDlMNTEuMjg4MiAxNC41MTQ0Wk0xMjUgMC4wOTU5NzY5VjI0LjA5NkgxMjUuNTcyQzEyNi4xODUgMjQuMDk2IDEyNi43OTcgMjMuOTg3IDEyNy4zMjQgMjMuNjc0QzEyOS4wNzQgMjIuNjM0IDEzMyAxOS40NzkgMTMzIDEyLjA5NkMxMzMgOS45MDY5OCAxMzMuOTM1IDcuMDI4OTggMTM0LjkwMSA0LjYzOTk4QzEzNS43NTEgMi41Mzg5OCAxMzQuMjU4IDAuMDk1OTc2OSAxMzEuOTkxIDAuMDk1OTc2OUgxMjVaTTExIDMzQzE0Ljg0MzQgMzMgMTcuOTg2MyAzMS42MzM0IDE5LjE2MTMgMzEuMTM1MUMyMC4wOTg4IDMwLjczNzUgMjAuMjA0MiAzMC42Nzc3IDIwLjYzNDQgMzAuNTA2NkMyMC45MDk5IDMwLjM5NzEgMjAuNzg3MiAzMC40NjU4IDIwLjQzOTMgMzAuNTM5NkwxNS40NTMxIDcuMDYzMzFDMTMuOTMyIDcuMzg2MzkgMTIuNjQ4NiA3Ljg1NDQyIDExLjc2OTUgOC4yMDM4N0MxMS4zMTkyIDguMzgyODYgMTAuOTA2NCA4LjU1ODkzIDEwLjU4NzYgOC42OTYzNEMxMC4yMTIzIDguODU4MTIgMTAuMDM5MSA4LjkzNDY5IDkuNzkwMzQgOS4wNDAxOEM5LjMzNDAzIDkuMjMzNzEgOS4yODg2MSA5LjIzNTM3IDkuNDE1NCA5LjE5ODcxQzkuNTczNjYgOS4xNTI5NSAxMC4xNDkyIDkgMTEgOVYzM1pNMjAuNDM5MyAzMC41Mzk2QzMwLjk0MzkgMjguMzA4NiA0MC4yNjg3IDI4LjA3NTMgNTIuODYwNyAyNi40MTA5TDQ5LjcxNTcgMi42MTc4M0M0MC4xODEgMy44NzgxNSAyNi45Mjk4IDQuNjI1NzYgMTUuNDUzMSA3LjA2MzMxTDIwLjQzOTMgMzAuNTM5NlpNNTIuODYwNyAyNi40MTA5Qzc2LjQ1ODEgMjMuMjkxNyA5OS43NjA0IDI0LjA5NiAxMjUgMjQuMDk2VjAuMDk1OTc2OUMxMDAuODk2IDAuMDk1OTc2OSA3NS4zMzc2IC0wLjc2ODkzNyA0OS43MTU3IDIuNjE3ODNMNTIuODYwNyAyNi40MTA5WiIgZmlsbD0iI0ZGRTA5QSIvPgo8L2c+Cjwvc3ZnPgo=");
}

.blog-container {
  margin: 20px 0 40px;
}

.blog-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 60px;
}

.blog__pagination {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-list {
    grid-template-columns: repeat(3, 1fr);
  }
}