@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

@font-face {
    font-family: 'WarhavenB';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2312-1@1.1/WarhavenB.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'MYArirang_gothic';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2206-02@1.0/MYArirang_gothic.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

:root {
    --font-pretendard: "Pretendard Variable";
    --font-warhavenB: "WarhavenB";
    --font-my: "MYArirang_gothic";

    --color-primary: #3D2F2F;
    --color-bf: #ffa200;
}


/* 공통*/

.il-header {
    position: fixed;
    background-color: #fff;
    z-index: 999999;
    top: 0;
    left: 0;
    right: 0;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.il-only-web-text{
    display: none;
}

@media (min-width: 768px){
    .il-only-web-text{
        display: inline-block;
    }
}

.il-header.hide {
    transform: translateY(-100%); /* 헤더를 화면 위로 이동 */
}

.il-floating-donate.hide {
    transform: translateY(-40%); /* 헤더를 화면 위로 이동 */
}

.il-bf-logo-web {
    display: none;
}

.il-bf-logo-mobile {
    width: 2em;
}

@media (min-width: 768px) {
    .il-bf-logo-web {
        display: block;
    }

    .il-bf-logo-mobile {
        display: none;
    }
}

@media (min-resolution: 2dppx) {
    /* 고해상도 디바이스용 스타일 */
}

#il {
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
    overscroll-behavior: none; /* 모든 방향의 바운스 효과 제거 */
    /*overflow-x: hidden;*/
    /*-webkit-transform: scale(1);*/
    /*transform: scale(1);*/
}

.il-header {
    position: fixed;
    top: 0;
}

.il-section {
    position: relative;
    z-index: 1;
    height: 100lvh;
    width: 100%;
    /*border-bottom: 1px solid yellow;*/
}

.il-scroll-background {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100lvh;
    z-index: -1;
    background-color: #000;
}

.il-scroll-background-image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: 0.3s all;
}

.il-scroll-background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* 검정 오버레이 */
    pointer-events: none; /* 클릭 방지 */
    opacity: 0; /* 초기값 */
    transition: opacity 0.3s ease; /* 부드러운 효과 */
}

.il-scroll-background-image.dark::after {
    opacity: 1; /* 어둡게 활성화 */
}

.il-container {
    height: 100%;
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .il-container {
        font-size: 1.2rem;
    }
}

.il-content-wrapper {
    width: 100%;
}

.il-background {
    position: sticky;
    top: 0;
    left: 0;
    height: 100lvh;
    width: 100%;
    z-index: -1;
}

.il-section-title {
    font-family: var(--font-warhavenB), sans-serif;
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
}

@media (min-width: 768px) {
    .il-section-title {
        font-size: 3rem;
        line-height: 130%;
    }
}

.house-animation-icon {
    width: 100px;
    height: 100px;
}

@media (min-width: 768px) {
    .house-animation-icon {
        margin-bottom: 1.5rem;
    }
}

.il-flex-column-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.il-txt {
    color: #fff;
    text-align: center;
    font-weight: 500;
}

.line-animation {
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 4s ease infinite;
}

@keyframes draw {
    from {
        stroke-dashoffset: 1000; /* 시작 상태 */
    }
    to {
        stroke-dashoffset: 0; /* 끝 상태 */
    }
}

.il-arrow-icon {
    width: 2em;
}

.il-br-only-mobile {
    display: block;
}

@media (min-width: 768px) {
    .il-br-only-mobile {
        display: none;
    }
}


.il-drawing-house {
    z-index: 2;
    position: relative;
}

.il-text-in-box {
    text-align: center;
}

.il-text-in-box span {
    background-color: var(--color-primary);
    color: #fff;
    padding: 2px 8px;
    display: inline;
    box-decoration-break: clone;
    line-height: 1.5;
    font-weight: 500;
    border-radius: 2px;
}

.il-text-in-box span.il-text-in-box-highlight-1 {
    transition: 0.3s all;
}

.il-text-in-box span.il-text-in-box-highlight-2 {
    transition: 0.3s all;
}

.il-text-in-box span.il-text-in-box-highlight-3 {
    transition: 0.3s all;
}

.il-text-in-box span.il-text-in-box-highlight-4 {
    transition: 0.3s all;
}

#il-text-in-box-margin {
    margin-bottom: 1rem;
}

.il-bf-highlight {
    color: var(--color-bf);
}

/* 섹션 0*/
#il-section-0 {
    background-color: var(--color-primary);
    padding: 4.5em 0;
}

#il-section-0-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.il-section-0-scrolldown {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.il-section-0-scrolldown svg {
    stroke: #fff;
    animation: yoyo 1s ease infinite;
}

@keyframes yoyo {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(8px);
    }
}

.il-floating-donate {
    display: none;
}

.il-floating-donate-mobile {
    width: 64px;
    height: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 32px;
    right: 16px;
    z-index: 9999;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px 8px;
    background-color: #fff;
    border-radius: 999px;
    gap: 4px;
    opacity: 0;
    transform: translateY(24px);
    visibility: hidden;
    transition: 0.3s all;
}

.il-mobile-leaf {
    border-radius: 999px 0 999px 0;
    background-color: #FFA200;
    width: 16px;
    height: 16px;
}

.il-floating-donate-mobile p {
    font-size: 11px;
}

@media (min-width: 768px) {
    .il-floating-donate {
        display: block;
        position: fixed;
        width: 140px;
        z-index: 999998;
        right: 32px;
        top: 96px;
        transition: 0.3s all ease;
    }

    .il-floating-donate-mobile {
        display: none;
    }
}

@media (min-width: 1440px) {
    .il-floating-donate {
        width: 160px;
    }
}


.il-floating-donate:hover {
    box-shadow: #a1a1a1 8px 8px 0;
}


/* 섹션 1*/
#il-content-1-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* 섹션 2 */
#il-section-2 {
    background-color: var(--color-primary);
}

/* 섹션 4 */
#il-content-4-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.il-content-qoute {
    text-align: center;
    color: #fff;
    margin-bottom: 1em;
    font-size: 1.1em;
    font-weight: 500;
}

.il-content-qoute-owner {
    color: #fff;
}

.il-content-qoute svg {
    width: 0.8em;
}

/* 섹션 6 */
#il-section-6 {
    height: 100lvh;
}

#il-section-6 .il-container {
    align-items: start;
}

#il-content-6-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100lvh;
    position: sticky;
    top: 0;
}

.il-circle-graph-wrapper {
    width: 100%;
    height: 8rem;
    overflow: visible;
    position: relative;
    max-width: 20rem;
}

.il-circle-graph {
    width: 16em;
    height: 16em;
    background-color: #ffd700;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    animation: vibe 1s infinite;
}

@keyframes vibe {
    0% {
        width: 16em;
        height: 16em;
    }
    50% {
        width: 16.5em;
        height: 16.5em;
    }
    100% {
        width: 16em;
        height: 16em;
    }
}

.il-circle-graph p {
    text-align: center;
}

.il-circle-graph-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #000;
}

.il-circle-graph-text p:first-child {
    font-size: 3em;
    font-family: var(--font-warhavenB), sans-serif;
}

.il-circle-graph-text p:last-child {
    font-size: 1em;
    /*font-family: var(--font-warhavenB), sans-serif;*/
    font-weight: 600;
}

@media (min-width: 1536px) {
    .il-circle-graph {
        width: 14em;
        height: 14em;
    }

    @keyframes vibe {
        0% {
            width: 14em;
            height: 14em;
        }
        50% {
            width: 14.5em;
            height: 14.5em;
        }
        100% {
            width: 14em;
            height: 14em;
        }
    }
    .il-circle-graph-text p:first-child {
        font-size: 2em;
        font-family: var(--font-warhavenB), sans-serif;
    }

    .il-circle-graph-text p:last-child {
        font-size: 0.8em;
        /*font-family: var(--font-warhavenB), sans-serif;*/
        font-weight: 600;
    }

}

@media (min-width: 1920px) {
    .il-circle-graph {
        width: 17em;
        height: 17em;
    }

    @keyframes vibe {
        0% {
            width: 17em;
            height: 17em;
        }
        50% {
            width: 17.5em;
            height: 17.5em;
        }
        100% {
            width: 17em;
            height: 17em;
        }
    }

}

@media (min-width: 2560px) {
    .il-circle-graph {
        width: 18em;
        height: 18em;
    }

    @keyframes vibe {
        0% {
            width: 18em;
            height: 18em;
        }
        50% {
            width: 18.5em;
            height: 18.5em;
        }
        100% {
            width: 18em;
            height: 18em;
        }
    }

}

/* 섹션 7 */
#il-section-7 {
    display: flex;
    justify-content: center;
    height: 200lvh;
}

#il-content-7-wrapper {
    position: relative;
    height: 100%;
    width: 10px;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#il-content-7-image {
    position: absolute;
    top: 0;
    object-fit: cover;
    height: 100lvh;
    z-index: -1;
    width: 100%;
}

#il-content-7-wrapper .il-container {
    height: 100lvh;
    flex-direction: column;
    width: 100%;
    padding: 0;
    align-items: center;
}

#il-content-7-first-container p {
    text-wrap: nowrap;
}


/* 섹션 8 */
#il-section-8 {
    background-color: #fff;
}

#il-content-8-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 2em;
    height: 100%;
    width: 100%;
    max-width: 1280px;
    margin: auto;
    transform: translateY(6rem);
    opacity: 0;
    transition: 1s all ease;
}

.il-section-8-img-wrapper, .il-section-8-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.il-section-8-img-wrapper > p {
    color: #a1a1a1;
    font-size: 0.9em;
}

.il-section-8-img-wrapper > img {
    width: 70%;
}

.il-section-8-text-wrapper {
    font-weight: 500;
}

@media (min-width: 768px) {
    .il-section-8-img-wrapper > img {
        width: 50%;
    }
}

@media (min-width: 1440px) {
    #il-content-8-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2em;
        justify-content: center;
        align-items: center;
    }

    .il-section-8-img-wrapper > img {
        width: 80%;
        height: 80lvh;
        object-fit: cover;
        margin-bottom: 0.5em;
    }

    .il-section-8-img-wrapper > p {
        font-size: 0.7em;
        align-items: center;
    }

    .il-section-8-text-wrapper {
        flex: 1;
    }
}


/* 섹션 9 */

#il-section-9 {
    background-color: #fff;

}

#il-content-9-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    gap: 2em;
    height: 100%;
    width: 100%;
    max-width: 1280px;
    margin: auto;
    transform: translateY(6rem);
    opacity: 0;
    transition: 1s all ease;
}

.il-section-9-img-wrapper, .il-section-9-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.il-section-9-img-wrapper > p {
    color: #a1a1a1;
    font-size: 0.9em;
    text-align: right;
}

.il-section-9-img-wrapper > img {
    width: 70%;
}

.il-section-9-text-wrapper {
    /*color: #fff;*/
    font-weight: 500;
}

@media (min-width: 768px) {
    .il-section-9-img-wrapper > img {
        width: 50%;
    }
}

@media (min-width: 1440px) {
    #il-content-9-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2em;
        justify-content: center;
        align-items: center;
    }

    .il-section-9-text-wrapper {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .il-section-9-img-wrapper {
        grid-column: 2 / 3;
    }

    .il-section-9-img-wrapper > img {
        width: 80%;
        height: 80lvh;
        object-fit: cover;
        margin-bottom: 0.5em;
    }

    .il-section-9-img-wrapper > p {
        font-size: 0.7em;
        align-items: center;
    }

    .il-section-9-text-wrapper {
        flex: 1;
    }
}


/* 섹션 10*/

#il-section-10 {
    height: 500lvh;
    background-color: #fff;
}

#il-content-10-wrapper {
    position: relative;
    overflow-x: hidden;
}

#il-content-10-wrapper .il-container {
    height: 100lvh;
    text-align: center;
    font-weight: 500;
}

#il-section-10-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 90lvh;
    z-index: -1;
    display: flex;
    justify-content: center;
}

#il-section-10-background {
    border-bottom: 2px solid #464646;
    width: 0;
    height: 100%;
}

.il-section-10-background-item {
    position: absolute;
    bottom: 0;
    height: 15%;
    opacity: 0;
    transition: 1s all ease;
}

#il-10-plant {
    height: 15%;
    left: 0;
}

#il-10-desk {
    left: 40%;
    height: 15%;
}

#il-10-light {
    left: 30%;
}

#il-10-drawer {
    right: 0;
}

#il-10-bookshelf {
    height: 30%;
    right: 20%;
}

@media (min-width: 1440px) {
    .il-section-10-background-item {
        height: 25%;
    }

    #il-10-plant {
        height: 15%;
        left: 10%;
    }

    #il-10-light {
        left: 20%;
    }

    #il-10-desk {
        left: 50%;
        height: 20%;
    }

    #il-10-drawer {
        right: 10%;
    }

    #il-10-bookshelf {
        right: 20%;
    }
}


/* 섹션 11 */

#il-section-11 {
    height: auto;
    background-color: #fff;
}

#il-content-11-wrapper .il-container {
    flex-direction: column;
    width: 100%;
    height: auto;
    max-width: 1280px;
    margin: auto;
    gap: 30vh;
    padding: 6em 2em;
}



/*#il-content-11-wrapper .il-container:last-child {*/
/*    justify-content: space-between;*/
/*}*/

#il-content-11-wrapper .il-container {
    font-family: var(--font-my), sans-serif;
    font-size: 1.1em;
    text-align: center;
    color: #323232;
}

.il-content-11-qoute-owner {
    border-radius: 50%;
    background-color: #ECFB1B;
    width: fit-content;
    padding: 1em 2em;
    font-size: 0.7em;
    /*letter-spacing: 0.1em;*/
    font-weight: 600;
    color: #000;
    margin: 1em auto;
}

.il-content-11-message {
    font-family: var(--font-pretendard), sans-serif;
    font-size: 1.2em;
    font-weight: 700;
}

.il-content-11-message div{
    font-family: var(--font-pretendard), sans-serif;
    font-size: 0.8em;
    font-weight: 500;
    margin-bottom: 1em;
}

.il-content-11-text-bold {
    font-weight: 700;
}

@media (min-width: 768px) {
    .il-content-11-message {
        font-size: 1.4em;
    }
}

@media (min-width: 1024px) {
    .il-content-11-message {
        font-size: 1.6em;
    }
}

/* 섹션 13 */
#il-section-12 {
    background-color: #f5f5f5;
    height: auto;
    overflow-x: hidden;
}

#il-content-12-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2em;
    align-items: center;
    justify-content: center;
}

.il-section-12-circle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 840px;
    margin: auto;
}


.il-section-12-circle {
    aspect-ratio: 1 / 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 999px;
    height: 80%;
    margin: auto;
    font-size: 0.9em;
    position: relative;
    transition: 1s all;
    opacity: 0;
    cursor: pointer;
}

.il-section-12-circle-text {
    font-size: 0.9em;
    font-weight: 500;
}


.il-section-12-circle-cover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: 0.5s all;
}

.il-section-12-circle-cover img {
    margin-bottom: 1em;
    width: 1.5em;
}

#il-section-12-qoute-owner-1 {
    color: #F2994A;
    font-weight: 600;
}

#il-section-12-qoute-owner-2 {
    color: #F8B3B8;
    font-weight: 600;
}

#il-section-12-qoute-owner-3 {
    color: #2F80ED;
    font-weight: 600;
}


#il-section-12-circle-1:hover {
    transform: scale(2);
}

#il-section-12-circle-1:hover .il-section-12-circle-cover {
    opacity: 0;
}

#il-section-12-circle-1:hover #il-section-12-circle-text-1 {
    transition: 0.5s all;
    opacity: 1;
}

#il-section-12-circle-2:hover .il-section-12-circle-cover {
    opacity: 0;
}

#il-section-12-circle-2:hover #il-section-12-circle-text-2 {
    transition: 0.5s all;
    opacity: 1;
}

#il-section-12-circle-3:hover .il-section-12-circle-cover {
    opacity: 0;
}

#il-section-12-circle-3:hover #il-section-12-circle-text-3 {
    transition: 0.5s all;
    opacity: 1;
}


#il-section-12-circle-1 {
    grid-column: 1 / 3;
    transform: translateY(3em) rotate(10deg);

}

#il-section-12-circle-2 {
    transform: translate(-0.5em, -1em) rotate(-10deg);
}

#il-section-12-circle-3 {
    transform: translate(0.5em, -1em) rotate(10deg);
}

.il-section-12-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.3em;
    width: 100%;
}

.il-donation-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-primary);
    padding: 0.8em 0;
    font-size: 1.2em;
    font-weight: 600;
    width: 100%;
    max-width: 1280px;
    margin: auto;
}

.il-donation-btn-regular {
    background-color: var(--color-primary);
    color: #fff;
    width: 100%;
    max-width: 320px;
}

.il-section-12-content-text {
    display: flex;
    flex-direction: column;
    gap: 1em;
    text-align: center;
    width: 100%;
    max-width: 1280px;
    margin: auto;
}

.il-section-12-content-text .il-bf-highlight {
    font-weight: 700;
    font-size: 1.3em;
    margin-bottom: 0.5em;
}

.il-section-12-circle-text {
    opacity: 0;
}

.il-section-12-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
}

.il-section-12-modal .il-section-12-circle-text {
    background-color: #fff;
    padding: 2rem;
    width: 90%;
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    font-size: 1.3em;
}

@media (min-width: 768px) {
    #il-section-12 .il-container {
        margin-bottom: 2em;
    }

    .il-section-12-content-text p {
        font-size: 0.9em;
    }

    #il-section-12-caption {
        font-size: 0.8em;
        color: #888;
    }
}

.il-section-12-content-text-bigger{
    font-size: 1.3em;
    font-weight: 500;
}


/* 섹션 14 */
#il-section-13 {
    height: auto;
    background-color: #fff;
    padding-top: 8rem;
}

#il-content-13-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1280px;
    margin: auto;
}

#il-content-13-wrapper .il-container {
    flex-direction: column;
    color: #000;
}

.il-content-13-title {
    font-family: var(--font-pretendard), sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    text-align: center;
}

.il-content-13-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1em;
    margin-bottom: 2em;
    padding-top: 3em;
}

#il-content-13-wrapper > .il-section-title {
    color: #000;
    text-align: center;
}

.il-content-13-grid-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*aspect-ratio: 1 / 1;*/
    background-color: #f9f9f9;
    padding: 2em 0;
    border-radius: 1em;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.il-content-13-grid-item img {
    width: 100%;
    max-width: 160px;
    margin-bottom: 2em;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.il-content-13-grid-article {
    background-color: #f9f9f9;
    border-radius: 4px;
    /*overflow: hidden;*/
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: block;
    height: 100%;
}

.il-content-13-grid-article img { 
    width: 100%;
    border-radius: 4px 4px 0 0 ;
}

.il-content-13-grid-article div {
    padding: 1em;
    margin-bottom: 2em;
}

.il-content-13-grid-item-bold {
    font-weight: 700;
}


@media (min-width: 768px) {

    .il-content-13-grid {
        grid-template-columns: repeat(1, 1fr);
        margin-bottom: 4em;
    }

    .il-content-13-grid--article {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (min-width: 1024px) {
    .il-content-13-title {
        font-size: 2em;
    }

    .il-content-13-grid {
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: 4em;
    }

    .il-content-13-grid--article {
        grid-template-columns: repeat(2, 1fr);
    }

    .il-content-13-grid-item {
        height: 100%;
        width: 100%;
        aspect-ratio: 1 / 1;
        padding: 2em;
    }
}

@media (min-width: 1440px) {
    .il-content-13-grid--article {
        grid-template-columns: repeat(4, 1fr);
    }
    .il-content-13-grid-article p{
        font-size: 0.9em;
    }
}

/* footer*/

#il-footer-wrapper {
    flex-direction: column;
    align-items: start;
    background-color: var(--color-primary);
    color: #fff;
}

.il-footer {
    width: 100%;
    max-width: 1280px;
    margin: auto;
}


.il-footer-title {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 1em;
}

.il-footer-highlight {
    color: #ffd700;
    font-weight: 700;
}


.il-go-to-top {
    background-color: #fff;
    color: #000;
    padding: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    cursor: pointer;
}

.il-go-to-top svg {
    transform: rotate(180deg);
    width: 1.2em;
}

@media (min-width: 1024px) {
    #il-footer-wrapper {
        padding: 2em;
    }
}

