/**
 * Template: Blog
 * Design: Blog
 */

:root {
  --blog-primary-cta: #2060e6;
  --blog-yellow-50: #E8EFFC;
  --blog-black: #0e1155;
  --blog-white: #FFFFFF;
  --blog-grey-800: #333333;
  --blog-bg: #FAFAFA;
  --blog-card-shadow: 1px -4px 29.7px 0px rgba(0, 0, 0, 0.12);
  --blog-font-family: var(--tg-font-family-base);
}

#breadcrumbs {
  padding: 28px 0 40px;
  color: #9fa0bb;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  margin: 0;
}

#breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

#breadcrumbs a:hover {
  color: #0E1155;
}

#breadcrumbs i {
  display: inline-block;
  width: 9px;
  height: 1px;
  margin: 0 12px;
  background-color: #9fa0bb;
  vertical-align: middle;
}

.blog-navbar {
  position: sticky;
  top: 89px;
  z-index: 100;
  background: var(--blog-white);
  border-bottom: 1px solid #E1E4E8;
  padding: 16px 0;
}

.blog-navbar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.blog-navbar__brand {
  font-size: 16px;
  font-weight: 600;
  color: var(--blog-primary-cta);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.blog-navbar__brand:hover {
  opacity: 0.8;
}

.blog-navbar__categories {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.blog-navbar__categories::-webkit-scrollbar {
  display: none;
}

.blog-navbar__category {
  font-size: 14px;
  font-weight: 400;
  color: var(--tg-color-primary-black);
  opacity: 0.6;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.blog-navbar__category:hover {
  color: var(--blog-primary-cta);
  opacity: 1;
}

.blog-navbar__category.is-active {
  color: var(--blog-primary-cta);
  opacity: 1;
  font-weight: 500;
}

.blog-navbar__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3fbfd;
  border: none;
  color: var(--blog-primary-cta);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.blog-navbar__search-btn:hover {
  background: #eaf0fd;
}

.blog-navbar__search-btn svg {
  width: 20px;
  height: 20px;
}

.blog-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.blog-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.blog-search-overlay__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.blog-search-overlay__content {
  position: relative;
  width: 100%;
  max-width: 680px;
  padding: 0 20px;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.blog-search-overlay.is-open .blog-search-overlay__content {
  transform: translateY(0);
}

.blog-search-overlay__form {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--blog-white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.blog-search-overlay__icon {
  flex-shrink: 0;
  color: var(--blog-grey-800);
  opacity: 0.5;
}

.blog-search-overlay__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--blog-black);
  background: transparent;
}

.blog-search-overlay__input::-moz-placeholder {
  color: var(--blog-grey-800);
  opacity: 0.5;
}

.blog-search-overlay__input::placeholder {
  color: var(--blog-grey-800);
  opacity: 0.5;
}

.blog-search-overlay__esc {
  flex-shrink: 0;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--blog-grey-800);
  background: #F5F5F5;
  border: 1px solid #E1E4E8;
}

[data-aos=fade-in-up-small] {
  opacity: 0;
  transform: translateY(8px);
  transition-property: opacity, transform;
}

[data-aos=fade-in-up-small].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos=fade-in-right-small] {
  opacity: 0;
  transform: translateX(-8px);
  transition-property: opacity, transform;
}

[data-aos=fade-in-right-small].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos=fade-in-left-small] {
  opacity: 0;
  transform: translateX(8px);
  transition-property: opacity, transform;
}

[data-aos=fade-in-left-small].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos=fade-in] {
  opacity: 0;
  transition-property: opacity;
}

[data-aos=fade-in].aos-animate {
  opacity: 1;
}

.blog {
  font-family: var(--blog-font-family);
}

.search-cover {
  background-color: #FEF6EB;
  min-height: 400px;
  padding: 60px 0;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  box-sizing: border-box;
  position: relative;
}

.search-cover__breadcrumbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.search-cover__breadcrumbs #breadcrumbs {
  padding: 28px 0 0;
}

.search-cover__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.search-cover__title {
  color: #0e1155;
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: -1.8px;
  margin: 0 0 28px 0;
  padding: 0;
}

.search-cover__subtitle {
  color: #0e1155;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.18px;
  margin: 0;
}

.blog-cover {
  padding-top: 48px;
  padding-bottom: 48px;
}

.blog-cover #breadcrumbs {
  padding-top: 0;
}

.blog-cover__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.blog-cover__back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--blog-black);
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 16px;
}

.blog-cover__back-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.blog-cover__back-link:hover {
  color: var(--blog-primary-cta);
}

.blog-cover__back-link:hover svg {
  transform: translateX(-4px);
}

.blog-cover__content {
  text-align: center;
  max-width: 714px;
}

.blog-cover__content-title {
  font-size: 64px;
  font-weight: 400;
  line-height: 72px;
  color: var(--blog-black);
  margin: 0;
}

.blog-cover__content-text {
  font-size: 20px;
  line-height: 28px;
  color: var(--blog-grey-800);
  margin-top: 16px;
}

.blog-cover__posts {
  display: flex;
  gap: 40px;
  align-items: stretch;
  width: 100%;
}

.blog-cover__posts-column:first-child {
  flex: 1;
  min-width: 0;
}

.blog-cover__posts-column:last-child {
  flex: 0 0 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}

.blog-cover__featuredpost {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  text-decoration: none;
}

.blog-cover__featuredpost-image {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.blog-cover__featuredpost-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.blog-cover__featuredpost:hover .blog-cover__featuredpost-image img {
  transform: scale(1.05);
}

.blog-cover__featuredpost-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-cover__featuredpost-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.blog-cover__featuredpost-title-link {
  text-decoration: none;
}

.blog-cover__featuredpost-title-link:hover .blog-cover__featuredpost-title {
  color: var(--blog-primary-cta);
}

.blog-cover__featuredpost-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--blog-black);
  margin: 0;
  transition: color 0.2s ease;
}

.blog-cover__featuredpost-date {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--blog-grey-800);
}

.blog-cover__featuredpost-excerpt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--blog-grey-800);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.archive-hero {
  min-height: 400px;
  padding: 60px 0;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 60px;
  box-sizing: border-box;
  overflow: hidden;
}

.archive-hero .container {
  position: relative;
  z-index: 1;
}

.archive-hero__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.archive-hero__title {
  color: #0e1155;
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: -1.8px;
  margin: 0 0 28px 0;
  padding: 0;
}

.archive-hero__description {
  color: #0e1155;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.18px;
}

.archive-hero__description p {
  margin: 0;
}

.archive-hero__description:empty {
  display: none;
}

.archive-hero__breadcrumbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.archive-hero__breadcrumbs #breadcrumbs {
  padding: 28px 0 0;
}

.archive-hero__decorator {
  position: absolute;
}

.archive-hero__decorator--1 {
  top: 0;
  left: 0;
}

.archive-hero__decorator--2 {
  right: 0;
  bottom: 0;
}

.archive-hero__decorator--3 {
  top: 0;
  left: 0;
  display: none;
}

.archive-hero__decorator--4 {
  right: 0;
  bottom: 0;
  display: none;
}

.archive-hero--blue {
  background-color: #D4E4FC;
}

.archive-hero--blue .archive-hero__decorator--fill path {
  fill: #A8C9F9;
}

.archive-hero--blue .archive-hero__decorator--stroke circle {
  stroke: #A8C9F9;
}

.archive-hero--cream {
  background-color: #FEF6EB;
}

.archive-hero--cream .archive-hero__decorator--fill path {
  fill: #F7ECDD;
}

.archive-hero--cream .archive-hero__decorator--stroke circle {
  stroke: #F6ECDD;
}

.archive-hero--purple {
  background-color: #F5E3F6;
}

.archive-hero--purple .archive-hero__decorator--fill path {
  fill: #E5C3E7;
}

.archive-hero--purple .archive-hero__decorator--stroke circle {
  stroke: #E5C3E7;
}

.archive-hero--cyan {
  background-color: #D8F1F6;
}

.archive-hero--cyan .archive-hero__decorator--fill path {
  fill: #B0E3ED;
}

.archive-hero--cyan .archive-hero__decorator--stroke circle {
  stroke: #B0E3ED;
}

.archive-hero--dark {
  background-color: #333333;
  color: #FFFFFF;
}

.archive-hero--dark .archive-hero__title,
.archive-hero--dark .archive-hero__description {
  color: #FFFFFF;
}

.archive-hero--dark .archive-hero__decorator--fill path {
  fill: #1a1a1a;
}

.archive-hero--dark .archive-hero__decorator--stroke circle {
  stroke: #1a1a1a;
}

.archive-hero--green {
  background-color: #E8FDD2;
}

.archive-hero--green .archive-hero__decorator--fill path {
  fill: #C9F5A3;
}

.archive-hero--green .archive-hero__decorator--stroke circle {
  stroke: #C9F5A3;
}

.archive-hero--gray {
  background-color: #F2F2F2;
}

.archive-hero--gray .archive-hero__decorator--fill path {
  fill: #D9D9D9;
}

.archive-hero--gray .archive-hero__decorator--stroke circle {
  stroke: #D9D9D9;
}

.archive-hero--indigo {
  background-color: #E3E4FF;
}

.archive-hero--indigo .archive-hero__decorator--fill path {
  fill: #C3C5FF;
}

.archive-hero--indigo .archive-hero__decorator--stroke circle {
  stroke: #C3C5FF;
}

.archive-hero--orange {
  background-color: #FEE3D4;
}

.archive-hero--orange .archive-hero__decorator--fill path {
  fill: #FDC7A8;
}

.archive-hero--orange .archive-hero__decorator--stroke circle {
  stroke: #FDC7A8;
}

.archive-hero--mint {
  background-color: #E0FFE9;
}

.archive-hero--mint .archive-hero__decorator--fill path {
  fill: #B3FFCA;
}

.archive-hero--mint .archive-hero__decorator--stroke circle {
  stroke: #B3FFCA;
}

.archive-hero--slate {
  background-color: #E3EDF6;
}

.archive-hero--slate .archive-hero__decorator--fill path {
  fill: #C3D8EB;
}

.archive-hero--slate .archive-hero__decorator--stroke circle {
  stroke: #C3D8EB;
}

.archive-hero--pink {
  background-color: #FFDDDE;
}

.archive-hero--pink .archive-hero__decorator--fill path {
  fill: #FFB8BA;
}

.archive-hero--pink .archive-hero__decorator--stroke circle {
  stroke: #FFB8BA;
}

.archive-hero--sage {
  background-color: #C2D5C7;
}

.archive-hero--sage .archive-hero__decorator--fill path {
  fill: #9DBFA5;
}

.archive-hero--sage .archive-hero__decorator--stroke circle {
  stroke: #9DBFA5;
}

.archive-hero--yellow {
  background-color: #FFF7C2;
}

.archive-hero--yellow .archive-hero__decorator--fill path {
  fill: #FFEF8A;
}

.archive-hero--yellow .archive-hero__decorator--stroke circle {
  stroke: #FFEF8A;
}

.blog-items {
  padding: 0 0 60px 0;
}

.blog-items__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
}

.blog-items__filter {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-items__filter-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.blog-items__filter-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-items__filter-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--blog-black);
}

.blog-items__filter-pills {
  display: flex;
  gap: 10px;
  align-items: center;
}

.blog-items__filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border: 1px solid var(--blog-black);
  border-radius: 64px;
  background: transparent;
  color: var(--blog-black);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.blog-items__filter-pill.is-selected {
  background: var(--blog-yellow-50);
}

.blog-items__filter-pill:hover {
  background: var(--blog-yellow-50);
}

.blog-items__search-form {
  display: flex;
  align-items: center;
  margin-left: auto;
  position: relative;
  max-width: 240px;
}

.blog-items__search-input {
  width: 100%;
  padding: 6px 40px 6px 16px;
  border: 1px solid var(--blog-black);
  border-radius: 64px;
  background: transparent;
  color: var(--blog-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: var(--blog-font-family);
  outline: none;
  transition: all 0.2s ease;
}

.blog-items__search-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.blog-items__search-input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.blog-items__search-input:focus {
  background: var(--blog-white);
  border-color: var(--blog-primary-cta);
  box-shadow: 0 0 0 2px rgba(255, 177, 0, 0.2);
}

.blog-items__search-button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--blog-black);
  padding: 0;
  transition: all 0.2s ease;
  border-radius: 50%;
}

.blog-items__search-button:hover {
  color: var(--blog-primary-cta);
  background: var(--blog-yellow-50);
}

.blog-items__search-button svg {
  width: 20px;
  height: 20px;
}

.blog-items__nav {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-items__nav--full {
  width: 100%;
}

.blog-items__nav-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.blog-items__nav-categoriesItem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border: 1px solid #E1E4E8;
  border-radius: 64px;
  background: transparent;
  color: var(--blog-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.blog-items__nav-categoriesItem:hover {
  background: var(--blog-yellow-50);
}

.blog-items__nav-categoriesItem.is-selected {
  background: var(--blog-yellow-50);
}

.blog-items__nav-categoriesItem.is-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-items__nav-categoriesItem.is-more .plus {
  font-size: 20px;
  line-height: 28px;
}

.blog-items__nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border: 1px dashed #E1E4E8;
  border-radius: 64px;
  background: transparent;
  color: var(--blog-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--blog-font-family);
}

.blog-items__nav-toggle:hover {
  background: var(--blog-yellow-50);
  border-style: solid;
}

.blog-items__nav-toggle.is-expanded {
  background: var(--blog-yellow-50);
  border-style: solid;
}

.blog-items__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-items__listItem {
  text-decoration: none;
  display: block;
}

.c-postcard {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  transition: transform 0.2s ease;
}

.c-postcard:hover {
  transform: translateY(-4px);
}

.c-postcard__image-link {
  display: block;
  text-decoration: none;
}

.c-postcard__image {
  border-radius: 16px;
  overflow: hidden;
  height: 218px;
}

.c-postcard__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.c-postcard__image-link:hover .c-postcard__image img,
.c-postcard:hover .c-postcard__image img {
  transform: scale(1.05);
}

.c-postcard__content {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.c-postcard__category {
  display: flex;
  align-items: center;
}

.c-postcard__badge {
  display: inline-block;
  border-radius: 30px;
  padding: 4px 12px;
  white-space: nowrap;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.c-postcard__badge:hover {
  text-decoration: none;
  opacity: 0.75;
}

.c-postcard__badge--blue {
  background-color: #D4E4FC;
  color: var(--blog-black);
}

.c-postcard__badge--cream {
  background-color: #FEF6EB;
  color: var(--blog-black);
}

.c-postcard__badge--purple {
  background-color: #F5E3F6;
  color: var(--blog-black);
}

.c-postcard__badge--cyan {
  background-color: #D8F1F6;
  color: var(--blog-black);
}

.c-postcard__badge--dark {
  background-color: #333333;
  color: #FFFFFF;
}

.c-postcard__badge--green {
  background-color: #E8FDD2;
  color: var(--blog-black);
}

.c-postcard__badge--gray {
  background-color: #F2F2F2;
  color: var(--blog-black);
}

.c-postcard__badge--indigo {
  background-color: #E3E4FF;
  color: var(--blog-black);
}

.c-postcard__badge--orange {
  background-color: #FEE3D4;
  color: var(--blog-black);
}

.c-postcard__badge--mint {
  background-color: #E0FFE9;
  color: var(--blog-black);
}

.c-postcard__badge--slate {
  background-color: #E3EDF6;
  color: var(--blog-black);
}

.c-postcard__badge--pink {
  background-color: #FFDDDE;
  color: var(--blog-black);
}

.c-postcard__badge--sage {
  background-color: #C2D5C7;
  color: var(--blog-black);
}

.c-postcard__badge--yellow {
  background-color: #FFF7C2;
  color: var(--blog-black);
}

.c-postcard__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.c-postcard__meta > * {
  flex: 0 0 calc(50% - 4px);
  min-width: 0;
}

.c-postcard__author {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.c-postcard__author:hover {
  opacity: 0.7;
}

.c-postcard__avatar {
  width: 31px;
  height: 31px;
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
  background: url("../images/global/default-avatar.png") center/cover no-repeat;
  border: 1px solid #E1E4E8;
  background-size: 80%;
}

.c-postcard__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-postcard__authorname {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--blog-black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.c-postcard__date {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--blog-grey-800);
  text-align: right;
  flex-shrink: 0;
}

.c-postcard__title-link {
  text-decoration: none;
  display: block;
}

.c-postcard__title-link:hover h3 {
  color: var(--blog-primary-cta);
}

.c-postcard__content-inner {
  flex: 1;
}

.c-postcard__content-inner h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--blog-black);
  margin: 0;
  transition: color 0.2s ease;
}

.c-postcard__tags {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--blog-black);
}

.c-postcard__footer {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.c-postcard__categories {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.c-postcard__categories li {
  font-size: 14px;
  color: var(--blog-black);
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.c-postcard__categories li::before {
  content: "#";
}

.c-postcard.has-bg-color-yellow,
.c-postcard.has-bg-color-lighter-green {
  background: rgba(255, 255, 255, 0.1);
}

.blog-single__hero {
  padding-top: 48px;
  padding-bottom: 0;
}

.blog-single__hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.blog-single__hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #0e1155;
  margin: 0;
}

.blog-single__hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.blog-single__hero-date {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #6e7099;
}

.blog-single__hero-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid #eff0f9;
  border-bottom: 1px solid #eff0f9;
  padding: 12px 0;
}

.blog-single__hero-author {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.blog-single__hero-author:hover {
  opacity: 0.7;
}

.blog-single__hero-avatar {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
  background: url("../images/global/default-avatar.png") center/cover no-repeat;
  border: 1px solid #E1E4E8;
  background-size: 80%;
}

.blog-single__hero-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100px;
}

.blog-single__hero-authorname {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #0e1155;
}

.blog-single__hero-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 8px;
}

.blog-single__hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1000/500;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}

.blog-single__breadcrumbs {
  margin-bottom: 16px;
}

.blog-single__breadcrumbs-nav,
.blog-single__breadcrumbs #breadcrumbs {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  color: #9fa0bb;
  padding: 0;
  margin: 0;
}

.blog-single__breadcrumbs-nav a,
.blog-single__breadcrumbs #breadcrumbs a {
  color: #9fa0bb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-single__breadcrumbs-nav a:hover,
.blog-single__breadcrumbs #breadcrumbs a:hover {
  color: #0E1155;
}

.blog-single__breadcrumbs-nav i,
.blog-single__breadcrumbs #breadcrumbs i {
  display: inline-block;
  width: 9px;
  height: 1px;
  margin: 0 12px;
  background-color: #9fa0bb;
  vertical-align: middle;
}

.blog-single__breadcrumbs-nav .breadcrumb-separator,
.blog-single__breadcrumbs-nav span[aria-hidden=true],
.blog-single__breadcrumbs #breadcrumbs .breadcrumb-separator,
.blog-single__breadcrumbs #breadcrumbs span[aria-hidden=true] {
  margin: 0 8px;
  color: #9fa0bb;
}

.blog-single__breadcrumbs-nav .breadcrumb_last,
.blog-single__breadcrumbs #breadcrumbs .breadcrumb_last {
  color: #0e1155;
}

.blog-single__share {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-single__share-label {
  font-size: 14px;
  font-weight: 500;
  color: #6e7099;
}

.blog-single__share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #eaebf3;
  background: transparent;
  color: var(--tg-color-blue-500);
  transition: all 0.2s ease;
}

.blog-single__share-link:hover {
  background: var(--tg-color-blue-500);
  border-color: var(--tg-color-blue-500);
  color: #FFFFFF;
}

.blog-single__share-link svg {
  width: 18px;
  height: 18px;
}

.blog-single__content {
  padding-top: 60px;
  padding-bottom: 60px;
}

.blog-single__content-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.blog-single__content-inner--no-toc .blog-single__article {
  max-width: 704px;
}

.blog-single__sidebar {
  flex: 0 0 240px;
  width: 240px;
  position: sticky;
  top: 180px;
  align-self: flex-start;
}

.blog-single__toc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-single__toc-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--blog-black);
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #eff0f9;
  flex-shrink: 0;
}

.blog-single__toc-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 350px;
  overflow-y: auto;
}

.blog-single__toc-item {
  color: var(--blog-black);
  padding-left: 4px;
}

.blog-single__toc-item::marker {
  color: var(--blog-black);
}

.blog-single__toc-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--blog-black);
  text-decoration: none;
  transition: all 0.2s ease;
}

.blog-single__toc-link:hover {
  color: var(--tg-color-blue-500);
}

.blog-single__toc-link.is-active {
  font-weight: 600;
  color: var(--tg-color-blue-500);
}

.blog-single__sidebar-right {
  flex: 0 0 320px;
  width: 320px;
  position: sticky;
  top: 180px;
  align-self: flex-start;
}

.blog-single__form-box {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-single__form-box-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: #6e7099;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-single__form-box-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--blog-black);
  margin: 0;
}

.blog-single__form-box-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #6e7099;
  margin: 0 0 8px 0;
}

.blog-single__form-box-form form {
  width: 100%;
}

.blog-single__subscribe-box {
  background: #EFEEFC;
  border-radius: 30px;
  padding: 33px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.blog-single__subscribe-box-image {
  width: 100%;
  max-width: 265px;
  border-radius: 12px;
  overflow: hidden;
}

.blog-single__subscribe-box-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-single__subscribe-box-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.24px;
  color: #0E1155;
  margin: 0;
  width: 100%;
  max-width: 265px;
  padding: 15px 0;
}

.blog-single__form-success {
  padding: 16px;
  background: #e8f5e9;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #2e7d32;
  text-align: center;
}

.blog-single__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.blog-single__modal.is-active {
  display: flex;
  animation: modalFadeIn 0.3s ease;
}

.blog-single__modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.blog-single__modal-content {
  position: relative;
  background: #EFEEFC;
  border-radius: 40px;
  max-width: 1235px;
  width: 90%;
  padding: 70px 0 70px 70px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.blog-single__modal-content::after {
  content: "";
  background-image: url("../images/blog/half-circle-shape.svg"), url("../images/blog/newsletter-form-shape.svg");
  background-position: center 0px, right bottom;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.blog-single__modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #6e7099;
  font-size: 24px;
  font-weight: bold;
  transition: all 0.2s ease;
  z-index: 10;
  background: rgba(255, 255, 255, 0.5);
}

.blog-single__modal-close:hover {
  color: var(--blog-black);
  background: rgba(255, 255, 255, 0.8);
}

.blog-single__modal-inner {
  display: flex;
  align-items: center;
  width: 100%;
}

.blog-single__modal-form {
  padding: 50px;
  background: #FFFFFF;
  z-index: 2;
  margin-right: -35px;
  box-shadow: 3px 36px 52px 0px rgba(43, 56, 58, 0.12);
  border-radius: 30px;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-single__modal-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--blog-black);
  margin: 0 0 16px 0;
}

.blog-single__modal-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #6e7099;
  margin: 0 0 20px 0;
}

.blog-single__modal-form-container form {
  width: 100%;
}

.blog-single__modal-image {
  height: 500px;
  z-index: 1;
  display: flex;
  align-items: center;
}

.blog-single__modal-image img {
  max-width: 100%;
  height: auto;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.blog-single__article {
  flex: 1;
  min-width: 0;
  max-width: 704px;
  padding: 0 0 40px 0;
}

.blog-single__article-content {
  color: var(--blog-black);
}

.blog-single__article-content img {
  border-radius: 16px;
  margin: 24px 0;
}

.blog-single__article-content blockquote {
  background: var(--blog-yellow-50);
  border-radius: 12px;
  border-left: 4px solid var(--blog-primary-cta);
}

.blog-single__related {
  padding: 60px 0 80px;
}

.blog-single__related-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin: 0 auto;
}

.blog-single__related-title {
  color: var(--blog-black);
  text-align: center;
  margin: 0;
}

.blog-single__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.pagination {
  display: none;
}

.blog-articles__more {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.blog-articles__more-button {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 1px solid #E1E4E8;
  border-radius: 100px;
  background: var(--blog-white);
  color: var(--blog-black);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.blog-articles__more-button.is-shown {
  display: inline-flex;
}

.blog-articles__more-button:hover {
  background: #F5F5F5;
  border-color: #D0D3D8;
}

.blog-articles__more-button.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.blog-articles-ajax.is-loading .blog-items__list {
  opacity: 0.5;
  pointer-events: none;
}

.blog-card-aos-wrapper {
  display: flex;
  width: 100%;
  min-width: 0;
}

.blog-card-aos-wrapper > * {
  width: 100%;
  min-width: 0;
}

body {
  font-family: var(--blog-font-family);
}

body .tg-page-wrapper {
  overflow: initial;
}

.blog-archive {
  background-color: #FAFAFA;
}

.blog-author-hero {
  background-color: #FFE4A3;
  padding: 48px 0 0;
  overflow: hidden;
  margin-bottom: 50px;
}

.blog-author-hero__inner {
  display: flex;
  align-items: flex-end;
  gap: 48px;
  max-width: 1062px;
  margin: 0 auto;
}

.blog-author-hero__content {
  flex: 1;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
}

.blog-author-hero__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-author-hero__name {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--blog-black);
  margin: 0;
}

.blog-author-hero__position {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--blog-black);
}

.blog-author-hero__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-author-hero__bio {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--blog-black);
  max-width: 600px;
}

.blog-author-hero__bio p {
  margin: 0 0 12px 0;
}

.blog-author-hero__bio p:last-child {
  margin-bottom: 0;
}

.blog-author-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.blog-author-hero__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border: 1px solid var(--blog-black);
  border-radius: 64px;
  background: transparent;
  color: var(--blog-black);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.blog-author-hero__tag:hover {
  background: rgba(0, 0, 0, 0.1);
}

.blog-author-hero__tag--count {
  background: transparent;
  cursor: default;
  border-style: dashed;
}

.blog-author-hero__tag--count:hover {
  background: transparent;
}

.blog-author-hero__certificates {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.blog-author-hero__badge {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.blog-author-hero__badge img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.blog-author-hero__photo {
  flex: 0 0 auto;
  width: 380px;
  max-width: 100%;
  align-self: flex-end;
}

.blog-author-hero__photo img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}

.podcast-hero {
  padding: 60px 0;
  position: relative;
  background-color: #fff;
}

.podcast-hero__breadcrumbs {
  padding: 28px 0 40px;
}

.podcast-hero__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.podcast-hero__text-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.podcast-hero__tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blog-primary-cta);
}

.podcast-hero__title {
  margin: 0;
  color: var(--blog-black);
}

.podcast-hero__text {
  font-size: 18px;
  line-height: 28px;
  color: var(--blog-black);
  margin: 0;
}

.podcast-hero__image-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.podcast-hero__image-box img {
  max-width: 100%;
  height: auto;
  display: block;
}

.podcast-hero--radically-transparent .podcast-hero__tag {
  align-self: flex-start;
  padding: 7px 16px;
  border-radius: 24px;
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #6bcfde;
  background-color: #e8f8fb;
}

.podcast-hero--behind-the-post .podcast-hero__tag {
  align-self: flex-start;
  padding: 7px 16px;
  border-radius: 24px;
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #f07fac;
  background-color: #faecfb;
}

.podcast-episodes {
  padding: 60px 0 0;
  background-color: var(--blog-primary-cta);
}

.podcast-episodes__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.podcast-episodes__title {
  color: var(--blog-white);
  margin: 0 0 16px 0;
}

.podcast-episodes__text {
  color: var(--blog-white);
  font-size: 18px;
  line-height: 28px;
  opacity: 0.9;
  margin: 0;
}

.blog-archive:has(.podcast-hero--radically-transparent) .podcast-episodes {
  background-color: #f3fbfd;
}

.blog-archive:has(.podcast-hero--radically-transparent) .podcast-episodes .podcast-episodes__title,
.blog-archive:has(.podcast-hero--radically-transparent) .podcast-episodes .podcast-episodes__text {
  color: var(--blog-black);
  opacity: 1;
}

.blog-archive:has(.podcast-hero--radically-transparent) .blog-items {
  background-color: #f3fbfd;
  padding-top: 0;
  padding-bottom: 80px;
}

.blog-archive:has(.podcast-hero--behind-the-post) .podcast-episodes {
  background-color: #ebf0fc;
}

.blog-archive:has(.podcast-hero--behind-the-post) .podcast-episodes .podcast-episodes__title,
.blog-archive:has(.podcast-hero--behind-the-post) .podcast-episodes .podcast-episodes__text {
  color: var(--blog-black);
  opacity: 1;
}

.blog-archive:has(.podcast-hero--behind-the-post) .blog-items {
  background-color: #ebf0fc;
  padding-top: 0;
  padding-bottom: 80px;
}

.podcast-cta__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 40px 42px;
  min-height: 520px;
  box-sizing: border-box;
  background-color: var(--blog-primary-cta);
  background-image: url(../images/podcasts/cta-background.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50px;
}

.podcast-cta__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 46px;
  letter-spacing: -1.08px;
  margin: 0 0 28px 0;
  color: var(--blog-white);
}

.podcast-cta__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 16px;
}

.podcast-cta__link {
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.podcast-cta__link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.podcast-cta__link img {
  display: block;
  max-width: 100%;
  height: auto;
}

.podcasts {
  background-image: url(../images/podcasts/background.svg), url(../images/podcasts/decorator-1.svg), url(../images/podcasts/decorator-2.svg), url(../images/podcasts/decorator-3.svg), url(../images/podcasts/decorator-4.svg);
  background-size: cover, auto, auto, auto, auto;
  background-position: bottom right, left 106px, right top, calc(100% - 43px) bottom, right 402px;
  background-repeat: no-repeat;
  padding: 84px 0 109px;
}

.podcasts__text-box {
  text-align: center;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.podcasts__tag {
  color: #82dbe8;
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 24px;
  background-color: #e8f8fb;
  margin-bottom: 20px;
}

.podcasts__title {
  font-size: 60px;
  letter-spacing: -1.8px;
  line-height: 70px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--blog-black);
}

.podcasts__text {
  font-size: 18px;
  letter-spacing: -0.18px;
  line-height: 28px;
  max-width: 836px;
  color: var(--blog-grey-800);
}

.podcasts__text p {
  margin: 0;
}

.podcasts__grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  -moz-column-gap: 56px;
       column-gap: 56px;
  width: 100%;
  max-width: 1104px;
  margin: 0 auto;
}

.podcasts__item {
  flex: 1 1 50%;
  border-radius: 42px;
  padding: 40px 48px;
  background-color: #fff;
  text-align: center;
  transition: box-shadow 0.25s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.podcasts__item:hover {
  box-shadow: 18px 20px 52px 0 rgba(124, 155, 159, 0.26);
}

.podcasts__image {
  margin-bottom: 40px;
}

.podcasts__image img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.podcasts__item-title {
  font-size: 28px;
  letter-spacing: -0.84px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--blog-black);
}

.podcasts__item-description {
  font-size: 15px;
  letter-spacing: -0.15px;
  line-height: 24px;
  margin-bottom: 32px;
  color: var(--blog-grey-800);
}

.podcasts__item-description a,
.podcasts__item-description span {
  font-weight: 500;
  color: var(--blog-primary-cta);
}

.podcasts__item--behind .podcasts__item-description a,
.podcasts__item--behind .podcasts__item-description span {
  color: var(--blog-primary-cta);
}

.podcasts__item .button {
  margin-top: auto;
}

@media (max-width: 1200px) {
  .blog-single__content-inner {
    gap: 30px;
  }
}

@media (max-width: 1100px) {
  .blog-single__modal-image img {
    width: 550px;
  }
}

@media (max-width: 992px) {
  .blog-cover__posts {
    flex-direction: column;
    gap: 24px;
  }

  .blog-cover__posts-column:first-child {
    flex: 1;
    max-width: 100%;
  }

  .blog-cover__posts-column:last-child {
    flex: 1;
  }

  .blog-items__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-single__content-inner {
    flex-direction: column;
    gap: 40px;
  }

  .blog-single__sidebar {
    flex: none;
    width: 100%;
    position: static;
    order: -1;
  }

  .blog-single__toc-list {
    max-height: none;
    overflow-y: visible;
  }

  .blog-single__sidebar-right {
    flex: none;
    width: 100%;
    position: static;
  }

  .blog-single__subscribe-box {
    max-width: 565px;
    width: 100%;
    margin: auto;
  }

  .blog-single__subscribe-box-image {
    max-width: 100%;
  }

  .blog-single__subscribe-box-title {
    max-width: 100%;
  }

  .blog-single__article {
    max-width: 100%;
    padding: 0;
  }

  .blog-single__related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-author-hero {
    margin-bottom: 30px;
  }

  .blog-author-hero__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .blog-author-hero__content {
    padding-bottom: 0;
    min-height: auto;
  }

  .blog-author-hero__photo {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

  .podcast-hero__row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .podcast-hero__text-box {
    text-align: center;
  }

  .podcast-hero__tag {
    align-self: center;
  }

  .podcast-hero--radically-transparent .podcast-hero__tag {
    align-self: center;
  }

  .podcast-hero--behind-the-post .podcast-hero__tag {
    align-self: center;
  }

  .podcast-cta__box {
    padding: 104px 32px;
    border-radius: 24px;
    min-height: 0;
    background-image: url(../images/podcasts/cta-background-mobile.svg);
    background-position: left bottom;
  }

  .podcast-cta__title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.84px;
    margin-bottom: 28px;
  }

  .podcasts {
    background-size: cover, 0, 150px auto, auto, auto;
    padding: 60px 0 80px;
  }

  .podcasts__title {
    font-size: 40px;
    line-height: 50px;
  }

  .podcasts__grid {
    flex-direction: column;
    row-gap: 40px;
  }

  .podcasts__item {
    flex: 0 0 auto;
    padding: 24px;
    border-radius: 20px;
  }
}

@media (max-width: 991px) {
  .blog-navbar {
    top: 81px;
  }
}

@media (max-width: 980px) {
  .blog-single__modal-image img {
    width: 450px;
  }
}

@media (max-width: 870px) {
  .blog-single__modal-content {
    padding: 30px;
  }

  .blog-single__modal-form {
    margin-right: 0;
    padding: 40px;
  }

  .blog-single__modal-image {
    display: none !important;
  }
}

@media (max-width: 800px) {
  .blog-single__subscribe-box {
    max-width: calc(100% - 70px);
  }
}

@media (max-width: 768px) {
  #breadcrumbs i {
    margin: 0 6px;
  }

  .search-cover__title {
    font-size: 37px;
    line-height: 48px;
    letter-spacing: -1.11px;
    margin-bottom: 16px;
  }

  .search-cover__subtitle {
    font-size: 17px;
    line-height: 26px;
    letter-spacing: -0.17px;
  }

  .blog-cover__back-link {
    font-size: 14px;
    line-height: 20px;
  }

  .blog-cover__back-link svg {
    width: 18px;
    height: 18px;
  }

  .blog-cover__content-title {
    font-size: 40px;
    line-height: 48px;
  }

  .blog-cover__featuredpost-title {
    font-size: 26px;
  }

  .archive-hero__title {
    font-size: 37px;
    line-height: 48px;
    letter-spacing: -1.11px;
    margin-bottom: 16px;
  }

  .archive-hero__description {
    font-size: 17px;
    line-height: 26px;
    letter-spacing: -0.17px;
  }

  .archive-hero__decorator--1 {
    display: none;
  }

  .archive-hero__decorator--2 {
    display: none;
  }

  .archive-hero__decorator--3 {
    display: block;
  }

  .archive-hero__decorator--4 {
    display: block;
  }

  .archive-hero {
    min-height: auto;
    padding: 48px 0;
    margin-bottom: 40px;
  }

  .blog-items__filter-row {
    gap: 4px;
  }

  .blog-items__filter-icon svg {
    width: 20px;
    height: 20px;
  }

  .blog-items__filter-pills {
    gap: 6px;
  }

  .blog-items__filter-pill {
    font-size: 16px;
    line-height: 24px;
    padding: 2px 8px;
  }

  .blog-items__search-form {
    max-width: 160px;
  }

  .blog-items__search-input {
    font-size: 14px;
    line-height: 20px;
    padding: 4px 36px 4px 12px;
  }

  .blog-items__search-button {
    width: 28px;
    height: 28px;
    right: 2px;
  }

  .blog-items__search-button svg {
    width: 16px;
    height: 16px;
  }

  .blog-items__nav-categories {
    gap: 6px;
  }

  .blog-items__nav-categoriesItem {
    font-size: 14px;
    line-height: 20px;
    padding: 4px 10px;
  }

  .blog-items__nav-toggle {
    font-size: 14px;
    line-height: 20px;
    padding: 4px 10px;
  }

  .blog-single__hero-title {
    font-size: 32px;
  }

  .blog-single__hero-date {
    font-size: 14px;
    line-height: 24px;
  }

  .blog-single__breadcrumbs-nav i,
  .blog-single__breadcrumbs #breadcrumbs i {
    margin: 0 6px;
  }

  .blog-single__modal-title {
    font-size: 24px;
  }

  .blog-author-hero__name {
    font-size: 40px;
  }

  .blog-author-hero__position {
    font-size: 18px;
  }

  .blog-author-hero__badge {
    width: 64px;
    height: 64px;
  }

  .podcast-hero__text {
    font-size: 16px;
    line-height: 24px;
  }

  .podcast-episodes__text {
    font-size: 16px;
    line-height: 24px;
  }

  .podcasts__text-box {
    margin-bottom: 40px;
  }

  .podcasts__image {
    margin-bottom: 24px;
  }
}

@media (max-width: 576px) {
  .blog-items__list {
    grid-template-columns: 1fr;
  }

  .blog-single__hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .blog-single__hero-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

@media (max-width: 480px) {
  .blog-items__search-form {
    max-width: 120px;
  }
}