/* Common Layout & Modal Styles */
.modal-close:hover {
    color: #111;
}

/* 플래너 프로필 스타일 (모달 내) */
.modal-planner-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8faff;
    border-radius: 20px;
    margin-bottom: 25px;
    border: 1px solid #eef2f8;
}

.modal-planner-profile .planner-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.modal-planner-profile .planner-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-planner-profile .planner-text .greeting {
    font-size: 13px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 2px;
}

.modal-planner-profile .planner-text .name {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
}

.modal-planner-profile .planner-text .sub {
    font-size: 13px;
    color: #888;
}

.modal-body {
    padding: 30px;
}

/* SEO & Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
