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

:root {
  --blog-primary-cta: #FFB100;
  --blog-yellow-50: #FFEFCC;
  --blog-black: #000000;
  --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: "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
}

[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);
}

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

.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;
  max-width: 1062px;
  width: 100%;
}

.blog-cover__posts-column:first-child {
  flex: 0 0 677px;
  max-width: 677px;
}

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

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

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

.blog-cover__featuredpost-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
  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-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: 400;
  line-height: 40px;
  color: var(--blog-black);
  margin: 0;
  transition: color 0.2s ease;
}

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

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

.blog-cover__featuredpost-avatar {
  width: 31px;
  height: 31px;
  border-radius: 100px;
  overflow: hidden;
  background: url("../images/global/default-avatar.svg") center/cover no-repeat;
}

.blog-cover__featuredpost-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-cover__featuredpost-authorname {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--blog-black);
}

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

.blog-cover__featuredpost-tags {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--blog-black);
}

.blog-cover__featuredpost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 1px solid var(--blog-primary-cta);
  border-radius: 100px;
  background: var(--blog-white);
  color: var(--blog-primary-cta);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: all 0.2s;
  width: -moz-fit-content;
  width: fit-content;
}

.blog-cover__featuredpost-button:hover {
  background: var(--blog-primary-cta);
  color: var(--blog-white);
}

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

.blog-items__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1062px;
  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-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 var(--blog-black);
  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 var(--blog-black);
  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: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--blog-card-shadow);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.c-postcard:hover {
  transform: translateY(-4px);
  box-shadow: 1px -4px 40px 0px rgba(0, 0, 0, 0.16);
}

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

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

.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: 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.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.svg") center/cover no-repeat;
}

.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, #FFB100);
}

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

.c-postcard__content-inner h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  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: 20px;
  padding-bottom: 0;
}

.blog-single__hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.blog-single__hero-image {
  width: 100%;
  max-width: 804px;
  border-radius: 24px;
  overflow: hidden;
}

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

.blog-single__hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  max-width: 784px;
}

.blog-single__hero-title {
  font-size: 52px;
  font-weight: 400;
  line-height: 60px;
  color: var(--blog-black);
  margin: 0;
  text-align: center;
}

.blog-single__hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--blog-black);
  text-align: center;
}

.blog-single__hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: auto;
  max-width: 100%;
}

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

.blog-single__hero-avatar {
  width: 31px;
  height: 31px;
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
  background: url("../images/global/default-avatar.svg") center/cover no-repeat;
}

.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: 400;
  line-height: 28px;
  color: var(--blog-black);
}

.blog-single__hero-date {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--blog-grey-800);
}

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

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

.blog-single__content-inner--no-toc {
  justify-content: center;
}

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

.blog-single__sidebar {
  flex: 0 0 358px;
  width: 358px;
  position: relative;
  align-self: stretch;
}

.blog-single__toc {
  position: sticky;
  top: 100px;
  border: 1px solid #d3d3d3;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #FFFFFF;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}

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

.blog-single__toc-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

.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 {
  opacity: 0.7 !important;
}

.blog-single__toc-link.is-active {
  font-weight: 600;
}

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

.blog-single__article-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--blog-black);
}

.blog-single__article-content h1,
.blog-single__article-content h2,
.blog-single__article-content h3,
.blog-single__article-content h4,
.blog-single__article-content h5,
.blog-single__article-content h6 {
  font-weight: 600;
}

.blog-single__article-content b,
.blog-single__article-content strong {
  font-weight: 600;
}

.blog-single__article-content p {
  margin: 0 0 16px 0;
}

.blog-single__article-content p:last-child {
  margin-bottom: 0;
}

.blog-single__article-content h2 {
  font-size: 20px;
  line-height: 28px;
  color: var(--blog-black);
  margin: 40px 0 24px 0;
}

.blog-single__article-content h2:first-child {
  margin-top: 0;
}

.blog-single__article-content h3 {
  font-size: 18px;
  line-height: 26px;
  color: var(--blog-black);
  margin: 32px 0 16px 0;
}

.blog-single__article-content a {
  color: var(--blog-black);
  text-decoration: underline;
}

.blog-single__article-content a:hover {
  color: var(--blog-primary-cta);
}

.blog-single__article-content ul {
  margin: 0 0 16px 0;
  padding-left: 24px;
  list-style-type: disc;
}

.blog-single__article-content ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
  list-style-type: decimal;
}

.blog-single__article-content li {
  margin-bottom: 8px;
  display: list-item;
}

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

.blog-single__article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 24px 0;
}

.blog-single__article-content pre,
.blog-single__article-content code {
  background: #f5f5f5;
  border-radius: 8px;
  font-family: "SF Mono", Monaco, monospace;
  font-size: 14px;
}

.blog-single__article-content pre {
  padding: 16px;
  overflow-x: auto;
  margin: 16px 0;
}

.blog-single__article-content code {
  padding: 2px 6px;
}

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

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

.blog-single__related-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  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 var(--blog-primary-cta);
  border-radius: 100px;
  background: var(--blog-white);
  color: var(--blog-primary-cta);
  font-size: 16px;
  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: var(--blog-primary-cta);
  color: var(--blog-white);
}

.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 .develeap-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;
}

.blog-items + .blog-author-podcasts {
  padding-top: 0;
  margin-top: -100px;
}

.blog-author-podcasts {
  padding: 50px 0;
}

.blog-author-podcasts__inner {
  display: flex;
  flex-direction: column;
  max-width: 1062px;
  margin: 0 auto;
}

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

.blog-author-podcasts .episode-card {
  display: flex;
  flex-direction: column;
}

.blog-author-podcasts .episode-image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.blog-author-podcasts .episode-image:hover {
  transform: scale(1.04);
}

.blog-author-podcasts .episode-image.gradient-bg {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #e91e63 0%, #9c27b0 50%, #673ab7 100%);
}

.blog-author-podcasts .episode-content {
  padding: 15px 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-author-podcasts .episode-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.3;
  color: #333;
  cursor: pointer;
  transition: color 0.2s ease;
}

.blog-author-podcasts .episode-title:hover {
  color: #4CAF50;
}

.blog-author-podcasts .episode-number {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.blog-author-podcasts .develeap-podcast-episode-card__footer {
  margin-top: 10px;
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.blog-author-podcasts .develeap-podcast-listen-button {
  display: inline-flex;
  align-items: center;
  background: #4CAF50;
  color: white;
  padding: 8px 16px 8px 3px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease;
}

.blog-author-podcasts .develeap-podcast-listen-button:hover {
  background: #45a049;
}

.blog-author-podcasts .develeap-podcast-listen-button__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  margin-right: 8px;
}

.blog-author-podcasts .develeap-podcast-listen-button__text {
  font-size: 14px;
  font-weight: 500;
}

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

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

  .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;
    align-self: auto;
  }

  .blog-single__toc {
    position: static;
    padding: 24px;
    max-height: none;
    overflow-y: visible;
  }

  .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;
  }
}

@media (max-width: 768px) {
  .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-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;
    line-height: 40px;
  }

  .blog-single__hero-tags {
    font-size: 16px;
    line-height: 24px;
  }

  .blog-single__hero-authorname {
    font-size: 16px;
    line-height: 24px;
  }

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

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

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

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

@media (max-width: 767px) {
  .blog-author-podcasts {
    padding: 40px 0;
  }

  .blog-author-podcasts__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .blog-author-podcasts .episode-title {
    font-size: 16px;
  }
}

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

  .blog-single__hero-meta {
    flex-direction: column;
    gap: 12px;
  }

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

@media (max-width: 500px) {
  .blog-author-podcasts__grid {
    grid-template-columns: 1fr;
  }
}

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