/* 마음 전하실 곳 섹션 */
.acctSection {
    background: #f4f1ec;
    /* 따뜻한 베이지 배경 */
    padding: 5rem 1.5rem;
    border-top: none;
}

.lai_1 {
    margin-bottom: 3rem;
    text-align: center;
}

.lai_1 .enstr {
    font-size: 0.85rem;
    letter-spacing: 0.15rem;
    color: #9f8c7d;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.lai_1 .name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #4a4a4a;
    font-family: 'Nanum Gothic', sans-serif;
    display: block;
    margin-bottom: 1.2rem;
}

.lai_1 .sectionDesc {
    font-size: 1rem;
    color: #888;
    line-height: 1.7;
    word-break: keep-all;
}

/* 토글 스위치 */
.radio-swipe-container {
    position: relative;
    display: flex;
    width: 240px;
    height: 48px;
    background-color: #e5e0db;
    border-radius: 24px;
    margin: 0 auto 3rem;
    padding: 4px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.radio-swipe-container input {
    display: none;
}

.radio-swipe-container label {
    flex: 1;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.radio-swipe-container input:checked+label {
    color: #333;
    font-weight: 600;
}

.slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: 40px;
    background: #ffffff;
    border-radius: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

#acc_type_swipe-2:checked~.slider {
    transform: translateX(116px);
}

/* Swiper Cards */
.gcontents {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: none;
}

.gcontents.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.swipe_acct_box_wrapper {
    overflow: hidden;
    padding-bottom: 2rem;
    width: 100%;
}

/* Individual Card */
.acbox {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;

    /* 화면 너비의 65%만 차지하게 하여 양옆이 확실히 보이도록 수정 */
    width: 65vw;
    min-width: 200px;
    max-width: 300px;

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    min-height: 220px;
    box-sizing: border-box;
    /* 패딩 포함 크기 계산 */
}

/* 활성 슬라이드는 강조되지 않음 (기본 크기 유지), 필요시 추가 */

.acbox .a-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.2rem;
    font-family: 'Noto Serif KR', serif;
}

.acbox .a-account {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    /* 부모에 맞춤 */
    background: transparent;
    padding: 0.5rem;
    border-radius: 8px;
    margin-bottom: 0;
    text-decoration: none;
    color: #555;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
}

.acbox .a-account:hover {
    background: transparent;
    opacity: 0.7;
    border-color: transparent;
}

.acbox .bank-info {
    display: flex;
    flex-direction: row;
    /* 가로 배치 */
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    /* 내용이 길면 줄바꿈 하되 중앙 정렬 */
    gap: 6px;
}

.acbox .bank-info span:first-child {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    word-break: keep-all;
}

.acbox .bank-info span:last-child {
    font-size: 1.05rem;
    font-weight: 400;
    color: #555;
    letter-spacing: 0;
}

.acbox .copy-icon {
    position: static;
    transform: none;
    width: 16px;
    opacity: 0.4;
    transition: opacity 0.2s;
    margin-left: 2px;
}

.acbox .a-account:hover .copy-icon {
    opacity: 0.8;
}

.txtnone {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}