@charset "utf-8";

/* ==============================
   button
============================== */
.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding-bottom: var(--size-8xs);
    border-bottom: var(--border-s) solid var(--color-border-black);
}
.button .text {
    font-size: var(--font-s);
}
.button.button-large .text {
    font-family: var(--font-bold);
    font-size: var(--font-m);
}

/* ==============================
   content-title
============================== */
.content-title {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin: var(--size-6xl) auto;
    width: var(--size-3xs);
    text-align: center;
}
.content-title .circle {
    width: var(--size-7xs);
    height: var(--size-7xs);
    border-radius: 50%;
    background-color: var(--color-text-sub);
}
.content-title .text {
    margin: var(--size-3xs) 0;
    font-family: var(--font-regular-point);
    font-size: var(--font-l);
    line-height: var(--line-wide);
    color: var(--color-text-sub);
}
.content-title .line {
    width: var(--border-s);
    height: var(--size-m);
    font-size: 0;
    background-color: var(--color-text-sub);
}

/* ==============================
   sub-hero-img
============================== */
.sub-hero-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: var(--color-site-bg);
    border-radius: var(--radius-m);
    overflow: hidden;
}
.sub-hero-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 모션 환경에서 히어로 이미지는 JS가 페이드인 처리 */
.js-motion .sub-hero-img img,
.js-motion .main-hero-image-area > img {
    opacity: 0;
}
.sub-hero-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--size-xl) var(--size-3xs) var(--size-3xs);
    background: linear-gradient(to top, rgba(29, 24, 20, 0.55) 0%, transparent 100%);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.sub-hero-img-caption {
    margin: 0;
    font-family: var(--font-regular);
    font-size: var(--font-4xs);
    line-height: var(--line-flat);
    letter-spacing: 0.08em;
    color: var(--color-site-bg-soft);
}
.sub-hero-img-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--size-4xs);
    width: 100%;
    height: 100%;
    padding: var(--size-2xl);
    box-sizing: border-box;
    text-align: center;
}
.sub-hero-img-placeholder-title {
    margin: 0;
    font-family: var(--font-regular);
    font-size: var(--font-xs);
    color: var(--color-text-disabled);
}
.sub-hero-img-placeholder-desc {
    margin: 0;
    font-family: var(--font-light);
    font-size: var(--font-3xs);
    line-height: var(--line-wide);
    color: var(--color-text-disabled);
    word-break: keep-all;
    max-width: 560px;
}

/* ==============================
   sub-block
============================== */
.sub-blocks {
    display: flex;
    flex-direction: column;
    gap: var(--size-xl);
}
.sub-block {
    display: flex;
    flex-direction: column;
    gap: var(--size-4xs);
}
.sub-block-title {
    margin: 0;
    font-family: var(--font-bold);
    font-size: var(--font-xs);
    line-height: var(--line-flat);
    color: var(--color-text-sub);
}