
.responsive-image {
    position: relative;
    width: 100%;
    /*{#max-width: 600px;   !* 필요 시 제한 *!#}*/
    margin: 0 auto;
    margin-top:100px;
}

.responsive-image img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay-text {

    position: absolute;
    inset: 0;   /* top, right, bottom, left = 0 */
    display: flex;
    align-items: center;
    /*{#justify-content: center;#}*/
    justify-content: left;

    text-align: center;
    color: #ffffff;
    font-weight: 600;

    /* 반응형 글자 크기 */
    font-size: clamp(14px, 4vw, 24px);

    /* 부드러운 확대 효과 */
    transition: transform 0.3s ease, font-size 0.3s ease;

    /* 가독성 */
    /*background: rgba(0, 0, 0, 0.25);*/
    /*padding: 4rem;*/
    padding-left:50px;


}
/*.container-fluid {*/
/*    padding-top:100px;*/
/*    padding-bottom: 100px;*/
/*}*/

.justify-content-center {
    /*padding-top:100px;*/
    /*padding-bottom: 100px;*/
    /*margin-top:100px;*/
    /*margin-bottom: 100px;*/
}

.responsive-image:hover .overlay-text {
    font-size: clamp(16px, 4.5vw, 26px);
    transform: scale(1.01);
}


.rating-selector {
        /*font-size: 2.5rem;*/
        cursor: pointer;
	    font-size: 1.8rem;
    }

.rating-star {
    /*color: #ddd;*/
    /*transition: all 0.2s ease;*/
    font-size: 1.8rem;
    cursor: pointer;
    color: #ccc;
    transition: fill 0.15s ease-in-out;
}

.rating-star:hover,
.rating-star.active {
    /*color: #ffc107;*/
    color: gold !important;
    fill: gold;
}
.rating-star:hover {
    color: gold !important;
    fill: gold;
}

.rating-star:hover ~ .rating-star {
    color: #ddd;
}

.rating-star.bi-star-fill {
    color: gold !important;
}

@media (max-width: 1020px) {
    .responsive-image {
        position: relative;
        width: 100%;
        /*{#max-width: 600px;   !* 필요 시 제한 *!#}*/
        margin: 0 auto;
        margin-top: 80px;
    }
}
@media (max-width: 480px) {
    .overlay-text {
        padding: 0.5rem;
        background: rgba(0, 0, 0, 0.35);
    }
}
@media (hover: none) {
    .overlay-text {
        opacity: 1;
    }
}