:root {
    --wjp-color-primary: #f05a00;
    --wjp-color-primary-dark: #d94e00;
    --wjp-color-primary-light: #ff7a1a;
    --wjp-color-primary-soft: #fff3eb;
    --wjp-color-white: #ffffff;
    --wjp-color-background: #f8fafc;
    --wjp-color-surface: #ffffff;
    --wjp-color-border: #e5e7eb;
    --wjp-color-text: #1f2937;
    --wjp-color-text-muted: #6b7280;
    --wjp-color-text-light: #9ca3af;
    --wjp-color-success: #15803d;
    --wjp-color-warning: #b45309;
    --wjp-color-danger: #b91c1c;
    --wjp-radius-sm: 6px;
    --wjp-radius-md: 10px;
    --wjp-radius-lg: 16px;
    --wjp-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --wjp-shadow-md: 0 8px 24px rgba(15, 23, 42, 0.1);
    --wjp-container-width: 1200px;
    --wjp-font-body:
        'Be Vietnam Pro', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --wjp-font-heading:
        'Be Vietnam Pro', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --wjp-text-xs: 0.75rem;
    --wjp-text-sm: 0.8125rem;
    --wjp-text-base: 0.9375rem;
    --wjp-text-md: 1rem;
    --wjp-text-lg: 1.125rem;
    --wjp-text-xl: 1.375rem;
    --wjp-heading-sm: clamp(1.125rem, 1.8vw, 1.25rem);
    --wjp-heading-md: clamp(1.375rem, 2.2vw, 1.75rem);
    --wjp-heading-lg: clamp(1.75rem, 3vw, 2.25rem);
    --wjp-line-tight: 1.25;
    --wjp-line-normal: 1.55;
    --wjp-line-relaxed: 1.7;
    --wjp-floating-right: 24px;
    --wjp-floating-bottom: 24px;
    --wjp-floating-gap: 12px;
    --wjp-zalo-size: 58px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--wjp-color-background);
    color: var(--wjp-color-text);
    font-family: var(--wjp-font-body);
    font-size: var(--wjp-text-base);
    line-height: var(--wjp-line-normal);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--wjp-font-heading);
}

h1 {
    font-size: var(--wjp-heading-lg);
    font-weight: 700;
    line-height: 1.22;
}

h2 {
    font-size: var(--wjp-heading-md);
    font-weight: 700;
    line-height: var(--wjp-line-tight);
}

h3,
h4,
h5,
h6 {
    font-size: var(--wjp-heading-sm);
    font-weight: 700;
    line-height: var(--wjp-line-tight);
}

button,
input,
select,
textarea {
    font: inherit;
}

body.wjp-menu-open {
    overflow: hidden;
}

body.wjp-account-modal-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--wjp-color-primary);
}

a:hover {
    color: var(--wjp-color-primary-dark);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--wjp-color-primary);
    outline-offset: 3px;
}

.wjp-container {
    width: min(calc(100% - 32px), var(--wjp-container-width));
    margin-right: auto;
    margin-left: auto;
}

.wjp-site,
.wjp-site-content {
    background: var(--wjp-color-background);
}

#page.wjp-site {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.wjp-site-content {
    flex: 1;
}

.wjp-news-bar {
    background: var(--wjp-color-primary-dark);
    color: var(--wjp-color-white);
}

.wjp-news-bar a {
    color: inherit;
}

.wjp-site-header {
    position: relative;
    background: var(--wjp-color-surface);
    border-bottom: 1px solid var(--wjp-color-border);
    box-shadow: var(--wjp-shadow-sm);
}

.wjp-site-header__inner {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.wjp-site-branding {
    display: flex;
    min-width: 0;
    align-items: center;
}

.wjp-brand,
.wjp-brand__fallback {
    display: inline-flex;
    align-items: center;
    color: var(--wjp-color-text);
    font-size: var(--wjp-text-md);
    font-weight: 700;
    text-decoration: none;
}

.wjp-brand__logo-frame {
    display: flex;
    width: 230px;
    height: 58px;
    align-items: center;
    --wjp-brand-logo-scale: 1;
}

.wjp-brand__logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: scale(var(--wjp-brand-logo-scale));
    transform-origin: center;
}

.wjp-brand__fallback[hidden] {
    display: none;
}

.wjp-brand:focus-visible {
    outline: 3px solid var(--wjp-color-primary);
    outline-offset: 4px;
}

.wjp-menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--wjp-color-border);
    border-radius: var(--wjp-radius-sm);
    background: var(--wjp-color-white);
    color: var(--wjp-color-primary);
    cursor: pointer;
}

.wjp-menu-toggle:hover {
    border-color: var(--wjp-color-primary);
    background: var(--wjp-color-primary-soft);
}

.wjp-menu-toggle__icon,
.wjp-menu-toggle__icon::before,
.wjp-menu-toggle__icon::after {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentcolor;
    content: '';
}

.wjp-menu-toggle__icon {
    position: relative;
}

.wjp-menu-toggle__icon::before,
.wjp-menu-toggle__icon::after {
    position: absolute;
    left: 0;
}

.wjp-menu-toggle__icon::before {
    top: -6px;
}

.wjp-menu-toggle__icon::after {
    top: 6px;
}

.wjp-primary-navigation {
    display: none;
    position: absolute;
    z-index: 10;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    padding: 16px;
    border: 1px solid var(--wjp-color-border);
    border-radius: var(--wjp-radius-md);
    background: var(--wjp-color-white);
    box-shadow: var(--wjp-shadow-md);
}

.wjp-primary-navigation.is-open {
    display: block;
}

.wjp-primary-menu,
.wjp-footer-column ul,
.wjp-contact-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.wjp-primary-menu a {
    display: block;
    padding: 12px;
    border-radius: var(--wjp-radius-sm);
    color: var(--wjp-color-text);
    font-size: var(--wjp-text-sm);
    font-weight: 600;
    text-decoration: none;
}

.wjp-primary-menu a::after {
    display: block;
    width: 0;
    height: 2px;
    margin-top: 4px;
    border-radius: 999px;
    background: var(--wjp-color-primary);
    content: '';
    transition: width 160ms ease;
}

.wjp-primary-menu a:hover,
.wjp-primary-menu a:focus,
.wjp-primary-menu .current-menu-item > a,
.wjp-primary-menu .current-menu-ancestor > a {
    background: transparent;
    color: var(--wjp-color-primary-dark);
}

.wjp-primary-menu a:hover::after,
.wjp-primary-menu a:focus::after,
.wjp-primary-menu .current-menu-item > a::after,
.wjp-primary-menu .current-menu-ancestor > a::after {
    width: 100%;
}

.wjp-header-actions {
    display: grid;
    gap: 8px;
    margin-top: 8px;
}

.wjp-header-action {
    display: flex;
    min-height: 58px;
    padding: 8px 14px;
    align-items: flex-start;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--wjp-radius-sm);
    flex-direction: column;
    font-size: var(--wjp-text-sm);
    line-height: 1.25;
    text-decoration: none;
    transition:
        background 160ms ease,
        border-color 160ms ease,
        color 160ms ease,
        transform 160ms ease;
}

.wjp-header-action__eyebrow {
    margin-bottom: 3px;
    font-size: var(--wjp-text-xs);
    font-weight: 600;
}

.wjp-header-action__label {
    font-size: var(--wjp-text-sm);
    font-weight: 700;
}

.wjp-header-action--text {
    color: var(--wjp-color-text);
}

.wjp-header-action--text:hover {
    background: var(--wjp-color-primary-soft);
    color: var(--wjp-color-primary-dark);
}

.wjp-header-action--secondary {
    border-color: var(--wjp-color-primary);
    background: var(--wjp-color-white);
    color: var(--wjp-color-primary);
}

.wjp-header-action--secondary:focus {
    border-color: var(--wjp-color-primary);
    background: var(--wjp-color-white);
    color: var(--wjp-color-primary);
}

.wjp-header-action--secondary:hover {
    border-color: var(--wjp-color-primary-dark);
    background: var(--wjp-color-primary-soft);
    color: var(--wjp-color-primary-dark);
}

.wjp-header-action--secondary:active {
    border-color: var(--wjp-color-primary-dark);
    background: var(--wjp-color-primary-soft);
    color: var(--wjp-color-primary-dark);
    transform: translateY(1px);
}

.wjp-header-action--secondary {
    cursor: pointer;
}

.wjp-header-account {
    position: relative;
    min-width: 0;
}

.wjp-header-account__toggle {
    width: 100%;
    text-align: left;
}

.wjp-header-account__name {
    display: flex;
    width: 100%;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.wjp-header-account__name-text {
    display: block;
    min-width: 0;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wjp-header-account__chevron {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    transition: transform 160ms ease;
}

.wjp-header-account.is-open .wjp-header-account__chevron,
.wjp-header-account:focus-within .wjp-header-account__chevron {
    transform: rotate(180deg);
}

.wjp-header-account__menu {
    position: absolute;
    z-index: 80;
    top: calc(100% + 8px);
    right: 0;
    display: grid;
    min-width: 210px;
    padding: 8px;
    margin: 0;
    border: 1px solid var(--wjp-color-border);
    border-radius: var(--wjp-radius-md);
    background: var(--wjp-color-white);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
    list-style: none;
}

.wjp-header-account__menu[hidden] {
    display: none;
}

.wjp-header-account.is-open .wjp-header-account__menu {
    display: grid;
}

.wjp-header-account__menu a {
    display: flex;
    min-height: 40px;
    padding: 9px 10px;
    align-items: center;
    border-radius: var(--wjp-radius-sm);
    color: var(--wjp-color-text);
    font-size: var(--wjp-text-sm);
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    transition:
        background-color 160ms ease,
        color 160ms ease;
}

.wjp-header-account__menu a:hover,
.wjp-header-account__menu a:focus-visible {
    background: var(--wjp-color-primary-soft);
    color: var(--wjp-color-primary-dark);
    outline: none;
}

.wjp-header-account__menu a:focus-visible {
    box-shadow: 0 0 0 3px rgba(240, 90, 0, 0.18);
}

.wjp-header-account__menu .wjp-header-account__logout {
    color: var(--wjp-color-danger);
}

.wjp-header-account__menu .wjp-header-account__logout:hover,
.wjp-header-account__menu .wjp-header-account__logout:focus-visible {
    background: rgba(185, 28, 28, 0.08);
    color: var(--wjp-color-danger);
}

.wjp-header-action--primary {
    background: var(--wjp-color-primary);
    color: var(--wjp-color-white);
}

.wjp-header-action--primary:hover {
    background: var(--wjp-color-primary-dark);
    color: var(--wjp-color-white);
}

.wjp-site-header--employer {
    border-bottom-color: var(--wjp-color-border);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.wjp-anchor-target,
#khuyen-mai,
#dang-ky-tu-van {
    scroll-margin-top: 88px;
}

.wjp-mobile-contact {
    padding-top: 16px;
    margin: 16px 0 0;
    border-top: 1px solid var(--wjp-color-border);
    color: var(--wjp-color-text-muted);
    font-size: var(--wjp-text-sm);
}

.wjp-mobile-contact a {
    margin-left: 4px;
    font-weight: 700;
    text-decoration: none;
}

.wjp-account-modal[hidden] {
    display: none;
}

.wjp-account-modal {
    position: fixed;
    z-index: 200;
    inset: 0;
    display: flex;
    padding: 16px;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.56);
}

.wjp-account-modal__dialog {
    position: relative;
    width: min(100%, 480px);
    padding: 32px;
    border-radius: var(--wjp-radius-lg);
    background: var(--wjp-color-white);
    box-shadow: var(--wjp-shadow-md);
}

.wjp-account-modal__dialog h2 {
    margin: 0 40px 12px 0;
    color: var(--wjp-color-text);
    font-size: var(--wjp-heading-md);
}

.wjp-account-modal__dialog p {
    margin: 0 0 24px;
    color: var(--wjp-color-text-muted);
}

.wjp-account-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    width: 40px;
    height: 40px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--wjp-color-primary-soft);
    color: var(--wjp-color-primary-dark);
    font-size: var(--wjp-text-xl);
    cursor: pointer;
}

.wjp-account-modal__close:hover,
.wjp-account-modal__close:focus {
    background: var(--wjp-color-primary-light);
    color: var(--wjp-color-white);
}

.wjp-account-modal__close:active {
    background: var(--wjp-color-primary-dark);
    transform: scale(0.96);
}

.wjp-site-footer {
    padding: 32px 0;
    background: var(--wjp-color-text);
    border-top: 1px solid var(--wjp-color-border);
    color: var(--wjp-color-white);
}

.wjp-site-footer__grid {
    display: grid;
    gap: 32px 24px;
}

.wjp-site-footer__slogan,
.wjp-site-footer__description,
.wjp-site-footer__copyright {
    margin: 0;
}

.wjp-site-footer__description,
.wjp-site-footer__copyright {
    margin-top: 8px;
    color: #d1d5db;
    font-size: var(--wjp-text-sm);
}

.wjp-site-footer__social {
    margin-top: 20px;
}

.wjp-site-footer__social p {
    margin: 0 0 10px;
    color: var(--wjp-color-white);
    font-size: var(--wjp-text-sm);
    font-weight: 700;
}

.wjp-site-footer__social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wjp-site-footer__social-links a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 30%;
    background: var(--wjp-color-white);
    color: var(--wjp-color-primary);
    text-decoration: none;
    transition:
        background-color 160ms ease,
        color 160ms ease,
        transform 160ms ease;
}

.wjp-site-footer__social-links a:hover,
.wjp-site-footer__social-links a:focus-visible {
    background: var(--wjp-color-primary);
    color: var(--wjp-color-white);
    transform: translateY(-2px);
}

.wjp-site-footer__social-links a:focus-visible {
    outline: 2px solid var(--wjp-color-white);
    outline-offset: 3px;
}

.wjp-site-footer__social-links img,
.wjp-site-footer__social-links svg {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.wjp-site-footer__social-links svg {
    fill: currentColor;
    stroke-width: 2;
}

.wjp-site-footer__map {
    width: min(100%, 280px);
    margin-top: 20px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--wjp-radius-md);
    background: var(--wjp-color-white);
}

.wjp-site-footer__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.wjp-footer-partner {
    display: flex;
    width: 102px;
    height: 48px;
    padding: 8px 10px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
}

.wjp-footer-partner__logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 88%;
    max-height: 30px;
    object-fit: contain;
    transform: scale(var(--wjp-partner-logo-scale, 1));
    transform-origin: center;
}

.wjp-footer-partner--mobifone .wjp-footer-partner__logo {
    --wjp-partner-logo-scale: 1.05;
    width: 96px;
    max-width: none;
    max-height: none;
}

.wjp-footer-partner--momo .wjp-footer-partner__logo {
    max-height: 28px;
}

.wjp-site-footer__copyright {
    padding-top: 24px;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.wjp-site-footer__slogan {
    margin-top: 16px;
    color: var(--wjp-color-primary-light);
    font-weight: 600;
}

.wjp-site-footer__brand .wjp-brand,
.wjp-site-footer__brand .wjp-brand__fallback {
    color: var(--wjp-color-white);
}

.wjp-brand--footer .wjp-brand__logo-frame {
    width: 200px;
    height: 76px;
    justify-content: flex-start;
}

.wjp-contact-list {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    font-size: var(--wjp-text-sm);
}

.wjp-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.wjp-contact-list svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: var(--wjp-color-primary-light);
}

.wjp-contact-list a,
.wjp-footer-column a {
    color: #e5e7eb;
    text-decoration: none;
}

.wjp-contact-list a:hover,
.wjp-footer-column a:hover {
    color: var(--wjp-color-primary-light);
}

.wjp-footer-column h2 {
    margin: 0 0 16px;
    color: var(--wjp-color-white);
    font-size: var(--wjp-text-sm);
    line-height: 1.3;
}

.wjp-footer-column ul {
    display: grid;
    gap: 10px;
    font-size: var(--wjp-text-sm);
}

.wjp-floating-contact {
    position: fixed;
    z-index: 100;
    right: var(--wjp-floating-right);
    bottom: calc(var(--wjp-floating-bottom) + env(safe-area-inset-bottom));
}

.wjp-floating-contact__actions {
    position: absolute;
    right: 0;
    bottom: calc(var(--wjp-zalo-size) + var(--wjp-floating-gap));
    display: grid;
    gap: var(--wjp-floating-gap);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition:
        visibility 0s linear 180ms,
        opacity 180ms ease,
        transform 180ms ease;
}

.wjp-floating-contact.is-open .wjp-floating-contact__actions {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
}

.wjp-floating-contact__action,
.wjp-floating-contact__toggle {
    display: inline-flex;
    width: var(--wjp-zalo-size);
    height: var(--wjp-zalo-size);
    padding: 0;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--wjp-color-white);
    box-shadow: var(--wjp-shadow-md);
    transition:
        transform 160ms ease,
        box-shadow 160ms ease;
    border: 1px solid var(--wjp-color-border);
    color: var(--wjp-color-primary);
    cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.wjp-floating-contact__action svg,
.wjp-floating-contact__toggle svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.wjp-floating-contact__action img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wjp-floating-contact__action--zalo img {
    transform-origin: 18% 50%;
}

.wjp-floating-contact__toggle .wjp-floating-contact__close-icon {
    display: none;
}

.wjp-floating-contact.is-open .wjp-floating-contact__toggle .wjp-floating-contact__message-icon {
    display: none;
}

.wjp-floating-contact.is-open .wjp-floating-contact__toggle .wjp-floating-contact__close-icon {
    display: block;
}

.wjp-floating-contact:not(.is-open) .wjp-floating-contact__toggle {
    animation: wjp-floating-contact-attention 3s ease-out infinite;
}

@keyframes wjp-floating-contact-attention {
    0%,
    72%,
    100% {
        box-shadow: var(--wjp-shadow-md);
    }

    80% {
        box-shadow:
            0 0 0 8px rgba(240, 90, 0, 0.16),
            var(--wjp-shadow-md);
    }
}

.wjp-floating-contact .wjp-floating-contact__action:hover,
.wjp-floating-contact .wjp-floating-contact__toggle:hover,
.wjp-floating-contact .wjp-floating-contact__action:focus-visible,
.wjp-floating-contact .wjp-floating-contact__toggle:focus-visible {
    animation: none;
    transform: translateY(-3px);
    border-color: var(--wjp-color-primary);
    background-color: var(--wjp-color-white);
    color: var(--wjp-color-primary-dark);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.wjp-floating-contact .wjp-floating-contact__action:active,
.wjp-floating-contact .wjp-floating-contact__toggle:active {
    transform: translateY(-1px);
    background-color: var(--wjp-color-primary-soft);
    border-color: var(--wjp-color-primary-dark);
    color: var(--wjp-color-primary-dark);
}

.wjp-floating-contact .wjp-floating-contact__toggle:focus:not(:focus-visible) {
	border-color: var(--wjp-color-border);
	color: var(--wjp-color-primary);
	background-color: var(--wjp-color-white);
	outline: 0;
}

.wjp-floating-contact__action:focus-visible,
.wjp-floating-contact__toggle:focus-visible {
    outline: 3px solid var(--wjp-color-primary);
    outline-offset: 4px;
}

body.wjp-floating-contact-open #ast-scroll-top.ast-scroll-to-top-right {
    bottom: calc(
        var(--wjp-floating-bottom) + env(safe-area-inset-bottom) + var(--wjp-zalo-size) +
            var(--wjp-floating-gap) + var(--wjp-zalo-size) + var(--wjp-floating-gap) +
            var(--wjp-zalo-size) + var(--wjp-floating-gap) + var(--wjp-zalo-size)
    );
}

#ast-scroll-top.ast-scroll-to-top-right {
    position: fixed;
    right: var(--wjp-floating-right);
    bottom: calc(
        var(--wjp-floating-bottom) + env(safe-area-inset-bottom) + var(--wjp-zalo-size) +
            var(--wjp-floating-gap)
    );
    z-index: 99;
    width: var(--wjp-zalo-size);
    height: var(--wjp-zalo-size);
    line-height: var(--wjp-zalo-size);
    border-radius: 50%;
    background: var(--wjp-color-primary);
    color: var(--wjp-color-white);
    box-shadow: var(--wjp-shadow-md);
    animation: wjp-scroll-top-enter 220ms ease-out;
    transition:
        transform 180ms ease,
        opacity 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

#ast-scroll-top.ast-scroll-to-top-right:hover {
    transform: translateY(-2px);
    background: var(--wjp-color-primary-dark);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

#ast-scroll-top.ast-scroll-to-top-right:focus-visible {
    outline: 3px solid var(--wjp-color-primary);
    outline-offset: 4px;
}

@keyframes wjp-scroll-top-enter {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.92);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (min-width: 768px) {
    .wjp-container {
        width: min(calc(100% - 40px), var(--wjp-container-width));
    }

    .wjp-site-footer {
        padding: 40px 0;
    }

    .wjp-site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .wjp-brand__logo-frame {
        width: 180px;
        height: 46px;
    }

    .wjp-brand--footer .wjp-brand__logo-frame {
        width: 190px;
        height: 72px;
    }

    :root {
        --wjp-floating-right: 16px;
        --wjp-floating-bottom: 16px;
        --wjp-floating-gap: 10px;
        --wjp-zalo-size: 52px;
    }
}

@media (min-width: 1024px) {
    .wjp-container {
        width: min(calc(100% - 48px), var(--wjp-container-width));
    }

    .wjp-menu-toggle {
        display: none;
    }

    .wjp-primary-navigation {
        display: flex;
        position: static;
        padding: 0;
        align-items: center;
        gap: 20px;
        border: 0;
        box-shadow: none;
    }

    .wjp-primary-menu {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .wjp-primary-menu a {
        padding: 10px 12px;
    }

    .wjp-site-header--employer .wjp-primary-menu a {
        white-space: nowrap;
    }

    .wjp-header-actions {
        display: flex;
        margin-top: 0;
        align-items: center;
        gap: 8px;
    }

    .wjp-header-action {
        min-height: 56px;
        padding: 8px 14px;
    }

    .wjp-mobile-contact {
        display: none;
    }

    .wjp-site-footer__grid {
        grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(0, 1fr));
    }

    .wjp-site-footer__copyright {
        grid-column: 1 / -1;
    }

    .wjp-footer-partner {
        width: 112px;
        height: 54px;
        padding: 10px;
    }
}

@media (min-width: 1024px) {
    .wjp-footer-partner {
        width: 120px;
        height: 56px;
        padding: 10px 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto;
        transition-duration: 0.01ms;
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
    }

    #ast-scroll-top.ast-scroll-to-top-right {
        animation: none;
        transition: none;
    }
}

/* Front-end typography scale. Interactive control dimensions stay unchanged. */
.wjp-site-header,
.wjp-site-footer,
.wjp-account-modal {
    font-size: var(--wjp-text-base);
}

.wjp-site-footer__slogan,
.wjp-site-footer__description {
    font-size: var(--wjp-text-sm);
    line-height: var(--wjp-line-normal);
}

.wjp-site-footer__copyright,
.wjp-contact-list,
.wjp-footer-column ul {
    font-size: var(--wjp-text-sm);
    line-height: var(--wjp-line-normal);
}

.wjp-footer-column h2 {
    font-size: var(--wjp-text-sm);
    line-height: var(--wjp-line-tight);
}
