/* assets/css/modals/modal-hint-found.css */

.modal--hint-found .modal__content {
    position: relative;
    flex-direction: row;
    max-width: 80vw;
    max-height: 85vh;
    width: auto;
    background: #2d3748;
    color: white;
    border: 2px solid #818cf8;
    gap: 0;
    padding: 0;
    overflow: hidden;
    margin: 2vh;
}
.modal--hint-found .hint-found-visual-col {
    flex: 0 0 40%;
    background: radial-gradient(ellipse at center, #a5b4fc, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2vh;
    box-sizing: border-box;
}
.modal--hint-found .hint-found-visual-col img {
    width: 100%;
    max-width: 90%;
    height: auto;
    max-height: 50vh;
    object-fit: contain;
    filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.4));
}
.modal--hint-found .hint-found-text-col {
    flex: 1 1 60%;
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: clamp(15px, 3vh, 25px);
    gap: clamp(10px, 2vh, 20px);
}
.modal--hint-found .modal__title {
    color: #a5b4fc;
    font-size: clamp(1.2rem, 4vh, 1.8rem);
}
.modal--hint-found #budi-hint-found-main-text {
    font-size: clamp(0.9rem, 2.5vh, 1.1rem);
    line-height: 1.7;
    opacity: 0.95;
    flex-grow: 1;
    overflow-y: auto;
    font-style: italic;
    text-align: center;
    margin-top: 2vh;
}
.modal--hint-found #budi-hint-found-close-btn {
    position: absolute;
    bottom: clamp(10px, 2vh, 20px);
    left: clamp(10px, 2vh, 20px);
    width: auto;
    padding: clamp(8px, 1.5vh, 12px) clamp(15px, 3vh, 25px);
    font-size: clamp(0.8rem, 2.2vh, 0.95rem);
    z-index: 10;
}