/* ────────────────────────────
   #sev 추천 여행지 3등분 그리드
──────────────────────────── */


#sev{
	padding:0;

}


#sev .travel-grid {
  display: flex;
  gap: 20px;
}

#sev .travel-item {
  flex: 1;
  aspect-ratio: 1 / 1; /* 정사각형 비율 */
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#sev .travel-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%; 
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none;
    z-index: 1;
}
#sev .travel-label {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
	z-index: 2; /* 오버레이 위로 */
}
@media (max-width: 640px) {
	#sev .travel-label {    font-size: 1rem; bottom: 7%; left: 50%; transform: translate(-50%, 0%);        width: 100%;
        text-align: center;}


}