@charset "utf-8";

/* ===========================
   POINT SECTION
=========================== */
.point-section {
    padding-bottom: 150px;
}


.point-item {
    display: flex;
    align-items: flex-start;  /* center → flex-start */
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.point-item:last-child {
    border-bottom: none;
}

/* 홀수: 이미지 왼쪽 */
.point-item.odd .point-img  { order: 1; }
.point-item.odd .point-info { order: 2; }

/* 짝수: 이미지 오른쪽 */
.point-item.even .point-img  { order: 2; }
.point-item.even .point-info { order: 1; text-align: right; }

.point-img {
    flex-shrink: 0;
    width: 550px;
    height: 340px;
    overflow: hidden;
    background: #f0eded;
}

.point-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.end {
	justify-content: end;
}

.point-img:hover img {
    transform: scale(1.05);
}

.point-label {
    color: #4D3621;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.point-label::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(77, 54, 33, 0.2);
    top: 50%;
    right: 135px;
    transform: translateY(-50%);
    z-index: 0;
}


.point-desc {
    color: #333;
    line-height: 1.8;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 767px) {
    .point-item {
        flex-direction: column !important;
        gap: 16px;
        padding: 32px 0;
    }
    .point-item.even .point-info { text-align: left; }
    .point-img  { width: 100%; height: 200px; order: 1 !important; }
    .point-info { order: 2 !important; }
    .point-label { font-size: 18px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .point-item { gap: 40px; }
    .point-img  { width: 200px; height: 150px; }
}