.profile-card-info {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px #0000001a;
    width: 50%;
    font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif
}

:root {
    --violet: #666666;
    --text: #1f2937;
    --pill-bg: #ffffff;
    --shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 6px 18px rgba(139, 92, 246, .08)
}

.card {
    padding: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.info-field {
    background: var(--pill-bg);
    border-radius: 9999px;
    min-height: 32px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow)
}

.info-field .label {
    color: var(--violet);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap
}

.info-field .value {
    color: var(--text);
    font-size: 14px;
    opacity: .9
}

.info-field--multiline {
    border-radius: 18px;
    min-height: 60px;
    align-items: flex-start;
    padding-top: 12px;
    flex-direction: column
}

.info-field .value:empty:after {
    content: " ";
    opacity: .5
}

@media (max-width: 768px) {
    .profile-card-info {
        width: auto
    }
}

.bento-section[data-v-e941649d] {
    background: transparent !important
}

.partner-profile-page[data-v-e941649d] {
    background: radial-gradient(circle at 15%, #a2a2a2, #f8f9fa 35% 60%);
    min-height: 100vh;
    padding: 50px 20px;
    font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif
}

.container[data-v-e941649d] {
    max-width: 1200px;
    margin: 0 auto
}

.page-title[data-v-e941649d] {
    font-size: 3.5rem;
    color: #333;
    margin: 0;
    font-weight: 400;
    text-align: left
}

.profile-image img[data-v-e941649d] {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.content-highlight[data-v-e941649d] {
    padding: 2rem;
    background: #0000001a;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px
}

.content-section[data-v-e941649d] {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem
}

.interests-section[data-v-e941649d], .preferences-section[data-v-e941649d] {
    margin-left: 2rem;
    margin-right: 2rem;
    flex: 1
}

.section-title[data-v-e941649d] {
    font-size: 1.1rem;
    font-weight: 300;
    color: #1f2937;
    margin-bottom: .75rem
}

.section-text[data-v-e941649d] {
    font-size: .9rem;
    line-height: 1.5;
    color: #4b5563;
    margin: 0
}

.bottom-section[data-v-e941649d] {
    margin-left: 2rem;
    margin-right: 2rem;
    display: flex;
    gap: 2rem
}

.photo-gallery[data-v-e941649d] {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: .75rem;
    flex: 1;
    max-width: 500px
}

.gallery-item[data-v-e941649d] {
    position: relative;
    border-radius: .75rem;
    overflow: hidden;
    height: 150px
}

.gallery-item.large[data-v-e941649d] {
    grid-row: span 2;
    height: 320px
}

.gallery-item img[data-v-e941649d] {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.photo-label[data-v-e941649d] {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: #000000b3;
    color: #fff;
    padding: .25rem .5rem;
    border-radius: .25rem;
    font-size: .75rem
}

.details-form[data-v-e941649d] {
    width: 300px;
    flex-shrink: 0
}

.form-field[data-v-e941649d] {
    margin-bottom: 1rem
}

.form-field label[data-v-e941649d] {
    display: block;
    font-size: .9rem;
    font-weight: 500;
    color: #666;
    margin-bottom: .25rem
}

.action-menu[data-v-e941649d] {
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px #0000001a;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif
}

.menu-item[data-v-e941649d] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    transition: background-color .2s ease
}

.menu-item[data-v-e941649d]:last-child {
    border-bottom: none
}

.menu-item[data-v-e941649d]:hover {
    background-color: #ebebeb
}

.menu-text[data-v-e941649d] {
    font-size: 14px;
    color: #333;
    font-weight: 400
}

.menu-arrow[data-v-e941649d] {
    font-size: 16px;
    color: #999;
    font-weight: 300
}

@media (max-width: 1024px) {
    .bottom-section[data-v-e941649d] {
        flex-direction: column
    }
}

@media (max-width: 768px) {
    .content-section[data-v-e941649d] {
        flex-direction: column;
        gap: 1rem
    }

    .photo-gallery[data-v-e941649d] {
        max-width: none
    }
}

@media (max-width: 480px) {
    .partner-profile-page[data-v-e941649d] {
        padding: 3rem 2rem 2rem
    }

    .photo-gallery[data-v-e941649d] {
        grid-template-columns:1fr
    }

    .gallery-item.large[data-v-e941649d] {
        grid-row: span 1;
        height: 200px
    }
}
