/**
 * Le Belle Arti — Favourites & Quote List
 *
 * Covers: header utility icons (heart, bookmark, account, cart),
 * heart overlay on cards, bookmark/quote on product page,
 * account dropdown, toast, My Favourites page, Quote List page.
 */

/* =========================================================================
   Header utility area
   ========================================================================= */

.site-header__utils {
    display: flex;
    align-items: center;
    gap: 1.375rem;
    flex-shrink: 0;
}

.site-header__util-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    color: var(--lba-gray-900);
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
    transition: color 0.2s ease;
}

.site-header__util-btn:hover {
    color: var(--lba-gray-500);
    opacity: 1;
}

.site-header__util-btn svg {
    display: block;
}

/* Shared badge */
.lba-favs-badge,
.lba-quote-list-badge,
.lba-cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    padding: 0 3px;
    background: var(--lba-black);
    color: var(--lba-white);
    font-family: var(--lba-font-secondary);
    font-size: 0.5625rem;
    font-weight: 600;
    line-height: 16px;
    text-align: center;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-sizing: content-box;
}

.lba-favs-badge.is-visible,
.lba-quote-list-badge.is-visible,
.lba-cart-badge.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Heart fills when any product is saved */
.site-header__util-btn--favs svg {
    transition: fill 0.2s ease;
}

/* =========================================================================
   Heart icon — on product cards
   ========================================================================= */

.lba-product-card__img-wrap,
.lba-related-card__img {
    position: relative;
}

.lba-heart-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.88);
    border: none;
    cursor: pointer;
    color: var(--lba-gray-700);
    padding: 0;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

/* Show on hover or when already saved */
.lba-product-card:hover .lba-heart-btn,
.lba-related-card:hover .lba-heart-btn,
.lba-heart-btn.is-saved,
.lba-heart-btn:focus-visible {
    opacity: 1;
}

/* Always visible on touch */
@media (hover: none) {
    .lba-heart-btn { opacity: 1; }
}

.lba-heart-btn:hover {
    background: #fff;
    color: var(--lba-black);
}

/* Tooltip — reads aria-label so it auto-updates with state ("Save" / "Remove") */
.lba-heart-btn::after {
    content: attr(aria-label);
    position: absolute;
    top: 50%;
    right: calc(100% + 7px);
    transform: translateY(-50%);
    white-space: nowrap;
    background: var(--lba-black);
    color: #fff;
    font-family: var(--lba-font-secondary);
    font-size: 0.5625rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 4px 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 5;
}

.lba-heart-btn:hover::after {
    opacity: 1;
}

/* Filled heart when saved */
.lba-heart-btn.is-saved {
    color: #c0392b;
}

.lba-heart-btn.is-saved svg {
    fill: currentColor;
}

/* Pulse on save */
@keyframes lba-heart-pulse {
    0%   { transform: scale(1); }
    35%  { transform: scale(1.35); }
    100% { transform: scale(1); }
}

.lba-heart-btn--pulse svg {
    animation: lba-heart-pulse 0.4s ease forwards;
}

/* =========================================================================
   Heart icon — on product page (inline in brand row)
   ========================================================================= */

.lba-brand-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Inline heart in brand row — not absolute positioned */
.lba-brand-row .lba-heart-btn {
    position: static;
    opacity: 1;
    margin-left: auto;
    background: none;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    color: var(--lba-gray-400);
}

.lba-brand-row .lba-heart-btn:hover {
    background: none;
    color: var(--lba-gray-700);
}

.lba-brand-row .lba-heart-btn.is-saved {
    color: #c0392b;
}

/* =========================================================================
   "Add to Quote List" button — product page cart area
   ========================================================================= */

.lba-btn-add-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 48px;
    padding: 0 2rem;
    background: transparent;
    color: var(--lba-black);
    border: 1px solid var(--lba-black);
    font-family: var(--lba-font-secondary);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    border-radius: 0;
}

.lba-btn-add-quote svg {
    flex-shrink: 0;
    transition: fill 0.2s ease;
}

.lba-btn-add-quote:hover {
    border-color: var(--lba-black);
}

.lba-btn-add-quote.is-in-list {
    border-color: var(--lba-black);
    background: var(--lba-gray-50);
}

.lba-btn-add-quote.is-in-list svg {
    fill: var(--lba-black);
}

/* "Request a Quote" text link */
.lba-link-quote {
    display: block;
    font-family: var(--lba-font-secondary);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lba-gray-500);
    text-align: center;
    text-decoration: none;
    margin-top: 0.25rem;
    transition: color 0.2s ease;
}

.lba-link-quote:hover {
    color: var(--lba-black);
}

/* =========================================================================
   Account dropdown
   ========================================================================= */

.site-header__util-btn--account {
    gap: 0.25rem;
}

.lba-account-dropdown-wrap {
    position: relative;
}

.lba-account-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    width: 220px;
    background: #fff;
    border: 1px solid var(--lba-gray-200);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 500;
    /* Hidden by default */
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.lba-account-dropdown.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lba-account-dropdown__list {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.lba-account-dropdown__item {
    margin: 0;
}

.lba-account-dropdown__item--divider {
    height: 1px;
    background: var(--lba-gray-100);
    margin: 0.375rem 0;
    padding: 0;
}

.lba-account-dropdown__link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1.125rem;
    font-family: var(--lba-font-secondary);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lba-gray-700);
    text-decoration: none;
    transition: color 0.15s ease, background 0.15s ease;
    white-space: nowrap;
}

.lba-account-dropdown__link:hover {
    color: var(--lba-black);
    background: var(--lba-gray-50);
    opacity: 1;
}

.lba-account-dropdown__link svg {
    flex-shrink: 0;
    color: var(--lba-gray-400);
}

.lba-account-dropdown__link:hover svg {
    color: var(--lba-black);
}

/* =========================================================================
   Toast
   ========================================================================= */

.lba-list-toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(0.75rem);
    background: var(--lba-black);
    color: var(--lba-white);
    font-family: var(--lba-font-secondary);
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.lba-list-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* =========================================================================
   Auth prompt (guest adds to quote list)
   Visually distinct from the toast — has links + dismiss button,
   sits above the toast z-index, uses a lighter background.
   ========================================================================= */

.lba-auth-prompt {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(1rem);
    background: var(--lba-white);
    color: var(--lba-gray-700);
    border: 1px solid var(--lba-gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    font-family: var(--lba-font-secondary);
    font-size: 0.8125rem;
    line-height: 1.55;
    padding: 0.875rem 1rem 0.875rem 1.25rem;
    max-width: 420px;
    width: calc(100vw - 2rem);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.lba-auth-prompt.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.lba-auth-prompt__text {
    flex: 1;
}

.lba-auth-prompt__link {
    color: var(--lba-black);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}

.lba-auth-prompt__link:hover {
    color: var(--lba-gray-600);
}

.lba-auth-prompt__close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--lba-gray-400);
    padding: 0.125rem;
    flex-shrink: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    margin-top: 0.125rem;
    transition: color 0.15s ease;
}

.lba-auth-prompt__close:hover {
    color: var(--lba-black);
}

/* =========================================================================
   Shared list page styles (Favourites + Quote List)
   ========================================================================= */

.lba-listpage {
    /* Body has hamburger-nav-solid (94px padding-top) which handles the fixed-header offset.
       This rule provides modest breathing room only. Side paddings (48px) preserved. */
    padding: var(--lba-space-xl) var(--lba-space-2xl) var(--lba-space-2xl);
    max-width: 1200px;
    margin: 0 auto;
}

.lba-listpage__title {
    font-family: var(--lba-font-primary);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--lba-black);
    margin-bottom: 2rem;
}

/* F13: shared listpage hero for /my-favourites/ — parallel to
   .lba-quote-list-hero so the two saved-content pages feel like siblings. */
.lba-listpage-hero {
    margin: 0 0 2.5rem;
}

.lba-listpage-hero__eyebrow {
    display: inline-block;
    font-family: var(--lba-font-secondary);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lba-gray-600, #666);
    margin-bottom: 12px;
}

.lba-listpage-hero__title {
    font-family: var(--lba-font-primary);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--lba-black);
    margin: 0 0 0.75rem;
    line-height: 1.15;
}

.lba-listpage-hero__lede {
    font-family: var(--lba-font-secondary);
    font-size: 15px;
    line-height: 1.65;
    color: var(--lba-gray-700, #444);
    margin: 0;
    max-width: 56ch;
}

.lba-listpage-empty {
    max-width: 560px;
    margin: 0 auto;
    padding: 80px var(--lba-space-lg, 24px);
    text-align: center;
}

.lba-listpage-empty__title {
    font-family: var(--lba-font-secondary);
    font-weight: 300;
    font-size: 28px;
    margin: 0 0 12px;
}

.lba-listpage-empty__msg {
    font-size: 15px;
    color: var(--lba-gray-700, #444);
    margin: 0 0 24px;
    line-height: 1.6;
}

.lba-listpage-empty__cta {
    display: inline-block;
    padding: 13px 28px;
    background: var(--lba-black);
    color: var(--lba-white);
    font-family: var(--lba-font-secondary);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.lba-listpage-empty__cta:hover {
    opacity: 0.88;
}

.lba-listpage-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--lba-gray-200);
    margin-bottom: 0;
}

.lba-listpage-count {
    font-family: var(--lba-font-secondary);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lba-gray-500);
}

.lba-listpage-clear {
    background: none;
    border: none;
    font-family: var(--lba-font-secondary);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lba-gray-400);
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.lba-listpage-clear:hover {
    color: var(--lba-black);
}

/* Individual item row */
.lba-listpage-item {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--lba-gray-100);
}

.lba-listpage-item__img {
    width: 88px;
    height: 88px;
    background: var(--lba-gray-50);
    overflow: hidden;
    flex-shrink: 0;
}

.lba-listpage-item__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lba-listpage-item__img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--lba-gray-100);
}

.lba-listpage-item__info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.lba-listpage-item__brand {
    font-family: var(--lba-font-secondary);
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lba-gray-500);
}

.lba-listpage-item__name {
    font-family: var(--lba-font-primary);
    font-size: 1.0625rem;
    font-weight: 400;
    color: var(--lba-black);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.lba-listpage-item__name:hover {
    color: var(--lba-gray-600);
}

.lba-listpage-item__view {
    font-family: var(--lba-font-secondary);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lba-gray-500);
    text-decoration: none;
    transition: color 0.2s ease;
    margin-top: 0.125rem;
}

.lba-listpage-item__view:hover {
    color: var(--lba-black);
}

/* F14: flex wrapper hosts the inline "Add to Quote List" + the X-remove
   button in the third grid column. No grid change needed — the auto column
   grows from one icon to two. */
.lba-listpage-item__actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.lba-listpage-item__remove,
.lba-listpage-item__add-to-quote {
    background: none;
    border: none;
    color: var(--lba-gray-300);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.lba-listpage-item__remove:hover,
.lba-listpage-item__add-to-quote:hover {
    color: var(--lba-black);
}

.lba-listpage-item__add-to-quote:focus-visible,
.lba-listpage-item__remove:focus-visible {
    outline: 1px solid var(--lba-black);
    outline-offset: 2px;
}

.lba-listpage-item__add-to-quote:disabled {
    opacity: 0.5;
    cursor: progress;
}

/* =========================================================================
   My List (quote list) page — two-column layout with form
   ========================================================================= */

.lba-mylist-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .lba-mylist-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.lba-mylist-form-wrap {
    position: sticky;
    top: calc(80px + 2rem);
}

.lba-mylist-heading {
    font-family: var(--lba-font-primary);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--lba-black);
    margin: 0 0 1rem;
}

.lba-mylist-form-note {
    font-family: var(--lba-font-secondary);
    font-size: 0.75rem;
    color: var(--lba-gray-500);
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.lba-mylist-fields-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.lba-mylist-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.lba-mylist-field label {
    font-family: var(--lba-font-secondary);
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lba-gray-600);
}

.lba-mylist-field label span {
    color: var(--lba-gray-400);
}

.lba-mylist-field input,
.lba-mylist-field textarea {
    width: 100%;
    padding: 0.625rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--lba-gray-300);
    font-family: var(--lba-font-secondary);
    font-size: 0.875rem;
    color: var(--lba-black);
    border-radius: 0;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.lba-mylist-field input:focus,
.lba-mylist-field textarea:focus {
    border-bottom-color: var(--lba-black);
}

.lba-mylist-field textarea {
    resize: vertical;
    min-height: 80px;
}

.lba-mylist-submit-row {
    margin-top: 1.5rem;
}

.lba-mylist-submit-row .lba-btn-cart {
    width: 100%;
}

.lba-mylist-feedback {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    font-family: var(--lba-font-secondary);
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    line-height: 1.5;
}

.lba-mylist-feedback--success { background: #f0faf0; color: #2d7a2d; }
.lba-mylist-feedback--error   { background: #fef2f2; color: #b91c1c; }

/* =========================================================================
   Search bar — drops down from beneath the fixed header
   ========================================================================= */

@keyframes lba-search-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes lba-search-out {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-6px); }
}

.lba-search-overlay {
    display: none;
    position: fixed;
    top: 0; /* set dynamically by JS to header bottom */
    left: 0;
    right: 0;
    z-index: 500; /* above page content, below modals */
    background: var(--lba-white);
    border-bottom: 1px solid var(--lba-gray-200);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.lba-search-overlay.is-open {
    display: block;
    animation: lba-search-in 0.22s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.lba-search-overlay.is-closing {
    animation: lba-search-out 0.18s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* unused backdrop — kept as empty element in HTML, hidden */
.lba-search-overlay__backdrop { display: none; }

/* Inner content wrapper */
.lba-search-overlay__panel {
    max-width: 760px;
    margin: 0 auto;
    padding: 1.25rem var(--lba-space-2xl);
}

/* Search form row */
.lba-search-overlay__form {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    border-bottom: 1px solid var(--lba-black);
    padding-bottom: 0.5rem;
}

.lba-search-overlay__label {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* Input — clean and minimal */
.lba-search-overlay__input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--lba-font-secondary);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--lba-black);
    padding: 0.125rem 0;
    min-width: 0;
    -webkit-appearance: none;
    appearance: none;
    text-transform: none;
}

.lba-search-overlay__input::placeholder {
    color: var(--lba-gray-400);
    font-style: normal;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.lba-search-overlay__input::-webkit-search-decoration,
.lba-search-overlay__input::-webkit-search-cancel-button,
.lba-search-overlay__input::-webkit-search-results-button {
    display: none;
}

/* Submit — arrow text, styled like "More Info →" */
.lba-search-overlay .lba-search-overlay__submit,
.lba-search-overlay .lba-search-overlay__submit:hover,
.lba-search-overlay .lba-search-overlay__submit:focus,
.lba-search-overlay .lba-search-overlay__submit:active {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    text-shadow: none;
    font-family: var(--lba-font-secondary) !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color: var(--lba-gray-400) !important;
    cursor: pointer;
    flex-shrink: 0;
    transition: color 0.15s ease, transform 0.15s ease;
    line-height: 1;
}

.lba-search-overlay .lba-search-overlay__submit:hover {
    color: var(--lba-black) !important;
    transform: translateX(3px);
}

/* Hint text — smaller, consistent with gray-400 */
.lba-search-overlay__hint {
    font-family: var(--lba-font-secondary);
    font-size: 0.5625rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lba-gray-400);
    margin: 0.5rem 0 0;
}

/* Close button — right side of bar */
.lba-search-overlay__close {
    position: absolute;
    top: 50%;
    right: var(--lba-space-2xl);
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0.375rem;
    cursor: pointer;
    color: var(--lba-gray-500);
    display: flex;
    align-items: center;
    transition: color 0.15s ease, transform 0.2s ease;
}

.lba-search-overlay__close:hover {
    color: var(--lba-black);
    transform: translateY(-50%) rotate(90deg);
}

/* Active state on the trigger button */
.site-header__util-btn--search.is-active {
    color: var(--lba-gray-500);
}

/* Make panel relative so close btn can position within it */
.lba-search-overlay__panel {
    position: relative;
}

@media (max-width: 768px) {
    .lba-search-overlay__input {
        font-size: 1.375rem;
    }
    .lba-search-overlay__panel {
        padding: 1.25rem var(--lba-space-lg);
    }
    .lba-search-overlay__close {
        right: var(--lba-space-lg);
    }
}

/* F16: allow favourite/quote list product names to wrap to 2 lines on mobile
   instead of 1-line ellipsis ("Alexander Seating S…" becomes
   "Alexander Seating System" across two lines). */
@media (max-width: 768px) {
    .lba-listpage-item__name {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: clip;
        line-height: 1.3;
    }
}
