@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

:root {
    --aous-aw-secondary: #47a8f6;
    --aous-aw-surface: #ffffff;
    --aous-aw-muted: #667085;
    --main-color: #0c1a2e;
    --bg-body: #ffffff;
    --bg-card: #f9f9f9;
    --bg-active: #eaeaea;
    --main-secondary: var(--bg-card);
    --main-sec: #0c0c220d;
    --white-color: #ffffff;
    --text-paragraph: #535862;
    --border-color: #e6e6e6;
    --margin-inline: 8rem;
    --margin-inline-page: 10rem;
    --accent-color: #4299e1;
}

/* Start Root */

*,
body {
    font-family: "Mona Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-body);
    color: var(--main-color);
    margin: 0;
}

.page-body {
    margin: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

svg {
    animation: strok 1.5s reverse;
    stroke-miterlimit: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 400;
}

::placeholder {
    color: #60606089 !important;
    font-weight: 400;
}

.card {
    border: none;
}

.card-header {
    padding-bottom: 0.5rem;
}

/* End Root */
/* Start Reset Tag */
a {
    color: var(--main-color);
    border-color: var(--border-color) !important;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-unstyled {
    list-style: none !important;
}

input,
select,
textarea {
    outline: none !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--hover-border-color) !important;
}

#shared_item_link .input-icon-addon {
    background: var(--bg-card);
    border: 1px solid var(--bg-body);
}

html[dir="rtl"] .input-icon-addon {
    right: auto;
    left: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 0;
}

.ts-control,
.ts-wrapper.single.input-active .ts-control {
    min-height: 43px;
}

/* End Reset Tag */

/* Start Navbar */
.logo_text {
    font-family: "Pacifico", "Brush Script MT", cursive;
    font-size: 3.5rem;
    fill: currentColor;
    font-weight: 500;
}

.app_navbar {
    position: relative;
    z-index: 30;
    width: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-inline: var(--margin-inline);
    padding: 1rem 0;
}

.app_navbar_overlay-light,
.app_navbar_overlay-dark {
    position: absolute;
    inset-inline: 0;
    top: 0;
    width: auto;
    z-index: 999;
}

.app_navbar_logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--main-color);
    flex-shrink: 0;
}

.app_navbar_logo img {
    width: 7rem;
}

.app_navbar_toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 2.25rem;
    height: 2.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-inline-start: auto;
    flex-shrink: 0;
}

.app_navbar_toggler span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--main-color);
    border-radius: 2px;
    transition: transform 0.22s ease, opacity 0.18s ease, width 0.18s ease;
    transform-origin: center;
}

.app_navbar_toggler.is_open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.app_navbar_toggler.is_open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.app_navbar_toggler.is_open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.app_navbar_menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
    gap: 1rem;
}

.app_navbar .logo a {
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
}

.app_navbar .links {
    gap: 0.5rem;
    display: flex;
    align-items: center;
}

.app_navbar .left_nav_links .links {
    gap: 1.5rem;
}

.app_navbar .links a {
    padding: 0.6rem;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
}

.app_navbar_overlay-dark,
.app_navbar_overlay-dark .app_navbar_logo,
.app_navbar_overlay-dark .links a,
.app_navbar_overlay-dark .nav_country_btn,
.app_navbar_overlay-dark .nav_lang_btn,
.app_navbar_overlay-dark .nav_profile_name,
.app_navbar_overlay-dark .auth_links>a,
.app_navbar_overlay-dark svg {
    color: rgba(255, 255, 255, 0.92);
}

.app_navbar_overlay-dark .app_navbar_toggler span {
    background: rgba(255, 255, 255, 0.92);
}

.app_navbar_overlay-dark .nav_lang_btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.app_navbar_overlay-dark .fill_btn {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.96);
}

.app_navbar_overlay-dark .fill_btn:hover {
    background: rgba(255, 255, 255, 0.14);
}

.app_navbar_overlay-dark .app_navbar_logo img {
    filter: brightness(0) invert(1);
}

.app_navbar .right_nav_links {
    margin-inline-start: auto;
}

.app_navbar .logo,
.app_navbar .left_nav_links,
.app_navbar .right_nav_links {
    display: flex;
    align-items: center;
}

.app_navbar .left_nav_links {
    gap: 1.25rem;
}

.nav_lang_wrap {
    position: relative;
}

.nav_lang_btn {
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.7rem;
    border-radius: 999px;
    color: var(--main-color);
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.18s ease;
}

.nav_lang_btn:hover {
    background: rgba(var(--main-color-rgb, 59, 130, 246), 0.06);
}

.nav_lang_icon,
.nav_lang_chevron,
.nav_lang_check {
    --aous-aw-icon-size: 1.2rem;
}

.nav_lang_label {
    line-height: 1;
    font-size: 0.9rem;
}

.nav_lang_dropdown {
    position: absolute;
    top: calc(100% + 0.7rem);
    inset-inline-end: 0;
    min-width: 12rem;
    padding: 0.45rem;
    border-radius: 14px;
    background: var(--white-color);
    border: 1px solid rgba(223, 227, 238, 0.9);
    box-shadow: 0 22px 50px rgba(16, 24, 40, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 20;
}

.nav_lang_wrap:hover .nav_lang_dropdown,
.nav_lang_wrap:focus-within .nav_lang_dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav_lang_item {
    display: flex !important;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.7rem 0.8rem !important;
    border-radius: 10px;
    color: var(--main-color) !important;
    text-decoration: none;
}

.nav_lang_item:hover,
.nav_lang_item.is_active {
    background: var(--bg-card);
}

.nav_lang_flag {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.nav_lang_item span {
    flex: 1;
    min-width: 0;
    line-height: 1.2;
}

/* Nav Country Picker */

.nav_country_wrap {
    position: relative;
}

.nav_country_btn {
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.55rem 0.7rem;
    border-radius: 999px;
    color: var(--main-color);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s ease;
}

.nav_country_btn:hover {
    background: rgba(var(--main-color-rgb, 59, 130, 246), 0.06);
}

.nav_country_label {
    line-height: 1;
    font-size: 0.875rem;
}

.nav_country_dropdown {
    position: absolute;
    top: calc(100% + 0.7rem);
    inset-inline-end: 0;
    min-width: 11rem;
    padding: 0.45rem;
    border-radius: 14px;
    background: var(--white-color);
    border: 1px solid rgba(223, 227, 238, 0.9);
    box-shadow: 0 22px 50px rgba(16, 24, 40, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 20;
}

.nav_country_dropdown.is_open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav_country_item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
    border: 0;
    background: transparent;
    color: var(--main-color);
    font-size: 0.875rem;
    font-weight: 400;
    cursor: pointer;
    text-align: start;
    transition: background 0.15s;
}

.nav_country_item:hover,
.nav_country_item.is_active {
    background: var(--bg-card);
}

.nav_country_item.is_active {
    font-weight: 500;
}

/* End Nav Country Picker */

.app_navbar .fill_btn {
    background: rgba(66, 153, 225, 0.12);
    border-radius: 30px;
    color: var(--main-color);
    padding-block: 0.4rem;
    padding-inline: 0.5rem;
    min-width: 7rem;
    justify-content: space-between;
    text-align: center;
}

html[dir="rtl"] .app_navbar .fill_btn svg {
    rotate: 180deg;
}

.app_navbar .border_btn {
    border: 1px solid var(--main-color);
    border-radius: 30px;
    padding-inline: 1rem !important;
}

/* Profile dropdown */
.nav_profile_wrap {
    position: relative;
}

.nav_profile_btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
}

.nav_profile_avatar {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    color: var(--white-color);
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav_profile_avatar img {
    border-radius: 50%;
}

.nav_profile_name {
    line-height: 1;
    font-weight: 600;
}

.nav_profile_chevron {
    opacity: 0.75;
    transition: transform 0.2s ease;
}

.nav_profile_wrap:hover .nav_profile_chevron,
.nav_profile_wrap:focus-within .nav_profile_chevron {
    transform: rotate(180deg);
}

.nav_profile_dropdown {
    position: absolute;
    top: calc(100% + 0.8rem);
    inset-inline-end: 0;
    min-width: 15rem;
    padding: 0.45rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(220, 226, 236, 0.9);
    box-shadow: 0 24px 56px rgba(12, 26, 46, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 30;
}

.nav_profile_wrap:hover .nav_profile_dropdown,
.nav_profile_wrap:focus-within .nav_profile_dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav_profile_header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem;
}

.nav_profile_header_avatar {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--white-color);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav_profile_header_avatar img {
    border-radius: 50%;
}

.nav_profile_header_info {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    min-width: 0;
}

.nav_profile_header_name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--main-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav_profile_header_email {
    font-size: 0.72rem;
    color: #7a8899;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav_profile_divider {
    height: 1px;
    background: rgba(220, 226, 236, 0.7);
    margin: 0.35rem 0.5rem;
}

.nav_profile_item {
    display: flex !important;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.3rem 0.75rem !important;
    border-radius: 10px;
    color: var(--main-color) !important;
    font-size: 0.8rem !important;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: start;
}

.nav_profile_item:hover {
    background: var(--bg-card);
    color: var(--main-color);
}

.nav_profile_item_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 8px;
    background: var(--bg-card);
    flex-shrink: 0;
    transition: background 0.15s ease;
}

.nav_profile_item:hover .nav_profile_item_icon {
    background: var(--bg-body);
}

.app_navbar_overlay-dark .nav_profile_item_icon svg {
    color: var(--main-color) !important;
}

.nav_profile_logout {
    color: #d9534f;
}

.nav_profile_logout:hover {
    background: #fff0f0;
    color: #d9534f;
}

.nav_profile_logout .nav_profile_item_icon {
    background: #ffe8e8;
}

.nav_profile_logout:hover .nav_profile_item_icon {
    background: #ffd5d5;
}

/* End Navbar */

/* Start Auth */
.app_area_auth {
    padding-top: 0 !important;
    min-height: 100vh;
}

.auth_section {
    width: 100%;
    min-height: 100vh;
    background: var(--white-color);
}

.auth_section .auth_section_inner {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 23.5rem;
    min-height: 100vh;
    background: var(--white-color);
}

.auth_section .auth_stage {
    position: relative;
    min-height: 100vh;
    padding: 1.2rem 2.6rem;
    padding-inline-end: 0;
    display: flex;
    flex-direction: column;
    background: var(--white-color);
}

.auth_section .auth_brand_mark {
    color: var(--main-color);
    width: fit-content;
    display: inline-flex;
    text-decoration: none;
}

.auth_section .auth_brand_mark span {
    font-family: inherit;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--main-color);
}

.auth_section .auth_brand_mark img {
    width: 7rem;
}

.auth_section .auth_stage_center {
    flex: 1;
    display: grid;
    place-items: center;
    padding: 1.25rem 0;
}

.auth_section .auth_stage_shell {
    width: min(27rem, 100%);
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 0.9rem;
}

.auth_section .auth_stage_icon {
    width: 3.6rem;
    height: 3.6rem;
    display: grid;
    place-items: center;
}

.auth_section .auth_stage_icon span {
    font-size: 2.75rem;
    font-weight: 500;
    font-family: "Pacifico", "Brush Script MT", cursive;
}

.auth_section .auth_stage_header {
    display: grid;
    gap: 0.6rem;
    justify-items: center;
}

.auth_section .auth_stage_title {
    display: block;
    color: var(--main-color);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.08;
}

.auth_section .auth_stage_header p,
.auth_section .auth_wizard_intro p,
.auth_section .auth_stage_meta p {
    margin: 0;
    color: var(--main-color);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 24rem;
}

.auth_section .auth_stage_body {
    width: 100%;
}

.auth_section .auth_stage_form,
.auth_section .auth_wizard_form,
.auth_section .auth_wizard_step,
.auth_section .auth_section_field {
    display: grid;
    gap: 0.25rem;
}

.auth_wizard_step {
    padding: 2.5rem 0 5rem !important;
}

.auth_section .auth_stage_form,
.auth_section .auth_stage_form_compact {
    width: 100%;
    margin-top: 2rem;
}

.auth_section .auth_wizard_intro {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 0.05rem;
}

.auth_section .auth_wizard_intro h2 {
    color: var(--main-color);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.08;
    margin: 0;
}

.auth_section .auth_stage_control {
    width: 100%;
    height: 3.2rem;
    min-height: 3.2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--main-color);
    background: var(--white-color);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.2;
    padding: 0.7rem 1.1rem;
    box-shadow: none;
}

.auth_section .auth_stage_control::placeholder {
    color: #a0a1b5;
    font-weight: 500;
}

.auth_section .auth_stage_control:focus {
    border-color: #9e9ea7b3 !important;
    background: var(--white-color);
}

.auth_section .auth_section_addon {
    position: relative;
}

.auth_section .auth_section_addon .auth_stage_control {
    padding-inline-end: 3.3rem;
}

.auth_section .auth_section_password_toggle {
    position: absolute;
    inset-inline-end: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.35rem;
    height: 2.35rem;
    display: grid;
    place-items: center;
    color: var(--text-paragraph);
    border: 0;
    background: transparent;
    border-radius: 999px;
    transition: background 0.18s ease, color 0.18s ease;
}

.auth_section .auth_section_password_toggle:hover {
    color: var(--main-color);
    background: var(--bg-card);
}

.auth_section .auth_section_password_toggle svg {
    --aous-aw-icon-size: 1.4rem;
}

.auth_section .auth_stage_submit,
.auth_section .auth_stage_subtle {
    width: 100%;
    height: 3.2rem;
    min-height: 3.2rem;
    border-radius: 999px;
    border: 0;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1;
    padding: 0 1.4rem;
}

.auth_section .auth_stage_submit {
    background: var(--accent-color);
    color: var(--white-color);
    box-shadow: 0 12px 28px rgba(17, 19, 43, 0.12);
    margin-top: 1rem;
}

.auth_section .auth_stage_submit:hover {
    color: var(--white-color);
    background: #0a0b1d;
}

.auth_section .auth_stage_subtle {
    background: var(--white-color);
    color: var(--main-color);
    border: 1px solid var(--border-color);
}

.auth_section .auth_stage_subtle:hover {
    background: var(--bg-card);
    color: var(--main-color);
}

.auth_section .auth_stage_inline,
.auth_section .auth_stage_note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.25rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    color: var(--text-paragraph);
    font-size: 0.85rem;
}

.auth_section .auth_stage_note_centered {
    justify-content: center;
    margin-top: 1.5rem;
}

.auth_section .auth_stage_inline a,
.auth_section .auth_stage_note a {
    color: var(--text-paragraph);
    text-underline-offset: 0.16rem;
    font-weight: 600;
}

.auth_section .auth_stage_meta {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.15rem;
    justify-items: center;
}

.auth_section .auth_stage_meta p {
    color: var(--text-paragraph);
    font-size: 0.88rem;
}

.auth_section .auth_stage_skip {
    border: 0;
    background: transparent;
    color: var(--text-paragraph);
    font-size: 0.95rem;
    font-weight: 500;
}

.auth_section .auth_section_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.auth_section .auth_section_field,
.auth_section .auth_section_grid {
    margin-bottom: 0.5rem;
}

.auth_section .auth_section_field {
    text-align: start;
}

.auth_section .auth_section_field label {
    color: var(--main-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.auth_section .form-check {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: auto;
    padding-left: 0;
    margin: 0;
    color: var(--text-paragraph);
    cursor: pointer;
}

.auth_section .form-check-input {
    margin: 0;
    border-color: var(--border-color);
    box-shadow: none;
}

.auth_section .form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.auth_section .form-check-input:focus {
    border-color: var(--main-color);
}

.auth_section .form-check-label {
    color: inherit;
    font-size: 0.92rem;
    font-weight: 500;
}

.auth_section .auth_stage_code_grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.85rem;
}

.auth_section .auth_stage_code_grid .auth_stage_control {
    height: 3.5rem;
    padding: 0;
    text-align: center;
    font-size: 1.45rem;
    font-weight: 700;
}

.auth_section .auth_wizard_step {
    display: none;
}

.auth_section .auth_wizard_step.is_active {
    display: grid;
}

.auth_section .auth_type_wrap {
    display: grid;
    gap: 1rem;
    justify-items: center;
    margin-top: 2rem;
}

.auth_section .auth_type_tabs {
    display: inline-flex;
    gap: 0.25rem;
    background: var(--bg-card);
    border-radius: 999px;
    padding: 0.28rem;
    border: 1px solid var(--border-color);
}

.auth_section .auth_type_tab {
    border: 0;
    background: transparent;
    padding: 0.55rem 1.6rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-paragraph);
    cursor: pointer;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}

.auth_section .auth_type_tab.is_active {
    background: var(--white-color);
    color: var(--main-color);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(12, 12, 34, 0.08);
}

.auth_section .auth_type_desc {
    color: var(--text-paragraph);
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.55;
    text-align: center;
    max-width: 21rem;
    margin: 0;
}

.auth_section .auth_wizard_actions {
    display: grid;
    gap: 0.85rem;
}

.auth_section .auth_wizard_actions_split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.5rem;
}

.auth_section .auth_wizard_actions_split .auth_stage_submit {
    margin-top: 0;
}

.auth_section .auth_visual_panel {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background:
        radial-gradient(circle at 16% 14%, rgba(96, 164, 229, 0.18), transparent 20%),
        radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(180deg, #102744 0%, #0c1d33 42%, #091423 100%);
}

.auth_section .auth_visual_scene {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0%, transparent 40%);
}

.auth_section .auth_visual_glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
    opacity: 0.7;
}

.auth_section .auth_visual_glow_one {
    width: 16rem;
    height: 16rem;
    top: 8%;
    right: 10%;
    background: rgba(110, 179, 244, 0.18);
    animation: authGlowFloatOne 10s ease-in-out infinite;
}

.auth_section .auth_visual_glow_two {
    width: 12rem;
    height: 12rem;
    bottom: 10%;
    left: 12%;
    background: rgba(255, 255, 255, 0.08);
    animation: authGlowFloatTwo 12s ease-in-out infinite;
}

.auth_section .auth_visual_orb {
    position: relative;
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.auth_section .auth_visual_orb_one {
    width: 26rem;
    height: 26rem;
    top: 14%;
    left: 16%;
    background: radial-gradient(circle, rgba(126, 190, 246, 0.22) 0%, rgba(126, 190, 246, 0.06) 48%, transparent 72%);
    animation: authOrbFloatOne 16s ease-in-out infinite;
}

.auth_section .auth_visual_orb_two {
    width: 20rem;
    height: 20rem;
    right: 9%;
    bottom: 16%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.03) 52%, transparent 76%);
    animation: authOrbFloatTwo 18s ease-in-out infinite;
}

.auth_section .auth_visual_grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 3.25rem 3.25rem;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.38) 20%, rgba(0, 0, 0, 0.72) 55%, transparent 100%);
    opacity: 0.28;
}

.auth_section .auth_visual_card {
    position: relative;
    position: absolute;
    border-radius: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.07) 100%);
    backdrop-filter: blur(16px);
    box-shadow: 0 22px 50px rgba(3, 10, 18, 0.24);
    z-index: 2;
}

.auth_section .auth_visual_card_one {
    width: 21rem;
    height: 13rem;
    top: 22%;
    right: 12%;
    transform: rotate(-10deg);
    animation: authCardFloatOne 15s ease-in-out infinite;
}

.auth_section .auth_visual_card_two {
    width: 17rem;
    height: 10rem;
    bottom: 18%;
    left: 14%;
    transform: rotate(8deg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(104, 168, 228, 0.08) 100%);
    animation: authCardFloatTwo 17s ease-in-out infinite;
}

@keyframes authGlowFloatOne {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-10px, 14px, 0);
    }
}

@keyframes authGlowFloatTwo {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(12px, -12px, 0);
    }
}

@keyframes authOrbFloatOne {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(10px, -14px, 0) scale(1.04);
    }
}

@keyframes authOrbFloatTwo {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(-12px, 10px, 0) scale(0.96);
    }
}

@keyframes authCardFloatOne {

    0%,
    100% {
        transform: rotate(-10deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(-7deg) translate3d(-8px, 12px, 0);
    }
}

@keyframes authCardFloatTwo {

    0%,
    100% {
        transform: rotate(8deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(11deg) translate3d(10px, -10px, 0);
    }
}

@media (max-width: 1199.98px) {
    .auth_section .auth_section_inner {
        grid-template-columns: minmax(0, 1fr) 19rem;
    }

    .auth_section .auth_visual_orb_one {
        width: 18rem;
        height: 18rem;
        left: 10%;
    }

    .auth_section .auth_visual_orb_two {
        width: 14rem;
        height: 14rem;
        right: 8%;
    }

    .auth_section .auth_visual_card_one {
        width: 15rem;
        height: 10rem;
        right: 10%;
    }

    .auth_section .auth_visual_card_two {
        width: 12rem;
        height: 8rem;
        left: 10%;
    }
}

@media (max-width: 991.98px) {
    .auth_section .auth_section_inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .auth_section .auth_visual_panel {
        display: none;
    }

    .auth_section .auth_stage {
        padding-inline: 1.4rem;
    }

    .auth_section .auth_stage_shell {
        width: min(100%, 29rem);
    }
}

@media (max-width: 767.98px) {
    .auth_section .auth_stage {
        padding: 1.35rem 1rem 2rem;
    }

    .auth_section .auth_stage_center {
        align-items: start;
        padding-top: 0.9rem;
    }

    .auth_section .auth_stage_title,
    .auth_section .auth_wizard_intro h2 {
        font-size: 1.85rem;
    }

    .auth_section .auth_section_grid,
    .auth_section .auth_wizard_actions_split {
        grid-template-columns: minmax(0, 1fr);
    }

    .auth_section .auth_stage_code_grid {
        gap: 0.55rem;
    }
}

/* Start Hero */

.hero_area {
    position: relative;
    min-height: 100vh;
    padding-top: 10rem;
    overflow-x: hidden;
    background:
        radial-gradient(ellipse at 8% 12%, rgba(66, 153, 225, 0.13), transparent 30%),
        radial-gradient(ellipse at 88% 72%, rgba(12, 26, 46, 0.05), transparent 26%),
        linear-gradient(180deg, #fafcff 0%, #f1f5fb 100%);
}

.hero_area::before,
.hero_area::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero_area::before {
    width: 30rem;
    height: 30rem;
    top: -14rem;
    left: -10rem;
    background: rgba(66, 153, 225, 0.07);
}

.hero_area::after {
    width: 20rem;
    height: 20rem;
    right: -5rem;
    bottom: 4rem;
    background: rgba(12, 26, 46, 0.025);
}

.hero_area .hero_content {
    position: relative;
    min-height: 70vh;
    width: 100%;
    margin: 0 auto;
}

.hero_shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
    align-items: center;
    gap: 3rem;
}

.hero_copy {
    max-width: 42rem;
}

.hero_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.44rem 0.88rem;
    border-radius: 999px;
    border: 1px solid rgba(66, 153, 225, 0.2);
    background: rgba(255, 255, 255, 0.9);
    color: var(--main-color);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(12, 26, 46, 0.05);
    margin-bottom: 1.1rem;
}

.hero_eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.18);
}

.hero_area .hero_content h1 {
    font-size: clamp(2.8rem, 5vw, 4.85rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 0.98;
    text-wrap: balance;
    margin: 0;
}

html[dir="rtl"] .hero_area .hero_content h1 {
    line-height: 1.2;
}

.hero_title_word_wrap {
    display: inline-flex;
    align-items: baseline;
    width: var(--hero-word-width, 7ch);
    min-width: var(--hero-word-width, 7ch);
    justify-content: flex-start;
}

.hero_title_word {
    display: inline-block;
    color: var(--accent-color);
    position: relative;
    white-space: nowrap;
    text-align: start;
}

.hero_preview_query_lang,
.hero_preview_status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.1rem;
    padding: 0 0.7rem;
    border-radius: 999px;
    background: var(--main-color);
    color: var(--white-color);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero_area .hero_content .description_hero {
    display: block;
    max-width: 38rem;
    color: var(--text-paragraph);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    margin-top: 1.15rem;
}

.hero_area .hero_content .form_area {
    margin-top: 2rem;
    width: 100%;
}

.hero_area .hero_content .form_area form {
    position: relative;
}

.hero_area .hero_content .form_area .form_input_area {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.65rem 0.65rem 1.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(12, 26, 46, 0.09);
    box-shadow: 0 16px 40px rgba(12, 26, 46, 0.07);
    backdrop-filter: blur(12px);
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero_area .hero_content .form_area .form_input_area:focus-within {
    border-color: rgba(66, 153, 225, 0.38);
    box-shadow: 0 16px 40px rgba(12, 26, 46, 0.07), 0 0 0 3px rgba(66, 153, 225, 0.08);
}

.hero_area .hero_content .form_area .form_input_area input {
    flex: 1;
    height: 100%;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow: hidden;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--main-color);
}

.hero_area .hero_content .form_area .form_input_area input:focus {
    background: transparent;
    box-shadow: none;
}

.hero_form_divider {
    width: 1px;
    height: 1.35rem;
    background: var(--border-color);
    flex-shrink: 0;
}

.hero_area .hero_content .form_area .custom_dropdown {
    position: relative;
    flex-shrink: 0;
}

.hero_area .hero_content .form_area .dropdown_toggle {
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--main-color);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0;
}

.hero_area .hero_content .form_area .dropdown_toggle svg {
    --aous-aw-icon-size: 1.5rem;
}

.hero_area .hero_content .form_area .dropdown_menu {
    position: absolute;
    top: calc(100% + 1rem);
    inset-inline-end: -4rem;
    min-width: 12rem;
    max-height: 12rem;
    padding: 0.45rem;
    border-radius: 12px;
    background: var(--white-color);
    box-shadow: 0 24px 56px rgba(12, 26, 46, 0.14);
    border: 1px solid var(--border-color);
    display: grid;
    gap: 0.15rem;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 5;
}

.hero_area .hero_content .form_area .custom_dropdown:hover .dropdown_menu,
.hero_area .hero_content .form_area .custom_dropdown:focus-within .dropdown_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero_area .hero_content .form_area .dropdown_menu span {
    color: var(--main-color);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.65rem 0.8rem;
    border-radius: 0.75rem;
    transition: background-color 0.15s ease;
    cursor: pointer;
}

.hero_area .hero_content .form_area .dropdown_menu span:hover {
    background: var(--bg-card);
}

.hero_area .hero_content .form_area .btn_action {
    flex-shrink: 0;
}

.hero_area .hero_content .form_area .btn_action .btn {
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: 50%;
    background: var(--main-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(12, 26, 46, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero_area .hero_content .form_area .btn_action .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(12, 26, 46, 0.34);
}

.hero_area .hero_content .form_area .btn_action .btn svg {
    color: var(--white-color);
    animation: none;
    stroke-dasharray: none;
}

html[dir="rtl"] .hero_area .hero_content .form_area .btn_action .btn svg {
    margin: 0 !important;
}

/* Visual side */

.hero_visual {
    position: relative;
    min-height: 33rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_visual_glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(16px);
    opacity: 0.95;
    will-change: transform, opacity;
}

.hero_visual_glow_one {
    width: 18rem;
    height: 18rem;
    top: 0.5rem;
    right: 1.2rem;
    background: radial-gradient(circle, rgba(36, 113, 181, 0.42) 0%, rgba(36, 113, 181, 0.14) 48%, transparent 78%);
    animation: heroGlowDriftOne 9s ease-in-out infinite;
}

.hero_visual_glow_two {
    width: 14rem;
    height: 14rem;
    left: 1rem;
    bottom: 2.2rem;
    background: radial-gradient(circle, rgba(12, 26, 46, 0.34) 0%, rgba(12, 26, 46, 0.16) 50%, transparent 78%);
    animation: heroGlowDriftTwo 11s ease-in-out infinite;
}

/* Floating badges */

.hero_float_notif {
    position: absolute;
    top: 2rem;
    inset-inline-end: -0.5rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.58rem 1rem 0.58rem 0.72rem;
    border-radius: 999px;
    background: var(--white-color);
    border: 1px solid rgba(214, 225, 238, 0.9);
    box-shadow: 0 10px 28px rgba(12, 26, 46, 0.1);
    pointer-events: none;
    user-select: none;
    animation: heroFloatOne 6s ease-in-out infinite;
}

.hero_float_notif_dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}

.hero_float_notif_dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.3);
    animation: heroPulse 2.2s ease-in-out infinite;
}

.hero_float_notif_text {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--main-color);
    white-space: nowrap;
}

.hero_float_stat {
    position: absolute;
    bottom: 2rem;
    inset-inline-start: -0.5rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1.1rem;
    border-radius: 999px;
    background: var(--accent-color);
    box-shadow: 0 12px 32px rgba(12, 26, 46, 0.22);
    pointer-events: none;
    user-select: none;
    animation: heroFloatTwo 7.5s ease-in-out infinite;
}

.hero_float_stat svg {
    animation: none;
    stroke-dasharray: none;
    color: var(--white-color);
    --aous-aw-icon-size: 1rem;
    flex-shrink: 0;
}

.hero_float_stat_text {
    display: grid;
    gap: 0.06rem;
}

.hero_float_stat_text strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white-color);
    line-height: 1;
}

.hero_float_stat_text span {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

/* Preview card */

.hero_preview_card {
    position: relative;
    z-index: 2;
    width: min(100%, 28rem);
    padding: 1.65rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 250, 255, 0.92) 100%);
    border: 1px solid rgba(194, 214, 236, 0.72);
    box-shadow: 0 30px 70px rgba(66, 153, 225, 0.1), 0 16px 34px rgba(12, 26, 46, 0.07);
    backdrop-filter: blur(18px);
    animation: heroCardFloat 8s ease-in-out infinite;
}

.hero_preview_head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.hero_preview_brand {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 1rem;
    background: var(--main-color);
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.hero_preview_head_copy {
    display: grid;
    gap: 0.15rem;
}

.hero_preview_head_copy strong {
    color: var(--main-color);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.hero_preview_head_copy span {
    color: var(--text-paragraph);
    font-size: 0.82rem;
    font-weight: 400;
}

.hero_preview_status {
    margin-inline-start: auto;
    background: rgba(66, 153, 225, 0.1);
    color: #2f6fad;
}

.hero_preview_searchbar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.35rem;
    padding: 0.75rem 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(194, 214, 236, 0.65);
    user-select: none;
}

.hero_preview_searchbar svg {
    flex-shrink: 0;
    animation: none;
    stroke-dasharray: none;
}

.hero_preview_query_text {
    flex: 1;
    color: var(--main-color);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero_preview_query_lang {
    min-width: 2.2rem;
    height: 1.9rem;
    background: rgba(66, 153, 225, 0.1);
    color: #2f6fad;
}

.hero_preview_metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.hero_preview_metric {
    padding: 0.9rem 0.8rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(194, 214, 236, 0.5);
}

.hero_preview_metric strong {
    display: block;
    color: var(--main-color);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.1;
}

.hero_preview_metric span {
    display: block;
    color: var(--text-paragraph);
    font-size: 0.72rem;
    font-weight: 400;
    margin-top: 0.3rem;
    line-height: 1.4;
}

.hero_preview_topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.1rem;
}

.hero_preview_topics span {
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    background: rgba(66, 153, 225, 0.08);
    color: #2f6fad;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Search suggestions */

.hero_area .hero_content .form_area .search_suggestions {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    background: var(--white-color);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: 0 18px 50px rgba(12, 26, 46, 0.1);
    padding: 1.1rem 0.85rem 0.85rem;
    z-index: 8;
}

.hero_area .hero_content .form_area .search_suggestions[hidden] {
    display: none !important;
}

.hero_area .hero_content .form_area .search_suggestions_title {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-paragraph);
    margin-bottom: 0.75rem;
    padding-inline: 0.55rem;
}

.hero_area .hero_content .form_area .search_suggestions_list {
    display: grid;
}

.hero_area .hero_content .form_area .search_suggestion_item {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0.25rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-align: start;
    transition: background-color 0.15s ease;
    cursor: pointer;
}

.hero_area .hero_content .form_area .search_suggestion_item:hover {
    background: var(--bg-card);
}

.hero_area .hero_content .form_area .search_suggestion_icon {
    width: 2rem;
    height: 2rem;
    color: var(--text-paragraph);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero_area .hero_content .form_area .search_suggestion_icon svg {
    --aous-aw-icon-size: 1.1rem;
    animation: none;
    stroke-dasharray: none;
}

.hero_area .hero_content .form_area .search_suggestion_text {
    color: var(--main-color);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.45;
}

.hero_area .hero_content .form_area .search_suggestion_text strong {
    color: var(--main-color);
    font-weight: 600;
}

/* Animations */

@keyframes heroCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes heroFloatOne {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes heroFloatTwo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

@keyframes heroPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* End Hero */

/* Start Search Page */

.search_page {
    padding: 0rem 0 5rem;
    background: var(--bg-body);
}

.search_wrap {
    margin-inline: var(--margin-inline);
}

.search_page_header {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 1.1rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.search_page_heading {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto;
}

.search_page_heading h1 {
    font-size: clamp(1.85rem, 3vw, 2.75rem);
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.search_page_heading p {
    margin: 0;
    font-size: 0.97rem;
    color: var(--text-paragraph);
    font-weight: 400;
    line-height: 1.65;
}

.search_page_form {
    max-width: 40rem;
    width: 100%;
    margin: 0 auto;
    margin-top: 1.25rem;
}

.search_page_form_bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.6rem 0.5rem 1.75rem;
    border-radius: 999px;
    background: var(--white-color);
    border: 1px solid rgba(214, 225, 238, 0.72);
    box-shadow: 0 8px 20px rgba(12, 26, 46, 0.035);
}

html[dir="rtl"] .search_page_form_bar {
    padding: 0.5rem 1.2rem 0.5rem 0.75rem;
}

.search_page_input_wrap {
    flex: 1;
    min-width: 0;
}

.search_page_input_wrap .form-control {
    border: 0;
    box-shadow: none;
    padding: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--main-color);
    background: transparent;
    height: auto;
}

.search_page_input_wrap .form-control:focus {
    border: 0;
    box-shadow: none;
    background: transparent;
}

.search_page_city_picker {
    position: relative;
    flex-shrink: 0;
}

.search_page_city_toggle {
    border: 0;
    background: transparent;
    color: var(--main-color);
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
    font-size: 0.97rem;
    cursor: pointer;
}

.search_page_city_toggle svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.search_page_city_menu {
    position: absolute;
    top: calc(100% + 0.85rem);
    right: -4rem;
    min-width: 12rem;
    max-height: 14rem;
    overflow: auto;
    padding: 0.4rem;
    border-radius: 0.85rem;
    background: var(--white-color);
    box-shadow: 0 20px 50px rgba(12, 12, 34, 0.14);
    border: 1px solid var(--border-color);
    display: none;
    gap: 0.2rem;
    z-index: 15;
}

.search_page_city_picker.is_open .search_page_city_menu {
    display: grid;
}

.search_page_city_menu span {
    padding: 0.7rem 0.85rem;
    border-radius: 0.65rem;
    color: var(--main-color);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.15s;
}

.search_page_city_menu span:hover {
    background: var(--bg-card);
    color: var(--main-color);
}

.search_page_btn_action {
    flex-shrink: 0;
}

.search_page_submit {
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: 50%;
    background: var(--main-color);
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(12, 12, 34, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.search_page_submit:hover {
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(12, 12, 34, 0.4);
}

.search_page_submit svg {
    color: var(--white-color);
}

.search_categories_wrap {
    position: relative;
    margin-top: 0.15rem;
}

.search_categories_wrap::before,
.search_categories_wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3rem;
    z-index: 1;
    pointer-events: none;
}

.search_categories_wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-body), transparent);
}

.search_categories_wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-body), transparent);
}

.search_categories {
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.search_categories::-webkit-scrollbar {
    display: none;
}

.search_cat_pill {
    white-space: nowrap;
    padding: 0.48rem 0.95rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-paragraph);
    flex-shrink: 0;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.72);
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.search_cat_pill:hover {
    background: var(--white-color);
    border-color: rgba(214, 225, 238, 0.8);
    color: var(--main-color);
}

.search_cat_pill.active {
    background: var(--white-color);
    border-color: rgba(66, 153, 225, 0.18);
    color: var(--main-color);
    font-weight: 600;
}

.search_page_layout {
    display: grid;
    grid-template-columns: 22rem minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
    margin-top: 2.5rem;
}

.search_page_layout.is_split {
    grid-template-columns: 22rem minmax(0, 1fr) 30rem;
}

.search_page_layout.is_split .search_results_grid {
    grid-template-columns: minmax(0, 1fr);
}

.search_filters {
    position: sticky;
    top: 1rem;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    border-radius: 1.1rem;
    border: 1px solid rgba(214, 225, 238, 0.8);
    background: var(--white-color);
    box-shadow: 0 16px 36px rgba(12, 26, 46, 0.04);
    scrollbar-width: thin;
    scrollbar-color: var(--bg-card) transparent;
}

.search_filters::-webkit-scrollbar {
    width: 4px;
}

.search_filters::-webkit-scrollbar-track {
    background: transparent;
}

.search_filters::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 999px;
}

.search_filters_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    min-height: 59px;
    border-bottom: 1px solid var(--bg-card);
    position: sticky;
    top: 0;
    background: var(--white-color);
    z-index: 1;
}

.search_filters_header h2 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--main-color);
}

.search_filters_header_actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search_filter_clear_link {
    font-size: 0.75rem;
    color: var(--text-paragraph);
    text-decoration: none;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    transition: all 0.12s;
}

.search_filter_clear_link:hover {
    background: var(--bg-card);
    color: var(--main-color);
}

.search_filter_section {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--bg-card);
}

.search_filter_section:last-child {
    border-bottom: 0;
}

.search_filter_title {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--text-paragraph);
    margin-bottom: 0.5rem;
}

/* Checkbox / radio filter rows */
.search_filter_checks {
    display: grid;
    gap: 0.05rem;
}

.search_filter_check_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    padding: 0.4rem;
    border-radius: 0.45rem;
    transition: background 0.1s;
}

.search_filter_check_row:hover {
    background: var(--bg-card);
}

.sf_row_dim {
    opacity: 0.4;
    pointer-events: none;
}

.search_filter_check_row .form-check {
    margin: 0;
    padding-left: 0;
    flex: 1;
    min-width: 0;
}

.search_filter_check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.search_filter_check .form-check-input {
    width: 1rem;
    height: 1rem;
    margin: 0;
    float: none;
    border: 1px solid #cfd7e6;
    border-radius: 0.3rem;
    box-shadow: none;
    flex-shrink: 0;
}

.search_filter_check .form-check-input[type="radio"] {
    border-radius: 50%;
}

.search_filter_check .form-check-input:focus {
    box-shadow: 0 0 0 0.15rem var(--border-color);
    border-color: var(--main-color);
}

.search_filter_check .form-check-label {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--main-color);
    cursor: pointer;
    line-height: 1.5;
}

.search_filter_count {
    font-size: 0.72rem;
    color: var(--text-paragraph);
    background: var(--bg-card);
    border-radius: 999px;
    padding: 0.05rem 0.45rem;
    min-width: 1.4rem;
    text-align: center;
    flex-shrink: 0;
    line-height: 1.6;
}

/* Location tree: governorate groups + indented cities */
.search_filter_gov_group {
    display: grid;
    gap: 0.02rem;
}

.search_filter_cities {
    padding-left: 1.2rem;
    margin-left: 0.6rem;
    margin-top: 0.1rem;
    margin-bottom: 0.25rem;
    border-left: 1px solid var(--border-color);
}

.search_results_area {
    min-width: 0;
}

/* ── Filter FAB + Bottom Sheet ─────────────────────────────────── */
.sf_fab {
    position: fixed;
    bottom: 1.5rem;
    inset-inline-end: 1.25rem;
    z-index: 90;
    display: none;
    align-items: center;
    gap: 0.45rem;
    padding: 0.68rem 1.1rem;
    background: var(--main-color);
    color: var(--white-color);
    border: none;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
    transition: transform 0.14s ease, box-shadow 0.14s ease;
    line-height: 1;
}

.sf_fab:active {
    transform: scale(0.94);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
}

.sf_fab_dot {
    position: absolute;
    top: -3px;
    inset-inline-end: -3px;
    width: 9px;
    height: 9px;
    background: #e53e3e;
    border-radius: 50%;
    border: 2px solid #fff;
}

.sf_sheet_overlay {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    display: none;
}

.sf_sheet_overlay.is_open {
    opacity: 1;
    pointer-events: auto;
}

.sf_sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--white-color);
    border-radius: 18px 18px 0 0;
    max-height: 88vh;
    display: none;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.38s cubic-bezier(0.34, 1.05, 0.64, 1);
    box-shadow: 0 -6px 36px rgba(0, 0, 0, 0.13);
}

.sf_sheet.is_open {
    transform: translateY(0);
}

.sf_sheet_handle {
    width: 36px;
    height: 3px;
    background: var(--border-color);
    border-radius: 2px;
    margin: 0.6rem auto 0;
    flex-shrink: 0;
}

.sf_sheet_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem 0.75rem;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.sf_sheet_head_title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--main-color);
}

.sf_sheet_close {
    width: 1.85rem;
    height: 1.85rem;
    border: none;
    background: var(--bg-card);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--main-color);
    flex-shrink: 0;
    transition: background 0.15s ease;
}

.sf_sheet_close:hover {
    background: var(--border-color);
}

.sf_sheet_body {
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.sf_sheet_body .search_filters {
    position: static;
    max-height: none;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.sf_sheet_body .search_filters_header {
    position: sticky;
    top: 0;
}

body.sf_noscroll {
    overflow: hidden;
}

.search_term_chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.search_term_chips_in_filters {
    margin-bottom: 0;
}

.search_term_chip {
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    background: var(--bg-card);
    color: var(--main-color);
    font-weight: 400;
    font-size: 0.82rem;
    border: 1px solid var(--border-color);
    transition: background 0.12s, color 0.12s;
}

.search_term_chip:hover {
    background: var(--border-color);
    color: var(--main-color);
}

.search_term_chip_filter {
    position: relative;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--main-color);
    padding: 0.42rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.12s, color 0.12s, border-color 0.12s;
}

.search_term_chip_filter:hover {
    background: rgba(12, 12, 34, 0.06);
}

.search_term_chip_filter.active {
    background: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color);
}

.search_term_chip_input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.search_results_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.search_result_card,
.search_empty_state {
    border-radius: 12px;
    background: var(--white-color);
}

.search_result_card {
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, transform 0.2s;
    overflow: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

[dir="rtl"] .search_result_card::before {
    border-radius: 3px 0 0 3px;
}

.search_result_card:hover {
    border-color: rgba(66, 153, 225, 0.35);
    box-shadow: 0 6px 24px rgba(66, 153, 225, 0.1), 0 2px 8px rgba(12, 26, 46, 0.06);
    transform: translateY(-2px);
}

.search_result_card:hover::before {
    opacity: 1;
}

.search_result_card:hover::after {
    opacity: 0.6;
}

.search_result_card.is_active {
    border-color: var(--accent-color);
    box-shadow: 0 12px 28px rgba(66, 153, 225, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 247, 255, 0.78) 100%);
}

.search_result_card.is_active::before {
    opacity: 1;
}

.search_result_card.is_active::after {
    opacity: 0.6;
}

.search_result_top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.search_result_brand {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.7rem;
    background: var(--bg-card);
    color: var(--main-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.search_result_brand img {
    border-radius: 0.7rem;
}

.search_result_meta {
    display: grid;
    gap: 0.08rem;
    min-width: 0;
}

.search_result_meta span:first-child {
    color: var(--main-color);
    font-weight: 500;
    font-size: 0.88rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search_result_meta span:last-child {
    color: var(--text-paragraph);
    font-size: 0.78rem;
    font-weight: 400;
}

.search_result_card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 0.8rem;
    transition: color 0.2s;
    line-height: 1.4;
}

.search_result_card:hover h3 {
    color: var(--accent-color);
}

.search_result_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
}

.search_result_tags span {
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 0.24rem 0.65rem;
    color: var(--text-paragraph);
    font-size: 0.75rem;
    font-weight: 400;
}

.search_result_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
    color: var(--text-paragraph);
    font-size: 0.78rem;
    font-weight: 400;
    padding-top: 0.85rem;
    border-top: 1px solid var(--bg-card);
    margin-top: auto;
}

.search_result_footer span:last-of-type {
    font-size: 0.85rem;
    font-weight: 600;
}

.search_pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.srch_pg_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.1rem;
    height: 2.1rem;
    padding: 0 0.55rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--white-color);
    color: var(--main-color);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    cursor: pointer;
}

.srch_pg_btn:hover:not(.is_active):not(.is_disabled) {
    border-color: rgba(20, 184, 166, 0.4);
    background: rgba(20, 184, 166, 0.06);
    color: var(--main-color);
}

.srch_pg_btn.is_active {
    background: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color);
    cursor: default;
}

.srch_pg_btn.is_disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.srch_pg_arrow {
    min-width: 2.1rem;
}

html[dir="rtl"] .srch_pg_arrow {
    rotate: 180deg;
}

.srch_pg_ellipsis {
    color: var(--text-paragraph);
    font-size: 0.82rem;
    padding: 0 0.2rem;
    user-select: none;
}

.search_empty_state {
    padding: 3.5rem 2rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1.5px dashed var(--border-color);
}

.search_empty_icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 20px;
    border: 2px dashed rgba(12, 26, 46, 0.18);
    background: #f7f8fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    position: relative;
}

.search_empty_icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 26px;
    border: 1px dashed rgba(12, 26, 46, 0.08);
}

.search_empty_icon svg {
    color: var(--main-color);
    opacity: 0.35;
    --aous-aw-icon-size: 1.8rem;
}

.search_empty_state h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 0.45rem;
}

.search_empty_state p {
    color: var(--text-paragraph);
    margin: 0 0 2rem;
    font-size: 0.88rem;
    max-width: 28rem;
    line-height: 1.6;
}

.search_empty_cats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    max-width: 36rem;
    margin: 0 auto;
}

.search_empty_cat {
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    border: 1.5px dashed rgba(12, 26, 46, 0.2);
    color: var(--main-color);
    font-size: 0.82rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s, border-color 0.15s, border-style 0.15s;
    background: transparent;
}

.search_empty_cat:hover {
    background: var(--main-color);
    color: var(--white-color);
    border-color: var(--main-color);
    border-style: solid;
}

/* End Search Page */

/* Start Search Detail Panel */

.search_detail_panel {
    display: none;
    position: sticky;
    top: 1rem;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: var(--white-color);
    scrollbar-width: thin;
    scrollbar-color: var(--bg-card) transparent;
}

.search_page_layout.is_split .search_detail_panel {
    display: block;
}

.search_detail_panel::-webkit-scrollbar {
    width: 4px;
}

.search_detail_panel::-webkit-scrollbar-track {
    background: transparent;
}

.search_detail_panel::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 999px;
}

.search_detail_topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid var(--bg-card);
    position: sticky;
    top: 0;
    background: var(--white-color);
    z-index: 1;
}

.srp_topbar_open_page {
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem !important;
    border-radius: 8px !important;
    width: auto !important;
    height: auto !important;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--main-color) !important;
    border: 1px solid transparent !important;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.srp_topbar_open_page:hover {
    background: var(--main-color) !important;
    color: #fff !important;
    border-color: var(--main-color) !important;
}

.search_detail_close {
    width: 2rem;
    height: 2rem;
    border: 0;
    background: transparent;
    border-radius: 8px;
    color: var(--text-paragraph);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.search_detail_close:hover {
    background: var(--bg-card);
    color: var(--main-color);
}

.search_detail_close svg {
    animation: none;
    stroke-dasharray: none;
}

.search_detail_body {
    padding: 1.5rem 1.25rem;
    display: grid;
    gap: 1.25rem;
}

/* Brand avatar row */
.srp_brand_row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
}

.srp_brand_avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 14px;
    background: rgba(66, 153, 225, 0.08);
    color: var(--accent-color);
    font-size: 1.4rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(66, 153, 225, 0.18);
}

.srp_brand_avatar img {
    border-radius: 14px;
}

/* Title area */
.srp_title_area {
    text-align: center;
}

.srp_title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--main-color);
    line-height: 1.35;
    margin: 0 0 0.45rem;
}

.srp_company {
    font-size: 0.875rem;
    color: var(--text-paragraph);
    margin: 0;
    line-height: 1.5;
}

.srp_sep {
    opacity: 0.5;
    margin-inline: 0.2rem;
}

/* Tags */
.srp_tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.srp_tag {
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.77rem;
    font-weight: 400;
    color: var(--text-paragraph);
    background: var(--bg-card);
}

/* Meta block */
.srp_meta_block {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    display: grid;
    gap: 0.6rem;
}

.srp_meta_row {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.srp_meta_key {
    color: var(--text-paragraph);
    font-weight: 400;
}

.srp_meta_val {
    color: var(--main-color);
    font-weight: 500;
}

.srp_salary {
    color: var(--accent-color) !important;
    font-weight: 600 !important;
}

.srp_source_badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: var(--bg-card);
    color: var(--text-paragraph);
    border: 1px solid var(--border-color);
}

.srp_source_experience {
    background: rgba(66, 153, 225, 0.08);
    color: var(--accent-color);
    border-color: rgba(66, 153, 225, 0.2);
}

.srp_source_profile {
    background: rgba(12, 12, 34, 0.05);
    color: var(--main-color);
    border-color: rgba(12, 12, 34, 0.12);
}

.srp_source_interest {
    background: rgba(20, 184, 166, 0.08);
    color: #0d9488;
    border-color: rgba(20, 184, 166, 0.2);
}

/* Actions */
.srp_actions {
    display: grid;
    gap: 0.6rem;
}

.srp_btn_primary {
    height: 2.65rem;
    border-radius: 9px;
    background: var(--main-color);
    color: var(--white-color);
    font-size: 0.875rem;
    font-weight: 600;
    border: 0;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.15s;
    min-width: 9rem;
}

.srp_btn_primary:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.srp_btn_secondary {
    height: 2.65rem;
    border-radius: 9px;
    background: transparent;
    color: var(--main-color);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.srp_btn_secondary:hover {
    background: var(--bg-card);
    border-color: rgba(12, 12, 34, 0.2);
}

.srp_summary {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-secondary);
    padding: 0.85rem 1rem;
    background: var(--bg-page);
    border-radius: 0.6rem;
    border: 1px solid var(--border-color);
}

.srp_avail_badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.7rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.srp_avail_immediately {
    background: #dcfce7;
    color: #15803d;
}

.srp_avail_open_to_offers {
    background: #dbeafe;
    color: #1d4ed8;
}

.srp_avail_in_notice {
    background: #fef9c3;
    color: #92400e;
}

.srp_avail_not_available {
    background: #f1f5f9;
    color: #64748b;
}

.srp_pref_badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.srp_pref_badge {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem 0.65rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 500;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.srp_pref_active {
    background: rgba(var(--main-color-rgb, 59, 130, 246), 0.1);
    color: var(--main-color);
    border-color: rgba(var(--main-color-rgb, 59, 130, 246), 0.25);
}

/* End Search Detail Panel */

.search_mode_tabs {
    display: flex;
    gap: 0.35rem;
    margin: 0 auto 0.2rem;
    background: rgba(246, 249, 253, 0.92);
    border: 1px solid rgba(214, 225, 238, 0.78);
    border-radius: 999px;
    padding: 0.25rem;
    width: fit-content;
}

.search_mode_tab {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-paragraph);
    text-decoration: none;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
    border: none;
}

.search_mode_tab.active,
.search_mode_tab:hover {
    background: var(--white-color);
    color: var(--main-color);
    box-shadow: 0 8px 20px rgba(12, 26, 46, 0.06);
}

.src_save_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-paragraph);
    cursor: pointer;
    margin-left: auto;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

html[dir="rtl"] .src_save_btn {
    margin-left: unset;
    margin-right: auto;
}

.src_save_btn:hover {
    background: rgba(var(--main-color-rgb, 59, 130, 246), 0.08);
    border-color: var(--main-color);
    color: var(--main-color);
}

.src_save_btn.is_saved {
    background: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color);
}

.srp_btn_secondary.is_save {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.srp_btn_secondary.is_save.is_saved {
    background: var(--main-color);
    color: var(--white-color);
    border-color: var(--main-color);
}

.srp_job_salary {
    font-size: 1rem;
    font-weight: 600;
    color: var(--main-color);
}

.srp_job_category {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-paragraph);
    opacity: 0.7;
    margin-bottom: 0.8rem;
}

.srp_job_desc {
    font-size: 0.85rem;
    line-height: 1.65;
}

.srp_job_meta {
    margin-top: 0.6rem;
    margin-bottom: 0.4rem;
}

.srp_job_posted {
    font-size: 0.78rem;
    color: var(--text-paragraph);
    opacity: 0.6;
}

.srp_expand_btn {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--main-color);
    padding: 0;
    width: 100%;
    justify-content: center;
    padding: 0.4rem 0;
    border-radius: 0.5rem;
    transition: background 0.15s;
}

.srp_expand_btn:hover {
    background: rgba(var(--main-color-rgb, 59, 130, 246), 0.06);
}

.srp_expand_btn.is_loading .srp_expand_chevron {
    animation: srp_spin 0.7s linear infinite;
}

.srp_expand_chevron {
    transition: transform 0.2s;
}

.srp_expand_wrap.is_open .srp_expand_chevron {
    transform: rotate(180deg);
}

@keyframes srp_spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.srp_expand_body {
    display: none;
    margin-top: 0.75rem;
}

.srp_expand_wrap.is_open .srp_expand_body {
    display: block;
}

.srp_expand_sections {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.srp_xsection {
    background: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: 0.75rem;
    padding: 0.85rem 0.95rem;
}

.srp_xsection_title {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--main-color);
    opacity: 0.6;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.srp_skill_chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.srp_skill_chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.65rem;
    border-radius: 2rem;
    font-size: 0.78rem;
    font-weight: 500;
    background: var(--bg-body);
    color: var(--main-color);
    border: 1px solid var(--border-color);
    text-transform: capitalize;
}

.srp_skill_prof {
    font-size: 0.68rem;
    opacity: 0.55;
    font-weight: 400;
}

.srp_lang_list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.srp_lang_row {
    display: grid;
    grid-template-columns: 1fr 2.5fr 1fr;
    align-items: center;
    gap: 0.65rem;
}

.srp_lang_name {
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--text-heading);
}

.srp_lang_bar_wrap {
    height: 5px;
    border-radius: 3px;
    background: var(--border-color);
    overflow: hidden;
}

.srp_lang_bar {
    height: 100%;
    border-radius: 3px;
    background: var(--accent-color);
    transition: width 0.4s ease;
}

.srp_lang_level {
    font-size: 0.72rem;
    color: var(--text-paragraph);
    opacity: 0.6;
    white-space: nowrap;
}

.srp_timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 0.5rem;
}

.srp_timeline_item {
    display: flex;
    gap: 0.75rem;
    padding-bottom: 0.9rem;
    position: relative;
}

.srp_timeline_item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 14px;
    bottom: 0;
    width: 1px;
    background: var(--border-color);
}

.srp_timeline_dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--main-color);
    border: 2px solid var(--bg-card);
    box-shadow: 0 0 0 1px var(--main-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.srp_timeline_content {
    flex: 1;
    min-width: 0;
}

.srp_timeline_title {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.1rem;
}

.srp_timeline_sub {
    font-size: 0.78rem;
    color: var(--text-paragraph);
    margin-bottom: 0.1rem;
}

.srp_timeline_range {
    font-size: 0.72rem;
    opacity: 0.5;
    color: var(--text-paragraph);
}

.srp_edu_list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.srp_edu_item {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.srp_edu_item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.srp_edu_degree {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.1rem;
}

.srp_edu_inst {
    font-size: 0.78rem;
    color: var(--text-paragraph);
    margin-bottom: 0.1rem;
}

.srp_edu_range {
    font-size: 0.72rem;
    opacity: 0.5;
    color: var(--text-paragraph);
}

.srp_pref_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
}

.srp_pref_item {
    display: grid;
    align-items: center;
    grid-template-columns: 5% 1fr;
    gap: 0.4rem;
    padding: 0.4rem 0.6rem;
    border-radius: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-paragraph);
    border: 1px solid var(--border-color);
    background: transparent;
}

.srp_pref_item.is_active {
    --aous-aw-bg-opacity: .1;
    --aous-aw-text-opacity: 1;
    color: rgba(var(--aous-aw-teal-rgb), var(--aous-aw-text-opacity)) !important;
    background-color: rgba(var(--aous-aw-teal-rgb), var(--aous-aw-bg-opacity)) !important;
}

.srp_pref_icon {
    font-size: 0.9rem;
    line-height: 1;
}

/* Start Account area */
.account_area {
    margin-inline: var(--margin-inline);
    padding-inline: 0.25rem;
}

.account_area .navbar_account_profile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-color);
}

.account_area .navbar_account_profile a {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    border-radius: 30px;
}

.account_area .navbar_account_profile a:hover,
.account_area .navbar_account_profile a.active {
    background-color: var(--bg-card);
}

.job_seeker_area,
.employer_area {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-inline: 0.5rem;
}

.account_area .personal_info_card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.account_area .personal_info_card .account_text_content {
    flex: 1;
}

.account_area .personal_info_card .prf_insights_grid {
    display: flex;
    gap: 0.4rem;
    margin: 0;
    flex-shrink: 0;
}

.account_area .personal_info_card .prf_insight_item {
    flex-direction: row;
    align-items: center;
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    gap: 0.35rem;
    white-space: nowrap;
    min-width: 10rem;
    background: transparent;
    border: 1.5px dashed var(--border-color);
}

.account_area .personal_info_card .prf_insight_label {
    font-size: 0.78rem;
}

.account_area .personal_info_card .avatar_account {
    width: 3rem;
    height: 3rem;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account_area .personal_info_card .avatar_account span {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white-color);
}

.account_area .personal_info_card .avatar_account svg {
    color: var(--white-color);
}

.account_area .personal_info_card .avatar_account img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid var(--main-color);
}

.account_area .personal_info_card .info_account .text_account {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

.account_area .personal_info_card .info_account .text_account .account_code_row {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.account_area .personal_info_card .info_account .text_account .account_name {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
}

.account_area .personal_info_card .info_account .text_account .account_code {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
}

.account_area .account_content_body {
    padding-top: 1rem;
}

/* End Account area */

/* Start Empty Card */

.empty_screen {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 1.5rem;
    border-radius: 20px;
    border: 1.5px dashed rgba(0, 0, 0, 0.1);
    background: var(--aous-aw-bg-surface);
}

.theme-dark .empty_screen {
    border-color: rgba(255, 255, 255, 0.07);
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.empty_screen_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    max-width: 25rem;
}

.empty_screen_orbit {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.empty_screen_ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid var(--accent-color);
    opacity: 0;
    animation: es_ring_pulse 2.8s ease-out infinite;
}

.empty_screen_ring_1 {
    width: 70px;
    height: 70px;
    animation-delay: 0s;
}

.empty_screen_ring_2 {
    width: 95px;
    height: 95px;
    animation-delay: 0.9s;
}

@keyframes es_ring_pulse {
    0% {
        opacity: 0.45;
        transform: scale(0.75);
    }

    100% {
        opacity: 0;
        transform: scale(1.25);
    }
}

.empty_screen_icon_bg {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg,
            var(--accent-color) 0%,
            color-mix(in srgb, var(--accent-color) 55%, var(--accent-color)) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    --aous-aw-icon-size: 1.4rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 1;
}

.empty_screen_title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
}

.empty_screen_desc {
    font-size: 0.82rem;
    color: var(--aous-aw-muted);
    line-height: 1.55;
    margin: 0;
}

.empty_screen_cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.35rem;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    background: var(--accent-color);
    color: var(--white-color);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.15s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.empty_screen_cta:hover {
    opacity: 0.88;
    color: var(--white-color);
    transform: translateY(-1px);
}

.empty_screen_cta svg {
    transition: transform 0.15s;
}

.empty_screen_cta:hover svg {
    transform: translateX(3px);
}

/* End Empty Card */

/* Start Global Modal */
.global_modal {
    padding: 28px 20px !important;
    border-radius: 14px;
    padding-bottom: 0.5rem !important;
}

.global_modal_title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.global_modal_description {
    font-weight: 450;
    margin-bottom: 0.5rem;
}

.global_modal_close {
    width: 2.2rem;
    height: 2.2rem;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--main-color);
    font-size: 1.1rem;
    line-height: 1;
}

/* End Global Modal */

/* Start Complete Profile */
.complete_profile_wizard {
    display: grid;
    gap: 2rem;
}

.complete_profile_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.complete_profile_header_copy {
    display: grid;
    gap: 0.2rem;
}

.complete_profile_header_title {
    margin: 0;
    color: var(--main-color);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.complete_profile_header_text {
    margin: 0;
    color: rgba(12, 12, 34, 0.64);
    font-size: 0.92rem;
    line-height: 1.6;
}

.complete_profile_shell {
    display: grid;
    gap: 2rem;
}

.complete_profile_stepper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
}

.complete_profile_step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0.85rem;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-paragraph);
    box-shadow: 0 6px 18px rgba(12, 12, 34, 0.04);
    text-align: start;
    transition: 0.2s ease;
}

.complete_profile_step_badge {
    width: 1.55rem;
    height: 1.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid currentColor;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
}

.complete_profile_step_title {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.4;
}

.complete_profile_step:hover {
    border-color: rgba(12, 12, 34, 0.16);
    transform: translateY(-1px);
}

.complete_profile_step.is_active,
.complete_profile_step.is_complete {
    border-color: var(--main-color);
    color: var(--main-color);
    background: rgba(12, 12, 34, 0.03);
    box-shadow: 0 10px 26px var(--border-color);
}

.complete_profile_stage {
    display: none;
    gap: 0.85rem;
}

.complete_profile_stage.is_active {
    display: grid;
}

.complete_profile_stage_head {
    display: grid;
    gap: 0.2rem;
}

.complete_profile_stage_title {
    margin: 0;
    color: var(--main-color);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.complete_profile_stage_text {
    margin: 0;
    color: rgba(12, 12, 34, 0.6);
    font-size: 0.88rem;
    line-height: 1.55;
}

.global_modal_label {
    font-size: .8rem;
    font-weight: var(--aous-aw-font-weight-bold);
    line-height: 1rem;
    margin-bottom: 0.25rem;
    color: var(--main-color);
    display: block;
}

.global_modal_input_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.complete_profile_counter,
.complete_profile_hint {
    color: #8d8ea3;
    font-size: 0.78rem;
    line-height: 1.4;
}

.complete_profile_textarea {
    min-height: 7rem;
}

.complete_profile_switches {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.complete_profile_switch {
    position: relative;
}

.complete_profile_switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.complete_profile_switch span {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 2.8rem;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--main-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

.complete_profile_switch span::before {
    content: "";
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 999px;
    border: 1px solid #a0a1b5;
    flex-shrink: 0;
}

.complete_profile_switch input:checked+span {
    border-color: var(--main-color);
}

.complete_profile_switch input:checked+span::before {
    border-color: var(--main-color);
    background: var(--main-color);
    box-shadow: inset 0 0 0 2px #fff;
}

.complete_profile_actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.25rem;
}

.complete_profile_actions_note {
    color: var(--text-paragraph);
    font-size: 0.85rem;
    line-height: 1.55;
}

.complete_profile_actions_group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.complete_profile_actions_group .btn {
    min-width: 6rem;
}

.complete_profile_actions_group .btn#complete_profile_next {
    background-color: var(--main-color);
    color: white;
}

.complete_profile_actions_group .btn#complete_profile_submit {
    background-color: var(--main-color);
    color: white;
}

/* End Complete Profile */

.prf_display {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 26rem;
    gap: 1rem;
    align-items: start;
    padding-bottom: 3rem;
    margin-top: 1rem;
}

.prf_overview_strip {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 1rem;
    padding: 0.95rem 1rem;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.02) 100%);
}

.prf_overview_identity,
.prf_overview_share {
    min-width: 0;
}

.prf_overview_identity {
    display: grid;
}

.prf_overview_headline_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.prf_overview_identity_row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
}

.prf_overview_copy {
    min-width: 0;
}

.prf_overview_name {
    display: block;
    font-size: 1.05rem;
    line-height: 1.35;
    color: var(--main-color);
    margin: 0;
}

.prf_overview_headline {
    margin: 0.2rem 0 0;
    font-size: 0.84rem;
    line-height: 1.45;
    color: var(--text-paragraph);
}

.prf_main {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: start;
}

.prf_main_full {
    grid-column: 1 / -1;
}

.prf_sidebar {
    display: grid;
    gap: 0.75rem;
    position: sticky;
    top: 1rem;
}

.prf_sections {
    background: var(--white-color);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.prf_sections_head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.02) 100%);
}

.prf_section_btn {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    width: 100%;
    padding: 0.9rem 1.05rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    text-align: start;
    position: relative;
    transition: background 0.15s, transform 0.15s;
}

.prf_section_btn:last-child {
    border-bottom: none;
}

.prf_section_btn:hover {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.04) 0%, rgba(59, 130, 246, 0.01) 100%);
    transform: translateX(2px);
}

.prf_section_btn_soon {
    opacity: 0.6;
    cursor: default;
}

.prf_section_btn_soon:hover {
    background: transparent;
}

.prf_section_btn_icon {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--bg-card);
    color: var(--main-color);
    flex-shrink: 0;
}

.prf_section_btn[data-accent="blue"] .prf_section_btn_icon {
    background: rgba(59, 130, 246, 0.12);
    color: var(--accent-color);
}

.prf_section_btn[data-accent="teal"] .prf_section_btn_icon {
    background: rgba(20, 184, 166, 0.12);
    color: #0f766e;
}

.prf_section_btn[data-accent="amber"] .prf_section_btn_icon {
    background: rgba(245, 158, 11, 0.14);
    color: #ff9747;
}

.prf_section_btn[data-accent="indigo"] .prf_section_btn_icon {
    background: rgba(168, 85, 247, 0.12);
    color: #8c4dc3;
}

.prf_section_btn[data-accent="rose"] .prf_section_btn_icon {
    background: rgba(244, 63, 94, 0.12);
    color: #ff678c;
}

.prf_section_btn[data-accent="purple"] .prf_section_btn_icon {
    background: rgba(168, 85, 247, 0.12);
    color: #7e22ce;
}

.prf_section_btn[data-accent="orange"] .prf_section_btn_icon {
    background: rgba(249, 115, 22, 0.12);
    color: #c2410c;
}

.prf_section_btn[data-accent="emerald"] .prf_section_btn_icon {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
}

.prf_section_btn_text {
    display: flex;
    flex-direction: column;
    gap: 0.14rem;
    flex: 1;
    min-width: 0;
}

.prf_section_btn_title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--main-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prf_section_btn_desc {
    font-size: 0.76rem;
    color: var(--text-paragraph);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.prf_section_chevron {
    color: var(--text-paragraph);
    flex-shrink: 0;
}

.prf_section_btn_arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 999px;
    background: rgb(243 248 255 / 43%);
    color: #64748b;
    flex: 0 0 auto;
    transition: background 0.15s, color 0.15s, transform 0.15s;
}

html[dir="rtl"] .prf_section_btn_arrow svg {
    rotate: 180deg;
}

.prf_section_btn:hover .prf_section_btn_arrow {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    transform: translateX(1px);
}

.prf_soon_badge {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: var(--bg-card);
    color: var(--text-paragraph);
    border: 1px solid var(--border-color);
    white-space: nowrap;
    flex-shrink: 0;
}

.prf_card {
    background: var(--white-color);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    padding: 1rem;
}

.prf_card.profile_strength_card {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.02) 100%);
}

.prf_eyebrow {
    font-size: 1rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 0.25rem;
}

/* Ring */
.prf_ring_wrap {
    position: relative;
    width: 6.6rem;
    height: 6.6rem;
    margin: 0;
}

.prf_ring_svg {
    width: 100%;
    height: 100%;
    animation: none;
    stroke-dasharray: none;
}

.prf_ring_track {
    stroke: var(--bg-card);
    stroke-dasharray: none;
    animation: none;
    fill: none;
}

.prf_ring_fill {
    stroke: var(--main-color);
    stroke-linecap: round;
    fill: none;
    animation: none;
}

.prf_ring_center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
}

.prf_ring_score {
    font-size: 1.28rem;
    font-weight: 600;
    color: var(--main-color);
    line-height: 1;
}

.prf_ring_label {
    font-size: 0.64rem;
    font-weight: 500;
    color: var(--text-paragraph);
}

.prf_score_note {
    font-size: 0.78rem;
    color: var(--text-paragraph);
    text-align: start;
    margin: 0;
    line-height: 1.45;
}

.prf_score_note strong {
    color: var(--main-color);
    font-weight: 600;
}

.prf_action_btn {
    display: block;
    text-align: center;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--main-color);
    padding: 0.6rem 1rem;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.prf_action_btn:hover {
    background: var(--bg-card);
    border-color: rgba(12, 12, 34, 0.18);
}

.profile_strength_card .prf_action_btn {
    background-color: transparent;
}

/* Preferences */
.prf_pref_list {
    display: grid;
    gap: 0.35rem;
}

.prf_pref_item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.75rem;
    border-radius: 9px;
    border: 1px solid var(--border-color);
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text-paragraph);
    background: var(--bg-body);
}

.prf_pref_dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--bg-card);
    flex-shrink: 0;
    transition: background 0.15s;
}

.prf_pref_item.is_on {
    border-color: var(--main-color);
    color: var(--main-color);
    background: var(--white-color);
}

.prf_pref_item.is_on .prf_pref_dot {
    background: var(--main-color);
}

/* Visibility */
.prf_vis_row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.prf_vis_pill {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: var(--main-color);
    color: var(--white-color);
    font-size: 0.78rem;
    font-weight: 600;
}

.prf_vis_note {
    font-size: 0.8rem;
    color: var(--text-paragraph);
}

/* Sections */
.prf_section_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.prf_section_title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--main-color);
    margin: 0 0 0.15rem;
}

.prf_section_sub {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-paragraph);
    line-height: 1.5;
}

.prf_edit_btn {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: transparent;
    color: var(--text-paragraph);
    flex-shrink: 0;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.prf_edit_btn:hover {
    background: var(--bg-card);
    color: var(--main-color);
}

.prf_summary {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 9px;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
}

.prf_summary p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-paragraph);
    line-height: 1.75;
}

/* Info rows */
.prf_info_grid {
    display: grid;
    gap: 0;
}

.prf_info_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--bg-card);
    font-size: 0.87rem;
}

.prf_info_row:first-child {
    padding-top: 0;
}

.prf_info_row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.prf_info_key {
    color: var(--text-paragraph);
    font-weight: 400;
    flex-shrink: 0;
}

.prf_info_val {
    color: var(--main-color);
    font-weight: 500;
    text-align: end;
}

/* Availability badge */
.prf_avail_badge {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    background: var(--bg-card);
    color: var(--main-color);
    border: 1px solid var(--border-color);
}

.prf_avail_not_available {
    background: var(--bg-card);
    color: var(--text-paragraph);
}

/* Salary */
.prf_salary_row {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.prf_currency {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: var(--bg-card);
    color: var(--text-paragraph);
    border: 1px solid var(--border-color);
}

/* Global Modal Structure */
.global_modal_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem;
}

.global_modal_body {
    padding: 0.5rem;
    padding-top: 0;
}

.global_modal_footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    padding: 1rem 0;
}

.global_modal_control {
    height: 2.65rem;
    border-radius: 9px;
    border: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--main-color);
    background: var(--white-color);
    padding: 0 0.85rem;
}

.global_modal_control:focus {
    border-color: var(--main-color);
    box-shadow: none;
    outline: none;
}

textarea.global_modal_control {
    height: auto;
    padding: 0.65rem 0.85rem;
}

.global_modal_textarea {
    min-height: 6.5rem;
    resize: vertical;
}

.global_modal_submit {
    background: var(--main-color);
    color: var(--white-color);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.55rem 1.5rem;
    border-radius: 9px;
}

.global_modal_submit:hover {
    background: var(--main-color);
    color: var(--white-color);
    opacity: 0.9;
}

.prf_exp_existing {
    display: grid;
    gap: 0.25rem;
    margin-bottom: 0.7rem;
}

.prf_exp_existing_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.prf_exp_existing_title {
    margin: 0;
    color: var(--main-color);
    font-size: 0.95rem;
    font-weight: 700;
}

.prf_exp_add_new,
.prf_exp_edit_btn {
    padding: 0.45rem 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 9px;
    color: var(--main-color);
    background: var(--white-color);
    font-size: 0.82rem;
    font-weight: 600;
}

.prf_exp_accordion {
    display: grid;
    gap: 0.65rem;
}

.prf_exp_item {
    border: 1px dashed var(--border-color);
    border-radius: 12px !important;
    overflow: hidden;
    background: var(--white-color);
}

.prf_exp_trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    box-shadow: none !important;
    padding: 0.5rem 1rem;
}

.prf_exp_trigger:not(.collapsed) {
    color: var(--main-color);
    background: #fafafe;
    font-weight: 400;
}

.prf_exp_trigger:focus {
    box-shadow: none;
}

.prf_exp_trigger_main {
    display: grid;
    gap: 0.15rem;
    text-align: start;
}

.prf_exp_trigger_title {
    color: var(--main-color);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
}

.prf_exp_trigger_meta,
.prf_exp_trigger_side {
    color: var(--text-paragraph);
    font-size: 0.8rem;
    line-height: 1.5;
}

.prf_exp_body {
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
}

.prf_exp_body_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.prf_exp_info {
    display: grid;
    gap: 0.15rem;
}

.prf_exp_info_key {
    color: var(--text-paragraph);
    font-size: 0.76rem;
}

.prf_exp_info_val {
    color: var(--main-color);
    font-size: 0.86rem;
    font-weight: 600;
}

.prf_exp_description {
    margin: 0;
    color: var(--text-paragraph);
    font-size: 0.84rem;
    line-height: 1.65;
}

.prf_exp_empty {
    padding: 0.9rem 1rem;
    border: 1.5px dashed var(--border-color);
    border-radius: 10px;
    color: var(--text-paragraph);
    font-size: 0.84rem;
}

/* Checkbox */
.prf_check_label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    user-select: none;
}

.prf_check_input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.prf_check_box {
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 4px;
    border: 1.5px solid var(--border-color);
    background: var(--white-color);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s;
}

.prf_check_input:checked+.prf_check_box {
    background: var(--main-color);
    border-color: var(--main-color);
}

.prf_check_input:checked+.prf_check_box::after {
    content: '';
    display: block;
    width: 0.3rem;
    height: 0.55rem;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
}

.prf_check_text {
    font-size: 0.875rem;
    color: var(--main-color);
    font-weight: 500;
}

.prf_required {
    color: #c0392b;
    margin-inline-start: 0.15rem;
}

/* End Profile Display */

/* Start Job Postings */

.jpb_area {
    padding-bottom: 3rem;
}

.jpb_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.jpb_head_title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--main-color);
    margin: 0 0 0.2rem;
}

.jpb_head_sub {
    font-size: 0.84rem;
    color: var(--text-paragraph);
    margin: 0;
}

.jpb_post_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    background: var(--main-color);
    color: var(--white-color);
    font-size: 0.88rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.15s;
    flex-shrink: 0;
}

.jpb_post_btn:hover {
    opacity: 0.88;
}

.jpb_post_btn svg {
    width: 1rem;
    height: 1rem;
}

/* Settings */

.settings_page {
    padding-bottom: 3rem;
}

.settings_head_badge {
    align-self: center;
    padding-inline: 0.9rem;
}

.settings_grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    gap: 1rem;
    align-items: start;
}

.settings_card {
    min-height: 100%;
}

.settings_card_head {
    margin-bottom: 0.35rem;
}

.settings_card_topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.settings_card_excerpt {
    margin-bottom: 1.4rem;
}

.settings_form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.settings_form_row {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.settings_form_row_full {
    grid-column: 1 / -1;
}

.settings_form_actions {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0.25rem;
}

.settings_form_actions .change_password_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    background: var(--main-color);
    color: var(--white-color);
    font-size: 0.88rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.15s;
    flex-shrink: 0;
}

.settings_card_danger {
    background:
        linear-gradient(180deg, rgba(198, 40, 40, 0.03) 0%, rgba(198, 40, 40, 0.06) 100%),
        var(--white-color);
    border-color: rgba(198, 40, 40, 0.16);
}

.settings_card_ref_danger {
    background: rgba(198, 40, 40, 0.08);
    color: #b42318;
}

.settings_danger_text {
    color: #b42318;
    font-weight: 600;
}

.settings_warning_box {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.settings_delete_btn {
    min-width: 170px;
    border-radius: 10px;
}

/* List */

.jpb_list {
    display: grid;
    gap: 1rem;
}

.jpb_list_intro {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 20px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(0, 106, 255, 0.046), transparent 34%), linear-gradient(135deg, #ffffff 0%, #f6f8fc 100%);
    border: 1px solid rgba(12, 26, 46, 0.08);
}

.jpb_list_intro_copy {
    position: relative;
    z-index: 1;
    max-width: 32rem;
}

.jpb_list_intro_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.65rem;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    color: var(--main-color);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.jpb_list_intro_title {
    margin: 0 0 0.35rem;
    color: var(--main-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.jpb_list_intro_text {
    margin: 0;
    color: var(--text-paragraph);
    font-size: 0.92rem;
    line-height: 1.7;
}

.jpb_list_intro_metrics {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    gap: 0.75rem;
    min-width: min(100%, 24rem);
}

.jpb_list_intro_metric {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1rem;
    border-radius: 16px;
    background: var(--white-color);
    border: 1px solid rgba(12, 26, 46, 0.08);
    backdrop-filter: blur(10px);
}

.jpb_list_intro_metric strong {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1;
}

.jpb_list_intro_metric span {
    font-size: 0.78rem;
    color: var(--text-paragraph);
}

/* Card */

.jpb_card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(12, 26, 46, 0.015) 0%, rgba(12, 26, 46, 0.03) 100%),
        var(--white-color);
    border: 1px solid rgba(12, 26, 46, 0.08);
    border-radius: 22px;
    padding: 1.35rem 1.5rem 1.25rem;
    box-shadow: 0 14px 34px rgba(12, 26, 46, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.jpb_card:hover {
    transform: translateY(-4px);
    border-color: rgba(12, 26, 46, 0.18);
    box-shadow: 0 20px 42px rgba(12, 26, 46, 0.12);
}

.jpb_card_topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.jpb_card_ref {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    background: rgba(12, 26, 46, 0.06);
    color: var(--main-color);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.jpb_card_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.jpb_card_identity {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.jpb_card_title {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--main-color);
    margin: 0;
    line-height: 1.45;
}

.jpb_card_actions {
    display: flex;
    gap: 0.4rem;
    flex-shrink: 0;
}

.jpb_action_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 12px;
    background: rgba(12, 26, 46, 0.05);
    border: 1px solid rgba(12, 26, 46, 0.08);
    color: var(--text-paragraph);
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    padding: 0;
}

.jpb_action_btn svg {
    width: 0.9rem;
    height: 0.9rem;
}

.jpb_action_btn:hover {
    background: var(--main-color);
    color: var(--white-color);
    border-color: var(--main-color);
    transform: translateY(-1px);
}

.jpb_action_delete:hover {
    background: #c62828;
    border-color: #c62828;
    color: var(--white-color);
}

.jpb_action_activate:hover {
    background: #2e7d32;
    border-color: #2e7d32;
    color: var(--white-color);
}

/* Tags */

.jpb_card_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
}

.jpb_tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.32rem 0.72rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
    background: #f8f9fc;
    color: var(--text-paragraph);
    border: 1px solid rgba(12, 26, 46, 0.08);
}

.jpb_tag svg {
    width: 0.75rem;
    height: 0.75rem;
}

.jpb_tag_type {
    background: #eef3ff;
    color: #223891;
    border-color: #d8e1ff;
}

.jpb_tag_model {
    background: #eef9f1;
    color: #25643b;
    border-color: #cdebd5;
}

.jpb_tag_cat {
    background: #fff0f5;
    color: #9b2455;
    border-color: #ffd1e1;
}

.jpb_tag_loc {
    background: #f6f7fa;
    color: #4d5562;
}

/* Salary */

.jpb_card_salary {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 0.9rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(12, 26, 46, 0.06) 0%, rgba(12, 26, 46, 0.02) 100%);
    border: 1px solid rgba(12, 26, 46, 0.08);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.jpb_card_excerpt {
    margin: 0 0 1rem;
    color: #4d5562;
    font-size: 0.88rem;
    line-height: 1.75;
}

/* Footer */

.jpb_card_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(12, 26, 46, 0.12);
}

.jpb_card_stats {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.jpb_card_stat {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: #f8f9fc;
    border: 1px solid rgba(12, 26, 46, 0.08);
    font-size: 0.8rem;
    color: var(--text-paragraph);
}

.jpb_card_stat strong {
    color: var(--main-color);
    font-weight: 700;
}

.jpb_card_stat svg {
    --aous-aw-icon-size: 1.25rem;
}

.jpb_card_date {
    font-size: 0.8rem;
    color: #69707d;
    white-space: nowrap;
}

/* Status badges */

.jpb_status {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.73rem;
    font-weight: 700;
    white-space: nowrap;
}

.jpb_status_draft {
    background: var(--bg-card);
    color: var(--text-paragraph);
    border: 1px solid var(--border-color);
}

.jpb_status_active {
    background: #e8f5e9;
    color: #2e7d32;
}

.jpb_status_paused {
    background: #fff8e1;
    color: #ff9747;
}

.jpb_status_closed {
    background: #fce4ec;
    color: #c62828;
}

.jpb_status_expired {
    background: var(--bg-card);
    color: var(--text-paragraph);
    border: 1px solid var(--border-color);
}

@media (max-width: 991px) {
    .settings_grid {
        grid-template-columns: 1fr;
    }

    .jpb_list_intro {
        flex-direction: column;
        align-items: stretch;
    }

    .jpb_list_intro_metrics {
        min-width: 0;
    }
}

@media (max-width: 767px) {
    .settings_form {
        grid-template-columns: 1fr;
    }

    .settings_head_badge {
        align-self: flex-start;
    }

    .jpb_list_intro {
        padding: 1rem;
        border-radius: 14px;
    }

    .jpb_list_intro_title {
        font-size: 1.2rem;
    }

    .jpb_list_intro_metrics {
        grid-template-columns: 1fr;
    }

    .jpb_card {
        padding: 1.1rem 1rem 1rem;
        border-radius: 14px;
    }

    .jpb_card_head,
    .jpb_card_footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .jpb_card_actions {
        width: 100%;
        flex-wrap: wrap;
    }
}

/* Publish/Draft buttons in modal */

.pj_publish_btn {
    background: var(--main-color);
    color: var(--white-color);
    border-color: var(--main-color);
}

.pj_publish_btn:hover {
    opacity: 0.88;
    color: var(--white-color);
}

.pj_draft_btn {
    background: var(--bg-card);
    color: var(--main-color);
    border-color: var(--border-color);
}

/* End Job Postings */

/* Start Home Hero Enhancements */

.hero_area {
    isolation: isolate;
}

.hero_quick_cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: flex-start;
    margin-top: 1.4rem;
}

.hero_quick_cat {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--main-color);
    padding: 0.42rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(12, 26, 46, 0.08);
    transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
    white-space: nowrap;
}

.hero_quick_cat:hover {
    background: var(--white-color);
    color: var(--main-color);
    border-color: var(--accent-color);
    transform: translateY(-1px);
}

/* End Home Hero Enhancements */

@keyframes heroGlowDriftOne {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.92;
    }

    50% {
        transform: translate3d(-22px, 18px, 0) scale(1.12);
        opacity: 1;
    }
}

@keyframes heroGlowDriftTwo {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate3d(18px, -20px, 0) scale(1.16);
        opacity: 0.98;
    }
}

/* Start Home Shared */

.home_section_head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.home_section_head h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.home_section_head p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-paragraph);
    font-weight: 400;
}

/* End Home Shared */

/* Start Home Categories */

.home_cats_section {
    padding: 6rem 0;
    margin-inline: var(--margin-inline-page);
}

.home_cats_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.home_cat_card {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-radius: 1.6rem;
    background: var(--white-color);
    border: 1px solid rgba(203, 218, 235, 0.75);
    box-shadow: 0 2px 10px rgba(12, 26, 46, 0.04);
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 17rem;
}

.home_cat_card::before {
    content: '';
    position: absolute;
    top: -3.5rem;
    inset-inline-end: -3.5rem;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: rgba(66, 153, 225, 0.05);
    pointer-events: none;
    transition: transform 0.35s ease;
}

.home_cat_card:hover {
    border-color: rgba(66, 153, 225, 0.28);
    box-shadow: 0 20px 42px rgba(12, 26, 46, 0.09);
    transform: translateY(-3px);
}

.home_cat_card:hover::before {
    transform: scale(1.22);
}

.cat_icon_a {
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.1) 0%, rgba(66, 153, 225, 0.18) 100%);
    color: #2f6fad;
}

.cat_icon_b {
    background: linear-gradient(135deg, rgba(12, 26, 46, 0.07) 0%, rgba(134, 170, 214, 0.16) 100%);
    color: #294f78;
}

.cat_icon_c {
    background: linear-gradient(135deg, rgba(104, 165, 225, 0.09) 0%, rgba(198, 225, 255, 0.22) 100%);
    color: #3578b8;
}

.home_cat_icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 1.25rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 6px 14px rgba(170, 198, 228, 0.14);
    transition: transform 0.2s;
}

.home_cat_card:hover .home_cat_icon {
    transform: scale(1.08) translateY(-1px);
}

.home_cat_icon svg {
    width: 1.4rem;
    height: 1.4rem;
    animation: none;
    stroke-dasharray: none;
}

.home_cat_name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--main-color);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.home_cat_desc {
    font-size: 0.875rem;
    color: var(--text-paragraph);
    font-weight: 400;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.home_cat_foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(203, 218, 235, 0.5);
}

.home_cat_count {
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--accent-color);
    background: rgba(66, 153, 225, 0.07);
    border: 1px solid rgba(66, 153, 225, 0.14);
    padding: 0.2rem 0.62rem;
    border-radius: 999px;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.home_cat_arrow {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    border: 1px solid rgba(189, 206, 226, 0.72);
    background: rgba(255, 255, 255, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(12, 26, 46, 0.45);
    font-size: 0.85rem;
    line-height: 1;
    flex-shrink: 0;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
}

html[dir="rtl"] .home_cat_arrow {
    rotate: 180deg;
}

.home_cat_card:hover .home_cat_arrow {
    background: rgba(66, 153, 225, 0.09);
    border-color: rgba(66, 153, 225, 0.28);
    color: #2f6fad;
}

/* End Home Categories */

/* Start Home CTA Band */

.home_cta_band {
    position: relative;
    overflow: hidden;
    padding: 4.5rem var(--margin-inline-page);
    background: #0c1a2e;
    text-align: center;
}

.home_cta_band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(66, 153, 225, 0.22) 0%, transparent 65%);
    pointer-events: none;
}

.home_cta_band::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(66, 153, 225, 0.3), transparent);
}

.home_cta_band_inner {
    position: relative;
    z-index: 1;
    max-width: 38rem;
    margin-inline: auto;
}

.home_cta_band_eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.1rem;
}

.home_cta_band_headline {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 0.85rem;
}

.home_cta_band_subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2.25rem;
    line-height: 1.7;
}

.home_cta_band_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.72rem 1.85rem;
    background: var(--accent-color);
    color: var(--white-color);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 0.55rem;
    text-decoration: none;
    transition: opacity 0.18s, transform 0.18s, box-shadow 0.18s;
}

.home_cta_band_btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(66, 153, 225, 0.35);
    color: var(--white-color);
}

.home_cta_band_btn svg {
    animation: none;
    stroke-dasharray: none;
    transition: transform 0.18s;
}

html[dir="rtl"] .home_cta_band_btn svg {
    rotate: 180deg;
}

.home_cta_band_btn:hover svg {
    transform: translateX(3px);
}

[dir="rtl"] .home_cta_band_btn:hover svg {
    transform: translateX(-3px);
}

/* End Home CTA Band */

/* Start Home How It Works */

.home_hiw_section {
    padding-block: 8rem;
    margin-inline: var(--margin-inline-page);
}

.home_hiw_tabs_wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.home_hiw_tabs {
    display: inline-flex;
    gap: 0.25rem;
    background: rgba(246, 249, 253, 0.92);
    border-radius: 999px;
    padding: 0.28rem;
    border: 1px solid var(--border-color);
}

.home_hiw_tab {
    border: 0;
    background: transparent;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-paragraph);
    cursor: pointer;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}

.home_hiw_tab.is_active {
    background: var(--white-color);
    color: var(--main-color);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(12, 12, 34, 0.08);
}

.home_hiw_panel {
    display: none;
    position: relative;
    padding: 1.15rem;
    border-radius: 1.9rem;
}

.home_hiw_panel.is_active {
    display: block;
}

.home_hiw_panel::before,
.home_hiw_panel::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.home_hiw_panel::before {
    width: 15rem;
    height: 15rem;
    top: -7rem;
    inset-inline-start: -4rem;
    background: rgba(66, 153, 225, 0.08);
    filter: blur(18px);
    animation: homeHiwGlowOne 10s ease-in-out infinite;
}

.home_hiw_panel::after {
    width: 10rem;
    height: 10rem;
    bottom: -4rem;
    inset-inline-end: 6%;
    background: rgba(12, 26, 46, 0.05);
    filter: blur(18px);
    animation: homeHiwGlowTwo 12s ease-in-out infinite;
}

.home_hiw_steps {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.home_hiw_step {
    position: relative;
    display: grid;
    align-content: start;
    min-height: 8.5rem;
    padding: 1.35rem 1.35rem 1.2rem;
    border-radius: 1.45rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 253, 255, 0.96) 100%);
    border: 1px solid rgba(214, 225, 238, 0.84);
    box-shadow: 0 14px 30px rgba(12, 26, 46, 0.045);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home_hiw_step::after {
    content: "";
    position: absolute;
    width: 7.75rem;
    height: 7.75rem;
    border-radius: 50%;
    inset-inline-end: -2.1rem;
    bottom: -2.5rem;
    background: radial-gradient(circle, rgba(66, 153, 225, 0.11) 0%, transparent 72%);
    opacity: 0.85;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.home_hiw_step:hover {
    transform: translateY(-4px);
    border-color: rgba(66, 153, 225, 0.26);
    box-shadow: 0 20px 36px rgba(66, 153, 225, 0.08), 0 10px 24px rgba(12, 26, 46, 0.05);
}

.home_hiw_step:hover::after {
    transform: scale(1.08);
    opacity: 1;
}

.home_hiw_num {
    position: absolute;
    inset-inline-end: 1rem;
    top: 0.45rem;
    display: block;
    width: auto;
    height: auto;
    font-size: 4.4rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.06em;
    color: rgba(66, 153, 225, 0.12);
    margin: 0;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    pointer-events: none;
    z-index: 0;
}

.home_hiw_step h3 {
    position: relative;
    z-index: 1;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 0.45rem;
    line-height: 1.3;
    max-width: 18ch;
}

.home_hiw_step p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--text-paragraph);
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: 30ch;
}

.home_hiw_step:nth-child(2) {
    transform: translateY(1.1rem);
}

.home_hiw_step:nth-child(2):hover {
    transform: translateY(calc(1.1rem - 4px));
}

.home_hiw_step:nth-child(3) {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 250, 255, 0.97) 100%);
}

@keyframes homeHiwGlowOne {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(12px, 10px, 0);
    }
}

@keyframes homeHiwGlowTwo {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-10px, -12px, 0);
    }
}

/* End Home How It Works */

/* Start Home Locations */

.home_loc_section {
    padding-block: 8rem;
    margin-inline: var(--margin-inline-page);
}

.home_loc_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.home_loc_card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.75rem 1.05rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.96) 100%);
    border: 1px solid rgba(214, 225, 238, 0.84);
    border-radius: 1rem;
    color: var(--main-color);
    font-size: 0.875rem;
    font-weight: 550;
    transition: border-color 0.18s, box-shadow 0.18s, color 0.18s, transform 0.18s;
    text-decoration: none;
    overflow: hidden;
}

.home_loc_card::after {
    content: "";
    position: absolute;
    width: 6.5rem;
    height: 6.5rem;
    inset-inline-end: -1.8rem;
    bottom: -2.4rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(66, 153, 225, 0.12) 0%, transparent 74%);
    opacity: 0.78;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.home_loc_card:hover {
    border-color: rgba(66, 153, 225, 0.4);
    box-shadow: 0 14px 28px rgba(66, 153, 225, 0.08), 0 8px 20px rgba(12, 26, 46, 0.04);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.home_loc_card:hover::after {
    transform: scale(1.08);
    opacity: 1;
}

.home_loc_icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.8rem;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.1) 0%, rgba(210, 233, 255, 0.72) 100%);
    color: var(--accent-color);
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
    transition: background 0.18s, transform 0.18s;
}

.home_loc_icon svg {
    animation: none;
    stroke-dasharray: none;
}

.home_loc_card:hover .home_loc_icon {
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.14) 0%, rgba(198, 227, 255, 0.82) 100%);
    transform: translateY(-1px);
}

.home_loc_name {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
    line-height: 1.3;
}

/* End Home Locations */

/* Start Site Footer */

.site_footer {
    background:
        radial-gradient(circle at top center, rgba(66, 153, 225, 0.08), transparent 24%),
        linear-gradient(180deg, #0e1828 0%, #0b1524 100%);
    color: rgba(255, 255, 255, 0.66);
}

.site_footer_inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem 4rem;
    padding: 5.5rem var(--margin-inline-page) 4.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site_footer_brand_panel {
    padding-inline-end: 1.25rem;
}

.site_footer_logo {
    display: inline-block;
    color: var(--white-color);
    text-decoration: none;
    margin-bottom: 1.3rem;
    opacity: 0.92;
}

.site_footer_logo img {
    width: 9rem;
    filter: brightness(0) invert(1);
}

.site_footer_logo svg {
    animation: none;
    stroke-dasharray: none;
}

.site_footer_tagline {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.58);
    margin: 0 0 1.7rem;
    max-width: 21rem;
}

.site_footer_primary_link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 3.3rem;
    padding: 0.82rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #4299e1 0%, #71b4eb 100%);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 18px 36px rgba(66, 153, 225, 0.2);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    width: fit-content;
    margin-bottom: 1.85rem;
}

.site_footer_primary_link:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 24px 44px rgba(66, 153, 225, 0.26);
}

.site_footer_primary_link svg {
    animation: none;
    stroke-dasharray: none;
}

html[dir="rtl"] .site_footer_primary_link svg {
    rotate: 180deg;
}

.site_footer_social {
    display: flex;
    gap: 0.7rem;
}

.site_footer_social_link {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.62);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
    text-decoration: none;
}

.site_footer_social_link:hover {
    background: rgba(66, 153, 225, 0.14);
    border-color: rgba(66, 153, 225, 0.2);
    color: var(--white-color);
    transform: translateY(-1px);
}

.site_footer_nav_title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.35rem;
}

.site_footer_nav_links {
    display: grid;
    gap: 1.5rem;
}

.site_footer_nav_link {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    transition: color 0.15s;
    border-color: transparent !important;
}

.site_footer_nav_link:hover {
    color: var(--white-color);
}

.site_footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.45rem var(--margin-inline-page) 1.7rem;
}

.site_footer_copyright {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.34);
}

.site_footer_bottom_links {
    display: flex;
    align-items: center;
    gap: 1.9rem;
}

.site_footer_bottom_link {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.34);
    text-decoration: none;
    border-color: transparent !important;
    transition: color 0.15s;
}

.site_footer_bottom_link:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* End Site Footer */

.srp_company_tagline {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.srp_company_about {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--text-paragraph);
    margin: 0;
}

.srp_company_facts {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.srp_fact_row {
    display: grid;
    grid-template-columns: 1.5rem 1fr auto;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.srp_fact_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    opacity: 0.7;
}

.srp_fact_label {
    color: var(--text-paragraph);
    opacity: 0.6;
    text-transform: capitalize;
}

.srp_fact_val {
    font-weight: 600;
    color: var(--text-heading);
    text-align: right;
    text-transform: capitalize;
}

.svd_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}

.svd_head_title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-heading);
    margin: 0 0 0.2rem;
}

.svd_head_sub {
    font-size: 0.83rem;
    color: var(--text-paragraph);
    opacity: 0.7;
    margin: 0;
}

.svd_browse_btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.1rem;
    border-radius: 2rem;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    text-decoration: none;
    transition: opacity 0.15s;
    flex-shrink: 0;
}

.svd_browse_btn:hover {
    opacity: 0.88;
    color: var(--main-color);
}

/* Grid */
.svd_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

/* Card */
.svd_card {
    border: 1.5px dashed var(--border-color);
    border-radius: 0.9rem;
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.18s, box-shadow 0.18s, opacity 0.28s, transform 0.28s;
    position: relative;
}

.svd_card:hover {
    border-color: var(--main-color);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.svd_card_removing {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.svd_card_top {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.svd_card_brand {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.6rem;
    background: rgba(var(--main-color-rgb, 59, 130, 246), 0.08);
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.svd_card_meta {
    display: grid;
    gap: 0.05rem;
    min-width: 0;
    flex: 1;
}

.svd_company {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--main-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.svd_location {
    font-size: 0.75rem;
    color: var(--text-paragraph);
    opacity: 0.6;
}

.svd_unsave_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--main-color);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.svd_unsave_btn:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #dc2626;
}

.svd_card_title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-heading);
    margin: 0;
    line-height: 1.4;
}

.svd_card_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.svd_tag {
    padding: 0.2rem 0.6rem;
    border-radius: 2rem;
    font-size: 0.72rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    color: var(--text-paragraph);
}

.svd_tag_type {
    background: rgba(var(--main-color-rgb, 59, 130, 246), 0.06);
    border-color: rgba(var(--main-color-rgb, 59, 130, 246), 0.18);
    color: var(--main-color);
}

.svd_tag_model {
    background: transparent;
}

.svd_tag_cat {
    background: transparent;
    opacity: 0.7;
}

.svd_card_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.svd_card_footer_left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.svd_salary {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--main-color);
}

.svd_status {
    display: inline-flex;
    align-items: center;
    padding: 0.18rem 0.55rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 500;
}

.svd_status_active {
    background: #d1fae5;
    color: #065f46;
}

.svd_status_paused {
    background: #fef3c7;
    color: #92400e;
}

.svd_status_closed {
    background: #f1f5f9;
    color: #64748b;
}

.svd_status_expired {
    background: #fee2e2;
    color: #991b1b;
}

.svd_status_draft {
    background: #f1f5f9;
    color: #64748b;
}

.svd_saved_at {
    font-size: 0.72rem;
    color: var(--text-paragraph);
    opacity: 0.5;
    white-space: nowrap;
}

.svd_card_actions {
    margin-top: 0.5rem;
}

.svd_apply_btn {
    display: block;
    text-align: center;
    padding: 0.7rem;
    border-radius: 0.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    background: var(--main-color);
    color: var(--white-color);
    text-decoration: none;
    transition: opacity 0.15s;
}

.svd_apply_btn:hover {
    opacity: 0.88;
    color: var(--white-color);
}

/* Profile page — share card */
.prf_share_card {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.prf_overview_share {
    display: grid;
    gap: 0.3rem;
    align-content: start;
    padding: 0.78rem 0.9rem;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.02) 100%);
}

.prf_share_card_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.account_area .personal_info_card .account_profile_edit_btn {
    border: 1px solid transparent;
    background: var(--white-color);
    color: var(--main-color);
}

.account_area .personal_info_card .account_profile_edit_btn:hover {
    background: var(--bg-card);
}

.account_area .personal_info_card .account_profile_edit_btn svg {
    width: 0.95rem;
    height: 0.95rem;
}

.prf_share_note {
    font-size: 0.72rem;
    color: var(--text-paragraph);
    margin: 0;
    line-height: 1.45;
    margin-inline: 0.25rem;
}

.prf_share_url_wrap {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.prf_share_url {
    display: block;
    padding: 0.42rem 0.6rem;
    font-size: 0.67rem;
    color: var(--text-paragraph);
    cursor: pointer;
    word-break: break-all;
    line-height: 1.42;
    transition: background 0.15s;
    user-select: all;
}

.prf_share_url:hover {
    background: var(--bg-card);
}

.prf_share_view_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.45rem 0.7rem;
    border-radius: 8px;
    border: 1px solid var(--accent-color);
    background: transparent;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--accent-color);
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
}

.prf_share_view_btn svg {
    animation: none;
    stroke-dasharray: none;
}

.prf_share_view_btn:hover {
    background: var(--accent-color);
    color: var(--white-color);
    border-color: var(--accent-color);
}

/* Inline insights strip (inside a profile section card) */
.prf_insights_inline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--border-color);
}

/* Profile Insights card */
.prf_stats_card {
    padding: 1rem 1.1rem !important;
}

.prf_insights_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.prf_insight_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.28rem;
    padding: 0.8rem 0.5rem;
    border-radius: 12px;
    background: var(--bg-card);
    text-align: center;
}

.prf_insight_icon {
    width: 2rem;
    height: 2rem;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prf_insight_views {
    background: rgba(66, 153, 225, 0.12);
    color: #4299e1;
}

.prf_insight_jobs {
    background: rgba(72, 187, 120, 0.12);
    color: #38a169;
}

.prf_insight_apps {
    background: rgba(237, 137, 54, 0.12);
    color: #dd6b20;
}

.prf_insight_saved {
    background: rgba(159, 122, 234, 0.12);
    color: #805ad5;
}

.prf_insight_skills {
    background: rgba(246, 173, 85, 0.15);
    color: #c05621;
}

.prf_insight_posting_views {
    background: rgba(66, 153, 225, 0.12);
    color: #4299e1;
}

.prf_insight_num {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--main-color);
    line-height: 1;
}

.prf_insight_label {
    font-size: 0.68rem;
    color: var(--text-paragraph);
    font-weight: 500;
    line-height: 1.2;
}

.match_hub {
    display: grid;
    gap: 0.85rem;
    padding-bottom: 2rem;
}

.match_hero {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 1rem;
    padding: 2rem 1.5rem !important;
    border-radius: 14px;
    background: linear-gradient(135deg, #2f6fad 0%, #7ebdf0 100%);
    color: var(--white-color);
    overflow: hidden;
}

.match_hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(66, 153, 225, 0.22) 0%, transparent 65%);
    pointer-events: none;
}

.match_hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(66, 153, 225, 0.3), transparent);
}

.match_hero_main,
.match_stats_inside {
    position: relative;
    z-index: 1;
}

.match_hero_main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 1rem;
    align-items: center;
}

.match_eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    background: rgba(66, 153, 225, 0.14);
    color: var(--white-color);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.7rem;
}

.match_title {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--white-color);
}

.match_text {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    max-width: 40rem;
}

.match_hero_actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.match_btn,
.match_link_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 2.8rem;
    padding: 0.72rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    color: #0f172a;
    font-size: 0.86rem;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.match_btn:hover,
.match_link_btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.match_btn_soft {
    background: transparent;
    border-color: white !important;
    color: var(--white-color);
}

.match_stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
}

.match_stats_inside {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.9rem;
    max-width: 50%;
}

.match_stat_card,
.match_empty,
.match_job_panel,
.match_card,
.match_candidate_card {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.04);
}

.match_stat_card {
    padding: 0.85rem 1rem;
    display: grid;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.match_stat_value {
    font-size: 1.45rem;
    line-height: 1;
    font-weight: 700;
    color: var(--white-color);
}

.match_stat_label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.62);
}

.match_empty {
    padding: 1.5rem 1.2rem;
    text-align: center;
}

.match_empty h3,
.match_job_head h3,
.match_candidate_top h4 {
    margin: 0;
}

.match_empty p,
.match_job_head p,
.match_candidate_top p,
.match_summary,
.match_tagline {
    margin: 0;
    color: var(--text-paragraph);
    line-height: 1.7;
}

.match_saved_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.match_saved_card {
    min-width: 0;
}

.match_saved_score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    height: 1.9rem;
    padding: 0 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--main-color-rgb, 59, 130, 246), 0.18);
    background: rgba(var(--main-color-rgb, 59, 130, 246), 0.06);
    color: var(--main-color);
    font-size: 0.74rem;
    font-weight: 700;
    flex-shrink: 0;
}

.match_saved_reason {
    opacity: 0.82;
}

.match_saved_status {
    background: rgba(var(--main-color-rgb, 59, 130, 246), 0.08);
    color: var(--main-color);
}

.match_job_stack {
    display: grid;
    gap: 0.85rem;
}

.match_job_panel {
    padding: 0.95rem;
}

.match_job_head {
    margin-bottom: 0.75rem;
}

.match_job_kicker {
    display: inline-block;
    margin-bottom: 0.4rem;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-color);
}

.match_inline_empty {
    padding: 0.85rem;
    border-radius: 14px;
    background: #f8fafc;
    color: var(--text-paragraph);
}

/* ==========================================
   Preview / Public Profile Pages  (.prv_*)
   ========================================== */

.prv_wrap {
    background: #f5f6f9;
    min-height: 80vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.prv_hero {
    position: relative;
    background: var(--main-color);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding-top: 6rem;
    width: 100%;
    max-width: 100%;
}

.prv_hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 60%, rgba(66, 153, 225, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 25%, rgba(66, 153, 225, 0.14) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.prv_orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(55px);
    pointer-events: none;
    z-index: 0;
}

.prv_orb_1 {
    width: 340px;
    height: 340px;
    background: rgba(66, 153, 225, 0.13);
    top: -80px;
    right: 8%;
    animation: prv_orb_float 9s ease-in-out infinite;
}

.prv_orb_2 {
    width: 220px;
    height: 220px;
    background: rgba(66, 153, 225, 0.09);
    bottom: -30px;
    left: 22%;
    animation: prv_orb_float 7s ease-in-out infinite;
    animation-delay: -3.5s;
}

.prv_orb_3 {
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.04);
    top: 20px;
    left: 48%;
    animation: prv_orb_float 11s ease-in-out infinite;
    animation-delay: -6s;
}

@keyframes prv_orb_float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-22px) scale(1.06);
    }
}

.prv_hero_inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    padding: 3rem var(--margin-inline) 2.2rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.prv_hero_avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.22);
    color: var(--white-color);
    font-size: 2.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: -1px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
    animation: prv_avatar_pulse 4s ease-in-out infinite;
}

.prv_hero_avatar img {
    border-radius: 50%;
}

.prv_hero_emp_avatar {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.18);
}

@keyframes prv_avatar_pulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22), 0 0 0 0 rgba(66, 153, 225, 0);
    }

    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22), 0 0 0 10px rgba(66, 153, 225, 0.1);
    }
}

.prv_hero_info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.prv_hero_name {
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--white-color);
    line-height: 1.2;
    margin: 0;
}

.prv_hero_tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.4;
}

.prv_hero_chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.5rem;
}

.prv_hero_chip {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.73rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.prv_hero_badge_open {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    padding: 0.28rem 0.75rem;
    border-radius: 999px;
    background: rgba(72, 187, 120, 0.18);
    border: 1px solid rgba(72, 187, 120, 0.35);
    color: #9ae6b4;
    font-size: 0.73rem;
    font-weight: 500;
}

.prv_hero_open_dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #48bb78;
    flex-shrink: 0;
    animation: prv_dot_pulse 2s ease-in-out infinite;
}

@keyframes prv_dot_pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.45;
    }
}

.prv_body {
    display: flex;
    gap: 3rem;
    padding: 0 var(--margin-inline) 4rem;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.prv_left {
    width: 260px;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
    padding-top: 1.8rem;
    max-width: 100%;
    box-sizing: border-box;
}

.prv_right {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    padding-top: 1.8rem;
    box-sizing: border-box;
}

.prv_name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--main-color);
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.prv_title {
    font-size: 0.84rem;
    color: var(--text-paragraph);
    margin: 0 0 0.75rem;
    line-height: 1.45;
}

.prv_open_badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.28rem 0.75rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 20px;
    color: #059669;
    font-size: 0.74rem;
    font-weight: 500;
    margin-bottom: 0.85rem;
}

.prv_open_dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
    animation: prv_pulse 2s ease-in-out infinite;
}

@keyframes prv_pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.85);
    }
}

.prv_info_list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.prv_info_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-paragraph);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.prv_info_item svg {
    flex-shrink: 0;
    --aous-aw-icon-size: 1.1rem;
}

.prv_left_actions {
    margin-bottom: 1.25rem;
}

.prv_btn_share {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.6rem 1rem;
    background: transparent;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--main-color);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.prv_btn_share:hover {
    background: var(--bg-card);
    border-color: var(--main-color);
}

.prv_stats_block {
    border-top: 1px solid var(--border-color);
    padding-top: 0.75rem;
    margin-bottom: 1.1rem;
    display: flex;
    flex-direction: column;
}

.prv_stat_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--border-color);
}

.prv_stat_row:not(.prv_stat_views) {
    padding-inline: 0.4rem
}

.prv_stat_row:last-child {
    border-bottom: none;
}

.prv_stat_label {
    font-size: 0.8rem;
    color: var(--text-paragraph);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.prv_stat_num {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--main-color);
}

.prv_stat_views .prv_stat_label {
    color: #4299e1;
}

.prv_stat_views .prv_stat_num {
    color: #4299e1;
}

.prv_stat_views {
    background: rgba(66, 153, 225, 0.06);
    border-radius: 8px;
    padding: 0.5rem 0.65rem;
    margin-bottom: 0.35rem;
    border-bottom: none !important;
}

.prv_links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.prv_link_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--main-color);
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    text-decoration: none;
}

.prv_link_btn:hover {
    background: var(--main-color);
    color: #ffffff;
    border-color: var(--main-color);
}

.prv_links_list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.prv_links_list .prv_link_btn {
    width: 100%;
    height: auto;
    min-height: 72px;
    justify-content: flex-start;
    gap: 0.95rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.prv_links_list .prv_link_btn:hover {
    background: #f2f8ff;
    color: var(--main-color);
    border-color: rgba(59, 130, 246, 0.28);
    transform: translateY(-1px);
}

.prv_link_btn_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.08);
    color: var(--main-color);
}

.prv_link_btn_copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    gap: 0.18rem;
    flex: 1 1 auto;
}

.prv_link_btn_copy strong {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--title-color);
    line-height: 1.3;
}

.prv_link_btn_copy small {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.84rem;
    color: var(--text-paragraph);
}

.prv_link_btn_arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    flex: 0 0 auto;
}

.prv_links_list .prv_link_btn:hover .prv_link_btn_copy strong,
.prv_links_list .prv_link_btn:hover .prv_link_btn_copy small,
.prv_links_list .prv_link_btn:hover .prv_link_btn_arrow {
    color: inherit;
}

.prv_tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 1.5rem;
    background: transparent;
    box-sizing: border-box;
}

.prv_tab {
    padding: 0.85rem 1.1rem;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    border-radius: 0;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--text-paragraph);
    cursor: pointer;
    background: transparent;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
}

.prv_tab:hover {
    color: var(--main-color);
    background: transparent;
}

.prv_tab.active {
    color: var(--main-color);
    border-bottom-color: var(--main-color);
}

.prv_section {
    display: none;
}

.prv_section.prv_active {
    display: block;
}

/* Portfolio — no card border */
.prv_section_grid {
    background: transparent;
    border: none;
    padding: 0;
}

/* Other sections — white card */
.prv_section:not(.prv_section_grid) {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.prv_section_title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--main-color);
    margin: 0 0 1.1rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid var(--border-color);
}

/* About */
.prv_headline {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--main-color);
    margin-bottom: 0.7rem;
}

.prv_about_text {
    font-size: 0.875rem;
    color: var(--text-paragraph);
    line-height: 1.75;
    margin: 0;
    white-space: pre-line;
}

/* Experience timeline */
.prv_timeline {
    display: flex;
    flex-direction: column;
}

.prv_exp_item {
    display: flex;
    gap: 1rem;
    position: relative;
    padding-bottom: 1.4rem;
}

.prv_exp_item:last-child {
    padding-bottom: 0;
}

.prv_exp_item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 18px;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.prv_exp_dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--main-color);
    flex-shrink: 0;
    margin-top: 4px;
    position: relative;
    z-index: 1;
}

.prv_exp_content {
    flex: 1;
    min-width: 0;
}

.prv_exp_title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 0.12rem;
}

.prv_exp_company {
    font-size: 0.825rem;
    color: var(--text-paragraph);
    margin-bottom: 0.2rem;
}

.prv_exp_dates {
    font-size: 0.75rem;
    color: var(--text-paragraph);
    margin-bottom: 0.45rem;
}

.prv_exp_desc {
    font-size: 0.825rem;
    color: var(--text-paragraph);
    line-height: 1.65;
    margin: 0;
}

/* Education */
.prv_edu_list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.prv_edu_item {
    display: flex;
    gap: 0.85rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--border-color);
}

.prv_edu_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.prv_edu_icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--main-color);
}

.prv_edu_degree {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 0.12rem;
}

.prv_edu_institution {
    font-size: 0.82rem;
    color: var(--text-paragraph);
    margin-bottom: 0.18rem;
}

.prv_edu_dates {
    font-size: 0.75rem;
    color: var(--text-paragraph);
}

/* Skills */
.prv_skills_group {
    margin-bottom: 1.1rem;
}

.prv_skills_group:last-child {
    margin-bottom: 0;
}

.prv_skills_cat {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-paragraph);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.55rem;
}

.prv_skills_chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.prv_skill_chip {
    padding: 0.28rem 0.7rem;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    font-size: 0.78rem;
    color: var(--main-color);
}

.prv_skill_chip.prv_skill_primary {
    background: var(--main-color);
    color: #ffffff;
    border-color: var(--main-color);
}

/* Languages */
.prv_lang_list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.prv_lang_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.35rem;
}

.prv_lang_name {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--main-color);
}

.prv_lang_level {
    font-size: 0.74rem;
    color: var(--text-paragraph);
}

.prv_lang_bar {
    height: 5px;
    background: var(--bg-card);
    border-radius: 3px;
    overflow: hidden;
}

.prv_lang_fill {
    height: 100%;
    background: var(--accent-color);
    border-radius: 3px;
}

/* Portfolio grid */
.prv_portfolio_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.prv_portfolio_card {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: #ffffff;
    text-decoration: none;
    display: block;
    transition: transform 0.18s, box-shadow 0.18s;
}

.prv_portfolio_card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(12, 26, 46, 0.08);
}

.prv_portfolio_thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.prv_portfolio_no_thumb {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-paragraph);
    background: var(--bg-card);
}

.prv_portfolio_info {
    padding: 0.65rem 0.75rem;
}

.prv_portfolio_title {
    font-size: 0.825rem;
    font-weight: 500;
    color: var(--main-color);
    margin-bottom: 0.2rem;
}

.prv_portfolio_cat {
    font-size: 0.74rem;
    color: var(--text-paragraph);
}

/* Certifications */
.prv_cert_list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.prv_cert_item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.prv_cert_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.prv_cert_icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--main-color);
}

.prv_cert_title {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--main-color);
    margin-bottom: 0.12rem;
}

.prv_cert_issuer {
    font-size: 0.8rem;
    color: var(--text-paragraph);
    margin-bottom: 0.12rem;
}

.prv_cert_date {
    font-size: 0.74rem;
    color: var(--text-paragraph);
}

.prv_cert_link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.74rem;
    color: var(--main-color);
    margin-top: 0.3rem;
    text-decoration: none;
}

.prv_cert_link:hover {
    text-decoration: underline;
    color: var(--main-color);
}

.prv_emp_chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.prv_emp_chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.65rem;
    background: #ffffff;
    border-radius: 20px;
    font-size: 0.77rem;
    color: var(--text-paragraph);
    border: 1px solid var(--border-color);
    text-decoration: none;
}

a.prv_emp_chip:hover {
    background: var(--main-color);
    color: #ffffff;
    border-color: var(--main-color);
}

.prv_emp_section {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.prv_emp_section:last-child {
    margin-bottom: 0;
}

.prv_emp_section_title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--main-color);
    margin: 0 0 0.9rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prv_emp_count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 0.4rem;
    border-radius: 20px;
    background: var(--bg-card);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-paragraph);
}

.prv_emp_about_text {
    font-size: 0.875rem;
    color: var(--text-paragraph);
    line-height: 1.75;
    margin: 0;
    white-space: pre-line;
}

.prv_emp_jobs_list {
    display: flex;
    flex-direction: column;
}

.prv_emp_job_card {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-color);
}

.prv_emp_job_card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.prv_emp_job_card:first-child {
    padding-top: 0;
}

.prv_emp_job_title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--main-color);
    margin-bottom: 0.2rem;
}

.prv_emp_job_meta {
    font-size: 0.78rem;
    color: var(--text-paragraph);
}

.prv_emp_job_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.prv_emp_job_status {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.15rem 0.55rem;
    border-radius: 20px;
    white-space: nowrap;
}

.prv_emp_job_status_active {
    background: #e8f5e9;
    color: #388e3c;
    width: fit-content;
}

.prv_emp_job_status_draft,
.prv_emp_job_status_closed,
.prv_emp_job_status_expired {
    background: var(--border-color);
    color: var(--text-paragraph);
}

.prv_emp_empty {
    font-size: 0.85rem;
    color: var(--text-paragraph);
    padding: 1.5rem 0;
}

.prv_tab_count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 20px;
    background: var(--border-color);
    color: var(--text-paragraph);
    font-size: 0.68rem;
    font-weight: 500;
    margin-inline-start: 4px;
}

.prv_reviews_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.prv_reviews_avg {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.3rem;
}

.prv_reviews_avg_num {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--main-color);
    line-height: 1;
}

.prv_reviews_count {
    font-size: 0.78rem;
    color: var(--text-paragraph);
}

.prv_star {
    color: var(--border-color);
    flex-shrink: 0;
}

.prv_star_filled {
    color: #f59e0b;
}

.prv_btn_review {
    flex-shrink: 0;
    padding: 0.45rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--main-color);
    background: transparent;
    color: var(--main-color);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.prv_btn_review:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.prv_review_success {
    background: #e8f5e9;
    color: #388e3c;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
    margin-bottom: 1rem;
}

.prv_reviews_list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.prv_review_card {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.prv_review_card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.prv_review_card:first-child {
    padding-top: 0;
}

.prv_review_top {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.5rem;
}

.prv_review_avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--main-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

.prv_review_meta {
    flex: 1;
    min-width: 0;
}

.prv_review_name {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--main-color);
}

.prv_review_date {
    font-size: 0.72rem;
    color: var(--text-paragraph);
}

.prv_review_rating {
    display: flex;
    gap: 1px;
    flex-shrink: 0;
}

.prv_review_title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--main-color);
    margin-bottom: 0.3rem;
}

.prv_review_body {
    font-size: 0.82rem;
    color: var(--text-paragraph);
    line-height: 1.7;
    margin: 0;
    white-space: pre-line;
}

.prv_star_picker {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.prv_star_pick {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--border-color);
    transition: color 0.1s, transform 0.1s;
    display: flex;
}

.prv_star_pick:hover,
.prv_star_pick_on {
    color: #f59e0b;
}

.prv_star_pick:active {
    transform: scale(0.9);
}

.prv_field_error {
    font-size: 0.75rem;
    color: #e53e3e;
    margin-top: 0.25rem;
}

.prv_job_cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.prv_job_card {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.05rem 1.1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.72rem;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.prv_job_card:hover {
    border-color: var(--main-color);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.09);
    transform: translateY(-2px);
}

.prv_job_card_head {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.prv_job_card_avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--border-color);
    color: var(--main-color);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prv_job_card_brand {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.prv_job_card_brand span:first-child {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--main-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prv_job_card_brand span:last-child:not(:first-child) {
    font-size: 0.7rem;
    color: var(--text-paragraph);
}

.prv_job_card_title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--main-color);
    margin: 0;
    line-height: 1.4;
}

.prv_job_card_chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.prv_job_chip {
    font-size: 0.72rem;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    color: var(--text-paragraph);
    background: transparent;
    white-space: nowrap;
}

.prv_job_card_salary {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--main-color);
}

.prv_job_card_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.8rem;
}

.prv_job_card_meta_item {
    font-size: 0.74rem;
    color: var(--text-paragraph);
}

.prv_job_card_actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.15rem;
}

.prv_job_open_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 40px;
    padding: 0.72rem 0.95rem;
    border-radius: 12px;
    background: var(--main-color);
    color: var(--white-color);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}

.prv_job_open_btn:hover {
    color: var(--white-color);
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
}

html[dir="rtl"] .prv_job_open_btn svg {
    rotate: 180deg;
}

.prv_job_save_btn,
.prv_job_save_link,
.prv_job_panel_open_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 40px;
    padding: 0.72rem 0.95rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--main-color);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: border-color 0.15s, background 0.15s, color 0.15s, transform 0.15s;
}

.prv_job_save_btn:hover,
.prv_job_save_link:hover,
.prv_job_panel_open_btn:hover {
    border-color: var(--main-color);
    background: rgba(59, 130, 246, 0.06);
    color: var(--main-color);
    transform: translateY(-1px);
}

.prv_job_save_btn.is_saved {
    background: rgba(59, 130, 246, 0.09);
    border-color: rgba(59, 130, 246, 0.24);
}

.prv_jobs_layout {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.prv_job_cards {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.prv_jobs_layout.prv_jobs_split .prv_job_cards {
    max-width: 360px;
}

.prv_jobs_layout.prv_jobs_split .prv_job_card_chips,
.prv_jobs_layout.prv_jobs_split .prv_job_card_salary {
    display: none;
}

.prv_job_card.is_active {
    border-color: var(--main-color);
    background: #f7fbff;
    box-shadow: 0 18px 36px rgba(59, 130, 246, 0.12);
}

.prv_job_panel {
    display: none;
    flex: 1;
    min-width: 0;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: var(--white-color);
    position: sticky;
    top: 1rem;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--bg-card) transparent;
}

.prv_jobs_layout.prv_jobs_split .prv_job_panel {
    display: block;
}

.prv_job_panel_topbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid var(--bg-card);
    position: sticky;
    top: 0;
    background: var(--white-color);
    z-index: 1;
}

.prv_job_panel_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.prv_job_panel_save_btn {
    min-width: 132px;
}

.prv_panel_section_label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-paragraph);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 0.25rem;
}

.apply_profile_row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border-radius: 10px;
    margin-bottom: 0.6rem;
}

.apply_profile_avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--main-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.apply_profile_info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.apply_profile_name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--main-color);
}

.apply_profile_title {
    font-size: 0.75rem;
    color: var(--text-paragraph);
}

.apply_profile_link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--main-color);
    text-decoration: none;
    padding: 0.3rem 0.7rem;
    border: 1px solid var(--main-color);
    border-radius: 6px;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
}

.apply_profile_link:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.apply_profile_url_row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--bg-card);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.apply_url_text {
    flex: 1;
    font-size: 0.72rem;
    color: var(--text-paragraph);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.apply_copy_url {
    background: none;
    border: none;
    padding: 0.2rem;
    color: var(--text-paragraph);
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    transition: color 0.15s;
    flex-shrink: 0;
}

.apply_copy_url:hover,
.apply_copy_url.apply_copy_done {
    color: var(--main-color);
}

.apply_divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.75rem 0;
}

.apply_cover_letter {
    font-size: 0.82rem;
    line-height: 1.75;
    resize: vertical;
    min-height: 200px;
}

.apply_char_count {
    font-size: 0.7rem;
    color: var(--text-paragraph);
    text-align: end;
    margin-top: 0.3rem;
}

.app_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.app_head_title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--main-color);
    margin: 0 0 0.2rem;
}

.app_head_sub {
    font-size: 0.8rem;
    color: var(--text-paragraph);
    margin: 0;
}

/* Stats bar */
.app_stats_bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border-radius: 10px;
}

.app_stat_item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: var(--text-paragraph);
}

.app_stat_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.app_stat_num {
    font-weight: 600;
    color: var(--main-color);
}

/* Status badge & dot colors */
.app_status_pending {
    background: #e8eaf0;
    color: #5c6378;
}

.app_status_reviewed {
    background: #e8f0fe;
    color: #1a56db;
}

.app_status_shortlisted {
    background: #e8f5e9;
    color: #388e3c;
}

.app_status_rejected {
    background: #fdecea;
    color: #d32f2f;
}

.app_status_hired {
    background: #e8f5e9;
    color: #1b5e20;
}

.app_stat_dot.app_status_pending {
    background: #8a93ad;
}

.app_stat_dot.app_status_reviewed {
    background: #1a56db;
}

.app_stat_dot.app_status_shortlisted {
    background: #388e3c;
}

.app_stat_dot.app_status_rejected {
    background: #d32f2f;
}

.app_stat_dot.app_status_hired {
    background: #1b5e20;
}

/* Job seeker app card */
.app_list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.app_card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    background: var(--white-color);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.app_card_top {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.app_card_brand {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--border-color);
    color: var(--main-color);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app_card_brand img {
    border-radius: 50%;
}

.app_card_meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.app_company_name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--main-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.app_company_name:hover {
    text-decoration: underline;
}

.app_job_title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--main-color);
}

.app_card_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    flex-shrink: 0;
}

.app_status_badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    white-space: nowrap;
}

.app_applied_date {
    font-size: 0.7rem;
    color: var(--text-paragraph);
    white-space: nowrap;
}

.app_card_chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

/* Accordion */
.app_accordion {
    border-top: 1px solid var(--bg-card);
    padding-top: 0.6rem;
}

.app_accordion_btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-paragraph);
    cursor: pointer;
    width: 100%;
    text-align: start;
}

.app_accordion_btn:hover {
    color: var(--main-color);
}

.app_accordion_chevron {
    margin-inline-start: auto;
    transition: transform 0.2s;
}

.app_accordion_btn.is_open .app_accordion_chevron {
    transform: rotate(180deg);
}

.app_accordion_body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.app_accordion_body.is_open {
    max-height: 600px;
}

.app_cover_text {
    font-size: 0.8rem;
    color: var(--text-paragraph);
    line-height: 1.75;
    white-space: pre-line;
    margin: 0.65rem 0 0;
}

.app_resume_link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--main-color);
    text-decoration: none;
    margin-top: 0.5rem;
    padding: 0.25rem 0.65rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.app_resume_link:hover {
    border-color: var(--main-color);
}

/* Employer reply (job seeker view) */
.app_employer_reply {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border-inline-start: 3px solid var(--main-color);
}

.app_reply_header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.app_reply_avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--main-color);
    color: var(--white-color);
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app_reply_avatar img {
    border-radius: 50%;
}

.app_reply_label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--main-color);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.app_reply_text {
    font-size: 0.8rem;
    color: var(--text-paragraph);
    line-height: 1.7;
    margin: 0;
    white-space: pre-line;
}

.emp_app_layout {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.emp_app_jobs_sidebar {
    width: 310px;
    flex-shrink: 0;
    position: sticky;
    top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.emp_app_sidebar_label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-paragraph);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.5rem;
    padding-inline-start: 0.5rem;
}

.emp_app_job_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    border-radius: 9px;
    text-decoration: none;
    transition: background 0.15s;
}

.emp_app_job_item:hover {
    background: var(--bg-card);
}

.emp_app_job_item svg {
    --aous-aw-icon-size: 1rem;
}

.emp_app_job_item.is_active {
    background: var(--bg-card);
    box-shadow: inset 2px 0 0 var(--main-color);
}

.emp_app_job_item_info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.emp_app_job_title {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--main-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 290px;
}

.emp_app_job_count {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-paragraph);
    flex-shrink: 0;
}

.emp_app_main {
    flex: 1;
    min-width: 0;
}

.emp_app_main_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.emp_app_main_title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--main-color);
    margin: 0 0 0.2rem;
}

.emp_app_main_sub {
    font-size: 0.78rem;
    color: var(--text-paragraph);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.emp_app_filter_pills {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.emp_app_filter_count {
    font-size: 0.72rem;
    color: var(--text-paragraph);
}

.emp_app_list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

/* Employer app card */
.emp_app_card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    background: var(--white-color);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.emp_app_card_top {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.emp_app_avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--main-color);
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emp_app_info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.emp_app_name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--main-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.emp_app_name:hover {
    text-decoration: underline;
}

.emp_app_subtitle {
    font-size: 0.75rem;
    color: var(--text-paragraph);
}

.emp_app_date {
    font-size: 0.7rem;
    color: var(--text-paragraph);
}

.emp_app_card_actions {
    flex-shrink: 0;
    gap: 0.5rem;
    display: flex;
    align-items: center;
}

.emp_app_status_select {
    font-size: 0.85rem;
    padding: 0.3rem 0.65rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--main-color);
    cursor: pointer;
    outline: none;
    font-weight: 500;
}

.emp_app_resume_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--main-color);
    text-decoration: none;
    padding: 0.25rem 0.7rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    width: fit-content;
}

.emp_app_resume_btn:hover {
    border-color: var(--main-color);
}

/* Employer reply box */
.emp_app_reply_wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.emp_app_existing_reply {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
}

.emp_app_reply_label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--main-color);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.35rem;
}

.emp_app_reply_text {
    font-size: 0.8rem;
    color: var(--text-paragraph);
    line-height: 1.65;
    white-space: pre-line;
    margin: 0 0 0.4rem;
}

.emp_app_edit_reply {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.72rem;
    color: var(--text-paragraph);
    cursor: pointer;
    text-decoration: underline;
}

.emp_app_reply_form.is_hidden {
    display: none;
}

.emp_app_reply_actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.emp_app_cancel_reply {
    background: none;
    border: none;
    font-size: 0.78rem;
    color: var(--text-paragraph);
    cursor: pointer;
    padding: 0.35rem 0.65rem;
}

.emp_app_send_reply {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    background: var(--main-color);
    color: var(--white-color);
    border: none;
    cursor: pointer;
    transition: opacity 0.15s;
}

.emp_app_send_reply:hover {
    opacity: 0.88;
}

.emp_app_send_reply:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========== Activity Log ========== */

.act_head {
    margin-bottom: 2rem;
}

.act_head_title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--main-color);
    margin: 0 0 0.25rem;
}

.act_head_sub {
    font-size: 0.85rem;
    color: var(--text-paragraph);
    margin: 0;
}

.act_timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.act_day_group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.act_day_label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-paragraph);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.25rem;
}

.act_entries {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.act_entry {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: border-color 0.15s;
}

.act_icon_wrap {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.act_icon_wrap svg {
    width: 16px;
    height: 16px;
}

/* Color variants */
.act_color_success {
    background: #e6f4ec;
    color: #22863a;
}

.act_color_danger {
    background: #fdecea;
    color: #c0392b;
}

.act_color_primary {
    background: #eef2ff;
    color: var(--main-color);
}

.act_color_info {
    background: #e8f4fd;
    color: #1a6fa8;
}

.act_color_star {
    background: #fff8e1;
    color: #d4a017;
}

.act_color_default {
    background: var(--bg-body);
    color: var(--text-paragraph);
}

.act_entry_body {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.act_entry_desc {
    font-size: 0.84rem;
    color: var(--main-color);
    margin: 0;
    line-height: 1.45;
}

.act_entry_desc strong {
    font-weight: 600;
}

.act_entry_time {
    flex-shrink: 0;
    font-size: 0.72rem;
    color: var(--text-paragraph);
}

/* ========== Home: Recent Jobs ========== */

.home_rjobs_section {
    padding: 8rem 0;
    margin-inline: var(--margin-inline-page);
}

.home_rjobs_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.home_rjob_card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.4rem;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbe7f3;
    box-shadow: 0 10px 26px rgba(12, 26, 46, 0.06);
    text-decoration: none;
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
    position: relative;
    overflow: hidden;
}

.home_rjob_card::before {
    content: '';
    position: absolute;
    top: -40px;
    inset-inline-end: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(66, 153, 225, 0.08);
    pointer-events: none;
}

.home_rjob_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(12, 26, 46, 0.12);
    border-color: rgba(66, 153, 225, 0.35);
}

.home_rjob_top {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.home_rjob_avatar {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(66, 153, 225, 0.12);
    color: #2f6fad;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
}

.home_rjob_avatar img {
    border-radius: 10px;
}

.home_rjob_company_info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.home_rjob_company_name {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-paragraph);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home_rjob_location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.72rem;
    color: #8c96a8;
}

.home_rjob_location svg {
    animation: none;
    stroke-dasharray: none;
    stroke: #8c96a8;
}

.home_rjob_type_badge {
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 500;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    border: 1px solid rgba(66, 153, 225, 0.18);
    background: rgba(66, 153, 225, 0.1);
    color: #2f6fad;
    white-space: nowrap;
}

.home_rjob_title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--main-color);
    letter-spacing: -0.015em;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home_rjob_chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.home_rjob_chip {
    font-size: 0.68rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    border: 1px solid #dbe7f3;
    background: #f4f8fc;
    color: #657082;
}

.home_rjob_foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.home_rjob_salary {
    font-size: 0.8rem;
    font-weight: 500;
    color: #2f6fad;
}

.home_rjob_date {
    font-size: 0.72rem;
    color: #9ea7b6;
}

.home_rjobs_cta {
    display: flex;
    justify-content: center;
    padding: 1.5rem 0 3.5rem;
}

.home_rjobs_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.75rem;
    border-radius: 50px;
    background: var(--main-color);
    color: var(--white-color);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--main-color);
    transition: opacity 0.15s, box-shadow 0.15s;
}

.home_rjobs_cta_btn:hover {
    opacity: 0.88;
    box-shadow: 0 8px 24px rgba(12, 26, 46, 0.22);
    color: var(--white-color);
}

.home_rjobs_cta_btn svg {
    animation: none;
    stroke-dasharray: none;
    transition: transform 0.15s;
}

html[dir="rtl"] .home_rjobs_cta_btn svg {
    rotate: 180deg;
}

.home_rjobs_cta_btn:hover svg {
    transform: translateX(3px);
}

[dir="rtl"] .home_rjobs_cta_btn:hover svg {
    transform: translateX(-3px);
}

/* ========== Job Detail Page ========== */

.jd_wrap {
    min-height: 80vh;
}

/* ─── Hero ─────────────────────────────────────── */

.jd_hero {
    background: #0c1a2e;
    padding: 7rem var(--margin-inline-page) 2.5rem;
    position: relative;
    overflow: hidden;
}

.jd_hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 0%, rgba(66, 153, 225, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.jd_hero_inner {
    position: relative;
    z-index: 1;
    max-width: 72rem;
}

.jd_company_row {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1.25rem;
}

.jd_company_avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(66, 153, 225, 0.2);
    color: #7ec8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.jd_company_avatar img {
    border-radius: 12px;
}

.jd_company_info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.jd_company_name {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.jd_company_tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

.jd_job_title {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--white-color);
    letter-spacing: -0.025em;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.jd_hero_meta {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0;
}

.jd_meta_item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.75rem 0.9rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 0;
}

.jd_meta_icon {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
}

.jd_meta_content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.jd_meta_label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
}

.jd_meta_value {
    font-size: 0.84rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
    word-break: break-word;
}

.jd_meta_item_salary {
    background: rgba(66, 153, 225, 0.16);
    border-color: rgba(126, 200, 248, 0.26);
}

.jd_meta_item_salary .jd_meta_icon {
    background: rgba(126, 200, 248, 0.14);
    color: #9fdcff;
}

.jd_meta_item_salary .jd_meta_label {
    color: rgba(195, 229, 255, 0.68);
}

.jd_meta_item_salary .jd_meta_value {
    color: #9fdcff;
    font-weight: 600;
}

.jd_hero_posted {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 1.5rem;
}

.jd_hero_actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.jd_apply_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1.4rem;
    border-radius: 10px;
    background: #4299e1;
    color: var(--white-color);
    font-size: 0.84rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, box-shadow 0.15s;
}

.jd_apply_btn:hover {
    background: #3182ce;
    box-shadow: 0 6px 20px rgba(66, 153, 225, 0.35);
    color: var(--white-color);
}

.jd_save_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.06);
    color: var(--main-color) !important;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.jd_save_btn:hover,
.jd_save_btn.is_saved {
    background: rgba(66, 153, 225, 0.2);
    color: #7ec8f8;
    border-color: rgba(66, 153, 225, 0.3);
}

.jd_hero .jd_save_btn {
    background: white;
    color: var(--main-color) !important;
}

.jd_company_link_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.15s;
}

html[dir="rtl"] .jd_company_link_btn svg {
    rotate: 180deg;
}

.jd_company_link_btn:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* ─── Body layout ───────────────────────────────── */

.jd_body {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    padding: 2.5rem var(--margin-inline-page);
    align-items: start;
    max-width: 100%;
}

/* ─── Content (left) ────────────────────────────── */

.jd_content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.jd_section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.jd_section_title {
    font-size: 1rem;
    font-weight: 600;
    color: #0c1a2e;
    margin: 0;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border-color);
}

.jd_text {
    font-size: 0.875rem;
    color: var(--text-paragraph);
    line-height: 1.75;
    white-space: pre-line;
}

/* ─── Sidebar (right) ───────────────────────────── */

.jd_sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 1.5rem;
}

.jd_sidebar_card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.jd_apply_box {
    background: #f0f7ff;
    border-color: #cde0f8;
}

.jd_apply_box_label {
    font-size: 0.82rem;
    font-weight: 500;
    color: #0c1a2e;
    margin: 0;
}

.jd_apply_btn_full,
.jd_save_btn_full {
    width: 100%;
    justify-content: center;
}

.jd_save_btn_full {
    background: #fff;
    color: #0c1a2e;
    border: 1px solid var(--border-color);
}

.jd_save_btn_full:hover,
.jd_save_btn_full.is_saved {
    background: #eef2ff;
    color: #0c1a2e;
    border-color: #c0d0f0;
}

.jd_company_card_link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.jd_sidebar_avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #0c1a2e;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.jd_sidebar_avatar img {
    border-radius: 12px;
}

.jd_sidebar_company_info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.jd_sidebar_company_name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0c1a2e;
}

.jd_sidebar_tagline {
    font-size: 0.75rem;
    color: var(--text-paragraph);
}

.jd_sidebar_rating {
    display: flex;
    align-items: center;
}

.jd_sidebar_rating_val {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0c1a2e;
    margin-left: 0.25rem;
}

.jd_sidebar_rating_count {
    font-size: 0.75rem;
    color: var(--text-paragraph);
}

.jd_sidebar_view_company {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}

html[dir="rtl"] .jd_sidebar_view_company svg {
    rotate: 180deg;
}

.jd_sidebar_view_company:hover {
    color: #3182ce;
}

.jd_sidebar_section_title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #0c1a2e;
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.jd_similar_list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.jd_similar_card {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.75rem;
    border-radius: 9px;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: border-color 0.15s, background 0.15s;
}

.jd_similar_card:hover {
    border-color: #4299e1;
    background: #f0f7ff;
}

.jd_similar_avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #e8f0fe;
    color: #4299e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 600;
    flex-shrink: 0;
}

.jd_similar_info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.jd_similar_title {
    font-size: 0.78rem;
    font-weight: 500;
    color: #0c1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jd_similar_company {
    font-size: 0.7rem;
    color: var(--text-paragraph);
}

/* ─── Open full page button in split panel ────────── */

.srp_btn_open_page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    border: 1px solid var(--border-color);
    color: var(--text-paragraph);
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
    flex-shrink: 0;
}

.srp_btn_open_page:hover {
    border-color: #4299e1;
    color: #4299e1;
    background: #f0f7ff;
}

/* ─── Info Pages ─────────────────────────────────── */

.info_page_shell {
    background:
        radial-gradient(circle at top left, rgba(66, 153, 225, 0.12), transparent 28%),
        linear-gradient(180deg, #f4f8fc 0%, #ffffff 32%, #f7fafc 100%);
    padding: 1.35rem 0 4rem;
}

.info_page_hero {
    padding: 0 0 1.5rem;
}

.info_page_breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    font-size: 0.84rem;
    color: #607085;
    margin-bottom: 1rem;
}

.info_page_breadcrumbs a {
    color: #1f4f82;
    text-decoration: none;
}

.info_page_breadcrumbs a:hover {
    text-decoration: underline;
}

.info_page_hero_grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
    gap: 1.35rem;
    align-items: stretch;
}

.info_page_hero_copy,
.info_page_hero_panel,
.info_page_card,
.info_page_step_card,
.info_page_content_block {
    border: 1px solid rgba(12, 26, 46, 0.08);
    box-shadow: 0 22px 45px rgba(12, 26, 46, 0.06);
}

.info_page_hero_copy {
    padding: 2rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
}

.info_page_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: #e8f2fb;
    color: #1f4f82;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.info_page_hero_copy h1 {
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: #0c1a2e;
    margin: 0;
    max-width: 12ch;
}

.info_page_hero_copy p {
    margin: 1rem 0 0;
    max-width: 60ch;
    font-size: 1rem;
    line-height: 1.8;
    color: #526172;
}

.info_page_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.45rem;
}

.info_page_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.8rem 1.2rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.info_page_btn:hover {
    transform: translateY(-1px);
}

.info_page_btn_primary {
    background: #69c3f3;
    color: #fff;
    box-shadow: 0 16px 30px rgba(21, 58, 97, 0.22);
}

.info_page_btn_secondary {
    background: #fff;
    color: #153a61;
    border: 1px solid rgba(21, 58, 97, 0.14);
}

.info_page_hero_panel {
    border-radius: 28px;
    background: linear-gradient(160deg, #153a61 0%, #0f2238 100%);
    color: #fff;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
}

.info_page_panel_label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.7);
}

.info_page_panel_title {
    margin-top: auto;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.info_page_panel_text {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.info_page_summary,
.info_page_steps,
.info_page_sections {
    padding-top: 1.5rem;
}

.info_page_cards,
.info_page_step_grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info_page_card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 22px;
    background: #fff;
    padding: 1.35rem;
}

.info_page_card h2,
.info_page_step_card h3,
.info_page_content_block h2 {
    margin: 0;
    color: #0c1a2e;
}

.info_page_card h2 {
    font-size: 1.05rem;
}

.info_page_card p,
.info_page_step_card p,
.info_page_content_block p,
.info_page_list li {
    color: #5b6978;
    line-height: 1.78;
}

.info_page_card p,
.info_page_step_card p {
    margin: 0.7rem 0 0;
    font-size: 0.95rem;
}

.info_page_section_heading {
    margin-bottom: 1rem;
}

.info_page_section_heading h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 2rem);
    color: #0c1a2e;
    letter-spacing: -0.03em;
}

.info_page_step_card {
    border-radius: 12px;
    background: #fff;
    padding: 1.4rem;
}

.info_page_step_number {
    display: inline-flex;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #ebf4fb;
    color: #1d527f;
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.info_page_section_stack {
    display: grid;
    gap: 1rem;
}

.info_page_content_block {
    border-radius: 12px;
    padding: 1.45rem 1.5rem;
    background: rgba(255, 255, 255, 0.94);
}

.info_page_content_block p {
    margin: 0.8rem 0 0;
}

.info_page_list {
    margin: 1rem 0 0;
    padding-inline-start: 1.15rem;
}

.info_page_list li+li {
    margin-top: 0.5rem;
}

.job_post_manual_page .info_page_hero_copy h1,
.job_post_manual_page .info_page_section_heading h2,
.job_post_manual_page .info_page_card h2,
.job_post_manual_page .info_page_step_card h3,
.job_post_manual_page .info_page_content_block h2,
.job_post_manual_page .info_page_panel_title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0;
    max-width: none;
}

.job_post_manual_page .info_page_hero_copy p,
.job_post_manual_page .info_page_panel_text,
.job_post_manual_page .info_page_card p,
.job_post_manual_page .info_page_step_card p,
.job_post_manual_page .info_page_content_block p,
.job_post_manual_page .info_page_list li {
    font-size: 0.9rem;
}

.job_post_manual_page .info_page_hero_panel {
    background: linear-gradient(160deg, #1f6fa8 0%, #174f79 100%);
}

.job_post_manual_page .info_page_hero_copy,
.job_post_manual_page .info_page_hero_panel,
.job_post_manual_page .info_page_card,
.job_post_manual_page .info_page_step_card,
.job_post_manual_page .info_page_content_block {
    border-color: #d7eefb;
    box-shadow: 0 16px 28px rgba(75, 165, 216, 0.08);
}

/* ─── Custom Info Pages ─────────────────────────── */

.profile_story_page,
.works_map_page,
.contact_canvas_page,
.about_editorial_page,
.policy_document_page,
.terms_document_page {
    padding: 1rem 0 3.5rem;
    background: linear-gradient(180deg, #f5fbff 0%, #ffffff 34%, #f7fcff 100%);
    padding-top: 2rem;
}

.profile_story_page h2,
.works_map_page h2,
.contact_canvas_page h2,
.about_editorial_page h2,
.policy_document_page h2,
.terms_document_page h3 {
    font-size: 1.05rem;
    line-height: 1.45;
    margin: 0;
    color: vaR(--main-color);
    font-weight: 600;
}

.profile_story_page h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.works_map_page h1 {
    font-size: 1.3rem !important;
}

.profile_story_page h1,
.works_map_page h1,
.contact_canvas_page h1,
.about_editorial_page h1,
.policy_document_page h1,
.terms_document_page h1,
.profile_story_page h3,
.works_map_page h3,
.contact_canvas_page h3,
.about_editorial_page h3,
.policy_document_page h3,
.terms_document_page h2 {
    font-size: 1.1rem;
    margin: 0;
    color: vaR(--main-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.profile_story_page p,
.works_map_page p,
.contact_canvas_page p,
.about_editorial_page p,
.policy_document_page p,
.terms_document_page p,
.profile_story_page li,
.works_map_page li,
.contact_canvas_page li,
.about_editorial_page li,
.policy_document_page li,
.terms_document_page li,
.policy_document_toc a {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--text-paragraph);
    margin-bottom: 0.25rem;
}

.profile_story_eyebrow,
.works_map_eyebrow,
.contact_canvas_eyebrow,
.about_editorial_eyebrow,
.policy_document_eyebrow,
.terms_document_eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #e6f6ff;
    color: #3b9ed8;
    margin-bottom: 1rem;
}

.profile_story_btn,
.works_map_btn,
.contact_canvas_btn,
.about_editorial_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #ccecff;
}

.profile_story_hero {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
    gap: 1rem;
}

.profile_story_intro,
.profile_story_snapshot,
.profile_story_step_card,
.profile_story_note {
    border-radius: 26px;
    border: 1px solid #d7f0ff;
    box-shadow: 0 14px 30px rgba(92, 180, 232, 0.08);
}

.profile_story_intro {
    background: #ffffff;
    padding: 1.5rem;
}

.profile_story_intro p {
    margin-top: 0.8rem;
    max-width: 58ch;
}

.profile_story_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.profile_story_btn.is_primary {
    background: #69c3f3;
    color: #fff;
    border-color: #69c3f3;
}

.profile_story_btn.is_secondary {
    background: #fff;
    color: #4eaee6;
    border-color: #ccecff;
}

.profile_story_snapshot {
    background: #edf8ff;
    color: vaR(--main-color);
    padding: 1.4rem;
}

.profile_story_snapshot_head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}

.profile_story_snapshot_head span {
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
}

.profile_story_snapshot_head strong {
    font-size: 1.4rem;
    color: #58b8ea;
}

.profile_story_snapshot_body {
    display: grid;
    gap: 0.8rem;
}

.profile_story_metric h2 {
    font-size: 1rem;
    color: var(--main-color);
    font-weight: 600;
}

.profile_story_metric p {
    color: var(--text-paragraph);
}

.profile_story_steps,
.profile_story_notes {
    margin-top: 2.5rem;
}

.profile_story_steps_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.profile_story_step_card {
    background: #fff;
    padding: 1.15rem;
}

.profile_story_step_no {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #eaf7ff;
    color: #58b8ea;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.profile_story_note {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 1rem;
    background: #fff;
    padding: 1.2rem;
}

.profile_story_note+.profile_story_note {
    margin-top: 1rem;
}

.profile_story_note_index {
    font-size: 1.2rem;
    font-weight: 800;
    color: #7ac6ee;
}

.works_map_header,
.works_map_lanes,
.works_map_explainers {
    display: grid;
    gap: 1rem;
}

.works_map_header {
    grid-template-columns: minmax(0, 1.3fr) auto;
    align-items: end;
}

.works_map_header_copy p {
    margin-top: 0.75rem;
    max-width: 60ch;
}

.works_map_header_actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.works_map_btn.is_primary {
    background: #69c3f3;
    color: #fff;
    border-color: #69c3f3;
}

.works_map_btn.is_secondary {
    background: #fff;
    color: #4eaee6;
    border-color: #ccecff;
}

.works_map_lanes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
}

.works_map_lane,
.works_map_stop_body,
.works_map_explainer {
    background: #fff;
    border: 1px solid #d7f0ff;
    box-shadow: 0 14px 30px rgba(92, 180, 232, 0.08);
    border-radius: 14px;
    padding: 1.2rem;
}

.works_map_timeline {
    margin-top: 2rem;
}

.works_map_track {
    position: relative;
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.works_map_track::before {
    content: "";
    position: absolute;
    inset-block: 0;
    inset-inline-start: 20px;
    width: 2px;
    background: linear-gradient(180deg, #85cbef 0%, #dff3ff 100%);
}

.works_map_stop {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.95rem;
    align-items: start;
}

.works_map_stop_marker {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #69c3f3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
}

.works_map_explainers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.25rem;
}

.contact_canvas_top {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto;
    gap: 1rem;
    align-items: end;
}

.contact_canvas_intro p {
    margin-top: 0.75rem;
    max-width: 60ch;
}

.contact_canvas_cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact_canvas_btn.is_primary {
    background: #69c3f3;
    color: #fff;
    border-color: #69c3f3;
}

.contact_canvas_btn.is_secondary {
    background: #fff;
    color: #4eaee6;
    border-color: #ccecff;
}

.contact_canvas_channels,
.contact_canvas_reasons {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.contact_canvas_channels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact_canvas_channel,
.contact_canvas_reason {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #d7f0ff;
    box-shadow: 0 14px 30px rgba(92, 180, 232, 0.08);
    padding: 1.2rem;
    text-decoration: none;
}

.contact_canvas_channel_label {
    display: block;
    color: var(--accent-color);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.55rem;
    font-weight: 500;
}

.contact_canvas_channel strong {
    display: block;
    font-size: 0.95rem;
    color: var(--main-color);
    line-height: 1.6;
}

.contact_canvas_reasons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about_editorial_hero {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 260px;
    gap: 1rem;
    align-items: stretch;
}

.about_editorial_copy,
.about_editorial_stamp,
.about_editorial_panel,
.about_editorial_block {
    background: #fff;
    border-radius: 26px;
    border: 1px solid #d7f0ff;
    box-shadow: 0 14px 30px rgba(92, 180, 232, 0.08);
    padding: 1.25rem;
}

.about_editorial_copy p {
    margin-top: 0.75rem;
    max-width: 60ch;
}

.about_editorial_stamp {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #edf8ff;
    color: var(--main-color);
}

.about_editorial_stamp span {
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.about_editorial_btn {
    background: #69c3f3;
    color: #fff;
    border-color: #69c3f3;
}

.about_editorial_panels,
.about_editorial_body {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.about_editorial_panels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.policy_document_intro,
.terms_document_intro {
    background: #fff;
    border-radius: 28px;
    border: 1px solid #d7f0ff;
    box-shadow: 0 14px 30px rgba(92, 180, 232, 0.08);
    padding: 1.35rem;
}

.policy_document_intro p,
.terms_document_intro p {
    margin-top: 0.75rem;
    max-width: 75ch;
}

.policy_document_layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.policy_document_toc,
.policy_document_content,
.terms_document_grid {
    display: grid;
    gap: 1rem;
}

.policy_document_toc {
    align-self: start;
    position: sticky;
    top: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #d7f0ff;
    box-shadow: 0 14px 30px rgba(92, 180, 232, 0.08);
    padding: 1rem;
}

.policy_document_toc a {
    text-decoration: none;
    color: #51708a;
}

.policy_document_toc a:hover {
    color: vaR(--main-color);
}

.policy_document_clause,
.terms_document_clause {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #d7f0ff;
    box-shadow: 0 14px 30px rgba(92, 180, 232, 0.08);
    padding: 1.2rem;
}

.policy_document_clause p+p,
.terms_document_clause p+p {
    margin-top: 0.6rem;
}

.terms_document_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
}

.terms_document_no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    border-radius: 12px;
    background: #eaf7ff;
    color: #58b8ea;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
}
