
/* */
/* main container title link filter section */

.section-tl-nav-filter-section {
    display: flex;
    flex-direction: column;
    gap: var(--systemSpacing-20);
    margin: var(--systemSpacing-40) var(--systemSpacing-80);
}

.section-tl {
    font-size: var(--h1-fontSize);
    font-weight: 700;
    color: var(--systemPrimary);
    letter-spacing: var(--negative-systemSpacing-1);
}

.section-nav-list-wrp {
    display: flex;
    flex-direction: row;
    gap: var(--systemSpacing-8);
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    height: fit-content;
}

.section-nav-list {
    display: flex;
}

.section-nav-list-wrp::-webkit-scrollbar {
    display: none;
}

.current-location {
    font-size: var(--p-fontSize);
    padding: var(--systemSpacing-8);
    font-weight: 600;
    color: var(--systemPrimary);

    border-bottom: var(--systemSpacing-2) solid var(--systemPrimary);
    white-space: nowrap;
}

.explore-to-other {
    font-size: var(--p-fontSize);
    padding: var(--systemSpacing-8);
    font-weight: 600;
    color: var(--systemTertiary);
    white-space: nowrap;
}

.explore-to-other:hover {
    color: var(--systemPrimary);
}

.filter-all-wrp {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--systemSpacing-20);
}

.filter-icon-txt-wrp:hover {
    background-color: var(--systemBG-primary-hover);
}

.filter-icon-txt-wrp {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: var(--systemSpacing-12) var(--systemSpacing-16);
    gap: var(--systemSpacing-8);
    background-color: var(--systemBG-primary);
    width: fit-content;
    border-radius: var(--systemSpacing-9999);
    cursor: pointer;
}

.filter-icon-wrp svg {
    display: block;
    fill: var(--systemPrimary);
}

.filter-txt {
    font-size: var(--ph-fontSize);
    color: var(--systemPrimary);
    font-weight: 600;
}

.filter-seperate-line {
    width: var(--systemSpacing-1);
    height: var(--systemSpacing-32);
    border: var(--systemSpacing-1) solid var(--systemQuaternary);
}

.filter-hashtag-wrp {
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.filter-hashtag-wrp::-webkit-scrollbar {
    display: none;
}

.hashtag-all-wrp {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--systemSpacing-8);
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hashtag-all-wrp::-webkit-scrollbar {
    display: none;
}

.hashtag-wrp {
    border: var(--systemSpacing-1) solid var(--systemQuinary);
    border-radius: var(--systemSpacing-9999);
}

.hashtag-wrp:hover {
    background-color: var(--systemBG-primary);
    cursor: pointer;
    width: 100%;
}

.hashtag {
    color: var(--systemPrimary);
    font-weight: 600;
    padding: var(--systemSpacing-12) var(--systemSpacing-16);
    white-space: nowrap;
}

.scroll-btn-wrp {
    display: flex;
    flex-direction: flex-end;
    position: sticky;
    right: var(--systemSpacing-0);
}

.scroll-to-right, .scroll-to-left {
    border-radius: var(--systemSpacing-9999);
    padding: var(--systemSpacing-0);
    background-color: var(--systemBG-primary);
    box-shadow: var(--negative-systemSpacing-12) var(--systemSpacing-0) var(--systemSpacing-8) var(--systemSpacing-0) var(--systemWhite), var(--negative-systemSpacing-2) var(--systemSpacing-0) var(--systemSpacing-2) var(--systemSpacing-0) var(--systemWhite), var(--systemSpacing-12) var(--systemSpacing-0) var(--systemSpacing-8) var(--systemSpacing-0) var(--systemWhite), var(--systemSpacing-2) var(--systemSpacing-2) var(--systemSpacing-2) var(--systemSpacing-0) var(--systemWhite);
    font-variant: var(--negative-systemSpacing-12);
}

.scroll-to-left {
    display: none;
}

.scroll-to-right:hover, .scroll-to-left:hover {
    background-color: var(--systemBG-primary-hover);
}

.scroll-to-right svg {
    display: block;
    fill: var(--systemPrimary);
}

.scroll-to-left svg {
    display: block;
    fill: var(--systemPrimary);
}


/* */
/* content section */

.content-all-wrp {
    display: flex;
    flex-wrap: wrap;
    row-gap: var(--systemSpacing-60);
    column-gap: var(--systemSpacing-16);
    justify-content: flex-start;
    margin: var(--systemSpacing-0) var(--systemSpacing-80) var(--systemSpacing-120) var(--systemSpacing-80);
}

.content-wrp {
    flex: 1 1 calc(25% - var(--systemSpacing-20));
    max-width: var(--systemSpacing-480);
    min-width: var(--systemSpacing-320);
}

.content-link-to {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--systemSpacing-16);
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: relative;
}

.content-link-to:hover {
    opacity: 80%;
    transition: all 0.2s ease-in-out;
}

.content-link-to .img-wrp {
    position: relative;
    background-color: var(--systemBG-primary);
    width: inherit;
    height: inherit;
    border-radius: var(--systemSpacing-20);
    aspect-ratio: 9 / 14;
}

.content-link-to .img-wrp img {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    max-width: 60%;
    object-fit: cover;
    border-radius: var(--systemSpacing-20);
}

.content-link-to .img-border-wrp {
    position: relative;
    background-color: var(--systemBG-primary);
    width: inherit;
    height: inherit;
    border-radius: var(--systemSpacing-20);
    aspect-ratio: 9 / 14;
}

.content-link-to .img-border-wrp img {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    max-width: 60%;
    object-fit: cover;
    border-radius: var(--systemSpacing-20);
    border: var(--systemSpacing-1) solid var(--systemQuinary);
}

.content-link-to .img-wrp-landscape {
    position: relative;
    background-color: var(--systemBG-primary);
    width: inherit;
    height: inherit;
    border-radius: var(--systemSpacing-20);
    aspect-ratio: 14 / 9;
}

.content-link-to .img-wrp-landscape img {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    max-width: 90%;
    object-fit: cover;
    border-radius: var(--systemSpacing-20);
}

.category-part-hashtag-wrp {
    position: absolute;
    top: var(--systemSpacing-20);
    left: var(--systemSpacing-20);

    display: flex;
    flex-direction: column;
    gap: var(--systemSpacing-4);
}

.category-hashtag {
    font-size: var(--c1-fontSize);
    font-weight: 600;

    padding: var(--systemSpacing-4) var(--systemSpacing-8);
    border-radius: var(--systemSpacing-8);
    width: fit-content;
}

.part-hashtag {
    font-size: var(--c1-fontSize);
    font-weight: 600;

    padding: var(--systemSpacing-4) var(--systemSpacing-8);
    border-radius: var(--systemSpacing-8);

    color: var(--customGrey-txt);
    background-color: var(--customGrey-bg);
    width: fit-content;
}

.category-trial {
    color: var(--customCoral-txt);
    background-color: var(--customCoral-bg);
}

.category-caseStudy {
    color: var(--customBlue-txt);
    background-color: var(--customBlue-bg);
}

.category-uiElement {
    color: var(--customGreen-txt);
    background-color: var(--customGreen-bg);
}

.category-uxWriting {
    color: var(--customPurple-txt);
    background-color: var(--customPurple-bg);
}

.brand-logo-name-hashtag-wrp {
    display: flex;
    flex-direction: row;/**/
    align-items: center;
    gap: var(--systemSpacing-12);
}

.brand-logo-wrp {
    width: var(--systemSpacing-40);
    height: var(--systemSpacing-40);
}

.brand-logo-border-wrp {
    width: var(--systemSpacing-40);
    height: var(--systemSpacing-40);
}

.brand-logo-border-wrp img {
    display: block;
    border-radius: var(--systemSpacing-12);
    border: var(--systemSpacing-1) solid var(--systemQuinary);
}

.brand-logo-wrp img {
    display: block;
    border-radius: var(--systemSpacing-12);
}

.brand-name-hashtag-wrp {
    display: flex;
    flex-direction: column;
    gap: var(--systemSpacing-2);
}

.brand-name {
    font-size: var(--ph-fontSize);
    color: var(--systemPrimary);
    font-weight: 600;
}

.content-hashtag {
    font-size: var(--ch-fontSize);
    color: var(--systemTertiary);
    font-weight: 400;
}


/* */
/* */

@media screen and (max-width: 960px) {

    .section-tl-nav-filter-section {
        margin: var(--systemSpacing-40) var(--systemSpacing-32);
    }

    /* */
    /* content section */

    .content-all-wrp {
        margin: var(--systemSpacing-0) var(--systemSpacing-32) var(--systemSpacing-80) var(--systemSpacing-32);
    }

    .content-wrp {
        max-width: var(--systemSpacing-720);
    }
}


/* */
/* */

@media screen and (max-width: 719px) {

    .content-link-to .img-wrp-landscape img {
        max-width: 70%;
    }
}


/* */
/* */

@media screen and (max-width: 600px) {

    /* */
    /* section title navigation filter section */

    .section-tl {
        font-size: var(--h3-fontSize);
    }

    .content-all-wrp {
        justify-content: center;
    }


    /* */
    /* */

    .content-link-to .img-wrp-landscape img {
        max-width: var(--systemSpacing-320);
    }
}


/* */
/* */

@media screen and (max-width: 450px) {

    .content-link-to .img-wrp-landscape img {
        max-width: var(--systemSpacing-280);
    }
}