/***** Daeho Main Page *****/
:root {
    --daeho-navy: #012748;
    --daeho-deep: #002f55;
    --daeho-text: #121212;
    --daeho-muted: #8b95a1;
    --daeho-line: #d9dee5;
    --daeho-soft: #f2f2f2;
}

html,
body.main_body {
    margin: 0;
    background: #ffffff;
    color: var(--daeho-text);
    font-family: 'Pretendard', Arial, sans-serif;
}

body.main_body a {
    color: inherit;
    text-decoration: none;
}

.daeho-main {
    overflow: hidden;
    background: #ffffff;
}

.daeho-container {
    width: min(1491px, calc(100% - 48px));
    margin: 0 auto;
}

.daeho-hero {
    position: relative;
    min-height: 930px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    background: #d9d9d9;
}

.daeho-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.daeho-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.32) 54%, rgba(0, 0, 0, 0.08) 100%);
}

.daeho-hero-content {
    position: relative;
    z-index: 1;
    width: min(1050px, calc(100% - 40px));
    padding-top: 80px;
}

.daeho-hero h1 {
    margin: 0;
    font-size: 65px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
    word-break: keep-all;
}

.daeho-hero p {
    margin: 34px 0 0;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.25;
}

.daeho-hero-dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 190px;
}

.daeho-hero-dots span {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
}

.daeho-hero-dots span.active {
    width: 27px;
    background: #ffffff;
}

.daeho-value-section {
    padding: 112px 0 106px;
}

.daeho-kicker {
    margin: 0 0 24px;
    color: var(--daeho-navy);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.38;
}

.daeho-kicker.center {
    text-align: center;
    margin-bottom: 16px;
}

.daeho-center-title,
.daeho-section-head h2 {
    margin: 0;
    color: #111111;
    font-size: 43px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
    word-break: keep-all;
}

.daeho-center-title {
    text-align: center;
    font-weight: 500;
    line-height: 1.38;
}

.daeho-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
    margin-top: 50px;
}

.daeho-value-card {
    position: relative;
    height: 606px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #d9d9d9;
}

.daeho-value-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(1, 39, 72, 0.75);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.daeho-value-card:hover::after {
    opacity: 1;
}

.daeho-value-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.daeho-value-card:hover img {
    transform: scale(1.04);
}

.daeho-value-card span {
    position: absolute;
    z-index: 1;
    color: #ffffff;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
}

.daeho-product-section {
    padding: 0 0 132px;
}

.daeho-product-section .daeho-kicker {
    margin-bottom: 50px;
    font-weight: 500;
    line-height: 1.25;
}

.daeho-product-section .daeho-section-head h2 {
    width: 738px;
    font-weight: 600;
    text-align: left;
    line-height: 1.38;
}

.daeho-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.daeho-swiper-buttons {
    display: inline-flex;
    gap: 16px;
    flex: 0 0 auto;
}

.daeho-product-section .daeho-swiper-buttons {
    transform: translateY(8px);
}

.daeho-swiper-buttons button {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #808080;
    border-radius: 0;
    background: #ffffff;
    color: #111111;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.daeho-swiper-buttons button:hover {
    border-color: var(--daeho-navy);
    color: var(--daeho-navy);
}

.daeho-product-swiper {
    width: 100%;
    margin-top: 50px;
    overflow: visible !important;
}

.daeho-product-card {
    width: 471px !important;
    height: 471px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 54px;
    background: var(--daeho-soft);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.daeho-product-card:hover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(1, 39, 72, 0.75);
    border-radius: 54px;
}

.daeho-product-card img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1;
    transition: transform 0.35s ease;
}

.daeho-product-card:hover img {
    max-width: none;
    max-height: none;
    transform: scale(1.04);
}

.daeho-product-card strong {
    display: none;
}

.daeho-product-card:hover strong {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: block;
    width: 210px;
    color: #ffffff;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.38;
    text-align: center;
    word-break: keep-all;
    transform: translate(-50%, -50%);
}

.daeho-product-empty-card {
    width: 471px !important;
    height: 471px !important;
    padding: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px dashed rgba(1, 39, 72, 0.24);
    border-radius: 54px;
    background: #f7f9fb;
    color: #012748;
    text-align: center;
    box-sizing: border-box;
}

.daeho-product-empty-card strong {
    color: #012748;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.35;
}

.daeho-product-empty-card span {
    color: #7b8490;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
}

.daeho-shortcut-section {
    padding: 0 0 166px;
}

.daeho-shortcut-grid {
    display: grid;
    grid-template-columns: repeat(2, 715px);
    justify-content: space-between;
    gap: 61px;
}

.daeho-shortcut-card {
    position: relative;
    width: 715px;
    height: 191px;
    min-height: 191px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 94px 0 56px;
    overflow: visible;
    border-radius: 0;
    background: url('/img/main_shortcut_card_bg.png') center / 100% 100% no-repeat;
    color: #ffffff !important;
    box-sizing: border-box;
}

.daeho-main a.daeho-shortcut-card,
.daeho-main a.daeho-shortcut-card:link,
.daeho-main a.daeho-shortcut-card:visited,
.daeho-main a.daeho-shortcut-card:hover,
.daeho-main a.daeho-shortcut-card:active,
.daeho-main a.daeho-shortcut-card:focus {
    color: #ffffff !important;
    text-decoration: none !important;
}

.daeho-shortcut-card div {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 44px;
}

.daeho-shortcut-card strong {
    width: 202px;
    color: #ffffff !important;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.38;
}

.daeho-shortcut-card.symbol strong {
    width: 174px;
}

.daeho-shortcut-card span {
    color: rgba(255, 255, 255, 0.8) !important;
    width: 152px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.69;
}

.daeho-shortcut-card img {
    position: relative;
    z-index: 1;
    width: 112px;
    height: auto;
    object-fit: contain;
}

.daeho-shortcut-card img.daeho-shortcut-cart {
    flex: 0 0 auto;
    z-index: 2;
    width: 100px;
    max-height: 72px;
    margin-right: 0;
}

.daeho-shortcut-card.symbol img.daeho-shortcut-symbol {
    position: absolute;
    right: -34px;
    bottom: -182px;
    width: 541px;
    height: auto;
    opacity: 0.35;
    pointer-events: none;
}

.daeho-shortcut-card::after {
    display: none;
}

.daeho-shortcut-card em {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    font-style: normal;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    z-index: 4;
}

.daeho-community-section {
    padding: 0 0 176px;
}

.daeho-news-tabs {
    display: flex;
    gap: 16px;
    margin-top: 52px;
}

.daeho-news-tabs button {
    width: 200px;
    height: 58px;
    border: 1px solid var(--daeho-navy);
    border-radius: 999px;
    background: #ffffff;
    color: var(--daeho-navy);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.daeho-news-tabs button.active {
    background: var(--daeho-navy);
    color: #ffffff;
}

.daeho-news-swiper {
    width: 100%;
    margin-top: 58px;
    overflow: visible !important;
}

.daeho-news-card {
    width: 358px !important;
    height: 224px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px 32px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.18);
    box-sizing: border-box;
}

.daeho-news-card span {
    color: var(--daeho-navy);
    font-size: 15px;
    font-weight: 700;
}

.daeho-news-card strong {
    min-height: 52px;
    color: #111111;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
    word-break: keep-all;
}

.daeho-news-card p {
    width: 100%;
    margin: 0;
    overflow: hidden;
    color: #68737d;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.daeho-news-card time {
    color: #b3bac2;
    font-size: 15px;
    font-weight: 600;
}

.daeho-news-empty-card {
    width: 358px !important;
    height: 224px !important;
    padding: 34px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    border: 1px dashed rgba(1, 39, 72, 0.22);
    background: #f7f9fb;
    box-sizing: border-box;
}

.daeho-news-empty-card span {
    color: var(--daeho-navy);
    font-size: 15px;
    font-weight: 800;
}

.daeho-news-empty-card strong {
    color: #6b7280;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}

@media screen and (max-width: 1200px) {
    .daeho-hero {
        min-height: 720px;
    }

    .daeho-hero h1 {
        font-size: 48px;
    }

    .daeho-hero p {
        font-size: 22px;
    }

    .daeho-hero-dots {
        margin-top: 120px;
    }

    .daeho-value-card {
        height: 430px;
    }

    .daeho-product-card {
        width: 360px !important;
        height: 360px !important;
        border-radius: 38px;
    }

    .daeho-product-card::after,
    .daeho-product-card:hover::after {
        content: '';
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        top: auto;
        z-index: 2;
        height: 48%;
        border-radius: 0 0 38px 38px;
        background: linear-gradient(180deg, rgba(1, 39, 72, 0) 0%, rgba(1, 39, 72, 0.88) 100%);
        pointer-events: none;
    }

    .daeho-product-card strong,
    .daeho-product-card:hover strong {
        position: absolute;
        right: 28px;
        bottom: 28px;
        left: 28px;
        top: auto;
        z-index: 3;
        width: auto;
        display: -webkit-box;
        overflow: hidden;
        color: #ffffff;
        font-size: 26px;
        font-weight: 600;
        line-height: 1.35;
        text-align: left;
        word-break: keep-all;
        overflow-wrap: break-word;
        transform: none;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .daeho-product-empty-card {
        width: 360px !important;
        height: 360px !important;
        border-radius: 38px;
    }

    .daeho-shortcut-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .daeho-shortcut-card {
        width: 100%;
        padding-left: 34px;
        padding-right: 74px;
    }

    .daeho-shortcut-card img.daeho-shortcut-cart {
        width: 112px;
        max-height: 96px;
        margin-right: 0;
    }

    .daeho-shortcut-card.symbol img.daeho-shortcut-symbol {
        right: 54px;
        width: 268px;
    }
}

@media screen and (min-width: 901px) and (max-width: 1200px) {
    .daeho-shortcut-card {
        height: 210px;
        min-height: 210px;
        padding: 30px 86px 30px 34px;
        overflow: hidden;
    }

    .daeho-shortcut-card div {
        width: 100%;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .daeho-shortcut-card strong,
    .daeho-shortcut-card.symbol strong,
    .daeho-shortcut-card span {
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .daeho-shortcut-card strong,
    .daeho-shortcut-card.symbol strong {
        font-size: 25px;
        line-height: 1.3;
    }

    .daeho-shortcut-card span {
        font-size: 17px;
        line-height: 1.4;
    }

    .daeho-shortcut-card img.daeho-shortcut-cart {
        position: absolute;
        right: 22px;
        bottom: 64px;
        width: 64px;
        max-height: 64px;
    }

    .daeho-shortcut-card.symbol img.daeho-shortcut-symbol {
        right: 26px;
        bottom: -82px;
        width: 210px;
    }

    .daeho-shortcut-card em {
        right: 12px;
        bottom: 12px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

@media screen and (max-width: 900px) {
    .daeho-container {
        width: min(100% - 32px, 640px);
    }

    .daeho-hero {
        min-height: 620px;
    }

    .daeho-hero-content {
        padding-top: 40px;
    }

    .daeho-hero h1 {
        font-size: 34px;
    }

    .daeho-hero p {
        font-size: 17px;
    }

    .daeho-value-section,
    .daeho-product-section,
    .daeho-shortcut-section,
    .daeho-community-section {
        padding-bottom: 92px;
    }

    .daeho-value-grid,
    .daeho-shortcut-grid {
        grid-template-columns: 1fr;
    }

    .daeho-value-card {
        height: 320px;
    }

    .daeho-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .daeho-center-title,
    .daeho-section-head h2 {
        width: 100%;
        font-size: 30px;
        overflow-wrap: break-word;
    }

    .daeho-product-section .daeho-section-head h2 {
        width: 100%;
    }

    .daeho-product-swiper,
    .daeho-news-swiper {
        overflow: hidden !important;
    }

    .daeho-swiper-buttons button {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .daeho-product-card {
        width: min(280px, calc(100vw - 32px)) !important;
        height: min(280px, calc(100vw - 32px)) !important;
        border-radius: 28px;
    }

    .daeho-product-card::after,
    .daeho-product-card:hover::after {
        border-radius: 0 0 28px 28px;
    }

    .daeho-product-empty-card {
        width: min(280px, calc(100vw - 32px)) !important;
        height: min(280px, calc(100vw - 32px)) !important;
        padding: 28px;
        border-radius: 28px;
    }

    .daeho-product-card strong,
    .daeho-product-card:hover strong {
        right: 22px;
        bottom: 22px;
        left: 22px;
        font-size: 21px;
    }

    .daeho-product-empty-card strong {
        font-size: 22px;
    }

    .daeho-shortcut-card {
        height: auto;
        min-height: 150px;
        padding: 28px 64px 28px 28px;
        overflow: hidden;
    }

    .daeho-shortcut-card div {
        min-width: 0;
        gap: 24px;
    }

    .daeho-shortcut-card strong,
    .daeho-shortcut-card.symbol strong,
    .daeho-shortcut-card span {
        width: auto;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .daeho-shortcut-card strong {
        font-size: 26px;
    }

    .daeho-shortcut-card span {
        font-size: 18px;
        line-height: 1.45;
    }

    .daeho-shortcut-card em {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .daeho-news-card,
    .daeho-news-empty-card {
        width: min(280px, calc(100vw - 32px)) !important;
    }
}

@media screen and (max-width: 520px) {
    .daeho-hero {
        min-height: 560px;
    }

    .daeho-hero-content {
        width: calc(100% - 32px);
    }

    .daeho-hero h1 {
        font-size: 28px;
        overflow-wrap: break-word;
    }

    .daeho-hero p {
        font-size: 15px;
        line-height: 1.5;
    }

    .daeho-value-section {
        padding-top: 72px;
    }

    .daeho-center-title,
    .daeho-section-head h2 {
        font-size: 27px;
    }

    .daeho-value-card {
        height: 280px;
    }

    .daeho-value-card span {
        font-size: 28px;
    }

    .daeho-shortcut-card div {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .daeho-shortcut-card {
        min-height: 174px;
        padding: 24px 62px 24px 24px;
    }

    .daeho-shortcut-card strong {
        font-size: 23px;
    }

    .daeho-shortcut-card span {
        font-size: 16px;
    }

    .daeho-shortcut-card em {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .daeho-shortcut-card img.daeho-shortcut-cart {
        width: 76px;
        max-height: 70px;
    }

    .daeho-shortcut-card.symbol img.daeho-shortcut-symbol {
        right: -16px;
        bottom: -28px;
        width: 190px;
    }

    .daeho-news-tabs {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 36px;
    }

    .daeho-news-tabs button {
        width: 100%;
        min-width: 0;
        height: 52px;
        padding: 0 12px;
        font-size: 16px;
        white-space: normal;
    }

    .daeho-news-card,
    .daeho-news-empty-card {
        padding: 28px 24px;
    }

    .daeho-news-card strong,
    .daeho-news-empty-card strong {
        overflow-wrap: break-word;
    }
}
