/*
 * 홈페이지 디자인을 의미 있게 수정하면 application.yml의 seo.home-lastmod도 갱신하세요.
 * 이 값은 sitemap.xml의 홈 lastmod로 사용됩니다.
 */
.home {
    --mom-blue: #6b86ca;
    --mom-blue-dark: #4f6fb8;
    --mom-blue-soft: #eef3ff;
    --mom-green: #079B7A;
    --mom-green-soft: #E8F7F2;
    --mom-red: #E64B4B;
    --mom-red-soft: #FFEAEA;
    --mom-yellow: #F4C430;
    --mom-yellow-soft: #FFF4C2;
    --mom-ink: #243042;
    --mom-muted: #667085;
    --mom-line: #E6EAF0;
    --mom-paper: #FAFBF7;
    --mom-bg: #F4F7FB;
    color: var(--mom-ink);
    background: var(--mom-paper);
    font-family: 'Noto Sans KR', 'Spoqa', sans-serif;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.home * {
    word-break: keep-all;
    overflow-wrap: break-word;
}

.home-hero,
.home-section,
.home-final {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.home-hero {
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
    align-items: center;
    gap: 72px;
    padding: 64px 0 72px;
    position: relative;
}

.home-hero::before {
    display: none;
}

.home-hero__content,
.home-hero__visual {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--mom-green);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
}

.home h1,
.home h2,
.home h3,
.home p {
    margin-top: 0;
}

.home h1 {
    max-width: 720px;
    margin-bottom: 22px;
    font-size: clamp(34px, 4.2vw, 54px);
    line-height: 1.14;
    letter-spacing: -0.02em;
    color: #1F2937;
    font-weight: 700;
}

.home h1::after {
    content: "";
    display: block;
    width: 150px;
    height: 6px;
    margin-top: 22px;
    background: linear-gradient(90deg, var(--mom-blue) 0 54%, var(--mom-green) 54% 82%, var(--mom-yellow) 82% 100%);
}

.home h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.16;
    letter-spacing: -0.025em;
    color: #243042;
    font-weight: 700;
}

.home h3 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.35;
    color: #243042;
    font-weight: 600;
}

.hero-copy {
    max-width: 650px;
    margin-bottom: 12px;
    color: var(--mom-muted);
    font-size: 21px;
    line-height: 1.65;
}

.hero-kicker {
    max-width: 620px;
    margin-bottom: 28px;
    color: var(--mom-ink);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.55;
}

.hero-actions,
.section-link {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 24px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: #fff !important;
    background: var(--mom-blue);
    box-shadow: 0 10px 22px rgba(107, 134, 202, .22);
}

.button-secondary {
    color: var(--mom-blue-dark) !important;
    background: transparent;
    box-shadow: inset 0 0 0 2px var(--mom-blue);
}

.hero-note {
    max-width: 560px;
    margin: 0 0 18px;
    border-left: 4px solid var(--mom-blue);
    padding: 2px 0 2px 14px;
    color: #4f5f73;
    font-size: 15px;
    line-height: 1.65;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 560px;
    margin-top: 0;
}

.hero-points div {
    border-top: 4px solid var(--mom-blue-dark);
    padding: 14px 0 0;
    background: transparent;
}

.hero-points div:nth-child(1) {
    border-top-color: var(--mom-green);
}

.hero-points div:nth-child(2) {
    border-top-color: var(--mom-yellow);
}

.hero-points div:nth-child(3) {
    border-top-color: var(--mom-red);
}

.hero-points strong {
    display: block;
    margin-bottom: 4px;
    color: var(--mom-blue-dark);
    font-size: 14px;
}

.hero-points span {
    color: var(--mom-muted);
    font-size: 13px;
}

.home-hero__visual {
    display: flex;
    justify-content: center;
}

.lucky-box {
    width: min(100%, 460px);
    border: 1px solid var(--mom-line);
    border-radius: 22px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(107, 134, 202, .16);
    position: relative;
}

.lucky-box::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 14px;
    height: 3px;
    border-radius: 999px;
    background: var(--mom-yellow);
}

.lucky-box__header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 18px;
}

.lucky-box__header span {
    display: block;
    color: var(--mom-muted);
    font-size: 13px;
}

.lucky-box__header strong {
    display: block;
    margin-top: 6px;
    color: var(--mom-ink);
    font-size: 22px;
    font-weight: 700;
}

.lucky-refresh {
    flex: 0 0 auto;
    min-width: 76px;
    border: 1px solid rgba(107, 134, 202, .35);
    border-radius: 999px;
    padding: 8px 12px;
    background: var(--mom-blue-soft);
    color: var(--mom-blue-dark);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.lucky-refresh:hover {
    border-color: rgba(107, 134, 202, .6);
    background: #dfe8ff;
}

.lucky-refresh:disabled {
    cursor: wait;
    opacity: .62;
}

.lucky-ticket-card {
    margin: 0 0 18px;
}

.lucky-ticket-skeleton {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 12px;
    min-height: 118px;
    border: 1px solid #8ad0f0;
    border-radius: .5rem;
    padding: 12px;
    background: #fff;
}

.lucky-ticket-skeleton span {
    display: block;
    border-radius: 8px;
    background: linear-gradient(90deg, #eef3ff 0%, #f8fafc 48%, #eef3ff 100%);
    background-size: 220% 100%;
    animation: lucky-skeleton 1.35s ease-in-out infinite;
}

.lucky-ticket-skeleton span:first-child {
    grid-row: span 3;
}

@keyframes lucky-skeleton {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -220% 0;
    }
}

.lucky-ticket-card .list-item-outer {
    position: relative;
    margin-bottom: 0;
}

.lucky-ticket-card .list-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: .5rem;
}

.lucky-ticket-card .list-item {
    position: relative;
    display: flex;
    overflow: hidden;
    text-align: left;
    border: 1px solid #8ad0f0;
    border-radius: .5rem;
    background: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .04);
}

.lucky-ticket-card .list-item-map {
    width: 112px;
    min-height: 112px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    flex-shrink: 0;
}

.lucky-ticket-card .list-item-info {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    flex-grow: 1;
    padding: .5rem;
}

.lucky-ticket-card .list-item-info-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.lucky-ticket-card .lsit-item-info-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.lucky-ticket-card .search-icon-size,
.lucky-ticket-card .searched-icon-size {
    display: inline-block;
    width: 25px;
    padding: 3px;
}

.lucky-ticket-card .item-payment {
    color: #eb5757;
    font-size: 1rem;
    font-weight: 700;
}

.lucky-ticket-card .item-payment::after {
    content: '원';
    font-size: 70%;
}

.lucky-ticket-card .item-date {
    display: inline-block;
    margin: 0 0 0 auto;
    color: #999;
    font-size: .75rem;
    text-align: right;
}

.lucky-ticket-card .item-airplane {
    display: flex;
    flex-wrap: wrap;
}

.lucky-ticket-card .item-airplane .item,
.lucky-ticket-card .openjaw-item {
    display: flex;
    color: #3e454f;
}

.lucky-ticket-card .item-airplane .item::after {
    display: inline-block;
    width: 20px;
    height: 21px;
    content: '';
    background: url('/common/images/icon_arrow_next.svg') no-repeat center center;
}

.lucky-ticket-card .item-airplane .item:last-child::after {
    display: none;
}

.lucky-ticket-card .openjaw {
    display: flex;
    color: #a3a3a3;
    font-weight: 700;
}

.lucky-ticket-card .stay-red {
    color: #eb5757;
}

.lucky-ticket-card .item-schedule {
    display: flex;
    position: relative;
    color: #3e454f;
    justify-content: space-between;
    filter: blur(2px);
    opacity: .68;
    pointer-events: none;
    user-select: none;
}

.lucky-ticket-card .item-schedule::after {
    content: "";
    position: absolute;
    inset: -2px -3px;
    border-radius: 4px;
    background:
        repeating-linear-gradient(90deg, rgba(107, 134, 202, .22) 0 5px, rgba(255, 255, 255, .18) 5px 10px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .16) 0 4px, rgba(107, 134, 202, .14) 4px 8px);
    mix-blend-mode: normal;
}

.lucky-ticket-card .item-avg-dur {
    display: inline-block;
    margin: 0 0 0 auto;
    color: #999;
    text-align: right;
}

.lucky-ticket-card .item-airplane-otherInfo {
    display: flex;
    justify-content: space-between;
}

.lucky-ticket-card .item-other {
    overflow: hidden;
    color: #999;
    font-size: .75rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lucky-ticket-summary,
.lucky-fallback-card p {
    margin: 0 0 14px;
    color: var(--mom-muted);
    font-size: 15px;
    line-height: 1.72;
}

.lucky-fallback-card {
    margin-bottom: 12px;
    border-radius: 16px;
    padding: 22px;
    background: #f4f6f8;
}

.lucky-fallback-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--mom-ink);
}

.home-section {
    padding: 92px 0;
    border-top: 1px solid rgba(19, 32, 56, .1);
}

.split-section,
.expectation-section {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 64px;
    align-items: start;
}

.section-copy p,
.section-heading p,
.notice-card p,
.home-final p {
    color: var(--mom-muted);
    font-size: 18px;
    line-height: 1.78;
}

.section-copy p:last-child,
.notice-card p:last-child {
    margin-bottom: 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li,
.feature-grid article,
.case-grid article,
.community-grid article,
.notice-card,
.faq-list details {
    border: 1px solid rgba(19, 32, 56, .1);
    border-radius: 10px;
    background: #fff;
}

.process-list li {
    border: 0;
    border-top: 2px solid rgba(24, 63, 145, .22);
    border-radius: 0;
    padding: 26px 28px 0 0;
    background: transparent;
}

.process-list span {
    display: inline-grid;
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--mom-green);
    font-weight: 700;
}

.process-list li:nth-child(2) span {
    color: #7A5600;
    background: var(--mom-yellow);
}

.process-list li:nth-child(3) span {
    background: var(--mom-red);
}

.process-list li:nth-child(1) {
    border-top-color: var(--mom-green);
}

.process-list li:nth-child(2) {
    border-top-color: var(--mom-yellow);
}

.process-list li:nth-child(3) {
    border-top-color: var(--mom-red);
}

.process-list p,
.feature-grid p,
.case-grid p,
.faq-list p {
    margin-bottom: 0;
    color: var(--mom-muted);
    line-height: 1.68;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.feature-grid article {
    grid-column: span 2;
    min-height: 230px;
    padding: 28px;
    background: #fff;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.feature-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--mom-green);
}

.feature-grid article:first-child,
.feature-grid article:nth-child(2) {
    grid-column: span 3;
    min-height: 210px;
}

.feature-grid article:first-child {
    background: var(--mom-blue);
}

.feature-grid article:nth-child(2) {
    background: #fff;
}

.feature-grid article:first-child h3,
.feature-grid article:first-child p {
    color: #fff;
}

.feature-grid article:nth-child(2)::before {
    background: var(--mom-yellow);
}

.feature-grid article:nth-child(3)::before {
    background: var(--mom-green);
}

.feature-grid article:nth-child(4)::before {
    background: var(--mom-red);
}

.feature-grid article:nth-child(5)::before {
    background: var(--mom-blue);
}

.feature-icon {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--mom-red);
    font-size: 13px;
    font-weight: 700;
}

.case-section {
    width: 100%;
    max-width: none;
    background: var(--mom-green-soft);
}

.case-section .eyebrow {
    color: var(--mom-green);
}

.case-section > .section-heading,
.case-section > .case-block,
.case-section > .section-link {
    width: min(1180px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}

.case-block + .case-block {
    margin-top: 44px;
}

.case-block__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.case-block__title h3 {
    margin-bottom: 0;
}

.case-block__title a {
    flex: 0 0 auto;
    color: var(--mom-blue-dark);
    font-weight: 700;
}

.home-blog-list {
    background: #fff;
}

.home-blog-list .board-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-blog-list .board-list_item {
    border-bottom: 1px solid #eee;
    list-style: none;
}

.home-blog-list .board-list_link {
    display: flex;
    flex-direction: column;
    padding: 14px 0;
    color: inherit;
    text-decoration: none;
}

.home-blog-list .board-item_single-top,
.home-blog-list .board-item_single-bottom {
    display: flex;
    justify-content: space-between;
}

.home-blog-list .board-item_text-box {
    min-width: 0;
}

.home-blog-list .board-item_title {
    overflow: hidden;
    color: #3e454f;
}

.home-blog-list .blog-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.42;
}

.home-blog-list .board-item_cont {
    display: -webkit-box;
    overflow: hidden;
    max-height: 48px;
    margin-top: .35rem;
    color: dimgrey;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.home-blog-list .board-item_pic {
    overflow: hidden;
    flex: 1 0 76px;
    max-width: 76px;
    height: 76px;
    margin-top: .25rem;
    margin-left: 1rem;
    border-radius: .5rem;
}

.home-blog-list .board-item_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-blog-list .board-item_pic:empty {
    flex: 1 0 0;
    margin-left: 0;
}

.home-blog-list .board-item_data,
.home-blog-list .board-item_info {
    display: flex;
    align-items: center;
    color: #999;
    font-size: 12px;
}

.home-blog-list .board-item_info {
    color: #525252;
}

.home-blog-list--empty article {
    border: 1px solid rgba(19, 32, 56, .1);
    border-radius: 10px;
    padding: 26px;
    background: #fff;
}

.home-tag-search {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-tag-search .result-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 9px;
    background-color: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
}

.home-tag-search .result-item_header {
    padding: 11px 0 14px;
    text-align: center;
    color: #8f8f8f;
    font-weight: 700;
}

.home-tag-search .result-item_header .result-item_sub-title {
    max-width: calc(100% - 32px);
    margin: 0 auto;
    color: red;
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.28;
    text-align: center;
    word-break: keep-all;
}

.home-tag-search .result-item_header .result-item_description {
    display: block;
    max-width: calc(100% - 32px);
    margin: 8px auto 0;
    color: #8f8f8f;
    font-weight: 400;
    line-height: 1.55;
    overflow-wrap: anywhere;
    word-break: keep-all;
}

.home-tag-search .result-item_img img,
.home-tag-search .result-item_img-fallback {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.home-tag-search .result-item_img-fallback {
    background: linear-gradient(135deg, var(--mom-blue-soft), #fff);
}

.home-tag-search .result-item_infomation {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 1rem 0;
}

.home-tag-search .result-item_infomation.color-type1 {
    color: #eb5757;
}

.home-tag-search .result-item_button-box {
    position: relative;
    display: flex;
    flex: 1;
    align-items: flex-end;
    justify-content: center;
}

.home-tag-search .result-item_button {
    width: auto;
    height: 27px;
    border: 0 !important;
    border-radius: 6px;
    padding: 3px 21px;
    color: inherit !important;
    background-color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.section-link {
    margin-top: 28px;
}

.section-link a {
    color: var(--mom-blue-dark);
    font-weight: 700;
}

.notice-card {
    padding: 28px;
    border: 0;
    border-left: 4px solid var(--mom-red);
    background: #fff;
    box-shadow: 0 16px 34px rgba(23, 32, 51, .06);
}

.community-section {
    border-top: none;
    border-radius: 18px;
    padding: 76px 48px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(107, 134, 202, .10);
}

.community-section .section-heading {
    max-width: 860px;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.community-grid article {
    border: 0;
    border-top: 4px solid var(--mom-blue-dark);
    border-radius: 0;
    padding: 24px 0 0;
}

.community-grid article:nth-child(1) {
    border-top-color: var(--mom-green);
}

.community-grid article:nth-child(2) {
    border-top-color: var(--mom-yellow);
}

.community-grid article:nth-child(3) {
    border-top-color: var(--mom-red);
}

.community-grid strong {
    display: block;
    margin-bottom: 10px;
    color: var(--mom-blue-dark);
    font-size: 18px;
}

.community-grid p {
    margin-bottom: 0;
    color: var(--mom-muted);
    line-height: 1.68;
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 920px;
}

.faq-list details {
    padding: 0 24px;
    background: #fff;
    box-shadow: inset 3px 0 0 var(--mom-blue);
}

.faq-list details:nth-child(3n + 1) {
    box-shadow: inset 3px 0 0 var(--mom-green);
}

.faq-list details:nth-child(3n + 2) {
    box-shadow: inset 3px 0 0 var(--mom-yellow);
}

.faq-list details:nth-child(3n) {
    box-shadow: inset 3px 0 0 var(--mom-red);
}

.faq-list summary {
    cursor: pointer;
    padding: 20px 0;
    color: var(--mom-ink);
    font-weight: 700;
}

.faq-list p {
    padding-bottom: 20px;
}

.home-final {
    margin-bottom: 80px;
    border-radius: 18px;
    padding: 58px 40px;
    text-align: center;
    background: linear-gradient(180deg, var(--mom-blue), var(--mom-blue-dark));
    box-shadow: 0 22px 50px rgba(107, 134, 202, .20);
}

.home-final h2,
.home-final p {
    color: #fff;
}

.home-final p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    opacity: .9;
}

.home-final .button-primary {
    margin-top: 8px;
    color: var(--mom-ink) !important;
    background: var(--mom-yellow);
}

.home-final .disclaimer {
    margin-top: 28px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    line-height: 1.7;
}

@media screen and (max-width: 980px) {
    .home-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 42px;
        padding-top: 52px;
    }

    .split-section,
    .expectation-section,
    .process-list,
    .home-blog-list .board-list,
    .home-tag-search,
    .community-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-grid article,
    .feature-grid article:first-child,
    .feature-grid article:nth-child(2) {
        grid-column: auto;
    }
}

@media screen and (max-width: 768px) {
    .home-hero,
    .home-section,
    .home-final,
    .case-section > .section-heading,
    .case-section > .case-block,
    .case-section > .section-link {
        width: min(100% - 28px, 560px);
    }

    .home-hero {
        padding: 42px 0 48px;
    }

    .home-hero__visual {
        width: calc(100% + 28px);
        margin-right: -14px;
        margin-left: -14px;
    }

    .home h1 {
        font-size: 32px;
        line-height: 1.18;
    }

    .hero-copy {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-kicker {
        margin-bottom: 24px;
        font-size: 15px;
    }

    .hero-note {
        margin-bottom: 16px;
        font-size: 14px;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .section-copy p,
    .section-heading p,
    .notice-card p,
    .home-final p {
        font-size: 16px;
    }

    .home-section {
        padding: 62px 0;
    }

    .community-section {
        padding: 52px 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .lucky-box {
        width: 100%;
        border: 0;
        border-radius: 0;
        padding: 0 0 18px;
        background: transparent;
        box-shadow: none;
    }

    .lucky-box::after {
        right: 14px;
        left: 14px;
    }

    .lucky-box__header {
        align-items: start;
        padding: 0 14px;
    }

    .lucky-box__header strong {
        font-size: 20px;
    }

    .lucky-refresh {
        min-width: 68px;
        padding: 7px 10px;
        font-size: 12px;
    }

    .lucky-ticket-card .list-item-map {
        width: 112px;
        min-height: 118px;
    }

    .lucky-ticket-card .item-airplane {
        font-size: .9rem;
    }

    .lucky-ticket-summary,
    .lucky-fallback-card {
        margin-right: 14px;
        margin-left: 14px;
    }

    .home-blog-list .blog-title {
        font-size: 17px;
    }

    .home-blog-list .board-item_cont {
        max-height: 24px;
        -webkit-line-clamp: 1;
    }

    .home-blog-list .board-item_pic {
        flex: 1 0 60px;
        max-width: 60px;
        height: 60px;
    }

    .home-tag-search .result-item_img img,
    .home-tag-search .result-item_img-fallback {
        height: auto;
        min-height: 0;
    }

    .feature-grid article {
        min-height: auto;
    }

    .home-final {
        margin-bottom: 48px;
        padding: 42px 24px;
    }
}
