@charset "utf-8";

/* 오프라인 기부 섹션 전체 */
.offline-donation-section {
    width: 100%;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 다운로드 카드 섹션 */
.offline-download-section {
    width: 100%;
    background-color: #ffffff;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    box-shadow: 0 25px 20px -25px rgba(0, 0, 0, 0.18);
    display: flex;
    justify-content: center;
    padding: 0 0 120px 0;
    box-sizing: border-box;
}

.offline-download-container {
    width: 1420px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 80px 0 0 0;
    box-sizing: border-box;
}

/* 섹션 타이틀 */
.offline-download-title-wrap {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 16px;
}

.offline-download-title-bar {
    width: 10px;
    min-width: 10px;
    height: 80px;
    background-color: #0046ac;
    flex-shrink: 0;
}

.offline-download-title {
    font-family: 'Paperlogy', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.3;
    color: #000000;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.offline-download-title span {
    color: #0046ac;
}

/* 개별 카드 */
.offline-form-card {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 36px 48px;
    box-sizing: border-box;
    gap: 40px;
    transition: box-shadow 0.2s ease;
}

.offline-form-card:hover {
    box-shadow: 0 8px 32px rgba(0, 70, 172, 0.12);
}

.offline-form-accent {
    width: 6px;
    min-width: 6px;
    height: 60px;
    background-color: #0046ac;
    border-radius: 3px;
    flex-shrink: 0;
}

.offline-form-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offline-form-number {
    font-family: 'Paperlogy', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
    color: #0046ac;
    margin: 0;
    padding: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.offline-form-name {
    font-family: 'Paperlogy', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #000000;
    margin: 0;
    padding: 0;
}

.offline-form-desc {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    padding: 0;
}

.offline-form-buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-shrink: 0;
    align-items: center;
}

.offline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 1000px;
    text-decoration: none;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

.offline-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.offline-btn-hwp {
    background-color: #003179;
    color: #ffffff;
}

.offline-btn-pdf {
    background-color: #cc2200;
    color: #ffffff;
}

.offline-btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* 안내 문구 섹션 */
.offline-notice-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 0;
    box-sizing: border-box;
}

.offline-notice-container {
    width: 1420px;
    max-width: 100%;
    background-color: #eef3fb;
    border-radius: 20px;
    padding: 48px 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offline-notice-title {
    font-family: 'Paperlogy', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #003179;
    margin: 0;
    padding: 0;
}

.offline-notice-list {
    margin: 0;
    padding: 0 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offline-notice-list li {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
}

/* 모바일 반응형 */
@media (max-width: 1024px) {
    .offline-donation-section {
        overflow-x: hidden;
    }

    .offline-download-section {
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        padding: 0 0 60px 0;
    }

    .offline-download-container {
        width: 100%;
        padding: 40px 20px 0 20px;
        gap: 16px;
    }

    .offline-download-title-bar {
        height: 54px;
        min-height: 54px;
    }

    .offline-download-title {
        font-size: 28px;
    }

    .offline-form-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
        gap: 20px;
    }

    .offline-form-accent {
        height: 4px;
        width: 40px;
        min-width: 40px;
        border-radius: 2px;
    }

    .offline-form-name {
        font-size: 18px;
    }

    .offline-form-desc {
        font-size: 14px;
    }

    .offline-form-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .offline-btn {
        font-size: 14px;
        padding: 10px 18px;
    }

    .offline-notice-section {
        padding: 40px 0 60px;
    }

    .offline-notice-container {
        width: 100%;
        margin: 0 20px;
        width: calc(100% - 40px);
        padding: 32px 24px;
    }

    .offline-notice-title {
        font-size: 17px;
    }

    .offline-notice-list li {
        font-size: 14px;
    }
}
