/*
---------------------------------------------
                Sub 0301
---------------------------------------------
*/
/* cont2 */
.cont2 {
    background: white;
}

.cont2 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 130px;
}

.cont2 .copy {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.cont2 .title {
    font-size: var(--font-headline46);
    font-weight: 700;
    line-height: 1.5;
    white-space: pre-line;
    word-break: keep-all;
}

.cont2 .desc {
    color: var(--black-900);
    font-size: var(--font-xl);
    font-weight: 500;
    line-height: 1.6;
    white-space: pre-line;
    word-break: keep-all;
}

.cont2 .logos {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.cont2 .row {
    display: contents;
}

.cont2 .logo {
    width: 100%;
    max-width: none;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.cont2 .logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.cont2 .logo:hover img {
    transform: scale(1.05);
}

@media (max-width: 1440px) {
    .cont2 .container {
        gap: 100px;
    }

    .cont2 .logos {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }

    .cont2 .title {
        font-size: var(--font-headline42);
    }

    .cont2 .logo {
        height: 116px;
    }

    .cont2 .logo img {
        max-height: 58px;
    }
}

@media (max-width: 1280px) {
    .cont2 .container {
        gap: 50px;
    }

    .cont2 .logos {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }

    .cont2 .title {
        font-size: 40px;
    }

    .cont2 .logo {
        height: 110px;
    }

    .cont2 .logo img {
        max-height: 56px;
    }
}

@media (max-width: 1024px) {
    .cont2 .container {
        gap: 40px;
    }

    .cont2 .copy {
        gap: 20px;
    }

    .cont2 .title {
        font-size: var(--font-headline36);
        line-height: 1.4;
    }

    .cont2 .desc {
        font-size: var(--font-lg);
    }

    .cont2 .logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px;
    }

    .cont2 .logo {
        height: 104px;
    }

    .cont2 .logo img {
        max-height: 52px;
    }
}

@media (max-width: 768px) {
    .cont2 .container {
        gap: 32px;
    }

    .cont2 .title {
        font-size: var(--font-4xl);
    }

    .cont2 .desc {
        font-size: var(--font-md);
        line-height: 1.5;
    }

    .cont2 .logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 40px;
    }

    .cont2 .logo {
        height: 90px;
        border-radius: 16px;
    }

    .cont2 .logo img {
        max-height: 46px;
    }
}

@media (max-width: 480px) {
    .cont2 .container {
        gap: 24px;
    }

    .cont2 .title {
        font-size: var(--font-3xl);
        line-height: 1.35;
    }

    .cont2 .desc {
        font-size: var(--font-base);
    }

    .cont2 .logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .cont2 .logo {
        height: 60px;
        border-radius: 14px;
    }

    .cont2 .logo img {
        max-height: 30px;
    }
}

/* cont3 */
.cont3 {
    background: var(--black-100);
}

.cont3 .container {
    padding-top: 110px;
}

.cont3 .head {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cont3 .eyebrow {
    color: var(--brown);
    font-family: var(--font-en);
    font-size: var(--font-2xl);
    font-weight: 700;
    line-height: 1.2;
}

.cont3 .title {
    font-size: var(--font-headline36);
    font-weight: 700;
    line-height: 1.6;
    word-break: keep-all;
}

.cont3 .desc {
    margin-bottom: 40px;
    color: var(--black-900);
    font-size: var(--font-lg);
    font-weight: 500;
    line-height: 1.6;
    white-space: pre-line;
    word-break: keep-all;
}

.cont3 .panel {
    background: var(--brown);
    padding-bottom: 120px;
}

.cont3 .panel .container {
    display: grid;
    grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
    column-gap: 56px;
    align-items: start;
    position: relative;
}

.cont3 .tabs {
    width: 100%;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 34px;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.cont3 .tab {
    padding: 0 0 4px;
    background: transparent;
    border: none;
    color: var(--white-60);
    font-size: var(--font-lg);
    font-weight: 500;
    line-height: 32px;
    text-align: left;
    width: fit-content;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.cont3 .tab.on {
    color: white;
    font-weight: 600;
    border-bottom-color: white;
}

.cont3 .tab:hover {
    color: white;
}

.cont3 .stage {
    position: relative;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    min-height: 589px;
}

.cont3 .stage .item {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 0;
    align-items: stretch;
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.35s ease, transform 0.45s ease;
    pointer-events: none;
}

.cont3 .stage:has(.item.on) .item.on {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.cont3 .stage:not(:has(.item.on)) .item:first-child {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.cont3 .left {
    height: 589px;
    background: white;
    border-radius: 20px 32px 20px 32px;
    padding: 40px;
    display: grid;
    grid-template-rows: 1fr 32px;
    row-gap: 18px;
    box-sizing: border-box;
}

.cont3 .left .img {
    width: 100%;
    max-width: 713px;
    height: 100%;
    max-height: 360px;
    display: block;
    border-radius: 20px;
    object-fit: contain;
    justify-self: center;
    align-self: center;
}

.cont3 .caption {
    color: var(--black-900);
    font-size: var(--font-lg);
    font-weight: 500;
    line-height: 32px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cont3 .right {
    height: 589px;
    background: white;
    border-radius: 32px 20px 32px 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.cont3 .right .img {
    width: 100%;
    max-width: 496px;
    height: 100%;
    display: block;
    border-radius: 20px;
    object-fit: contain;
}

.cont3 .nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: center;
    justify-self: start;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(129, 129, 129, 0.2);
    backdrop-filter: blur(17px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    margin-left: -26px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cont3 .nav.next {
    justify-self: end;
    margin-left: 0;
    margin-right: -26px;
}

.cont3 .nav:hover {
    background: rgba(239, 138, 95, 0.35);
    transform: scale(1.04);
}

.cont3 .nav .arrow {
    width: 18px;
    height: 17px;
    display: block;
    background: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2217%22%20viewBox%3D%220%200%2018%2017%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0.804999%208.04969L8.855%200.804688M0.804999%208.04969L8.855%2015.2947M0.804999%208.04969H16.905%22%20stroke%3D%22white%22%20stroke-width%3D%221.61%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E") no-repeat center/contain;
}

.cont3 .nav.next .arrow {
    transform: scaleX(-1);
}

@media (max-width: 1440px) {
    .cont3 .container {
        padding-top: 100px;
    }

    .cont3 .panel {
        padding-bottom: 110px;
    }

    .cont3 .panel .container {
        column-gap: 48px;
    }

    .cont3 .stage {
        min-height: 560px;
    }

    .cont3 .title {
        font-size: 34px;
    }

    .cont3 .tab {
        font-size: var(--font-md);
    }

    .cont3 .left,
    .cont3 .right {
        padding: 36px;
        height: 560px;
    }
}

@media (max-width: 1280px) {
    .cont3 .container {
        padding-top: 80px;
    }

    .cont3 .eyebrow {
        font-size: var(--font-xl);
    }

    .cont3 .panel .container {
        column-gap: 40px;
    }

    .cont3 .panel {
        padding-bottom: 100px;
    }

    .cont3 .stage {
        min-height: 520px;
    }

    .cont3 .title {
        font-size: var(--font-headline32);
    }

    .cont3 .tab {
        font-size: var(--font-md);
    }

    .cont3 .left,
    .cont3 .right {
        padding: 32px;
        height: 520px;
    }
}

@media (max-width: 1024px) {
    .cont3 .container {
        padding-top: 80px;
    }

    .cont3 .head {
        gap: 16px;
    }

    .cont3 .eyebrow {
        font-size: var(--font-lg);
    }

    .cont3 .desc {
        font-size: var(--font-md);
    }

    .cont3 .panel {
        padding-bottom: 90px;
    }

    .cont3 .panel .container {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .cont3 .tabs {
        max-width: none;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 14px 18px;
        grid-column: 1 / -1;
        grid-row: 1 / 2;
    }

    .cont3 .stage {
        grid-column: 1 / -1;
        grid-row: 2 / 3;
        min-height: 1020px;
    }

    .cont3 .nav {
        grid-column: 1 / -1;
        grid-row: 2 / 3;
        margin-left: 0;
    }

    .cont3 .nav.next {
        margin-right: 0;
    }

    .cont3 .stage .item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cont3 .left,
    .cont3 .right {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .cont3 .container {
        padding-top: 60px;
    }

    .cont3 .head {
        gap: 8px;
    }

    .cont3 .eyebrow {
        font-size: var(--font-md);
    }

    .cont3 .title {
        font-size: var(--font-4xl);
        line-height: 1.4;
    }

    .cont3 .desc {
        font-size: var(--font-base);
        white-space: normal;
    }

    .cont3 .panel {
        padding-bottom: 70px;
    }

    .cont3 .stage {
        min-height: 860px;
    }

    .cont3 .tab {
        font-size: var(--font-base);
        line-height: 1.5;
    }

    .cont3 .left {
        padding: 24px;
        border-radius: 18px 26px 18px 26px;
        height: 420px;
    }

    .cont3 .right {
        padding: 24px;
        border-radius: 26px 18px 26px 18px;
        height: 420px;
    }

    .cont3 .left .img,
    .cont3 .right .img {
        border-radius: 16px;
    }

    .cont3 .caption {
        font-size: var(--font-md);
    }

    .cont3 .nav {
        width: 44px;
        height: 44px;
    }

    .cont3 .nav .arrow {
        width: 13px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .cont3 .container {
        padding-top: 50px;
    }

    .cont3 .eyebrow {
        font-size: var(--font-base);
    }

    .cont3 .title {
        font-size: var(--font-2xl);
    }

    .cont3 .stage {
        min-height: 740px;
    }

    .cont3 .tabs {
        gap: 10px 14px;
    }

    .cont3 .caption {
        font-size: var(--font-base);
    }

    .cont3 .nav {
        display: none;
    }

    .cont3 .left,
    .cont3 .right {
        height: 360px;
    }
}

/* cont4 */
.cont4 .head {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cont4 .eyebrow {
    color: var(--brown);
    font-family: var(--font-en);
    font-size: var(--font-2xl);
    font-weight: 700;
    line-height: 1.2;
}

.cont4 .title {
    font-size: var(--font-headline36);
    font-weight: 700;
    line-height: 1.6;
    word-break: keep-all;
}

.cont4 .desc {
    margin-bottom: 40px;
    color: var(--black-900);
    font-size: var(--font-lg);
    font-weight: 500;
    line-height: 1.6;
    white-space: pre-line;
    word-break: keep-all;
}

.cont4 .panel {
    background: var(--bg);
}

.cont4 .panel .container {
    padding-top: 90px;
    padding-bottom: 120px;
    display: grid;
    grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
    column-gap: 56px;
    align-items: start;
    position: relative;
}

.cont4 .tabs {
    width: 100%;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 34px;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.cont4 .tab {
    padding: 0 0 4px;
    background: transparent;
    border: none;
    color: var(--black-700);
    font-size: var(--font-lg);
    font-weight: 500;
    line-height: 32px;
    text-align: left;
    width: fit-content;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.cont4 .tab.on {
    border-bottom-color: rgba(239, 138, 95, 0.6);
    color: var(--orange);
    font-weight: 600;
}

.cont4 .tab:hover {
    color: var(--orange);
}

.cont4 .stage {
    position: relative;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    min-height: 589px;
}

.cont4 .stage .item {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 0;
    align-items: stretch;
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.35s ease, transform 0.45s ease;
    pointer-events: none;
}

.cont4 .stage:has(.item.on) .item.on {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.cont4 .stage:not(:has(.item.on)) .item:first-child {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.cont4 .left {
    height: 589px;
    background: white;
    border-radius: 20px 32px 20px 32px;
    padding: 40px;
    display: grid;
    grid-template-rows: 1fr 32px;
    row-gap: 18px;
    box-sizing: border-box;
}

.cont4 .left .img {
    width: 100%;
    max-width: 713px;
    height: 100%;
    display: block;
    border-radius: 20px;
    object-fit: contain;
    justify-self: center;
    align-self: center;
}

.cont4 .caption {
    font-size: var(--font-lg);
    font-weight: 600;
    line-height: 32px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cont4 .right {
    height: 589px;
    background: white;
    border-radius: 32px 20px 32px 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.cont4 .right .img {
    width: 100%;
    max-width: 496px;
    height: 100%;
    display: block;
    border-radius: 20px;
    object-fit: contain;
}

.cont4 .nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: center;
    justify-self: start;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(129, 129, 129, 0.2);
    backdrop-filter: blur(17px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    margin-left: -26px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cont4 .nav.next {
    justify-self: end;
    margin-left: 0;
    margin-right: -26px;
}

.cont4 .nav:hover {
    background: rgba(239, 138, 95, 0.35);
    transform: scale(1.04);
}

.cont4 .nav .arrow {
    width: 18px;
    height: 17px;
    display: block;
    background: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2217%22%20viewBox%3D%220%200%2018%2017%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0.804999%208.04969L8.855%200.804688M0.804999%208.04969L8.855%2015.2947M0.804999%208.04969H16.905%22%20stroke%3D%22white%22%20stroke-width%3D%221.61%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E") no-repeat center/contain;
}

.cont4 .nav.next .arrow {
    transform: scaleX(-1);
}

@media (max-width: 1440px) {
    .cont4 .panel .container {
        padding-top: 80px;
        padding-bottom: 110px;
        column-gap: 48px;
    }

    .cont4 .stage {
        min-height: 560px;
    }

    .cont4 .title {
        font-size: 34px;
    }

    .cont4 .tab {
        font-size: var(--font-md);
    }

    .cont4 .left,
    .cont4 .right {
        padding: 36px;
        height: 560px;
    }
}

@media (max-width: 1280px) {
    .cont4 .panel .container {
        padding-top: 80px;
        padding-bottom: 100px;
        column-gap: 40px;
    }

    .cont4 .eyebrow {
        font-size: var(--font-xl);
    }

    .cont4 .stage {
        min-height: 520px;
    }

    .cont4 .title {
        font-size: var(--font-headline32);
    }

    .cont4 .tab {
        font-size: var(--font-md);
    }

    .cont4 .left,
    .cont4 .right {
        padding: 32px;
        height: 520px;
    }
}

@media (max-width: 1024px) {
    .cont4 .panel .container {
        padding-top: 70px;
        padding-bottom: 90px;
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .cont4 .head {
        gap: 16px;
    }

    .cont4 .eyebrow {
        font-size: var(--font-lg);
    }

    .cont4 .desc {
        font-size: var(--font-md);
    }

    .cont4 .tabs {
        max-width: none;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 14px 18px;
        grid-column: 1 / -1;
        grid-row: 1 / 2;
    }

    .cont4 .stage {
        grid-column: 1 / -1;
        grid-row: 2 / 3;
        min-height: 1020px;
    }

    .cont4 .nav {
        grid-column: 1 / -1;
        grid-row: 2 / 3;
        margin-left: 0;
    }

    .cont4 .nav.next {
        margin-right: 0;
    }

    .cont4 .stage .item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cont4 .left,
    .cont4 .right {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .cont4 .head {
        gap: 8px;
    }

    .cont4 .eyebrow {
        font-size: var(--font-md);
    }

    .cont4 .title {
        font-size: var(--font-4xl);
        line-height: 1.4;
    }

    .cont4 .desc {
        font-size: var(--font-base);
        white-space: normal;
    }

    .cont4 .stage {
        min-height: 860px;
    }

    .cont4 .tab {
        font-size: var(--font-base);
        line-height: 1.5;
    }

    .cont4 .left {
        padding: 24px;
        border-radius: 18px 26px 18px 26px;
        height: 420px;
    }

    .cont4 .right {
        padding: 24px;
        border-radius: 26px 18px 26px 18px;
        height: 420px;
    }

    .cont4 .left .img,
    .cont4 .right .img {
        border-radius: 16px;
    }

    .cont4 .caption {
        font-size: var(--font-md);
    }

    .cont4 .nav {
        width: 44px;
        height: 44px;
    }

    .cont4 .nav .arrow {
        width: 13px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .cont4 .panel .container {
        padding-top: 50px;
        padding-bottom: 70px;
    }

    .cont4 .eyebrow {
        font-size: var(--font-base);
    }

    .cont4 .title {
        font-size: var(--font-2xl);
    }

    .cont4 .stage {
        min-height: 740px;
    }

    .cont4 .tabs {
        gap: 10px 14px;
    }

    .cont4 .tab {
        font-size: 15px;
    }

    .cont4 .caption {
        font-size: var(--font-base);
    }

    .cont4 .nav {
        display: none;
    }

    .cont4 .left,
    .cont4 .right {
        height: 360px;
    }
}

/* cont5 */
.cont5 .head {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cont5 .eyebrow {
    color: var(--brown);
    font-family: var(--font-en);
    font-size: var(--font-2xl);
    font-weight: 700;
    line-height: 1.2;
}

.cont5 .title {
    font-size: var(--font-headline36);
    font-weight: 700;
    line-height: 1.6;
    word-break: keep-all;
}

.cont5 .desc {
    color: var(--black-900);
    font-size: var(--font-lg);
    font-weight: 500;
    line-height: 1.6;
    word-break: keep-all;
}

.cont5 .list {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.cont5 .card {
    height: 480px;
    padding: 26px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
    background-image: linear-gradient(180deg, rgba(107, 99, 91, 0) 50%, #6B635B 100%);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    color: white;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cont5 .card:nth-child(1) {
    background-image: linear-gradient(180deg, rgba(107, 99, 91, 0) 50%, #6B635B 100%), url("../../img/business/card01.png");
}

.cont5 .card:nth-child(2) {
    background-image: linear-gradient(180deg, rgba(107, 99, 91, 0) 50%, #6B635B 100%), url("../../img/business/card02.png");
}

.cont5 .card:nth-child(3) {
    background-image: linear-gradient(180deg, rgba(107, 99, 91, 0) 50%, #6B635B 100%), url("../../img/business/card03.png");
}

.cont5 .card:nth-child(4) {
    background-image: linear-gradient(180deg, rgba(107, 99, 91, 0) 50%, #6B635B 100%), url("../../img/business/card04.png");
}

.cont5 .card:nth-child(5) {
    background-image: linear-gradient(180deg, rgba(107, 99, 91, 0) 50%, #6B635B 100%), url("../../img/business/card05.png");
}

.cont5 .date {
    font-size: var(--font-md);
    font-weight: 500;
    line-height: 1.6;
}

.cont5 .name {
    font-size: var(--font-2xl);
    font-weight: 700;
    line-height: 1.6;
}

@media (hover: hover) {
    .cont5 .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
    }
}

@media (max-width: 1440px) {
    .cont5 .title {
        font-size: 34px;
    }

    .cont5 .list {
        margin-top: 60px;
        gap: 18px;
    }

    .cont5 .card {
        height: 460px;
        padding: 24px;
    }
}

@media (max-width: 1280px) {
    .cont5 .eyebrow {
        font-size: var(--font-xl);
    }

    .cont5 .title {
        font-size: var(--font-headline32);
    }

    .cont5 .list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cont5 .card {
        height: 340px;
        padding: 24px;
    }
}

@media (max-width: 1024px) {
    .cont5 .head {
        gap: 16px;
    }

    .cont5 .eyebrow {
        font-size: var(--font-lg);
    }

    .cont5 .desc {
        font-size: var(--font-md);
    }

    .cont5 .list {
        margin-top: 40px;
    }

    .cont5 .card {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .cont5 .head {
        gap: 8px;
    }

    .cont5 .eyebrow {
        font-size: var(--font-md);
    }

    .cont5 .title {
        font-size: var(--font-4xl);
        line-height: 1.4;
    }

    .cont5 .desc {
        font-size: var(--font-base);
        white-space: normal;
    }

    .cont5 .list {
        margin-top: 30px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cont5 .card {
        height: 250px;
        border-radius: 16px;
    }

    .cont5 .name {
        font-size: var(--font-lg);
    }
}

@media (max-width: 480px) {
    .cont5 .eyebrow {
        font-size: var(--font-base);
    }

    .cont5 .title {
        font-size: var(--font-2xl);
    }

    .cont5 .list {
        grid-template-columns: 1fr;
    }

    .cont5 .card {
        height: 220px;
        padding: 20px;
        border-radius: 14px;
    }
}