/* home/css/how-to-issue.css */
/* 신규 추가: 발급 방법 8구 통합 카드형 UI (그림자 제거) */

.issue-container {
    padding: 40px 0;
    font-family: inherit; /* Inherits Nanum Gothic / Malgun Gothic from body */
}

.issue-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.issue-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f8fcfc;
    border: 1px solid #eaeaea; /* Light border without shadow */
    border-radius: 12px;
    padding: 60px 15px;
    text-decoration: none !important;
    color: #333 !important;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

/* Hover/Focus Z-generation Interaction (No shadow) */
.issue-card:hover, .issue-card:focus {
    background: #fff;
    border-color: #40b8b8;
    transform: translateY(-5px);
    color: #222 !important;
}

.bankLogo {text-align: center; padding: 10px 0;}
.bankLogo img {height: 23px;}

.card-icon {
    font-size: 30px;
		margin-bottom: 10px;
    color: #006666;
    transition: transform 0.2s ease;
}

.issue-card:hover .card-icon {
    transform: scale(1.15) translateY(-3px);
}

.cardImgs {
	text-align: center;
	padding-top: 15px;
}

.cardImgs img {
	height: 50px;
	border-radius: 5px;
	border: 2px solid #fff;
}

.card-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
    word-break: keep-all; 
}

.card-desc {
    font-size: 13px;
    color: #777;
    word-break: keep-all; 
		margin: 0 0 5px 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
		.issue-container {
    		padding: 20px 0;
		}
    .issue-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .issue-card {
        padding: 10px 10px;
    }
    .card-title {
        font-size: 16px;
    }
    .card-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .card-desc {
        font-size: 12px;
        margin-top: 8px;
    }
		.cardImgs img {
			height: 36px;
		}
}
