/* === Reset === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Mukta", sans-serif;
}

a {
    color: #fff;
    text-decoration: none;
}


/* === Mapbox Map === */
#map {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
}

.mapboxgl-ctrl-bottom-right,
.mapboxgl-ctrl-bottom-left,
.mapboxgl-ctrl-top-right,
.mapboxgl-ctrl-top-left {
    display: none !important;
}

/* Fix scroll on mobile */
.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan,
.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan
    .mapboxgl-canvas {
    touch-action: unset;
}


/* === Scrollytelling Layout === */
.hidden {
    visibility: hidden;
}

.centered {
    margin: 0 auto;
}

.lefty {
    margin-left: 15rem;
    display: flex;
    justify-content: start;
}

.righty {
    display: flex;
    justify-content: end;
    margin-right: 15rem;
}

.fully {
    width: 100%;
    margin: auto;
}

.light {
    color: #444;
    background-color: #fafafa;
}

.dark {
    color: #fafafa;
    background-color: #0A0A0A;
    border-radius: .75rem;
    width: 500px;
    border: 1px solid #222222;
    overflow: hidden;
}

.step {
    padding-bottom: 50vh;
    /* opacity: 0.25; */
      /* opacity: 0.7; */
      opacity: 1;
      transition: all .3s ease-in-out;
      position: relative;
      padding-top: 5rem;
}

.step:first-child {
    padding-bottom: 0;
    padding-bottom: 100vh !important;
    margin-bottom: 40vh;
    opacity: 0 !important;
    padding-top: 0;
    z-index: -2;
}

.step.active {
  
}

.step-body {
    padding: 1.5rem;
}

.step-body .address {
    display: block;
    margin-bottom: .25rem;
    font-size: 16px;
    line-height: 14px;
    margin-bottom: 1.25rem;

}

.step-body h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    /* margin-bottom: 1.25rem; */
}

.user-desc {
    max-height: 220px;
    overflow-y: scroll;
}

.user-desc p {
    color: #808080;
    font-size: 1.25rem;
    line-height: 32px;
}


/* === Map Marker === */
.custom-marker {
    width: 48px;
    height: 48px;
    overflow: hidden;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #222;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .45);
    cursor: pointer;
}

.custom-marker__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.custom-marker--pin {
    width: 38px;
    height: 50px;
    overflow: visible;
    border: none;
    border-radius: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 38 50'%3E%3Cpath d='M19 0C8.5 0 0 8.5 0 19c0 13 17 29.6 18.3 30.9.4.4 1 .4 1.4 0C21 48.6 38 32 38 19 38 8.5 29.5 0 19 0z' fill='%23d4ff00'/%3E%3Ccircle cx='19' cy='19' r='7' fill='%23000'/%3E%3C/svg%3E") no-repeat center / contain;
    box-shadow: none;
}

.custom-marker--pin .custom-marker__img {
    display: none;
}


/* === Header === */
header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 555;
    padding: .75rem 0;
    padding-top: 2.5rem;
    background:linear-gradient(180deg,rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0) 100%)!important;
    
}
header a{
    display: block;
}
header .logo{
    filter: brightness(0) invert(1);
    width: 104px;
}
header .logo img{
    width: 100%;
    height: auto;
}

header h2 {
    color: #fff;
}

.container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}


/* === Banner === */
.main-banner {
    position: relative;
    z-index: 44;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    overflow: hidden;
    height: 100vh;
    box-shadow: 0 20px 20px rgba(0,0,0,.6);
}

.main-banner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    height: 300px;
    background-image: url(../images/banner-line.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translateY(-50%);
    opacity: .3;
}

.canvas {
    position: relative;
    z-index: 3;
}


/* === Nepal Map Section === */
.map-section {
    position: relative;
    z-index: 33;
    padding-bottom: 3rem;
    background: #000;
    display: none;
}

.map-heading {
    padding: 1.5rem 0 1rem;
    color: #fff;
    margin-bottom: 2rem;
}

.map-heading h2 {
    margin-bottom: .25rem;
    font-size: 1.75rem;
    font-weight: 600;
}

.map-heading p {
    font-size: .95rem;
    color: #aaa;
}

.map-body {
    display: grid;
    gap: 2rem;
    align-items: center;
    position: relative;
}

#map-container {
    position: relative;
    width: 100%;
}

#nepal-map {
    width: 100%;
    height: auto;
}

#avatars {
    position: absolute;
    top: 0;
    left: 0;
}

.avatar {
    position: absolute;
    width: var(--size);
    height: var(--size);
    --size: 48px;
    opacity: .8;
    transition: all .3s ease-in-out;
    z-index: 3;
}

.avatar::before {
    position: absolute;
    content: "";
    height: var(--size);
    width: var(--size);
    --size: calc(100% + 8px);
    top: -4px;
    left: -4px;
    z-index: -2;
    background: #fff;
    border-radius: 50%;
    transition: all .3s ease-in-out;
    transform: scale(.5);
}

.avatar:hover {
    opacity: 1;
}

.avatar:hover::before {
    opacity: 1;
    transform: scale(1);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #27272A;
}


/* === Record Card === */
.record-card {
    overflow: hidden;
    border-radius: .75rem;
    background: #0A0A0A;
    border: 1px solid #222222;
    color: #fff;
    position: absolute;
    right: 2rem;
    top: 2rem;
    max-width: 400px;
    width: 100%;
    z-index: 555;
}

.record-card__thumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: #222;
    overflow: hidden;
}

.record-card__thumb img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%);
    opacity: .8;
}

.play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding-left: 3px;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background .2s;
    z-index: 33;
}

.record-card__body {
    padding: 1.5rem 1.5rem 1.25rem;
}

.record-district {
    font-size: 1rem;
    text-transform: uppercase;
    display: block;
    line-height: 16px;
}

.record-title {
    margin-bottom: .5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.record-desc {
    margin-bottom: 1.5rem;
    font-size: 14px;
    line-height: 1.5;
    color: #808080;
}

.record-cta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    letter-spacing: .08em;
    color: #D9F95D;
    text-decoration: none;
}

.record-type {
    position: absolute;
    left: 1rem;
    top: 1rem;
    display: flex;
    gap: .5rem;
}

.record-type span {
    padding: 4px 6px;
    border-radius: 4px;
    background: #222222;
    border: 1px solid #0A0A0A;
    line-height: 1;
    display: flex;
    gap: .25rem;
    align-items: center;
    font-size: 16px;
    font-weight: 300;
}


/* === Transition Gradient === */
.bg-gradient {
    position: relative;
    z-index: 22;
    height: 300px;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 20%, rgba(79, 79, 79, .4) 70%, rgba(79, 79, 79, 0) 100%);
    opacity: 0;
}


/* === Modal === */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    width: 100%;
    max-width: 1098px;
    background: #252528;
    border: 1px solid #daf95d20;
    border-radius: 1rem;
    overflow: hidden;
    transform: translateY(16px);
    transition: transform .25s ease;
    box-shadow: 0 0 30px rgba(0, 0, 0, .8);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background: rgba(0, 0, 0, .2);
}

.modal__back {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: none;
    border: none;
    color: #aaa;
    font-family: "Mukta", sans-serif;
    font-size: .78rem;
    letter-spacing: .08em;
    cursor: pointer;
    transition: color .2s;
}

.modal__back:hover {
    color: #fff;
}

.modal__district-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem .8rem;
    border-radius: 999px;
    background: #D9F95D10;
    color: #D9F95D;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid rgba(217, 249, 93, .3);
}

.modal__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal__player {
    position: relative;
    background: #0a0a0a;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
}

.audio-img {
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
}

.modal__player-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%);
    opacity: .55;
    border-radius: 1rem;
}

.modal__play-btn {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 50%;
    background: #D9F95D;
    color: #000;
    cursor: pointer;
    transition: transform .2s, background .2s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 40px rgba(217, 249, 93, .4);
}

.modal__play-btn:hover {
    background: #c8ee40;
}

.modal__waveform {
    padding-top: 1.25rem;
    background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, transparent 100%);
    display: flex;
    align-items: center;
    gap: .5rem;
    width: 100%;
    position: relative;
    margin-top: 1.5rem;
}

.modal__waveform-time {
    font-size: .65rem;
    color: #666;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
    position: absolute;
    top: 0;
    left: 0;
}

.modal__waveform-time.total-time {
    right: 0;
    left: inherit;
}

.modal__waveform-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 40px;
    flex: 1;
    cursor: pointer;
}

.modal__waveform-bars span {
    display: block;
    flex: 1;
    min-height: 3px;
    background: rgba(255, 255, 255, .18);
    border-radius: 2px 2px 0 0;
    transform-origin: bottom;
    transition: background .15s;
}

.modal__waveform-bars span.played {
    background: #D9F95D;
}

.modal__waveform-bars span.playhead {
    background: #ffffff;
    flex: 1.5;
}

.modal__waveform-bars:hover span:hover {
    background: rgba(255, 255, 255, .5);
}

@keyframes barBounce {
    0%   { transform: scaleY(1); }
    100% { transform: scaleY(calc(1 + var(--h) * 0.6)); }
}

.modal--playing .modal__waveform-bars span {
    animation: barBounce calc(0.35s + var(--i) * 0.005s) ease-in-out infinite alternate;
    animation-delay: calc(var(--i) * 0.022s);
}

.modal--playing .modal__waveform-bars span.played {
    background: #D9F95D;
}

.modal__content {
    padding: 2rem 2rem 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.modal__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.modal__author {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    color: #D9F95D;
    margin-bottom: 64px;
}

.modal__transcript-label {
    font-size: .875rem;
    letter-spacing: .12em;
    color: #A1A1AA;
    text-transform: uppercase;
    display: block;
}

.modal__transcript {
    font-size: .9rem;
    line-height: 1.7;
    color: #fff;
    max-height: 250px;
    overflow-y: scroll;
}

.modal__transcript p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}


/* === Feature Video === */
.feature-video {
    position: relative;
    overflow: hidden;
    padding-top: 70%;
}

.feature-video video {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter .4s ease;
}

.feature-video.playing video {
    filter: none;
}

.feature-video__btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    cursor: pointer;
    opacity: 1;
    transition: opacity .3s ease, transform .3s ease, background .2s;
    z-index: 5;
}

.feature-video__btn:hover {
    background: rgba(0, 0, 0, .75);
}

.feature-video.playing .feature-video__btn {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 14px));
    pointer-events: none;
}

.feature-video.playing:hover .feature-video__btn {
    opacity: 1;
    transform: translate(-50%, -50%);
    pointer-events: all;
}


/* === Feature Image === */
.feature-image {
    position: relative;
    padding-top: 65%;
    width: 100%;
    overflow: hidden;
}

.feature-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    object-position: center center;
}


/* === Chapter Audio Player === */
.chapter-audio {
    margin-top: 1.25rem;
    border-top: 1px solid #222;
    padding-top: 1rem;
}

.chapter-audio__player {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.chapter-audio__btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #D9F95D;
    color: #000;
    cursor: pointer;
    transition: transform .2s, background .2s;
}

.chapter-audio__btn:hover {
    transform: scale(1.1);
    background: #c8ee40;
}

.chapter-audio__waveform {
    flex: 1;
    display: flex;
    align-items: center;
    gap: .4rem;
    min-width: 0;
}

.chapter-audio__time {
    font-size: .65rem;
    color: #555;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}

.chapter-audio__bars {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 32px;
    cursor: pointer;
}

.chapter-audio__bars span {
    display: block;
    flex: 1;
    min-height: 3px;
    background: rgba(255, 255, 255, .15);
    border-radius: 2px 2px 0 0;
    transform-origin: bottom;
    transition: background .15s;
}

.chapter-audio__bars span.played {
    background: #D9F95D;
}

.chapter-audio__bars span.playhead {
    background: #fff;
    flex: 1.5;
}

@keyframes chapterBarBounce {
    0%   { transform: scaleY(1); }
    100% { transform: scaleY(calc(1 + var(--h) * 0.6)); }
}

.chapter-audio.playing .chapter-audio__bars span {
    animation: chapterBarBounce calc(0.35s + var(--i) * 0.005s) ease-in-out infinite alternate;
    animation-delay: calc(var(--i) * 0.022s);
}

.chapter-audio.playing .chapter-audio__bars span.played {
    background: #D9F95D;
}


/* === Page Loader === */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.loader__label {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: .08em;
}

.loader__bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 48px;
}

.loader__bars span {
    width: 4px;
    border-radius: 2px;
    background: #D9F95D;
    animation: loaderBar .7s ease-in-out infinite alternate;
}

.loader__bars span:nth-child(1) { height: 40%; animation-delay: 0s; }
.loader__bars span:nth-child(2) { height: 65%; animation-delay: .1s; }
.loader__bars span:nth-child(3) { height: 90%; animation-delay: .2s; }
.loader__bars span:nth-child(4) { height: 100%; animation-delay: .3s; }
.loader__bars span:nth-child(5) { height: 90%; animation-delay: .2s; }
.loader__bars span:nth-child(6) { height: 65%; animation-delay: .1s; }
.loader__bars span:nth-child(7) { height: 40%; animation-delay: 0s; }

@keyframes loaderBar {
    from { transform: scaleY(.25); opacity: .4; }
    to   { transform: scaleY(1);   opacity: 1; }
}

/* banner content */

.banner-content-wrapper{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 44;
    background:linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 31%, rgba(0, 0, 0, 1) 100%)!important;
    color: #fff;
    padding-bottom: 4rem;
    padding-top: 5rem;
}
.banner-content{
    max-width: 500px;
    width: 100%;
    border-radius: .75rem;
}
.banner-content span{
    font-weight: 600;
    display: block;
    margin-bottom: .5rem;
}
.banner-content h1{
    font-size: 3rem;
    line-height: 1.3;
    margin: 0 0 1rem 0;
    font-weight: 800;
}
.banner-content p{
    font-size: 1.25rem;
}

.back-to-map {
    position: fixed;
    bottom: 4.5rem;
    right: 1.5rem;
    z-index: 5555;
    height: 2rem;
    width: 2rem;
    border: none;
    background: none;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.back-to-map:hover{
    transform: translateY(-3px);
    opacity: .75;
}
.back-to-map svg{
    width: 100%;
    height: 100%;
}

/* ==============================================
   RESPONSIVE
   ============================================== */

@media (max-width: 1480px) {
    .lefty  { margin-left: 5rem; }
    .righty { margin-right: 5rem; }
}

@media (max-width: 1024px) {
    .lefty  { margin-left: 2rem; }
    .righty { margin-right: 2rem; }

    .record-card {
        max-width: 320px;
    }
    .record-modal{
        display: none;
    }
}

@media (max-width: 900px) {
    .lefty,
    .righty,
    .centered,
    .fully {
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .map-body {
        grid-template-columns: 1fr;
    }

    .record-card {
        position: relative;
        right: auto;
        top: auto;
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .main-banner {
        /* height: 55vh; */
        padding: 1.5rem 0;
    }

    .map-heading h2  { font-size: 1.5rem; }
    .map-heading p   { font-size: .85rem; }
    .record-title    { font-size: 1.25rem; }

    .record-card__thumb {
        height: 220px;
    }
}

@media (max-width: 640px) {
 

    .main-banner {
        /* height: 65vh; */
        padding: 1.5rem 0;
    }

    .main-banner::before {
        opacity: .8;
    }

    .dark {
        width: calc(100vw - 2rem);
        border-radius: .5rem;
    }

    .step-body              { padding: 1rem; }
    .step-body h3           { font-size: 1.2rem; margin-bottom: .75rem; }
    .user-desc p            { font-size: 1rem; line-height: 1.65; }

    .map-section            { padding-bottom: 2rem; }
    .record-card__thumb     { height: 250px; }

    .avatar {
        --size: 20px;
        opacity: 1;
    }

    .avatar img {
        border-width: 1px;
    }

    .modal-overlay {
        padding: 0;
        align-items: start;
    }

    .modal {
        width: 90%;
        border-radius: 1rem 1rem 0 0;
        max-height: 90vh;
        overflow-y: auto;
        margin-top: 2rem;
    }

    .modal__topbar          { padding: .875rem 1rem; }
    .modal__back            { font-size: .7rem; }
    .modal__district-badge  { font-size: .65rem; padding: .25rem .6rem; }
    .modal__body            { grid-template-columns: 1fr; }
    .modal__player          { padding: 1.25rem; min-height: 200px; }
    .audio-img              { padding-top: 65%; }
    .modal__play-btn        { width: 60px; height: 60px; }
    .modal__content         { padding: 1.25rem; gap: .5rem; }
    .modal__title           { font-size: 1.3rem; }
    .modal__author          { margin-bottom: 1.5rem; font-size: .8rem; }
    .modal__transcript      { max-height: 180px; }
    .modal__transcript p    { font-size: 16px; line-height: 26px; }
    .custom-marker{
        width: 22px;
        height: 22px;
    }
    .step{
        padding-top: 50vh;
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .container          { padding: 0 1rem; }
    .map-heading h2     { font-size: 1.25rem; }
    .dark               { width: calc(100vw - 1.5rem); }
    .step-body h3       { font-size: 1.1rem; }
    .user-desc p        { font-size: .95rem; }
    .record-title       { font-size: 1.1rem; }
    .record-card__thumb { height: 250px; }
    .modal__title       { font-size: 1.15rem; }
    .chapter-audio__btn { width: 34px; height: 34px; }
    .banner-content h1{
        font-size: 2rem;
    }
}

.record-modal{
    display: none;
}

/* .f-jana-text{

}
.f-text-jana{
    text-align: center;
    background: black;
    color: white;
    padding: 8px 0;
} */





.kp-credits {
  background: #000;
  color: #fff;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 9;
  margin-top: 30px;
}

.kp-credits__inner {
  max-width: 760px;
  margin: 0 auto;
}

.kp-credits__lede {
  margin: 0 0 1.25rem;
  font-size: 15px;
  line-height: 1.7;
  color: #d4d4d4;
}

/* .kp-credits__list {
  margin: 0;
  font-size: 13px;
  line-height: 2;
  color: #aaa;
}

.kp-credits__item {
  white-space: nowrap;
}

.kp-credits__role {
  color: #666;
  margin-right: 0.4em;
}

.kp-credits__name {
  color: #aaa;
}

.kp-credits__sep {
  color: #444;
  margin: 0 0.6em;
} */

@media (max-width: 600px) {
  .kp-credits {
    padding: 2rem 1.25rem;
  }
  .kp-credits__list {
    line-height: 2.2;
    justify-content: start;
  }
  .kp-credits__item {
    display: block;
  }
}


.kp-credits__list {
  margin: 0;
  font-size: 13px;
  line-height: 2;
  color: #aaa;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4em 1em;
}

.kp-credits__item {
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5em;
}

.kp-credits__role {
  color: #888;
}

.kp-credits__name {
  color: #aaa;
  font-weight: 500;
}

.kp-credits__sep {
  color: #444;
}

@media (max-width: 700px) {
  .kp-credits__sep {
    display: none;
  }
}


