@charset 'utf-8';


.claim-search-area {
	background: #f5fbff;
	padding: 2rem 1rem;
	text-align: center;
}

.search-bar {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.claim-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-top: 2rem;
}

@media (max-width: 1200px) {
	.claim-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.claim-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.claim-grid {
		grid-template-columns: 1fr;
	}
}

.claim-card {
	position: relative;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 1.2rem 1rem;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	overflow: hidden;
}

.claim-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transform: translateY(-3px);
}

.claim-meta {
	font-size: 0.9rem;
	color: #777;
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
}

.claim-type {
	background-color: #eef2f7;
	padding: 2px 6px;
	border-radius: 6px;
	font-size: 0.9rem;
	color: #334;
}

.claim-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #222;
	margin-bottom: 0.25rem;
	font-family: 'SEBANG_Gothic', sans-serif;
	font-weight: 100;
}


.claim-stats {
	font-size: 0.9rem;
	color: #333;
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-align: end;
}

.claim-stats .price strong {
	color: #0a4cba;
	font-weight: 700;
}

.claim-hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	background: rgba(10, 76, 186, .9);
	border-radius: 6px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2rem;
}

.claim-card:hover .claim-hover {
	opacity: 1;
}

/* 전체보기 버튼 */
.refresh-btn {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 105%;
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;

	background-color: #0a4cba;
	color: #fff;
	border: none;
	transition: all 0.3s ease;
}

.refresh-btn:hover {
	background-color: #083a8f;
	color: #fff;
}

@media (max-width: 768px) {

	.refresh-btn {
		display: none;
	}

	.claim-grid-area {
		padding: 0 1rem;
	}
}