/* ================================================================
   PUBLIC CONTENT PAGES
   News, static pages and customer booking share the homepage theme.
   ================================================================ */

.nencer-public-button {
    align-items: center;
    background: var(--home-primary);
    border: 1px solid var(--home-primary);
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-weight: 750;
    gap: 8px;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.nencer-public-button:hover,
.nencer-public-button:focus-visible {
    background: var(--home-primary-dark);
    border-color: var(--home-primary-dark);
    color: #fff;
    transform: translateY(-1px);
}

.nencer-public-button:disabled {
    cursor: not-allowed;
    opacity: .6;
    transform: none;
}

.nencer-public-eyebrow {
    color: var(--home-primary);
    display: block;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ---------- News list ---------- */
.nencer-news-hero {
    background: var(--home-primary-soft);
    border-bottom: 1px solid var(--home-primary-pale);
    overflow: hidden;
    padding: 68px 0;
    position: relative;
}

.nencer-news-hero::after {
    border: 1px solid var(--home-primary-pale);
    border-radius: 50%;
    content: "";
    height: 360px;
    position: absolute;
    right: -120px;
    top: -190px;
    width: 360px;
}

.nencer-news-hero-inner {
    align-items: center;
    display: grid;
    gap: clamp(42px, 7vw, 100px);
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    position: relative;
    z-index: 1;
}

.nencer-news-breadcrumb {
    align-items: center;
    color: var(--home-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    gap: 9px;
    margin-bottom: 22px;
}

.nencer-news-breadcrumb a {
    color: var(--home-primary);
}

.nencer-news-breadcrumb span {
    color: var(--home-muted);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.nencer-news-breadcrumb i {
    color: #91a5a1;
    font-size: 8px;
}

.nencer-news-hero-inner > div:first-child > span {
    color: var(--home-primary);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .12em;
}

.nencer-news-hero h1 {
    color: var(--home-ink);
    font-size: clamp(40px, 4.6vw, 60px);
    font-weight: 850;
    letter-spacing: -.035em;
    line-height: 1.1;
    margin: 10px 0 16px;
}

.nencer-news-hero p {
    color: var(--home-muted);
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    max-width: 760px;
}

.nencer-news-hero-card {
    align-items: flex-start;
    background: var(--home-primary);
    border-radius: 10px;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 210px;
    padding: 34px;
}

.nencer-news-hero-card > i {
    font-size: 38px;
    margin-bottom: auto;
}

.nencer-news-hero-card strong {
    color: #fff;
    font-size: 21px;
    margin-top: 24px;
}

.nencer-news-hero-card small {
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.5;
    margin-top: 5px;
}

.nencer-news-section {
    background: #fff;
    padding: 64px 0 82px !important;
}

.nencer-news-toolbar {
    align-items: center;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 10px;
    display: flex;
    gap: 22px;
    justify-content: space-between;
    margin-bottom: 28px;
    padding: 16px;
}

.nencer-news-toolbar nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nencer-news-toolbar nav a {
    border: 1px solid var(--home-line);
    border-radius: 8px;
    color: var(--home-muted);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 15px;
}

.nencer-news-toolbar nav a:hover,
.nencer-news-toolbar nav a.active {
    background: var(--home-primary);
    border-color: var(--home-primary);
    color: #fff;
}

.nencer-news-search {
    flex: 0 0 330px;
    position: relative;
}

.nencer-news-search i {
    color: var(--home-primary);
    left: 16px;
    position: absolute;
    top: 17px;
}

.nencer-news-search input {
    border: 1px solid var(--home-line);
    border-radius: 8px;
    font-size: 14px;
    min-height: 50px;
    padding-left: 43px;
}

.nencer-news-search input:focus {
    border-color: var(--home-primary);
    box-shadow: 0 0 0 3px var(--home-primary-soft);
}

.nencer-news-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nencer-news-card {
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 10px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    transition: border-color .18s ease, transform .18s ease;
}

.nencer-news-card:hover {
    border-color: color-mix(in srgb, var(--home-primary), #fff 55%);
    box-shadow: none;
    transform: translateY(-3px);
}

.nencer-news-card-image {
    aspect-ratio: 16 / 9;
    background: var(--home-primary-soft);
    display: block;
    overflow: hidden;
}

.nencer-news-card-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
    width: 100%;
}

.nencer-news-card:hover .nencer-news-card-image img {
    transform: scale(1.035);
}

.nencer-news-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.nencer-news-meta {
    align-items: center;
    color: #82938f;
    display: flex;
    font-size: 12px;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 13px;
    text-transform: uppercase;
}

.nencer-news-meta span {
    color: var(--home-primary);
    font-weight: 800;
    letter-spacing: .06em;
}

.nencer-news-card h2 {
    font-size: 22px;
    line-height: 1.35;
    margin: 0 0 11px;
}

.nencer-news-card h2 a {
    color: var(--home-ink);
}

.nencer-news-card h2 a:hover {
    color: var(--home-primary);
}

.nencer-news-card p {
    color: var(--home-muted);
    display: -webkit-box;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.nencer-news-read {
    color: var(--home-primary);
    font-size: 14px;
    font-weight: 800;
    margin-top: auto;
}

.nencer-news-read i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform .18s ease;
}

.nencer-news-read:hover {
    color: var(--home-primary-dark);
}

.nencer-news-read:hover i {
    transform: translateX(4px);
}

.nencer-news-empty {
    background: var(--home-primary-soft);
    border: 1px dashed var(--home-primary-pale);
    border-radius: 10px;
    color: var(--home-muted);
    font-size: 16px;
    padding: 58px;
    text-align: center;
}

.nencer-news-pagination {
    display: flex;
    gap: 7px;
    justify-content: center;
    margin-top: 38px;
}

.nencer-news-pagination button {
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 8px;
    color: var(--home-muted);
    height: 42px;
    min-width: 42px;
}

.nencer-news-pagination button:hover:not(:disabled),
.nencer-news-pagination button.active {
    background: var(--home-primary);
    border-color: var(--home-primary);
    color: #fff;
}

/* ---------- News detail ---------- */
.nencer-news-detail {
    background: #fff;
}

.nencer-news-detail-header {
    background: var(--home-primary-soft);
    border-bottom: 1px solid var(--home-primary-pale);
    padding: 56px 0 52px;
    text-align: center;
}

.nencer-news-detail-heading {
    max-width: 1020px;
}

.nencer-news-detail-heading .nencer-news-breadcrumb {
    justify-content: center;
    margin-bottom: 20px;
}

.nencer-news-detail-heading > a {
    color: var(--home-primary);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nencer-news-detail-heading h1 {
    color: var(--home-ink);
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 850;
    letter-spacing: -.03em;
    line-height: 1.13;
    margin: 14px auto 17px;
}

.nencer-news-detail-heading > p {
    color: var(--home-muted);
    font-size: 18px;
    line-height: 1.7;
    margin: 0 auto 20px;
    max-width: 830px;
}

.nencer-news-detail-heading > div {
    color: #758985;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    gap: 22px;
    justify-content: center;
}

.nencer-news-detail-heading i {
    color: var(--home-primary);
    margin-right: 5px;
}

.nencer-news-detail-cover {
    border-radius: 10px;
    box-shadow: none;
    display: block;
    margin: 38px auto 0;
    max-height: 620px;
    object-fit: cover;
    width: min(1120px, 100%);
}

.nencer-news-detail-layout {
    display: grid;
    gap: 44px;
    grid-template-columns: minmax(0, 1fr) 330px;
    padding-bottom: 76px;
    padding-top: 46px;
}

.nencer-news-content {
    color: #405c56;
    font-size: 17px;
    line-height: 1.85;
    min-width: 0;
}

.nencer-news-content h1,
.nencer-news-content h2,
.nencer-news-content h3,
.nencer-news-content h4 {
    color: var(--home-ink);
    font-weight: 800;
    line-height: 1.35;
    margin: 1.5em 0 .55em;
}

.nencer-news-content a {
    color: var(--home-primary);
}

.nencer-news-content img {
    border-radius: 10px;
    height: auto !important;
    margin: 20px auto;
    max-width: 100% !important;
}

.nencer-news-content blockquote {
    background: var(--home-primary-soft);
    border-left: 4px solid var(--home-primary);
    margin: 24px 0;
    padding: 20px 24px;
}

.nencer-news-content table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
}

.nencer-news-detail-layout aside {
    align-self: start;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 10px;
    padding: 24px;
    position: sticky;
    top: 96px;
}

.nencer-news-detail-layout aside h2 {
    color: var(--home-ink);
    font-size: 21px;
    margin-bottom: 14px;
}

.nencer-related-news {
    align-items: center;
    border-bottom: 1px solid var(--home-line);
    display: flex;
    gap: 12px;
    padding: 13px 0;
}

.nencer-related-news img {
    border-radius: 8px;
    height: 66px;
    object-fit: cover;
    width: 92px;
}

.nencer-related-news span {
    display: grid;
    min-width: 0;
}

.nencer-related-news strong {
    color: var(--home-ink);
    display: -webkit-box;
    font-size: 13px;
    line-height: 1.45;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.nencer-related-news small {
    color: #82938f;
    font-size: 11px;
    margin-top: 4px;
}

.nencer-news-back {
    color: var(--home-primary);
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    margin-top: 20px;
}

/* ---------- Static page ---------- */
.nencer-static-page {
    background: #fff;
    color: var(--home-ink);
}

.nencer-static-hero {
    background: var(--home-primary-soft);
    border-bottom: 1px solid var(--home-primary-pale);
    padding: 62px 0 58px;
}

.nencer-static-hero-inner {
    max-width: 1050px;
}

.nencer-static-hero nav {
    align-items: center;
    color: var(--home-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    gap: 9px;
    margin-bottom: 25px;
}

.nencer-static-hero nav a {
    color: var(--home-primary);
}

.nencer-static-hero nav i {
    font-size: 8px;
}

.nencer-static-hero h1 {
    color: var(--home-ink);
    font-size: clamp(38px, 4.6vw, 60px);
    font-weight: 850;
    letter-spacing: -.035em;
    line-height: 1.12;
    margin: 10px 0 18px;
}

.nencer-static-meta {
    color: var(--home-muted);
    font-size: 14px;
}

.nencer-static-meta i {
    color: var(--home-primary);
    margin-right: 6px;
}

.nencer-static-section {
    padding: 56px 0 82px;
}

.nencer-static-layout {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) 330px;
}

.nencer-static-card,
.nencer-static-support,
.nencer-static-links {
    border: 1px solid var(--home-line);
    border-radius: 10px;
    overflow: hidden;
}

.nencer-static-cover {
    display: block;
    height: clamp(300px, 34vw, 510px);
    object-fit: cover;
    width: 100%;
}

.nencer-static-content {
    color: #405c56;
    font-size: 17px;
    line-height: 1.85;
    padding: clamp(26px, 4vw, 48px);
}

.nencer-static-content > :first-child {
    margin-top: 0;
}

.nencer-static-content > :last-child {
    margin-bottom: 0;
}

.nencer-static-content h1,
.nencer-static-content h2,
.nencer-static-content h3,
.nencer-static-content h4 {
    color: var(--home-ink);
    font-weight: 800;
    line-height: 1.35;
    margin: 1.45em 0 .55em;
}

.nencer-static-content a {
    color: var(--home-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.nencer-static-content img,
.nencer-static-content video,
.nencer-static-content iframe {
    border-radius: 10px;
    height: auto;
    max-width: 100%;
}

.nencer-static-content blockquote {
    background: var(--home-primary-soft);
    border-left: 4px solid var(--home-primary);
    margin: 24px 0;
    padding: 20px 24px;
}

.nencer-static-content table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
}

.nencer-static-aside {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 96px;
}

.nencer-static-support {
    background: var(--home-primary);
    border-color: var(--home-primary);
    color: #fff;
    padding: 27px;
}

.nencer-static-support > span {
    align-items: center;
    background: rgba(255, 255, 255, .14);
    border-radius: 10px;
    display: flex;
    font-size: 24px;
    height: 52px;
    justify-content: center;
    width: 52px;
}

.nencer-static-support h2 {
    color: #fff;
    font-size: 22px;
    margin: 18px 0 8px;
}

.nencer-static-support p {
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 20px;
}

.nencer-static-support .nencer-public-button {
    background: #fff;
    border-color: #fff;
    color: var(--home-primary-dark);
    margin-bottom: 15px;
    width: 100%;
}

.nencer-static-contact {
    color: #fff;
    display: block;
    font-size: 14px;
    margin-top: 9px;
}

.nencer-static-contact:hover {
    color: #fff;
}

.nencer-static-contact i {
    margin-right: 7px;
    width: 16px;
}

.nencer-static-links {
    background: #fff;
    padding: 24px;
}

.nencer-static-links h2 {
    color: var(--home-ink);
    font-size: 20px;
    margin: 0 0 12px;
}

.nencer-static-links a {
    align-items: center;
    border-bottom: 1px solid var(--home-line);
    color: var(--home-muted);
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    padding: 13px 0;
}

.nencer-static-links a:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.nencer-static-links a:hover {
    color: var(--home-primary);
}

.nencer-static-links i {
    font-size: 10px;
}

.nencer-static-not-found {
    background: var(--home-primary-soft);
    min-height: 520px;
    padding: 100px 0;
    text-align: center;
}

.nencer-static-not-found span {
    color: var(--home-primary);
    font-size: 15px;
    font-weight: 850;
    letter-spacing: .12em;
}

.nencer-static-not-found h1 {
    color: var(--home-ink);
    font-size: clamp(38px, 5vw, 58px);
    margin: 10px 0 14px;
}

.nencer-static-not-found p {
    color: var(--home-muted);
    font-size: 17px;
    margin-bottom: 28px;
}

/* ---------- Customer booking with public shell ---------- */
.customer-booking-page {
    background: #fff;
    margin: 0 auto;
    max-width: var(--home-container);
    padding: 28px 32px 76px;
}

.customer-booking-hero {
    align-items: center;
    background: var(--home-primary-soft);
    border: 1px solid var(--home-primary-pale);
    border-radius: 10px;
    color: var(--home-ink);
    display: grid;
    gap: clamp(35px, 6vw, 80px);
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
    margin-bottom: 24px;
    overflow: hidden;
    padding: clamp(34px, 5vw, 62px);
    position: relative;
}

.customer-booking-hero::before {
    border: 1px solid var(--home-primary-pale);
    border-radius: 50%;
    height: 300px;
    right: -120px;
    top: -180px;
    width: 300px;
}

.customer-booking-hero::after {
    display: none;
}

.customer-booking-hero-copy,
.customer-booking-steps {
    position: relative;
    z-index: 1;
}

.customer-booking-breadcrumb {
    align-items: center;
    color: var(--home-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    gap: 9px;
    margin-bottom: 22px;
}

.customer-booking-breadcrumb a {
    color: var(--home-primary);
}

.customer-booking-breadcrumb i {
    font-size: 8px;
}

.customer-booking-hero .booking-eyebrow {
    color: var(--home-primary);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.customer-booking-hero h1 {
    color: var(--home-ink);
    font-size: clamp(38px, 4.3vw, 58px);
    font-weight: 850;
    letter-spacing: -.035em;
    line-height: 1.1;
    margin: 10px 0 17px;
}

.customer-booking-hero p {
    color: var(--home-muted);
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
    max-width: 720px;
}

.customer-booking-steps {
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 10px;
    display: grid;
    gap: 0;
    padding: 9px 20px;
}

.customer-booking-steps > div {
    align-items: center;
    border-bottom: 1px solid var(--home-line);
    display: flex;
    gap: 13px;
    padding: 15px 0;
}

.customer-booking-steps > div:last-child {
    border-bottom: 0;
}

.customer-booking-steps span {
    align-items: center;
    background: var(--home-primary);
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex: 0 0 34px;
    font-size: 12px;
    font-weight: 900;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.customer-booking-steps strong,
.customer-booking-steps small {
    display: block;
}

.customer-booking-steps strong {
    color: var(--home-ink);
    font-size: 14px;
}

.customer-booking-steps small {
    color: var(--home-muted);
    font-size: 12px;
    margin-top: 2px;
}

.customer-booking-layout {
    align-items: start;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1.5fr) minmax(310px, .5fr);
}

.customer-booking-card {
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 10px;
    box-shadow: none;
    overflow: hidden;
}

.customer-booking-card > header {
    background: var(--home-primary-soft);
    border-bottom: 1px solid var(--home-line);
    padding: 24px 28px;
}

.customer-booking-card > header h2 {
    color: var(--home-ink);
    font-size: 24px;
    font-weight: 850;
    margin: 0 0 6px;
}

.customer-booking-card > header p {
    color: var(--home-muted);
    font-size: 14px;
    margin: 0;
}

.customer-booking-form {
    padding: 28px;
}

.customer-booking-fields {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customer-booking-fields label {
    color: var(--home-ink);
    font-size: 14px;
    font-weight: 750;
}

.customer-booking-fields label > span {
    color: #cf3434;
}

.customer-booking-fields .form-control,
.customer-booking-fields .form-select {
    border: 1px solid var(--home-line);
    border-radius: 8px;
    color: var(--home-ink);
    font-size: 14px;
    margin-top: 7px;
    min-height: 50px;
}

.customer-booking-fields textarea.form-control {
    min-height: 128px;
}

.customer-booking-fields .form-control:focus,
.customer-booking-fields .form-select:focus {
    border-color: var(--home-primary);
    box-shadow: 0 0 0 3px var(--home-primary-soft);
}

.customer-booking-fields .wide {
    grid-column: 1 / -1;
}

.booking-time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.booking-time-slots button {
    background: var(--home-primary-soft);
    border: 1px solid var(--home-line);
    border-radius: 8px;
    color: var(--home-muted);
    font-size: 13px;
    font-weight: 750;
    min-width: 72px;
    padding: 10px 12px;
}

.booking-time-slots button:hover,
.booking-time-slots button.active {
    background: var(--home-primary);
    border-color: var(--home-primary);
    color: #fff;
}

.customer-booking-submit {
    align-items: center;
    background: #fbfdfd;
    border-top: 1px solid var(--home-line);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin: 27px -28px -28px;
    padding: 20px 28px;
}

.customer-booking-submit small {
    color: var(--home-muted);
    font-size: 12px;
    line-height: 1.55;
    max-width: 480px;
}

.customer-booking-submit .nencer-public-button {
    flex: 0 0 auto;
    min-width: 210px;
}

.customer-booking-aside {
    display: grid;
    gap: 18px;
}

.booking-support-card {
    background: var(--home-primary);
    border: 1px solid var(--home-primary);
    border-radius: 10px;
    color: #fff;
    padding: 28px;
}

.booking-support-card > i {
    color: #fff;
    font-size: 30px;
    margin-bottom: 17px;
}

.booking-support-card h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 850;
    margin: 0 0 9px;
}

.booking-support-card p {
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 17px;
}

.booking-support-card a {
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 750;
    margin-top: 9px;
}

.booking-support-card a:hover {
    color: #fff;
}

.booking-support-card a i {
    margin-right: 7px;
    width: 17px;
}

.customer-booking-history {
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 10px;
    overflow: hidden;
}

.customer-booking-history > header {
    border-bottom: 1px solid var(--home-line);
    padding: 18px 20px;
}

.customer-booking-history h3 {
    color: var(--home-ink);
    font-size: 17px;
}

.customer-booking-history header span {
    background: var(--home-primary-soft);
    color: var(--home-primary);
    font-size: 11px;
}

.customer-booking-history-item {
    border-bottom-color: var(--home-line);
    padding: 16px 20px;
}

.customer-booking-history-item strong {
    color: var(--home-ink);
    font-size: 13px;
}

.customer-booking-history-item > span {
    color: var(--home-muted);
    font-size: 12px;
}

.customer-booking-history-item small {
    color: var(--home-primary);
    font-size: 11px;
}

.customer-booking-success {
    padding: 56px 32px;
}

.customer-booking-success-icon {
    background: var(--home-primary-soft);
    color: var(--home-primary);
}

.customer-booking-success h2 {
    color: var(--home-ink);
    font-size: 28px;
}

.customer-booking-success > p {
    color: var(--home-muted);
    font-size: 16px;
    line-height: 1.7;
}

.customer-booking-ticket {
    background: var(--home-primary-soft);
    border-color: var(--home-primary-pale);
    border-radius: 10px;
}

.customer-booking-ticket span {
    color: var(--home-muted);
    font-size: 10px;
}

.customer-booking-ticket strong {
    color: var(--home-ink);
    font-size: 14px;
}

.customer-booking-page .booking-empty {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: center;
    min-height: 280px;
}

.customer-booking-page .booking-empty i {
    color: var(--home-primary);
}

@media (max-width: 1100px) {
    .nencer-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nencer-news-detail-layout,
    .nencer-static-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
    }

    .customer-booking-hero,
    .customer-booking-layout {
        grid-template-columns: 1fr;
    }

    .customer-booking-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 0 18px;
    }

    .customer-booking-steps > div {
        border-bottom: 0;
        border-right: 1px solid var(--home-line);
        padding: 18px;
    }

    .customer-booking-steps > div:last-child {
        border-right: 0;
    }
}

@media (max-width: 820px) {
    .nencer-news-hero {
        padding: 52px 0;
    }

    .nencer-news-hero-inner {
        grid-template-columns: 1fr;
    }

    .nencer-news-hero-card {
        min-height: 180px;
    }

    .nencer-news-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .nencer-news-search {
        flex-basis: auto;
    }

    .nencer-news-detail-layout,
    .nencer-static-layout {
        grid-template-columns: 1fr;
    }

    .nencer-news-detail-layout aside,
    .nencer-static-aside {
        position: static;
    }

    .customer-booking-page {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 580px) {
    .nencer-news-hero,
    .nencer-static-hero {
        padding: 42px 0;
    }

    .nencer-news-hero-card {
        display: none;
    }

    .nencer-news-section,
    .nencer-static-section {
        padding-bottom: 58px !important;
        padding-top: 42px !important;
    }

    .nencer-news-grid {
        grid-template-columns: 1fr;
    }

    .nencer-news-card-body {
        padding: 20px;
    }

    .nencer-news-detail-header {
        padding: 40px 0 38px;
    }

    .nencer-news-detail-layout {
        gap: 30px;
        padding-top: 32px;
    }

    .nencer-static-content {
        font-size: 16px;
        padding: 24px 20px;
    }

    .nencer-static-cover {
        height: 250px;
    }

    .customer-booking-page {
        padding: 16px 16px 56px;
    }

    .customer-booking-hero {
        padding: 28px 20px;
    }

    .customer-booking-steps,
    .customer-booking-fields,
    .customer-booking-ticket {
        grid-template-columns: 1fr;
    }

    .customer-booking-steps {
        padding: 8px 18px;
    }

    .customer-booking-steps > div {
        border-bottom: 1px solid var(--home-line);
        border-right: 0;
        padding: 14px 0;
    }

    .customer-booking-steps > div:last-child {
        border-bottom: 0;
    }

    .customer-booking-card > header,
    .customer-booking-form {
        padding-left: 20px;
        padding-right: 20px;
    }

    .customer-booking-fields .wide {
        grid-column: auto;
    }

    .customer-booking-submit {
        align-items: stretch;
        flex-direction: column;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .customer-booking-submit .nencer-public-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nencer-news-card,
    .nencer-news-card-image img,
    .nencer-public-button {
        transition: none;
    }
}
