/* --- Base Styles --- */
:root {
    --color-primary: #1F2D57;
    --color-white: #FFFFFF;
    --color-secondary: #FF3E8E;
    --color-background: #FFFFFF;
    --color-accent: #F3E502;
    --color-blue: #00D7D9;
    --font-family: "inter-variable", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
    text-transform: capitalize;
}

/* --- Container --- */
.nkl-container {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
    width: 100%;
}

.nkl-title {
    color: var(--color-primary);
    letter-spacing: -0.04em;
}

.nkl-desc {
    font-weight: 300;
    font-size: 21px;
    letter-spacing: -0.04em;
    color: var(--color-primary);
}

.blue,
.pink,
.yellow {
    position: relative;
    z-index: 0;
    display: inline-block;
}

.yellow::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 48px;
    background: var(--color-accent);
    border-radius: 8px;
    z-index: -1;
}

.pink::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 48px;
    border-radius: 8px;
    z-index: -1;
    background: var(--color-secondary);
    color: var(--color-white);
}

.blue::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 48px;
    border-radius: 8px;
    z-index: -1;
    background: var(--color-blue);
    color: var(--color-white);
}

.yellow.split::before,
.pink.split::before,
.blue.split::before {
    width: 100%;
    height: 48px;
}

.nkl-btn {
    display: flex;
    align-items: center;
    gap: 8px;

    font-weight: 500;
    padding: 8px 32px;
    border-radius: 16px;
    font-size: 16px;
    transition: background 0.2s;
    line-height: 110%;
    letter-spacing: -0.04em;
    width: fit-content;
    text-align: center;
    justify-content: center;
}

.nkl-btn-pink {
    background: var(--color-secondary);
    color: var(--color-white);
}

.nkl-btn-pink:hover {
    background: var(--color-primary);
}

.nkl-btn:hover {
    opacity: 0.8;
}

.nkl-btn svg {
    margin-bottom: -3px;
}

/* --- Hero Section Styles --- */

.nkl-hero {
    position: relative;
    min-height: 929px;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0 0 32px 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.nkl-hero .nkl-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nkl-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding-top: 90px;
}

.nkl-hero-badge {
    display: inline-block;
    width: 100%;
}

.nkl-hero-title {
    color: var(--color-white);
    line-height: 106px;
    letter-spacing: -4px;
    display: flex;
    flex-direction: column;
}

.nkl-hero-title .pink::before {
    max-width: 630px;
    bottom: 8px;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
}

.nkl-thebook-page .nkl-hero-title .pink::before {
    max-width: 842px;
}
.nkl-about-page .nkl-hero-title .pink::before {
    max-width: 670px;
}
.nkl-hero-subtitle {
    font-family: "inter-variable", sans-serif;
    font-weight: 300;
    font-size: 21px;
    line-height: 135%;
    text-align: right;
    letter-spacing: -0.04em;
    color: var(--color-white);
    margin: 0px;
}

/* --- Naked Myth Custom Styles --- */

.nkl-intro-podcast {
    background: var(--color-white);
    padding: 80px 0 80px 0;
}

.nkl-intro-podcast-header {
    margin-bottom: 16px;
}

.nkl-intro-podcast-highlight {
    margin-left: 155px;
}


.nkl-intro-podcast-columns {
    display: flex;
    gap: 40px;
}

.nkl-intro-podcast-col {
    flex: 1;
}

.nkl-intro-podcast-col p {
    font-weight: 300;
    font-size: 21px;
    line-height: 135%;
    letter-spacing: -0.04em;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.nkl-intro-podcast-col p:last-child {
    margin-bottom: 0px;
}


.nkl-podcast-platforms {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 80px 0 72px 0;
}

.nkl-podcast-platforms-content {
    text-align: center;
}

.nkl-podcast-title {
    color: var(--color-white);
    margin-bottom: 40px;
    text-align: left;
}

.nkl-podcast-logos-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.nkl-podcast-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 36px 64px;
    justify-content: center;
    align-items: center;
    max-width: 870px;
    width: 100%;
}

.nkl-podcast-logo img {
    height: auto;
    object-fit: cover;
    max-width: 180px;
}
.nkl-podcast-logo-11 img {
    max-width: 52px;
}
.nkl-podcast-logo-7 img {
    max-width: 102px;
}
.nkl-podcast-logo-1 img {
    max-width: 117px;
}
.nkl-myth-pages {
    background: var(--color-white);
    padding: 80px 0 80px 0;
}

.nkl-myth-pages .nkl-container {
    max-width: 1440px;
    margin: 0 auto;
}

.nkl-myth-pages-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.nkl-myth-pages-image {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: flex-end;
    max-width: 550px;
}

.nkl-myth-img {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.nkl-myth-pages-content {
    flex: 1;
    max-width: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.nkl-myth-pages-title {
    margin-bottom: 6px;
    text-align: center;
}

.nkl-myth-pages-highlight::before {
    left: -60px;
    bottom: 0;
}

.nkl-myth-pages-desc {
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: 0px;
    text-align: center;
    letter-spacing: 0px;
}

.nkl-myth-pages-btn {
    max-width: fit-content;
}

/* page broadcasts */
.page-broadcasts .nkl-hero-title {
    text-align: right;
    margin-bottom: 24px;
}

.nkl-myth-pages-title {
    margin-bottom: 0px;
}

.nkl-myth-pages-title span {
    font-size: 72px;
}

.nkl-myth-pages-content {
    gap: 16px;
}

.page-broadcasts .nkl-hero-title>span {
    text-align: center;
}

.page-broadcasts .nkl-hero .nkl-container {
    max-width: 1440px;
}

.page-broadcasts .nkl-intro-podcast-title {
    margin-bottom: 24px;
    width: 62%;
}

.page-broadcasts .nkl-podcast-title {
    width: 62%;
}

.page-broadcasts .nkl-intro-podcast-title>span {
    display: inline-block;
    margin-left: 155px;
}

.page-broadcasts .nkl-podcast-title>span {
    display: inline-block;
    margin-left: 155px;
}
.page-broadcasts .nkl-podcast-title .pink{
    margin-right: 12px;
}
.nkl-about-page  .nkl-myth-pages-title .yellow::before ,
.page-broadcasts .nkl-myth-pages-title .yellow::before {
    left: -42px;
    width: 130%;
}
/* page about */
.nkl-podcast-highlight-box {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

.nkl-podcast-highlight-box .nkl-container {
    max-width: 1140px;
    margin: 0 auto;
}

.nkl-podcast-highlight-content p {
    font-weight: 700;
    font-size: 96px;
    line-height: 106px;
    letter-spacing: -0.04em;
    color: #1F2D57;
    margin-bottom: 26px;
}

.nkl-podcast-highlight-content p:last-child {
    margin-bottom: 0px;
}
.nkl-podcast-highlight-content br {
    display: none;
}
.nkl-about-page .nkl-podcast-highlight-box .nkl-container {
    max-width: 1204px;
}

.nkl-about-page .nkl-hero-content {
    padding-top: 30px;
}

.nkl-about-page .nkl-intro-podcast-title>span {
    display: inline-block;
    margin-left: 155px;
}


.nkl-about-page .nkl-intro-podcast-header {
    margin-bottom: 24px;
}

.nkl-podcast-highlight-content .blue::before,
.nkl-podcast-highlight-content .pink::before,
.nkl-podcast-highlight-content .yellow::before {
    bottom: 8px;
    top: auto;
}

.nkl-about-page .nkl-intro-podcast {
    padding: 78px 0 80px 0;
}

.nkl-about-page .episodes {
    padding-top: 80px;
    padding-bottom: 76px;
    margin-bottom: 0px;
}

.page-broadcasts .st-reach-out .box-content-st10 ,
.nkl-about-page .st-reach-out .box-content-st10 {
    padding: 22px 24px 26px 32px;
}
.page-broadcasts .box-content-st10 .highlight-reach-out,
.nkl-about-page .box-content-st10 .highlight-reach-out {
    font-size: 72px;
}

.nkl-about-page .nkl-hero-title.nkl-light {
    text-align: right;
    margin-bottom: 58px;
}

.page-broadcasts .box-content-st10 .highlight-reach-out::before {
    width: 102%;
    height: 48px;
}
.nkl-about-page .nkl-hero-title.nkl-light span:first-child::before {
    left: auto;
    transform: unset;
}

.nkl-about-page .nkl-hero-title.nkl-light span {
    text-align: center;
}



.nkl-about-page .nkl-hero-badge {
    text-align: right;
}

.nkl-about-page .nkl-hero-badge>span {
    text-align: center;
}

/* page the book */
.nkl-about-page .nkl-intro-podcast-title>span,
.nkl-thebook-page .nkl-intro-podcast-title>span {
    display: inline-block;
    margin-left: 155px;
}
.nkl-about-page .nkl-intro-podcast-title>span .yellow,
.nkl-thebook-page .nkl-intro-podcast-title>span .yellow {
    margin-left: 12px;
}
/* .nkl-thebook-page .nkl-podcast-highlight-content p {
    line-height: 114px;
} */

.nkl-thebook-page .nkl-podcast-highlight-box .nkl-container,
.nkl-thebook-page .nkl-book-benevolence .nkl-container,
.nkl-thebook-page .nkl-book-themes .nkl-container {
    max-width: 1204px;
}

.nkl-thebook-page .nkl-hero-content {
    padding-top: 30px;
}

.nkl-thebook-page .nkl-hero-title.nkl-light span:first-child::before {
    max-width: 100%;
}

.nkl-thebook-page .nkl-hero-title {
    text-align: right;
}

.nkl-thebook-page .nkl-hero-title span:last-child {
    text-align: center;
}
.nkl-about-page .nkl-intro-podcast-title ,
.nkl-thebook-page .nkl-intro-podcast-title {
    width: 53%;
    margin-bottom: 24px;
}
.nkl-thebook-page .nkl-book-platform-title>span::before {
    bottom: 3px;
    width: 100%;
    height: 32px;
}
.nkl-book-platform-cta {
    position: relative;
    padding: 80px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.nkl-book-platform-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 24px 24px 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nkl-book-platform-title {
    font-size: 72px;
    letter-spacing: -0.04em;
    text-transform: capitalize;
    color: #1F2D57;
    line-height: 79px;
    margin-bottom: 0px;
}

.nkl-book-platform-logos {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 32px 40px;
    margin: 0;
    padding: 0;
}
.nkl-book-platform-logos a {
    display: inline-flex;
    justify-content: center;
}
.nkl-book-platform-logos img {
    object-fit: contain;

    max-width: 156px;
}
.nkl-book-themes {
    padding: 80px 0;
    background: var(--color-secondary);
}

.nkl-book-themes p {
    font-weight: 700;
    font-size: 56px;
    line-height: 120%;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    margin-bottom: 18px;
}

.nkl-book-themes p:last-child {
    margin-bottom: 0px;
}

.nkl-book-benevolence .nkl-container,
.nkl-book-themes .nkl-container {
    max-width: 1140px;
    margin: 0 auto;
}

.nkl-book-benevolence {
    background: var(--color-white);
}

.nkl-benevolence-top {
    padding: 80px 0px;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.nkl-benevolence-lede {
    flex: 1;
}

.nkl-benevolence-lede p,
.nkl-benevolence-lede {
    font-family: "inter-variable", sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 67px;
    letter-spacing: -0.04em;
    color: #1F2D57;
    margin-bottom: 12px;
}

.nkl-benevolence-lede p:last-child {
    margin-bottom: 0px;
}

.nkl-benevolence-body {
    padding: 74px 0px 82px;
}

.nkl-benevolence-body p {
    font-family: "inter-variable", sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 67px;
    letter-spacing: -0.04em;
    color: #1F2D57;
    margin-bottom: 14px;
}

.nkl-benevolence-body p:last-child {
    margin-bottom: 0px;
}

.nkl-benevolence-image {
    max-width: 550px;
    aspect-ratio: 1/1;
    flex: 1;
}

.nkl-benevolence-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.nkl-intro-podcast-title >span{
    margin-left: 10px;
}

.nkl-episode.episodes {
    margin-top: 78px;
    margin-bottom: 72px;
}

.nkl-episode.episodes .box-text-st3 .highlight-text-yellow span {
    display: inline;
    left: auto;
    transform: unset;
    bottom: 0px;
    margin-left: 10px;
}
.nkl-episode.episodes .box-text-st3 .highlight-text-yellow span::before {
    left: -15px;
    bottom: 8px;
    width: 118%;
    height: 48px;
}
.nkl-episode.episodes .box-content-st3 {
    display: unset;
}

.nkl-episode.episodes .box-content-st3 .box-text-st3 {
    width: 100%;

}
.nkl-episode.episodes .box-podcasts-st3 .btn-listen-now {
    padding: 6px 32px;
}
.nkl-episode.episodes .box-content-st3 .box-text-st3 .btn-st3 {
    display: none;
}

.nkl-episode.episodes .box-podcasts-st3 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px 40px;
    margin-top: 42px;
}

.nkl-episode.episodes .box-podcasts-st3 .podcast-item {
    flex: 1;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1200px) {
    .nkl-hero-title {
        font-size: 80px;
    }
      .page-broadcasts .nkl-podcast-title ,
    .page-broadcasts .nkl-intro-podcast-title ,
    .nkl-about-page .nkl-intro-podcast-title ,
    .nkl-thebook-page .nkl-intro-podcast-title {
        width: 100%;
    }
}

@media (max-width: 1024px) {    
    .nkl-about-page .nkl-myth-pages-title .yellow::before,
    .page-broadcasts .nkl-myth-pages-title .yellow::before {
        left: -18px;
        width: 120%;
        bottom: 4px;
        height: 36px;
        top: unset;
    }
    .page-broadcasts .nkl-intro-podcast-title {
        width: 100%;
    }


    .yellow.split::before,
    .pink.split::before,
    .blue.split::before {
        width: 105%;
    }

    .page-broadcasts .nkl-podcast-title {
        width: 100%;
        line-height: 64px;
    }

    .page-broadcasts .nkl-intro-podcast-title>span {
        margin-left: 0px;
        text-align: right;
    }
    .page-broadcasts .nkl-intro-podcast-title>span span.split::before {
        height: 38px;
        bottom: 0px;
        top: unset;
    }

    .page-broadcasts .nkl-podcast-title>span {
        margin-left: 0px;
    }



    .nkl-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .nkl-intro-podcast-columns {
        flex-direction: column;
        gap: 42px;
    }

    .nkl-myth-pages-wrapper {
        flex-direction: row;
        gap: 40px;
    }

    .nkl-desc,
    .nkl-intro-podcast-col p {
        font-weight: 300;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: -0.04em;
        margin-bottom: 8px;
    }

    .nkl-intro-podcast {
        padding: 40px 0;
    }



    .nkl-podcast-platforms {
        padding: 40px 0;
    }

    .nkl-podcast-title {
        margin-bottom: 26px;
    }

    .nkl-podcast-logos {
        gap: 42px 20px;
        max-width: 100%;
    }

    .nkl-podcast-logo {
        max-height: 32px;
        display: inline-flex;
        justify-content: center;
    }

    .nkl-podcast-logo img {
        object-fit: contain;
    }

    .nkl-podcast-logo:last-child img {
        width: 32px;
        height: 32px;
    }

    .nkl-myth-pages {
        padding: 40px 0;
    }

    .nkl-myth-img {
        max-width: 100%;
    }

    /*  */
    .nkl-title {
        line-height: 53px;
        text-align: left;
    }

    .nkl-hero {
        min-height: 704px;
        border-radius: 0 0 16px 16px;
    }

    .nkl-hero-content {
        padding-top: 74px;
    }

    .nkl-hero-subtitle {
        font-weight: 300;
        font-size: 18px;
        line-height: 24px;
    }

    .nkl-hero-title {
        line-height: 67px;
    }

    .nkl-hero-title .pink:before {
        height: 42px;
    }


    .nkl-hero-title .pink {
        text-align: left;
    }

    .nkl-intro-podcast-title {
        width: 100%;
    }



    .nkl-intro-podcast-highlight {
        width: 100%;
        display: inline-block;
        text-align: right;
    }

    .yellow::before {
        height: 42px;
        right: 0px;
        left: auto;
        top: 8px;
    }



    .nkl-myth-pages-content {
        order: -1;
    }

    .nkl-myth-pages-highlight::before {
        left: -10px;
        bottom: 0px;
    }

    .nkl-myth-pages-desc {
        font-size: 16px;
        line-height: 22px;
        text-align: center;
        letter-spacing: 0px;
    }

    .nkl-myth-pages-title {
        text-align: center;
    }

   

    .nkl-about-page .nkl-hero-title.nkl-light {
        text-align: right;
        margin-bottom: 10px;
    }

    .nkl-about-page .nkl-hero-title.nkl-light span {
        text-align: left;
    }

    .nkl-podcast-highlight-content p {
        font-size: 64px;
        line-height: 70px;
        letter-spacing: -0.04em;
    }

    .nkl-podcast-highlight-box {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .nkl-about-page .nkl-hero-title {
    margin-left: 8px;
    }

    .nkl-about-page .nkl-hero-content {
        padding-top: 72px;
    }

    .nkl-about-page .nkl-intro-podcast-title>span ,
    .nkl-thebook-page .nkl-intro-podcast-title>span {
        margin-left: 0px;
        text-align: right;
        display: block;
    }

    .nkl-benevolence-lede br {
        display: none;
    }

    .nkl-myth-pages-title span {
        font-size: 50px;
    }

    .nkl-episode.episodes .box-podcasts-st3 {
        grid-template-columns: 1fr;
        gap: 40px 40px;
    }
    .nkl-about-page .episodes {
        padding-top: 42px;
        padding-bottom: 40px;
        margin-bottom: 0px;
    }
    .nkl-about-page .nkl-intro-podcast-title ,
    .nkl-thebook-page .nkl-intro-podcast-title {
        width: 100%;
    }
    .nkl-episode.episodes .box-podcasts-st3 .btn-listen-now {
        padding: 8px 32px;
    }
    .nkl-episode.episodes .box-text-st3 .highlight-text-yellow span::before {
        left: -10px;
        bottom: 8px;
        width: 120%;
        height: 38px;
    }
   
}
@media (max-width: 767px) {
    .nkl-episode.episodes .box-content-st3 .box-text-st3 .btn-st3 {
        display: block;
    }
}

@media (max-width: 768px) {

    .nkl-podcast-highlight-content .blue::before,
    .nkl-podcast-highlight-content .pink::before,
    .nkl-podcast-highlight-content .yellow::before {
        width: 100%;
    }
    .nkl-podcast-highlight-content .blue::before,
    .nkl-podcast-highlight-content .pink::before,
    .nkl-podcast-highlight-content .yellow::before {
        top: auto;
        bottom: 0px;
    }

    .yellow.split::before,

    .nkl-hero-badge .nkl-hero-title .pink:before {
        height: 42px;
    }

    .nkl-myth-pages-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .nkl-book-platform-title {
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -0.04em;
        text-align: center;
    }

    .nkl-book-platform-title span {
        display: inline-block;
    }

    .nkl-book-platform-cta {
        padding: 49px 0px 48px;
    }

    .nkl-book-platform-cta__last {
        padding: 66px 0px 65px;
    }

    .nkl-book-platform-cta__last .nkl-book-platform-logos {
        flex-direction: row;
        margin: 0 auto;
    }

    .nkl-book-platform-cta__last .nkl-book-platform-logos a {
        display: inline-block;
        max-width: 150px;
    }

    .nkl-book-platform-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 29px;
    }

    .nkl-book-platform-logos {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px 40px;
    }

    .nkl-book-platform-logos a {
        display: inline-block;
        max-width: 120px;
    }

    .nkl-book-platform-logos a img {
        width: 100%;
        height: auto;
    }

    .nkl-book-themes p {
        font-size: 40px;
        line-height: 49.6px;
        letter-spacing: -0.04em;
        color: #FFFFFF;
        margin-bottom: 6px;
    }

    .nkl-book-themes {
        padding: 40px 0;
    }

    .nkl-benevolence-top {
        padding: 40px 0px;
        flex-direction: column;
        gap: 24px;
    }

    .nkl-benevolence-body,
    .nkl-benevolence-body p,
    .nkl-benevolence-lede,
    .nkl-benevolence-lede p {
        font-size: 40px;
        line-height: 48px;
        letter-spacing: -0.04em;
    }

    .nkl-benevolence-body {
        padding: 40px 0px 40px;
        margin-bottom: 0px;
    }



    .nkl-myth-pages-btn {
        max-width: 100%;
        width: 100%;
        margin-top: -8px;
    }

    .page-broadcasts .nkl-hero-subtitle {
        text-align: left;
    }

    .page-broadcasts .nkl-podcast-title>span {
        text-align: right;
        display: inline-block;
    }
    .nkl-about-page .st-reach-out .box-content-st10 ,
    .page-broadcasts .st-reach-out .box-content-st10 {
        flex-direction: column;
        gap: 33px;
        padding: 22px 24px 24px 24px;
    }

    .nkl-thebook-page .nkl-hero-title span:last-child {
        text-align: left;
        margin-left: 8px;
    }

    .nkl-thebook-page .nkl-hero-content {
        padding-top: 78px;
    }


    .nkl-thebook-page .nkl-podcast-highlight-content p {
        font-weight: 700;
        font-size: 56px;
        line-height: 62px;
        letter-spacing: -0.04em;
        margin-bottom: 0px;
    }

    .nkl-thebook-page .nkl-intro-podcast-col p {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: -0.04em;
        margin-bottom: 8px;
    }

    .nkl-thebook-page .nkl-intro-podcast-col p:last-child {
        margin-bottom: 0px;
    }

    .nkl-about-page .st-reach-out .nkl-btn {
        width: 100%;
    }

    .nkl-about-page .st-reach-out .box-content-st10 {
        gap: 32px;
    }

    .nkl-about-page .box-content-st10 .highlight-reach-out {
        letter-spacing: -2px;
    }

    .nkl-episode.episodes {
        margin-top: 38px;
        margin-bottom: 40px;
    }

    .nkl-episode.episodes .highlight-text-yellow {
        text-align: center;
        max-width: 100%;
        margin-bottom: 16px;
    }

    .nkl-episode.episodes .box-text-st3 .highlight-text-yellow span {
        margin-left: 0px;
    }
    .nkl-episode.episodes .box-podcasts-st3 {
        margin-top: 40px;
    }
    .nkl-episode.episodes  .box-play-audio {
        margin-right: 4px;
    }
    .nkl-episode.episodes .box-play-audio {
        margin-bottom: 19px;
    }
    .nkl-about-page .episodes .box-podcasts-st3 .btn-listen-now {
        padding: 8px 32px;
    }
    /* .highlight-content  .yellow::before ,
    .highlight-content  .blue::before {
        content: none;
    }
    .highlight-content  .blue .word ,
    .highlight-content  .yellow .word {
        position: relative;
    }
    .highlight-content  .yellow .word::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 32px;
        border-radius: 8px;
        z-index: -1;
        background: var(--color-accent);
    }
    .highlight-content  .blue .word::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 32px;
        border-radius: 8px;
        z-index: -1;
        background: var(--color-blue);
        color: var(--color-white);
    } */
}

@media (max-width: 520px) {
    .nkl-about-page .nkl-hero-badge>span {
        text-align: left;
    }

    .nkl-about-page .episodes .box-text-st3 .highlight-text-yellow .yellow::before {
        top: 16px;
        right: -10px;
    }

    .nkl-podcast-highlight-content .yellow.split::before ,
    .nkl-podcast-highlight-content .pink.split::before ,
    .nkl-podcast-highlight-content .blue.split::before {
        top: 24px;
    }
     .nkl-podcast-highlight-content p {
        word-break: break-word;
     }
    .nkl-podcast-highlight-content br {
        display: none;
    }
    .nkl-about-page .nkl-intro-podcast {
        padding: 38px 0 38px 0;
    }
      .nkl-book-platform-cta__last .nkl-book-platform-logos {
        flex-direction: column;
    }
    .nkl-thebook-page .nkl-book-platform-title>span::before {
        bottom: 0px;
        width: 110%;
        height: 38px;
        left: -10px;
    }
    .page-broadcasts .nkl-hero-title .split-parent span:first-child::before {
        content: none;
    }
    .page-broadcasts .box-content-st10 .highlight-reach-out, .nkl-about-page .box-content-st10 .highlight-reach-out {
        font-size: 48px;
    }
    .page-broadcasts .nkl-podcast-title .pink{
        margin-right: 0px;
    }
    .page-broadcasts .nkl-podcast-title .pink::before {
        left: -4px;
        bottom: 0;
        width: 104%;
        height: 40px;
    }
    .page-broadcasts .nkl-podcast-title {
        line-height: 53px;
    }
    .nkl-episode.episodes .box-text-st3 .highlight-text-yellow span::before {
        left: 0px;
        bottom: 8px;
        top: unset;
        width: 114%;
        height: 38px;
    }
    .page-broadcasts .nkl-hero-title {
        text-align: right;
        padding-left: 8px;
    }

    .page-broadcasts .nkl-hero-title>span {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .nkl-about-page .nkl-hero-badge>span {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .nkl-podcast-logos {
        gap: 41px 4px;
    }

    .nkl-podcast-logo {
        width: calc(100% / 2 - 4px);
        display: inline-flex;
        justify-content: center;
    }
}