/* Profile Completion Banner */
.profile-completion-banner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 16px 0;
    margin-top: 72px;
    gap: 64px;
    width: 100%;
    background: linear-gradient(90deg, #46928A 0%, #A0D6CA 100%);
}

/* Content container */
.profile-completion-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 24px;
    gap: 40px;
    max-width: 1104px;
    width: 100%;
    box-sizing: border-box;
}

/* Icon */
.profile-completion-icon {
    flex: none;
    order: 0;
    flex-grow: 0;
}

.profile-completion-icon svg {
    width: 106px;
    height: 117px;
}

/* Text and button container */
.profile-completion-text-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 40px;
    flex: 1;
    order: 1;
    flex-grow: 1;
    min-width: 0;
}

/* Text content */
.profile-completion-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 16px;
    flex: 1;
    order: 0;
    flex-grow: 1;
    min-width: 0;
}

.profile-completion-title {
    font-family: 'Lufga';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    color: #FFFFFF;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

.profile-completion-description {
    font-family: 'Lufga';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

/* Button */
.profile-completion-button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 16px;
    gap: 8px;
    background: #FBFDFD;
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    flex: none;
    order: 1;
    flex-grow: 0;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.profile-completion-button:hover {
    background: #F0F0F0;
    border-color: #D0D0D0;
}

.profile-completion-button-text {
    font-family: 'Lufga';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #424242;
    flex: none;
    order: 1;
    flex-grow: 1;
}
