/* Layouts for the Laravel application, scoped away from legacy CRUD controls. */
.k-breadcrumb {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #657680;
    font-size: 0.875rem;
    margin: 28px 0;
}
.k-breadcrumb a {
    text-decoration: none;
}
.k-page-heading {
    margin-bottom: 30px;
}
.k-page-heading h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.045em;
    font-weight: 750;
    margin: 0 0 12px;
}
.k-browse-page {
    padding-bottom: 64px;
}
.k-browse-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}
.k-filter-sidebar {
    position: sticky;
    top: 106px;
}
.k-filter-disclosure {
    border: 1px solid #e0e7ea;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
}
.k-filter-disclosure > summary {
    padding: 20px;
    font-weight: 750;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
}
.k-filter-disclosure[open] > summary {
    border-bottom: 1px solid #e7edef;
}
.k-filter-disclosure form {
    padding: 20px;
    display: grid;
    gap: 20px;
}
.k-filter-fields {
    display: grid;
    gap: 18px;
}
.k-filter-mode {
    padding: 0;
    border: 0;
    margin: 0;
    min-width: 0;
}
.k-filter-mode legend {
    float: none;
    font-size: 0.9375rem;
    font-weight: 650;
    margin: 0 0 8px;
}
.k-filter-mode > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    background: #f0f4f5;
    padding: 5px;
    border-radius: 10px;
}
.k-filter-mode input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.k-filter-mode label {
    padding: 9px 4px;
    text-align: center;
    border-radius: 7px;
    cursor: pointer;
    font-size: 0.875rem;
}
.k-filter-mode input:checked + label {
    background: #164f60;
    color: white;
    box-shadow: 0 2px 4px #123b4720;
}
.k-filter-mode input:focus-visible + label {
    outline: 3px solid #1681bc;
    outline-offset: 3px;
}
.k-filter-actions {
    display: grid;
    gap: 12px;
    text-align: center;
}
.k-browse-results {
    min-width: 0;
}
.k-results-heading {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
    margin-bottom: 24px;
}
.k-results-heading h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 8px;
}
.k-results-heading p {
    margin: 0;
    font-size: 0.875rem;
}
.k-browse-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 20px;
}
.k-pagination {
    margin: 32px 0;
}
.k-map-disclosure {
    margin-top: 36px;
    border: 1px solid #e0e7ea;
    border-radius: 16px;
    overflow: hidden;
    scroll-margin-top: 100px;
}
.k-map-disclosure summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    cursor: pointer;
    font-weight: 650;
    list-style: none;
}
.k-map-disclosure summary small {
    display: block;
    color: #657680;
    font-size: 0.875rem;
    font-weight: 400;
    margin-top: 5px;
}
.k-map-disclosure .k-help {
    padding: 12px 20px;
    margin: 0;
}
.k-empty-icon {
    display: block;
    font-size: 3rem;
    color: #164f60;
}
.k-property h3,
.k-property-location {
    overflow-wrap: anywhere;
}
.k-property-kind {
    white-space: normal;
}
.k-property-body {
    min-width: 0;
}
.k-catalog-grid > .k-property {
    display: flex;
    flex-direction: column;
}
.k-catalog-grid .k-property-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.k-catalog-grid .k-property-price {
    margin-top: auto;
}
.k-catalog-grid .k-property-media {
    flex-shrink: 0;
}
.k-auth-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px clamp(20px, 4vw, 64px);
    gap: 20px;
    background: white;
    border-bottom: 1px solid #edf1f3;
}
.k-auth-redesign {
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    min-height: calc(100vh - 152px);
    align-items: stretch;
    max-width: 1600px;
    margin: auto;
}
.k-auth-redesign .k-auth-aside {
    position: relative;
    margin: 24px 0 24px 24px;
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;
    align-self: start;
    min-height: 610px;
    height: calc(100vh - 150px);
    max-height: 900px;
    justify-content: end;
    isolation: isolate;
}
.k-auth-redesign .k-auth-aside > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: none;
    border-radius: 0;
    z-index: -2;
}
.k-auth-redesign .k-auth-aside::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #0c303fee, #0c303f22 100%);
    z-index: -1;
}
.k-auth-story {
    max-width: 420px;
}
.k-auth-story .k-overline {
    color: #f5d691 !important;
    font-size: 0.8125rem;
}
.k-auth-story h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    margin: 0 0 20px;
    line-height: 1.12;
}
.k-auth-story p {
    line-height: 1.75;
    font-size: 1rem;
}
.k-auth-story a {
    color: white;
    text-underline-offset: 5px;
    font-size: 0.9375rem;
}
.k-auth-redesign .k-auth-content {
    padding: 48px clamp(24px, 4vw, 64px);
    align-items: center;
    min-width: 0;
}
.k-auth-redesign .k-auth-card {
    max-width: 600px;
}
.k-auth-card > h1 {
    font-size: 2.1rem;
    margin: 0 0 12px;
    line-height: 1.2;
}
.k-auth-card > .k-overline {
    margin: 0 0 10px;
    font-size: 0.8125rem;
}
.k-auth-card > .k-muted {
    margin: 0;
}
.k-auth-redesign .k-field input:not([type="checkbox"]):not([type="radio"]),
.k-auth-redesign .k-field select {
    background: #fbfcfd;
    border-color: #d3dde2;
    min-height: 50px;
}
.k-auth-redesign .k-field input:focus,
.k-auth-redesign .k-field select:focus {
    background: white;
    border-color: #164f60;
}
.k-auth-redesign .k-fieldset {
    padding: 22px;
    border: 1px solid #e0e8ec;
    border-radius: 16px;
    background: #fff;
}
.k-register-form .k-fieldset {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.k-register-form .k-fieldset > p,
.k-register-form .k-fieldset > .k-field:has(textarea) {
    grid-column: 1/-1;
}
.k-register-form .k-fieldset legend {
    font-size: 0.9375rem;
    padding-inline: 8px;
}
.k-auth-help {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #e6ecef;
    font-size: 0.875rem;
    color: #657680;
}
.k-auth-help a {
    color: #164f60;
    text-underline-offset: 4px;
}
.k-auth-footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    padding: 20px;
    font-size: 0.875rem;
    color: #657680;
}
.k-auth-footer a {
    text-decoration: none;
}
.k-auth-redesign .k-form {
    gap: 20px;
}
.k-auth-redesign .k-help {
    line-height: 1.6;
}
.k-about-intro {
    text-align: center;
    max-width: 850px;
    margin: 44px auto 36px;
}
.k-about-intro h1 {
    font-size: clamp(2.4rem, 5vw, 4.25rem);
    letter-spacing: -0.05em;
    line-height: 1.1;
    font-weight: 750;
    margin: 0 0 22px;
}
.k-about-intro h1 span {
    color: #26707b;
}
.k-about-intro p {
    max-width: 65ch;
    margin-inline: auto;
}
.k-about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #edf1f3;
    height: 400px;
    margin-bottom: 20px;
}
.k-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.k-about-story {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 70px;
    padding: 58px 0;
    border-bottom: 1px solid #e0e7ea;
}
.k-about-story h2 {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.035em;
    margin: 0;
}
.k-about-story p {
    font-size: 1.0625rem;
    line-height: 1.8;
    white-space: pre-line;
    color: #526477;
    margin-top: 0;
}
.k-about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-block: 48px;
}
.k-about-values article {
    border-radius: 20px;
    background: #f2f7f8;
    padding: 32px;
}
.k-about-values h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0 0 16px;
}
.k-company-card {
    background: #163c49;
    color: #fff;
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}
.k-company-card h2 {
    color: white;
    font-size: 1.8rem;
    line-height: 1.25;
}
.k-company-card p {
    color: #d7e5e9;
}
.k-company-card a {
    color: #fff;
}
.k-company-card address {
    font-style: normal;
    line-height: 1.8;
    color: #d7e5e9;
}
.k-company-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.k-console {
    --k-accent: #164f60;
    --k-accent-hover: #103c49;
    --k-soft: #eaf4f5;
    background: #f5f8fa !important;
    color: #183543 !important;
    font-family: Inter, "Segoe UI", sans-serif !important;
    line-height: 1.6;
    min-height: 100vh;
}
.k-console-layout {
    display: grid;
    grid-template-columns: 252px minmax(0, 1fr);
    min-height: 100vh;
}
.k-console-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    padding: 26px 16px;
    background: #fff;
    border-right: 1px solid #e0e8ec;
}
.k-console-sidebar > .k-brand {
    margin-left: 14px;
}
.k-console-label {
    margin: 4px 14px 26px;
    color: #71838d;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.k-console-sidebar summary {
    display: none;
}
.k-worknav nav {
    padding: 0 !important;
    margin: 0 !important;
}
.k-worknav a,
.k-worknav button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 44px;
    padding: 11px 14px !important;
    margin: 3px 0;
    color: #536872 !important;
    font-size: 0.875rem !important;
    font-weight: 550;
    line-height: 1.45;
    text-decoration: none !important;
    border-radius: 10px !important;
    background: none !important;
    box-shadow: none !important;
    border: 0;
    text-align: left;
}
.k-worknav a:hover,
.k-worknav button:hover {
    background: #f0f6f7 !important;
    color: #164f60 !important;
}
.k-worknav a[aria-current="page"],
.k-worknav a.bg-tiket-primary {
    background: #e7f2f4 !important;
    color: #164f60 !important;
    font-weight: 700;
}
.k-worknav svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    margin: 0 !important;
}
.k-worknav a > span:last-child {
    margin-left: auto;
}
.k-worknav [id$="-submenu"] {
    padding-left: 16px;
    border-left: 1px solid #e0e8ec;
    margin-left: 20px;
}
.k-console-logout {
    margin-top: 24px;
    padding: 12px 14px;
    border: 1px solid #e0e8ec;
    border-radius: 10px;
    color: #805050;
    font-size: 0.875rem;
    width: 100%;
    text-align: left;
}
.k-console-main {
    min-width: 0;
}
.k-console-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 32px;
    background: #fff;
    border-bottom: 1px solid #e0e8ec;
    min-height: 80px;
}
.k-console-header > span {
    font-size: 0.9375rem;
    font-weight: 650;
}
.k-console-header > div {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.875rem;
}
.k-console-header a {
    color: #49636f;
    text-decoration: none;
}
.k-avatar {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e4f0f2;
    color: #164f60;
    font-weight: 700;
}
.k-console-footer {
    padding: 24px 32px;
    font-size: 0.875rem;
    color: #6c808a;
    border-top: 1px solid #e0e8ec;
}
.k-console main > .k-alert {
    margin: 24px 32px;
}
.k-console :focus-visible {
    outline: 3px solid #187bb3;
    outline-offset: 4px;
}
.k-dashboard {
    padding: 32px;
    max-width: 1520px;
    margin: auto;
}
.k-dashboard-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 30px;
}
.k-dashboard-heading h1 {
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
    letter-spacing: -0.045em;
    line-height: 1.15;
    font-weight: 750;
    margin: 0 0 12px;
    overflow-wrap: anywhere;
}
.k-dashboard-heading p:not(.k-overline) {
    color: #657b85;
    margin: 0;
}
.k-dashboard-heading .k-overline {
    font-size: 0.8125rem;
    margin-bottom: 12px;
}
.k-dashboard .k-button {
    background: #164f60;
    border-radius: 10px;
    color: #fff;
    padding: 12px 20px;
    font-size: 0.9375rem;
    flex-shrink: 0;
}
.k-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}
.k-metric {
    background: white;
    border: 1px solid #e0e8ec;
    border-radius: 16px;
    padding: 24px;
    min-width: 0;
}
.k-metric > p {
    font-size: 0.875rem;
    color: #617983;
    margin: 0 0 10px;
}
.k-metric > strong {
    display: block;
    font-size: clamp(1.45rem, 2.1vw, 2rem);
    letter-spacing: -0.035em;
    line-height: 1.3;
    color: #183543;
    overflow-wrap: anywhere;
}
.k-metric small {
    display: block;
    font-size: 0.8125rem;
    line-height: 1.65;
    color: #6b7f88;
    margin-top: 12px;
}
.k-metric > a {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: #164f60;
    text-decoration: none;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #edf1f3;
}
.k-dashboard-two,
.k-dashboard-three {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
    align-items: start;
}
.k-dashboard-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.k-dashboard-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.k-dashboard-primary {
    grid-template-columns: 1.3fr 1fr;
}
.k-dashboard-panel {
    padding: 28px;
    background: #fff;
    border: 1px solid #e0e8ec;
    border-radius: 18px;
    min-width: 0;
}
.k-dashboard-panel h2 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}
.k-dashboard-panel h3 {
    font-size: 0.9375rem;
    font-weight: 650;
}
.k-data-list {
    margin: 0 0 20px;
}
.k-data-list > div {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #edf1f3;
}
.k-data-list dt {
    font-size: 0.875rem;
    color: #657b85;
    font-weight: 400;
}
.k-data-list dd {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 650;
    text-align: right;
    overflow-wrap: anywhere;
}
.k-dashboard-panel progress {
    width: 100%;
    height: 10px;
    accent-color: #26707b;
}
.k-table-scroll {
    overflow-x: auto;
}
.k-data-table {
    width: 100%;
    font-size: 0.875rem;
    border-collapse: collapse;
}
.k-data-table th {
    font-weight: 600;
    color: #657b85;
    background: #f5f8fa;
    text-align: left;
}
.k-data-table th,
.k-data-table td {
    padding: 13px 16px;
    border-bottom: 1px solid #edf1f3;
}
.k-data-table td:last-child {
    text-align: right;
    white-space: nowrap;
}
.k-activity-list article {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #edf1f3;
}
.k-activity-list article:last-child {
    border: 0;
}
.k-activity-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #5a919c;
    margin-top: 7px;
    flex-shrink: 0;
}
.k-activity-list h3 {
    margin: 0 0 5px;
    font-size: 0.9375rem;
}
.k-activity-list p {
    font-size: 0.875rem;
    color: #657b85;
    margin: 0;
    overflow-wrap: anywhere;
}
.k-activity-list time {
    font-size: 0.8125rem;
    color: #71838d;
}
.k-current-home {
    background: #eaf3f5;
    border-color: #e0edf0;
}
.k-current-home h2 {
    font-size: 1.6rem;
    line-height: 1.25;
}
.k-current-home > p:not(.k-overline) {
    color: #5b7580;
    margin-bottom: 24px;
    max-width: 50ch;
}
.k-quick-links {
    display: grid;
    gap: 10px;
}
.k-quick-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid #e0e8ec;
    border-radius: 10px;
    font-size: 0.9375rem;
    text-decoration: none;
    color: #234855;
    gap: 12px;
}
.k-quick-links a:hover {
    background: #eff6f7;
}
.k-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid #e0e8ec;
    margin-bottom: 16px;
}
.k-action-row strong {
    font-size: 0.9375rem;
    overflow-wrap: anywhere;
}
.k-action-row p {
    font-size: 0.875rem;
    color: #657b85;
    margin-top: 4px;
}
.k-action-row > a {
    white-space: nowrap;
}
.k-quiet-empty {
    padding: 26px 0;
    color: #657b85;
    font-size: 0.9375rem;
    display: flex;
    align-items: start;
    gap: 14px;
}
.k-quiet-empty > span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #eaf5f0;
    color: #39735e;
    flex-shrink: 0;
}
.k-dashboard-chart {
    height: 210px;
    position: relative;
    margin-bottom: 18px;
}
.k-chart-data summary {
    cursor: pointer;
    font-size: 0.875rem;
    color: #164f60;
    padding: 8px 0;
}
.k-console .k-overline {
    color: #26707b;
}
.k-legal-hero {
    background: #edf5f7;
    border-bottom: 1px solid #dde9ed;
    padding: 48px 0;
}
.k-legal-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: -0.04em;
    margin: 0 0 16px;
}
.k-legal-hero p {
    max-width: 65ch;
    color: #526e7a;
}
.k-legal-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 56px;
    padding-block: 44px 64px;
}
.k-legal-nav {
    position: sticky;
    top: 100px;
    align-self: start;
    padding: 24px;
    background: #f6f9fa;
    border-radius: 16px;
}
.k-legal-nav h2 {
    font-size: 0.9375rem;
    margin: 0 0 16px;
}
.k-legal-nav ol {
    padding-left: 20px;
    margin: 0;
}
.k-legal-nav li {
    padding-block: 7px;
    font-size: 0.875rem;
}
.k-legal-nav a {
    text-decoration: none;
    color: #496572;
}
.k-legal-nav a:hover {
    text-decoration: underline;
}
.k-legal-content {
    max-width: 78ch;
}
.k-legal-content section {
    scroll-margin-top: 110px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e4ebef;
    margin-bottom: 26px;
}
.k-legal-content h2 {
    font-size: 1.35rem;
    line-height: 1.3;
    margin: 0 0 16px;
    font-weight: 700;
}
.k-legal-content p,
.k-legal-content li {
    font-size: 1rem;
    color: #526a75;
    line-height: 1.85;
}
.k-legal-contact {
    padding: 24px;
    border-radius: 14px;
    background: #edf5f7;
}
.k-legal-content address {
    font-style: normal;
    line-height: 1.8;
}
.k-legal-mobile-nav {
    display: none;
}
@media (max-width: 1200px) {
    .k-browse-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .k-console-layout {
        grid-template-columns: 224px minmax(0, 1fr);
    }
    .k-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .k-dashboard-three {
        grid-template-columns: 1fr 1fr;
    }
    .k-dashboard-three > section:last-child {
        grid-column: 1/-1;
    }
}
@media (max-width: 1000px) {
    .k-console-layout {
        display: block;
    }
    .k-console-sidebar {
        position: static;
        height: auto;
        padding: 14px 20px;
        overflow: visible;
        border-right: 0;
        border-bottom: 1px solid #e0e8ec;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 8px;
    }
    .k-console-sidebar > .k-brand {
        margin: 0;
        font-size: 1.8rem;
    }
    .k-console-label {
        text-align: right;
        margin: 0;
        font-size: 0.75rem;
    }
    .k-console-sidebar > details {
        grid-column: 1/-1;
    }
    .k-console-sidebar summary {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        cursor: pointer;
        font-size: 0.9375rem;
        font-weight: 650;
    }
    .k-console-header {
        padding: 14px 20px;
        min-height: 64px;
    }
    .k-console-header > div {
        gap: 12px;
    }
    .k-dashboard {
        padding: 24px;
    }
    .k-dashboard-heading {
        align-items: start;
    }
    .k-dashboard-two,
    .k-dashboard-primary {
        grid-template-columns: 1fr;
    }
    .k-auth-redesign {
        grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
    }
    .k-auth-redesign .k-auth-aside {
        padding: 24px;
        min-height: 500px;
    }
    .k-auth-redesign .k-auth-content {
        padding: 40px 24px;
    }
    .k-register-form .k-fieldset {
        grid-template-columns: 1fr;
    }
    .k-about-story {
        gap: 32px;
    }
    .k-legal-layout {
        gap: 28px;
        grid-template-columns: 210px minmax(0, 1fr);
    }
}
@media (max-width: 900px) {
    .k-browse-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .k-filter-sidebar {
        position: static;
    }
    .k-filter-disclosure form {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .k-filter-disclosure form > .k-filter-fields,
    .k-filter-actions,
    .k-filter-disclosure form > noscript,
    .k-filter-disclosure form > p {
        grid-column: 1/-1;
    }
    .k-filter-fields {
        grid-template-columns: 1fr 1fr;
    }
    .k-filter-disclosure form > input[type="hidden"] {
        display: none;
    }
    .k-filter-sidebar .k-field {
        min-width: 0;
    }
}
@media (max-width: 700px) {
    .k-auth-redesign {
        display: block;
        min-height: calc(100vh - 150px);
    }
    .k-auth-redesign .k-auth-aside {
        display: none;
    }
    .k-auth-redesign .k-auth-content {
        padding: 36px 20px 44px;
    }
    .k-auth-redesign .k-auth-card {
        max-width: 520px;
    }
    .k-auth-header {
        padding: 14px 20px;
    }
    .k-auth-header .k-brand {
        font-size: 1.8rem;
    }
    .k-auth-header > a:last-child {
        font-size: 0.875rem;
    }
    .k-register-form .k-fieldset {
        padding: 18px;
    }
    .k-about-intro {
        text-align: left;
        margin-block: 32px;
    }
    .k-about-image {
        height: 260px;
        border-radius: 18px;
    }
    .k-about-story,
    .k-about-values,
    .k-company-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .k-about-story {
        padding-block: 32px;
    }
    .k-about-values {
        margin-block: 32px;
    }
    .k-company-card {
        padding: 28px;
    }
    .k-legal-layout {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-block: 28px;
    }
    .k-legal-nav {
        position: static;
    }
    .k-legal-nav ol {
        columns: 2;
        column-gap: 32px;
    }
    .k-legal-hero {
        padding-block: 32px;
    }
    .k-dashboard-heading {
        flex-direction: column;
        gap: 18px;
    }
    .k-dashboard {
        padding: 20px 16px;
    }
    .k-dashboard-three {
        grid-template-columns: 1fr;
    }
    .k-dashboard-three > section:last-child {
        grid-column: auto;
    }
    .k-dashboard-panel {
        padding: 22px;
    }
    .k-metric-grid {
        gap: 12px;
    }
    .k-metric {
        padding: 18px;
    }
    .k-console-header > span {
        font-size: 0.8125rem;
    }
    .k-console-header > div {
        font-size: 0.8125rem;
    }
    .k-console-header .k-avatar {
        display: none;
    }
    .k-console-footer {
        padding: 20px 16px;
    }
    .k-console main > .k-alert {
        margin: 16px;
    }
    .k-dashboard-heading h1 {
        font-size: 1.9rem;
    }
    .k-results-heading {
        align-items: start;
        flex-direction: column;
        gap: 6px;
    }
    .k-browse-cards {
        gap: 24px 14px;
    }
}
@media (max-width: 450px) {
    .k-filter-disclosure form,
    .k-filter-fields {
        grid-template-columns: 1fr;
    }
    .k-browse-cards {
        grid-template-columns: 1fr;
    }
    .k-legal-nav ol {
        columns: 1;
    }
    .k-metric-grid {
        grid-template-columns: 1fr;
    }
    .k-action-row {
        align-items: start;
        gap: 12px;
    }
    .k-about-values article {
        padding: 24px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .k-console * {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}
.kosly-public,
.kosly-auth {
    margin: 0;
}
.kosly-public .d-none {
    display: none !important;
}
.k-console * {
    box-sizing: border-box;
}
.k-console {
    margin: 0;
}
.k-inspiration-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.k-inspiration-grid .k-property-media {
    aspect-ratio: 2;
}
.k-benefit-card {
    border: 1px solid #e1e9ed;
    border-radius: 16px;
    align-self: start;
    background: #fff;
}
.k-benefit-card summary {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    cursor: pointer;
    padding: 22px;
    font-size: 1rem;
    font-weight: 650;
    line-height: 1.5;
}
.k-benefit-card summary img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.k-benefit-card summary > span:last-child {
    margin-left: auto;
    color: #164f60;
    flex-shrink: 0;
}
.k-benefit-card > p {
    padding: 0 22px 22px;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.8;
}
.k-benefit-card[open] {
    background: #f5f9fa;
}
.k-ad-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.k-ad-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid #dce8ec;
    border-radius: 20px;
    background: #f3f8f9;
}
.k-ad-card h3 {
    font-size: 1.4rem;
    font-weight: 750;
}
.k-ad-price {
    font-size: 1.7rem;
    letter-spacing: -0.035em;
    margin: 12px 0 20px;
}
.k-ad-card .k-button {
    margin-top: auto;
}
.k-ad-card .k-help {
    margin: 16px 0 0;
}
.k-ad-card .k-data-list dt {
    font-size: 0.9375rem;
}
.k-console-main > main {
    min-width: 0;
}
@media (max-width: 900px) {
    .k-ad-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 600px) {
    .k-inspiration-grid,
    .k-ad-grid {
        grid-template-columns: 1fr;
    }
    .k-benefit-card summary {
        padding: 18px;
    }
    .k-ad-card {
        padding: 24px;
    }
}
