    .st-post-content > *,
    .st-post-header,
    .st-post-body,
    .st-blog__aside,
    .st-blog__related,
    .st-post-section,
    .st-post-ad,
    .st-post-ad__inner {
        min-width: 0;
    }

    .st-post-content {
        padding: 0 6%;
        display: grid;
        grid-template-areas:
        "header"
        "article"
        "related"
        "sidebar";
    }

    @media (min-width: 1024px) {
        .st-post-content {
            display: grid;
            gap: 24px 40px;
            grid-template-columns: 1fr 310px;
            grid-template-rows: auto 1fr;
            width: 100%;
            grid-template-areas:
                "header header"
                "article sidebar"
                "related related";
            padding: 0 40px;
            max-width: 1180px;   /* 750 + 40 + 310 */
            margin-inline: auto;
        }
    }




    /* Article Header */
    .st-post-header {
        padding: 30px 0 0;
        grid-area: header;
    }

    .st-post-header__title {
        font-family: bookmania, sans-serif;
        line-height: 1.15;
	padding-bottom: 10px;
        font-size: clamp(42px, 4.1vw, 52px);
    }

    .st-post-header__img-container {
        overflow: hidden;
        border-radius: 5px;
        aspect-ratio: 2.5;
    }

    .st-post-header__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .st-post-header__info {
        text-transform: uppercase;
        font-family: franklin-gothic-urw, sans-serif;
        font-weight: 400;
        font-size: 13px;
        display: flex;
        justify-content: space-between;
        padding-top: 15px;
        gap: 10px;
    }

    .st-post-header__info-container {
        display: flex;
        gap: 10px;
    }

    .st-post-header__info-divider {
        width: 1px;
        background: #ccc;
    }

    .st-post-header__socials {
        white-space: nowrap;
    }

    .st-post-header__insta {
        filter: invert(1);
        width: 15px;
        display: inline-flex;
        align-items: start;
        margin-right: 9px;
    }

    .st-post-header__divider {
        margin-bottom: 10px;
        margin-top: 10px;
    }

    @media (max-width: 1023px) {
        .st-post-header {
            padding-bottom: 24px;
        }

        .st-post-header__title {
            font-size: clamp(32px, 4.11vw, 42px);
        }
    }

    @media (max-width: 767px) {
        .st-post-header__title {
            font-size: clamp(20px, 6.15vw, 32px);
        }

        .st-post-header__info {
            font-size: 12px;
            line-height: 1.25;
        }

        .st-post-header__info-container {
            flex-direction: column;
            gap: 2px;
        }

        .st-post-header__info-divider {
            display: none;
        }
    }




    /* Article Body */
    .st-post-body {
        grid-area: article;
    }

    .st-post-section {
        margin-bottom: 50px;
    }

    .st-post-section__title {
        line-height: 1;
        margin-bottom: 15px;
        font-family: bookmania, sans-serif;
        padding: 0;
        font-size: clamp(40px, 3.5vw, 45px);
    }

    .st-post-section__title--h3{
        font-size: clamp(32px, 3.125vw, 36px);
    }

    .st-post-section__text {
        margin-bottom: 20px;
        font-family: bookmania, sans-serif;
        color: black;
        line-height: 1.25;
        font-size: clamp(20px, 1.8vw, 24px);
    }

    .st-post-section__text a {
        text-decoration: underline;
    }

    .st-post-section__gallery {
        display: grid;
        margin-bottom: 20px;
        gap: var(--gallery-gap);
    }

    .st-post-section__gallery--multi {
        grid-template-columns: repeat(var(--gallery-columns), 1fr);
    }

    .st-post-section__gallery-container {
        overflow: hidden;
        width: 100%;
    }

    .st-post-section__gallery-img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .st-post-section__yt-video {
        width: 100%;;
        position: relative;
        padding-top: 56.25%;
        overflow: hidden;
        max-width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .st-post-section__yt-video > * {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    @media (max-width: 1023px) {
        .st-post-section__title {
            font-size: clamp(35px, 4.3vw, 40px);
        }

        .st-post-section__title--h3{
            font-size: clamp(28px, 3.645vw, 32px);
        }

        .st-post-section__text {
            font-size: clamp(18px, 2.1vw, 20px);
        }
    }

    @media (max-width: 767px) {
        .st-post-section__title {
            font-size: clamp(30px, 7.6vw, 40px);
        }

        .st-post-section__title--h3{
            font-size: clamp(23px, 6.415vw, 32px);
        }

        .st-post-section__text {
            font-size: clamp(18px, 4vw, 22px);
        }

        .st-post-section__gallery--multi {
            grid-template-columns: repeat(2, 1fr);
        }

        .st-post-section__gallery-container--solo-mobile {
            grid-column: span 2;
            width: var(--solo-width-mobile);
            justify-self: var(--solo-justify-mobile);
        }
    }

    @media screen and (min-width: 768px) {
        .st-post-section__gallery-container--solo-desktop {
            grid-column: span var(--gallery-columns);
            width: var(--solo-width);
            justify-self: var(--solo-justify);
        }
    }
    



    /* Affiliate Section */
    .st-post-section__affiliate {
        display: flex;
        width: 100%;
        background: white;
        padding: 30px;
        gap: 30px;
        margin-bottom: 20px;
    }

    .st-post-section__affiliate-img-cont {
        width: 45%;
    }

    .st-post-section__affiliate-img {
        width: 100%;
    }

    .st-post-section__affiliate-text-wrap {
        flex: 1;
        flex-direction: column;
        display: flex;
    }

    .st-post-section__affiliate-text-wrap {
        flex: 1;
        flex-direction: column;
        display: flex;
    }

    .st-post-section__affiliate-heading {
        line-height: 1.25;
        margin-bottom: 5px;
        font-family: bookmania, sans-serif;
        padding: 0;
        font-size: clamp(24px, 2.3vw, 32px);
    }

    .st-post-section__affiliate-price {
        line-height: 1.25;
        margin-bottom: 5px;
        font-family: bookmania, sans-serif;
        padding: 0;
        font-size: clamp(24px, 2.3vw, 32px);
        color: #c96d36;
    }

    .st-post-section__affiliate-text {
        margin-bottom: 15px;
        font-family: franklin-gothic-urw, sans-serif;
        color: black;
        line-height: 1.1;
        font-size: clamp(20px, 1.8vw, 24px);
    }

    .st-post-section__affiliate-button {
        width: 100%;
        text-align: center;
        text-decoration: none;
        background: var(--main-button-color);
        color: white !important;
        font-weight: 600;
        font-family: bookmania, sans-serif;
        border-radius: 5px;
        line-height: 1;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        height: clamp(40px, 3.9vw, 50px);
        font-size: clamp(18px, 1.75vw, 20px);
    }

    @media (max-width: 1023px) {
        .st-post-section__affiliate {
            gap: clamp(20px, 1.95vw, 30px);
            padding: clamp(20px, 1.95vw, 30px);
        }

        .st-post-section__affiliate-heading, .st-post-section__affiliate-price {
            font-size: clamp(26px, 3.4vw, 36px);
        }

        .st-post-section__affiliate-text {
            font-size: clamp(18px, 2.1vw, 20px);
        }

        .st-post-section__affiliate-button {
            height: clamp(40px, 5.25vw, 50px);
            font-size: clamp(18px, 2.35vw, 20px);
        }
    }

    @media (max-width: 767px) {
        .st-post-section__affiliate {
            flex-wrap: wrap;
        }

        .st-post-section__affiliate-img-cont {
            width: 100%;
        }

        .st-post-section__affiliate-heading, .st-post-section__affiliate-price {
            font-size: clamp(24px, 7vw, 36px);
        }
    }




    /* Ads Section */
    .st-post-ad {
        width: 100%;
    }

    .st-post-ad__inner {
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
        box-sizing: border-box;
    }

    .st-post-ad__slot {
        display: block;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }




    /* Article Latest */
    .st-blog__aside {
        grid-area: sidebar;
    }

    .st-blog__aside-sticky {
        position: sticky;
        top: 60px;
    }

    .st-blog__aside-heading {
        margin-bottom: 10px;
        font-family: bookmania, sans-serif;
        font-size: 26px;
    }

    .st-blog__aside-item {
        margin-bottom: 10px;
    }

    .st-blog__aside-image {
        aspect-ratio: 1200 / 630;
        overflow: hidden;
        border-radius: 5px;
        margin-bottom: 5px;
    }

    .st-blog__aside-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .st-blog__aside-title {
        font-family: franklin-gothic-urw, sans-serif;
        color: black;
        font-size: 17px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: 400;
        line-height: 1.25;
    }

    .st-blog__aside-desc {
        display: none;
        font-family: franklin-gothic-urw, sans-serif;
        color: black;
    }

    @media (max-width: 1023px) {
        .st-blog__aside-link {
            text-decoration: none;
        }

        .st-blog__aside-image {
            margin-bottom: clamp(10px, 2.6vw, 20px);
        }

        .st-blog__aside-title {
            font-weight: 600;
            font-family: bookmania, sans-serif;
            margin-bottom: 5px;
            font-size: clamp(20px, 5.64vw, 26px);
        }

        .st-blog__aside-title:hover {
            text-decoration: underline;
        }

        .st-blog__aside-desc {
            font-family: franklin-gothic-urw, sans-serif;
            color: black;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: clamp(15px, 4.36vw, 22px);
        }
    }




    /* Article Latest */
    .st-blog__related {
        padding: 10px 6% 30px;
        grid-area: related;
    }

    .st-blog__related-heading {
        margin-bottom: 10px;
        font-family: bookmania, sans-serif;
        font-size: 26px;
    }

    .st-blog__related-container {
        display: flex;
        flex-wrap: wrap;
        gap: clamp(15px, 1.6vw, 30px);
    }

    .st-blog__related-item {
        flex: 1;
        max-width: calc(100% / 4);
    }

    .st-blog__related-link {
        background: white;
        display: block;
        text-decoration: none;
        padding: clamp(10px, 0.8vw, 15px);
    }

    .st-blog__related-image {
        aspect-ratio: 1.5;
        overflow: hidden;
        width: 100%;
        margin-bottom: clamp(15px, 1.6vw, 20px);
    }

    .st-blog__related-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .st-blog__related-title {
        margin-bottom: 10px;
        font-family: bookmania, sans-serif;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: clamp(18px, 1.75vw, 20px);
    }

    .st-blog__related-title:hover {
        text-decoration: underline;
    }

    .st-blog__related-desc {
        margin-bottom: 20px;
        font-family: franklin-gothic-urw, sans-serif;
        color: black;
        line-height: 1.1;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: clamp(15px, 1.46vw, 17px);
    }

    @media (max-width: 1023px) {
        .st-blog__related {
            padding: 50px 6%;
        }

        .st-blog__related-container {
            gap: 3%;
        }

        .st-blog__related-item {
            max-width: calc(100% / 3 - 3%*(2 / 3));
            margin-bottom: 3%;
            flex: unset;
        }

        .st-blog__related-title {
            font-size: clamp(16px, 2.08vw, 18px);
        }

        .st-blog__related-desc {
            font-size: clamp(14px, 1.82vw, 15px);
        }
    }

    @media (max-width: 767px) {
        .st-blog__related-container {
            gap: 4%;
        }

        .st-blog__related-item {
            max-width: calc(100% / 2 - 4% / 2);
            margin-bottom: 4%;
        }

        .st-blog__related-title {
            font-size: clamp(17px, 4.62vw, 24px);
        }

        .st-blog__related-desc {
            font-size: clamp(14px, 1.82vw, 15px);
            display: none;
        }
    }