/**
 * ActivaDerma Blog Post - Redesign Stylesheet
 * 
 *
 */


.blog-post-redesign {
    text-align: left;
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 40px;
}
.blog-post-redesign *,
.blog-post-redesign *::before,
.blog-post-redesign *::after {
    box-sizing: border-box;
}
.blog-hero {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 32px;
}
.blog-hero img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}
.blog-header {
    margin-bottom: 36px;
}

.blog-header__title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 24px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}


.blog-byline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
}

.blog-byline__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-byline__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #e8e8e8;
}

.blog-byline__info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.blog-byline__name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.3;
}

.blog-byline__credentials {
    font-size: 12px;
    color: #888;
    line-height: 1.3;
}

.blog-byline__date {
    font-size: 13px;
    color: #888;
    line-height: 1.3;
}

.blog-byline__meta {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    line-height: 1.3;
    color: #888;
}

.blog-byline__meta-dot {
    color: #bbb;
    font-size: 10px;
}

.blog-byline__readtime {
    color: #888;
}

.blog-share-button {
    padding: 0;
    background: #fff;
    font-family: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.blog-byline__share {
    display: flex;
    gap: 8px;
}

.blog-share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10%;
    border: 1px solid #d6d6d6;
    color: #555;
    font-size: 16px;
    transition: all 0.2s ease;
}

.blog-share-link:hover {
    background-color: #12afa3;
    border-color: #12afa3;
    color: #fff;
}


.blog-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}


.blog-post__body {
    flex: 1;
    min-width: 0; /* prevent flex overflow */
    overflow-wrap: break-word;
}

.blog-post__body p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.blog-post__body h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a2e;
    margin: 40px 0 16px;
    padding: 0;
    text-transform: none;
}

.blog-post__body h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    color: #1a1a2e;
    margin: 32px 0 12px;
}

.blog-post__body h4 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 24px 0 10px;
}

.blog-post__body h2:first-child {
    margin-top: 0;
}

.blog-post__body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
    display: block;
}

.blog-post__body a {
    color: #12afa3;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-post__body a:hover {
    color: #0e918a;
}

.blog-post__body ul,
.blog-post__body ol {
    margin: 0 0 20px 24px;
    padding: 0;
}

.blog-post__body li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.blog-post__body blockquote {
    border-left: 4px solid #12afa3;
    margin: 24px 0;
    padding: 16px 24px;
    background: #f7fffe;
    color: #333;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.blog-post__body strong {
    font-weight: 600;
    color: #1a1a2e;
}

.blog-post__body span {
    /* Reset any inherited span styles from the theme */
}


.blog-sidebar {
    width: 300px;
    flex-shrink: 0;
    position: relative;
}

.blog-sidebar__inner {
    /* JS sets position/top/left/width inline when pinned */
}

.blog-sidebar__inner.is-pinned {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}


.blog-toc {
    background: #f2f2f2a8;
    padding: 24px;
    margin-bottom: 24px;
}

.blog-toc__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
    padding: 0 0 12px;
    border: none;
    border-bottom: 1px solid #eee;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.blog-toc__caret {
    display: none;
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-right: 2px solid #888;
    border-bottom: 2px solid #888;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    margin-left: 12px;
}

.blog-toc__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-toc__item {
    margin: 0;
    padding: 0;
}

.blog-toc__link {
    display: block;
    padding: 8px 0 8px 16px;
    font-size: 13px;
    line-height: 1.5;
    color: #555;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    text-decoration: none;
}

.blog-toc__link:hover {
    color: #12afa3;
    text-decoration: none;
}

.blog-toc__link.is-active {
    color: #12afa3;
    font-weight: 500;
    border-left-color: #12afa3;
}

.blog-recent {
    background: #f2f2f2a8;
    padding: 24px;
}

.blog-recent__heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.blog-recent__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-recent__item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.blog-recent__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.blog-recent__link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #333;
}

.blog-recent__link:hover {
    text-decoration: none;
}

.blog-recent__link:hover .blog-recent__title {
    color: #12afa3;
}

.blog-recent__thumb {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #f0f0f0;
}

.blog-recent__title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: #1a1a2e;
    transition: color 0.2s ease;
}


/* 
   PRODUCT CTA CARD (via {{block}} directive)
 */

.product-cta-card {
    width: 100%;
    max-width: 600px;
    margin: 32px auto;
    padding: 18px;
    background: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 10px;
    overflow: hidden;
}

.product-cta-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 10px 10px 20px;
}

.product-cta-card__image a {
    display: block;
    text-decoration: none !important;
}

.product-cta-card__image img {
    display: block;
    width: 300px;
    height: 300px;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 0;
}

.product-cta-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.product-cta-card__product {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    min-width: 0;
}

.product-cta-card__name {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 !important;
}

.product-cta-card__rating {
    display: flex;
    align-items: center;
    gap: 1px;
    margin: 0;
    white-space: nowrap;
}

.product-cta-card__star {
    color: #f5a623;
    font-size: 15px;
    line-height: 1;
}

.product-cta-card__star--empty {
    color: #d6d6d6;
}

.product-cta-card__price {
    flex-shrink: 0;
    margin-left: auto;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: #999;
}

.blog-post__body .product-cta-card__btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    margin: 0;
    background: #12afa3;
    border-radius: 8px;
    color: #fff !important;
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
    transition: background-color 0.2s ease;
}

.blog-post__body .product-cta-card__btn:hover {
    background: #0e918a;
    color: #fff !important;
    text-decoration: none !important;
}


.blog-author-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 32px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 48px 0 32px;
    max-width: 780px;
}

.blog-author-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #e8e8e8;
}

.blog-author-card__info {
    flex: 1;
}

.blog-author-card__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
    margin: 0 0 4px;
}

.blog-author-card__name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.blog-author-card__credentials {
    display: block;
    font-size: 13px;
    color: #12afa3;
    margin-bottom: 10px;
}

.blog-author-card__bio {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}


.faq-section {
    margin: 48px 0;
}

.faq-section > h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 24px;
}

.faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 25px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: #ccc;
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 8px 8px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

.faq-item h3:hover {
    color: #12afa3;
}

.faq-item__number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #12afa3;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 25%;
    line-height: 1;
}

.faq-item__toggle {
    flex-shrink: 0;
    margin-left: auto;
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
    content: '';
    position: absolute;
    background: #888;
    transition: transform 0.3s ease;
}

.faq-item__toggle::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item__toggle::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* When open: rotate to minus (hide vertical bar) */
.faq-item.is-open .faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 20px 0 72px; /* 36px number + 16px gap + 20px padding */
}

.faq-item.is-open .faq-item__answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-item__answer p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 8px;
}


.references-section {
    background: #f2f2f2a8;
    border-radius: 10px;
    padding: 28px 32px;
    margin: 40px 0;
}

.references-section h2 {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a2e;
    margin: 0 0 16px !important;
}
.references-section ol{
    list-style: decimal !important;
}

.references-section ol,
.references-section ul {
    margin: 0;
    padding: 0 0 0 20px;
}

.references-section li {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 6px;
}

.references-section a {
    color: #12afa3;
    word-break: break-all;
}


.blog-pagination {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    margin: 40px 0;
}

.blog-pagination__link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    padding: 18px 22px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    color: #1a1a2e;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.blog-pagination__link--next {
    align-items: flex-end;
    text-align: right;
}

.blog-pagination__direction {
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
    color: #888;
    transition: color 0.2s ease;
}

.blog-pagination__title {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    color: #1a1a2e;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    transition: color 0.2s ease;
}


.blog-pagination__link:hover {
    border-color: #12afa3;
    text-decoration: none;
}

.blog-pagination__link:hover .blog-pagination__direction,
.blog-pagination__link:hover .blog-pagination__title {
    color: #12afa3;
}

.blog-pagination__link--disabled {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}


.blog-related {
    margin: 48px 0 32px;
}

/* Header: heading left, nav arrows right */
.blog-related__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.blog-related__heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.blog-related__nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.blog-related__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    color: #1a1a2e;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.blog-related__arrow:hover {
    border-color: #12afa3;
    color: #12afa3;
}

.blog-related__arrow:disabled {
    opacity: 0.35;
    cursor: default;
    border-color: #e0e0e0;
    color: #1a1a2e;
}

/* Viewport bleeds to the right edge of the screen */
.blog-related__viewport {
    overflow: hidden;
    margin-right: calc(50% - 50vw);
}

.blog-related__track {
    display: flex;
    gap: 24px;
    padding-right: 24px;
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.blog-related__slide {
    flex: 0 0 340px;
    max-width: 340px;
}

/* Borderless card */
.blog-related__card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: transparent;
    text-decoration: none;
    height: 100%;
}

.blog-related__thumb-wrap {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 14px;
    overflow: hidden;
    background: #f0f0f0;
    margin-bottom: 16px;
}

.blog-related__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.blog-related__card:hover .blog-related__thumb {
    transform: scale(1.04);
}

.blog-related__card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Eyebrow: brand dot read-time */
.blog-related__eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

.blog-related__brand,
.blog-related__readtime {
    color: #555;
}

.blog-related__dot {
    color: #bbb;
    font-size: 10px;
}

.blog-related__title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: #1a1a2e;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.blog-related__card:hover .blog-related__title {
    color: #12afa3;
}

.blog-related__excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #999;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-related__more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    text-decoration: none;
    margin-top: auto;
    transition: color 0.2s ease;
}

.blog-related__more-arrow {
    transition: transform 0.2s ease;
}

.blog-related__card:hover .blog-related__more {
    color: #12afa3;
}

.blog-related__card:hover .blog-related__more-arrow {
    transform: translateX(4px);
}

/* Stretched link: whole card clickable via the Read more anchor */
.blog-related__more::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Tablet */
@media only screen and (max-width: 991px) {
    .blog-related__slide {
        flex-basis: 300px;
        max-width: 300px;
    }
}

/* Mobile */
@media only screen and (max-width: 767px) {
    .blog-related__head {
        margin-bottom: 16px;
    }
    .blog-related__arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .blog-related__track {
        gap: 16px;
        padding-right: 16px;
    }
    .blog-related__slide {
        flex-basis: 82%;
        max-width: 82%;
    }
    .blog-related__title {
        font-size: 16px;
    }
}


.blog-comments {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid #e8e8e8;
    max-width: 780px;
}

.blog-comments__heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 24px;
}

.blog-comments__count {
    font-weight: 400;
    color: #888;
    font-size: 18px;
}

.blog-comment {
    padding: 20px 24px;
    margin-bottom: 16px;
    background: #f9f9f9;
    border-radius: 10px;
}

.blog-comment__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
    font-size: 13px;
}

.blog-comment__user {
    font-weight: 600;
    color: #1a1a2e;
}

.blog-comment__user i,
.blog-comment__date i {
    color: #12afa3;
    margin-right: 4px;
}

.blog-comment__date {
    color: #888;
}

.blog-comment__body {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}


.blog-comment-form {
    margin-top: 32px;
    padding: 28px 32px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
}

.blog-comment-form__heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px;
}

.blog-comment-form__row {
    display: flex;
    gap: 16px;
}

.blog-comment-form__field {
    margin-bottom: 16px;
}

.blog-comment-form__field--half {
    flex: 1;
}

.blog-comment-form__field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.blog-comment-form__field label em {
    color: #e74c3c;
}

.blog-comment-form__field input[type="text"],
.blog-comment-form__field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #333;
    background: #fafafa;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
}

.blog-comment-form__field input[type="text"]:focus,
.blog-comment-form__field textarea:focus {
    border-color: #12afa3;
    background: #fff;
    outline: none;
}

.blog-comment-form__field textarea {
    resize: vertical;
    min-height: 120px;
}

.blog-comment-form__recaptcha {
    margin-bottom: 16px;
}

.blog-comment-form .required {
    font-size: 12px;
    color: #888;
    margin-bottom: 16px;
}

.blog-comment-form__submit {
    display: inline-block;
    padding: 12px 32px;
    background: #12afa3;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.blog-comment-form__submit:hover {
    background: #0e918a;
}

.blog-comments__closed {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    color: #888;
    font-size: 14px;
}

.blog-comments__login {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    font-size: 14px;
    color: #555;
}

.blog-comments__login-link {
    color: #12afa3;
    font-weight: 600;
}


@media only screen and (max-width: 1199px) {
    .blog-sidebar {
        width: 260px;
    }
}

@media only screen and (max-width: 991px) {
    .blog-layout {
        flex-direction: column;
    }

    .blog-sidebar {
        width: 100%;
        order: -1;
        margin-bottom: 24px;
    }

    .blog-sidebar__inner {
        display: block;
    }

    .blog-toc {
        margin-bottom: 16px;
    }

    .blog-toc__heading {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .blog-toc__caret {
        display: block;
    }

    .blog-toc__heading[aria-expanded="true"] .blog-toc__caret {
        transform: rotate(225deg);
    }

    .blog-toc__list {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .blog-toc__heading[aria-expanded="true"] + .blog-toc__list {
        max-height: 1000px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid #eee;
    }


    .blog-author-card {
        max-width: 100%;
    }

    .blog-comments {
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .blog-post-redesign {
        font-size: 15px;
        padding-bottom: 24px;
    }

    .blog-hero {
        max-height: 280px;
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .blog-header__title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .blog-byline {
        align-items: flex-start;
        gap: 12px;
    }

    .blog-byline__share {
        align-self: flex-start;
    }

    .blog-post__body h2 {
        font-size: 20px;
        margin-top: 32px;
    }

    .blog-post__body h3 {
        font-size: 18px;
    }


    .blog-author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
    }

    .blog-pagination {
        grid-template-columns: 1fr;
    }
    
    .blog-pagination__link {
        width: 100%;
    }
    
    .blog-pagination__link--next {
        align-items: flex-start;
        text-align: left;
    }

    /* Comment form */
    .blog-comment-form {
        padding: 20px;
    }

    .blog-comment-form__row {
        flex-direction: column;
        gap: 0;
    }

    .blog-comment {
        padding: 16px;
    }

    .blog-comment__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .faq-item{
        border-radius: 15px;
    }
    .faq-item h3 {
        font-size: 14px;
        padding: 10px 10px;
        gap: 12px;
    }

    .faq-item__number {
        width: 48px;
        height: 48px;
        font-size: 12px;
    }

    .faq-item__answer {
        padding-left: 58px;
    }

    .product-cta-card {
        padding: 14px;
    }
    
    .product-cta-card__image {
        min-height: 220px;
        padding: 8px 8px 16px;
    }
    
    .product-cta-card__image img {
        width: 240px;
        height: 240px;
    }
    
    .product-cta-card__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .product-cta-card__price {
        margin-left: 0;
    }
    
    .blog-post__body .product-cta-card__btn {
        font-size: 16px;
        padding: 13px 20px;
    }

    /* References */
    .references-section {
        padding: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .blog-header__title {
        font-size: 20px;
    }

    .blog-related__heading,
    .blog-comments__heading,
    .faq-section > h2 {
        font-size: 20px;
    }
}