
@font-face {
    font-family: "ProximaNova";
    src: url("/fonts/ProximaNova-Regular.woff2") format("woff2"),
         url("/fonts/ProximaNova-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "ProximaNova";
    src: url("/fonts/ProximaNova-Semibold.woff2") format("woff2"),
         url("/fonts/ProximaNova-Semibold.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "ProximaNova";
    src: url("/fonts/ProximaNova-Bold.woff2") format("woff2"),
         url("/fonts/ProximaNova-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "ProximaNova";
    src: url("/fonts/ProximaNova-BoldIt.woff2") format("woff2"),
         url("/fonts/ProximaNova-BoldIt.woff") format("woff");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "AllInklArialFallback";
    src: local("Arial");
    font-weight: 400 900;
    font-style: normal;
    ascent-override: 92%;
    descent-override: 24%;
    line-gap-override: 0%;
    size-adjust: 100%;
}

header,
.main-menu,
.lang-dialog-overlay {
    font-family: "ProximaNova", "AllInklArialFallback", Arial, sans-serif;
}

header {
    background: #ffffff;
    color: var(--text);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 20;
    margin: 0 auto;

  }
  header .header-inner {
    align-items: center;
    gap: 20px;
  }
  header .header-inner .col-md-12.header-search { order: 2; }
  header .header-inner .col-md-12.header-actions { order: 3; }

  .brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .brand .brand-name {
    display: flex;
    align-items: center;
    height: 32px;
  }

  .brand .brand-name svg {
    height: 32px;
    width: auto;
  }

  .brand .brand-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color .2s;
  }


  .brand .brand-subtitle:hover,
  .brand .brand-subtitle:focus-visible {
    color: var(--accent, #e2003d);
    text-decoration: none;
  }

  .header-search {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
  }

  .header-search input {
    width: 100%;
    padding: 12px 18px 12px 44px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 5px;
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
  }

  .header-search input::placeholder {
    color: var(--muted);
  }

  .header-search input:focus {
    background: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(226, 0, 61, 0.1);
  }

  .header-search .search-icon {
    position: absolute;
    left: 16px;
    color: var(--muted);
    font-size: 16px;
    pointer-events: none;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    z-index: 2;
  }

  .header-search input:focus + .search-icon,
  .header-search:focus-within .search-icon {
    color: var(--accent);
  }

  .search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    max-height: 500px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
    cursor: pointer;
  }

  .search-result-item:last-child {
    border-bottom: none;
  }

  .search-result-item:hover {
    background: #f5f6f8;
  }

  .search-result-item:focus {
    background: #f5f6f8;
    outline: none;
  }

  .search-result-image {
    border-radius: 5px;
    width: 60px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .search-result-content {
    flex: 1;
    min-width: 0;
  }

  .search-result-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .search-result-description {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .search-dropdown-empty {
    padding: 20px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
  }


  .header-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: #e4003a;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
  }

  .header-btn:hover {
    background: var(--accent-dark, #aa002d);
    color: #fff;
  }

  .header-btn__arrow {
    flex-shrink: 0;

    font-size: 1.1em;
  }

  .header-menu {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: #000000;
    color: white;
    font-size: 23px;
  }
  .header-menu:hover {
    background: #373737;
  }

  .header-menu span {
    width: 100%;
    height: 2.5px;
    background: var(--text);
    border-radius: 0;
    transition: all 0.3s ease;
  }

  .header-menu:hover span {
    background: var(--accent);
  }


  .lang-switch {
    position: relative;
  }

  .lang-switch__trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border:none;
    border-radius: 6px;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    line-height: 1;
  }

  .lang-switch__trigger:hover {

  }

  .lang-switch--open .lang-switch__trigger {
    border-color: var(--accent);
  }


  .lang-switch__flag {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    object-fit: contain;
  }

  .lang-switch__code {
    font-weight: 700;
  }

  .lang-switch__chevron {
    flex-shrink: 0;
    color: var(--muted);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s;
  }

  .lang-switch--open .lang-switch__chevron {
    transform: rotate(180deg);
    color: var(--accent);
  }


  .lang-dialog-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 7vh 20px 20px;
    background: rgba(102, 102, 102, 0.85);
  }

  .lang-dialog {
    position: relative;
    width: 480px;
    max-width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 6px rgba(135, 135, 135, 0.06), 0 5px 6px rgba(135, 135, 135, 0.85);
    padding: 20px 20px 20px;
    box-sizing: border-box;
  }

  .lang-dialog__close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 12px;
    background: transparent;
    border: none;
    color: #000;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
  }
  .lang-dialog__close:hover {
    color: var(--accent, #e2003d);
  }

  .lang-dialog__title {
    margin: 0 0 8px;
    font-size: 21px;
    font-weight: 700;
    color: #000;
  }

  .lang-dialog__intro {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text, #333);
  }

  .lang-dialog__label {
    display: inline-block;
    margin: 0 0 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #000;
  }

  .lang-dialog__list {
    border: 1px solid rgba(134, 135, 134, 0.69);
    border-radius: 5px;
    padding: 6px 0;
    max-height: 320px;
    overflow-y: auto;
    background: #fff;
  }

  .lang-dialog__option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 15px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
  }
  .lang-dialog__option:hover,
  .lang-dialog__option:focus-visible {
    background: lightgray;
    color: #000;
    text-decoration: none;
  }
  .lang-dialog__option.is-selected {
    background: #f2f2f2;
    font-weight: 700;
  }
  .lang-dialog__option:hover .lang-dialog__name {
    color: var(--accent, #e2003d);
  }


  .lang-dialog__flag {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    object-fit: contain;
  }

  .lang-dialog__name {
    flex: 1;
  }

  .lang-dialog__check {
    flex-shrink: 0;
    color: var(--accent, #e2003d);
    visibility: hidden;
  }
  .lang-dialog__option.is-selected .lang-dialog__check {
    visibility: visible;
  }

  .lang-dialog__submit {
    display: block;
    width: 90px;
    margin: 20px 0 0 auto;
    padding: 10px;
    background: var(--accent, #e2003d);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
  }
  .lang-dialog__submit:hover {
    background: var(--accent-dark, #aa002d);
  }

  @media (max-width: 576px) {
    .lang-dialog-overlay {
      padding: 2vh 10px 10px;
    }
    .lang-dialog {
      width: 95vw;
      border-radius: 8px;
    }
  }

@media (max-width: 1300px) {
    .header-inner.grid-12 {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
    }
    header .header-inner .brand {
        flex: 0 0 auto;
        order: 1;
    }
    header .header-inner .col-md-12.header-actions {
        flex: 0 0 auto;
        order: 2;
        margin-left: auto;
    }
    header .header-inner .col-md-12.header-search {
        flex: 1 1 100%;
        order: 3;
        min-width: 0;
    }
    .header-btn {
        padding: 12px 18px;
        font-size: 13px;
    }
    .lang-switch__trigger {
        padding: 7px 10px;
        font-size: 12px;
    }
}

@media (max-width: 900px) {
    header { padding: 14px 0; }
    header .container { padding: 0 20px; }
    .brand {
      flex: 0 0 auto;
    }
    .brand .brand-name svg {
      height: 28px;
      max-width: 180px;
    }
    .brand .brand-subtitle {
      font-size: 13px;
    }
    .header-search {
      order: 3;
      width: 100%;
      max-width: 100%;
      margin-top: 6px;
    }
    .header-search input {
      padding: 11px 16px 11px 42px;
    }
    .header-actions {
      flex: 0 0 auto;
      gap: 10px;
    }
    .header-btn {
      padding: 9px 16px;
      font-size: 12px;
      letter-spacing: 0.4px;
      white-space: nowrap;
    }
    .lang-switch__trigger {
      padding: 7px 10px;
      font-size: 12px;
    }
    .lang-switch__dropdown {
      min-width: 170px;
    }
    .header-menu {
      width: 36px;
      height: 36px;
    }

}

@media (max-width: 600px) {
    header { padding: 10px 0; }
    header .container { padding: 0 12px; }
    .header-inner.grid-12 {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }
    .brand {
        flex: 0 0 auto;
        min-width: 0;
        order: 1;
    }
    .brand .brand-name svg {
        height: 24px;
        max-width: 120px;
    }
    .brand .brand-subtitle {
        display: none;
    }
    .header-actions {
        order: 2;
        flex: 0 0 auto;
        gap: 6px;
        margin-left: auto;
        display: flex;
        align-items: center;
    }
    .header-btn {
        display: inline-flex;
        padding: 6px 10px;
        font-size: 10px;
        letter-spacing: 0.3px;
    }
    .header-search {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin-top: 4px;
        flex: 1 1 100%;
        position: relative;
    }
    .header-search .search-icon {
        position: absolute;
        left: 14px;
        right: auto;
        font-size: 14px;
    }
    .header-search input {
        width: 100%;
        padding: 10px 16px 10px 40px;
        font-size: 14px;
    }
    .lang-switch__trigger {
        padding: 6px 8px;
        font-size: 11px;
    }
    .lang-switch__globe {
        width: 15px;
        height: 15px;
    }
    .header-menu {
        width: 36px;
        height: 36px;
        padding: 6px;
    }
    .lang-switch__dropdown {
        right: 0;
        left: auto;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    header .container { padding: 0 10px; }
    .brand .brand-name svg {
        height: 22px;
        max-width: 100px;
    }
    .header-actions {
        gap: 4px;
    }
    .header-btn {
        padding: 5px 8px;
        font-size: 9px;
    }
    .lang-switch__globe {
        width: 14px;
        height: 14px;
    }
    .lang-switch__trigger {
        padding: 5px 6px;
        gap: 3px;
        font-size: 10px;
    }
    .lang-switch__chevron {
        display: none;
    }
    .header-menu {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
    .header-search input {
        padding: 9px 14px 9px 38px;
        font-size: 13px;
    }
    .header-search .search-icon {
        left: 12px;
        font-size: 13px;
    }
}

.main-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.main-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.main-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    max-height: 90vh;
    background: #ffffff;
    color: var(--text);
    z-index: 10000;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.main-menu.active {
    transform: translateY(0);
}

.main-menu-header {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    color: var(--text);
    padding: 14px 40px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
    margin: 0 auto;
    background-image: url(https://all-inkl.com/web-guide/img/brandmark-allinkl-grey.svg);
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
}

.main-menu-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.main-menu-logo {
    display: flex;
    align-items: center;
    height: 32px;
}

.main-menu-logo svg {
    height: 32px;
    width: auto;
    display: block;
}

.main-menu-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: transparent;
    padding: 0;
    border-radius: 0;
    line-height: normal;
    white-space: nowrap;
    transition: color .2s;
}

.main-menu-subtitle:hover,
.main-menu-subtitle:focus-visible {
    color: var(--accent, #e2003d);
    text-decoration: none;
}

.main-menu-search {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1;
    z-index: 20;
}

.main-menu-search input {
    width: 100%;
    padding: 12px 18px 12px 44px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 5px;
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.main-menu-search input::placeholder {
    color: var(--muted);
}

.main-menu-search input:focus {
    background: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(226, 0, 61, 0.1);
}

.main-menu-search > i {
    position: absolute;
    left: 16px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 16px;
    pointer-events: none;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    z-index: 2;
}

.main-menu-search input:focus ~ i,
.main-menu-search:focus-within > i {
    color: var(--accent);
}

.main-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: #000000;
    color: #ffffff;
    font-size: 23px;
    border: none;
    flex-shrink: 0;
}

.main-menu-close:hover {
    background: #373737;
    color: #ffffff;
    transform: none;
}

.main-menu-close:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.menu-search-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    max-height: 50vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    border-radius: 5px;
}

.menu-search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-search-dropdown .search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
    cursor: pointer;
}

.menu-search-dropdown .search-result-item:last-child {
    border-bottom: none;
}

.menu-search-dropdown .search-result-item:hover {
    background: #f5f6f8;
}

.menu-search-dropdown .search-result-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    flex-shrink: 0;
}

.menu-search-dropdown .search-result-content {
    flex: 1;
    min-width: 0;
}

.menu-search-dropdown .search-result-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.menu-search-dropdown .search-result-description {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.menu-search-dropdown .search-dropdown-empty {
    padding: 20px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

.main-menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 36px 32px;
    padding: 40px 40px 48px;
    max-width: 1400px;

}

.main-menu-column {
    min-width: 0;
    padding: 0;
}

.main-menu-category-link {
    text-decoration: none;
    display: block;
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.main-menu-category-link:hover {
    color: var(--accent);
}

.main-menu-category-title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: inherit;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.main-menu-divider {
    height: 2px;
    width: 60%;

    background: var(--text);
    margin: 12px 0 20px;
    border: none;
    border-radius: 2px;
}

.main-menu-subcategory-block {
    margin-bottom: 14px;
}

.main-menu-subcategory-link {
    text-decoration: none;
    display: block;
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.main-menu-subcategory-link:hover {
    color: var(--accent);
}

.main-menu-subcategory-title {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: inherit;
    line-height: 1.35;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.main-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-menu-items li {
    margin-bottom: 2px;
}

.main-menu-items a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.7;
    transition: color 0.2s ease;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.main-menu-items a:hover {
    color: var(--accent);
}

.main-menu-items-nested {
    list-style: none;
    padding: 0;
    margin: 4px 0 4px 12px;
    border-left: 1px solid var(--border);
    padding-left: 10px;
}

.main-menu-items-nested li {
    margin-bottom: 2px;
}

.main-menu-items-nested a {
    color: #999;
    font-size: 12px;
}

.main-menu-items-nested a:hover {
    color: var(--accent);
}

.main-menu-empty {
    padding: 40px;
    text-align: center;
    color: var(--muted);
}

@keyframes toastSlideIn {
  from {
      transform: translateX(100%) translateY(0);
      opacity: 0;
  }
  to {
      transform: translateX(0) translateY(0);
      opacity: 1;
  }
}

@keyframes toastSlideOut {
  from {
      transform: translateX(0) translateY(0);
      opacity: 1;
  }
  to {
      transform: translateX(100%) translateY(0);
      opacity: 0;
  }
}

.confirm-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  animation: fadeIn 0.2s ease-out;
}

.confirm-modal {
  background: white;
  border-radius: 0;
  padding: 0;
  max-width: 600px;
  width: 92%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease-out;
  overflow: hidden;
}

.confirm-modal-header {
  padding: 16px 22px 12px;
  border-bottom: 1px solid #e0e0e0;
}

.confirm-modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.confirm-modal-title i {
  font-size: 24px;
  color: #ff9800;
}

.confirm-modal-body {
  padding: 16px 22px;
  color: #666;
  font-size: 15px;
  line-height: 1.5;
}

.confirm-modal-footer {
  padding: 12px 22px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.confirm-modal-input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 0;
  font-size: 15px;
  color: #333;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.confirm-modal-input:focus {
  outline: none;
  border-color: #9cd78c;
  box-shadow: 0 0 0 3px rgba(156, 215, 140, 0.25);
}

.prompt-modal-title i {
  color: #4caf50;
}

.confirm-modal-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 0;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.confirm-modal-btn-cancel {
  background: #f5f5f5;
  color: #333;
}

.confirm-modal-btn-cancel:hover {
  background: #e0e0e0;
}

.confirm-modal-btn-confirm {
  background: #f44336;
  color: white;
}

.confirm-modal-btn-confirm:hover {
  background: #d32f2f;
}

.confirm-modal-btn-confirm.success {
  background: #4caf50;
}

.confirm-modal-btn-confirm.success:hover {
  background: #45a049;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes slideUp {
  from {
      transform: translateY(20px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

@media (max-width: 1200px) {
    .main-menu-content {
        gap: 32px 28px;
    }
}

@media (max-width: 1300px) {
    .main-menu-header {
        flex-wrap: wrap;
        gap: 12px;
    }
    .main-menu-brand {
        flex: 0 0 auto;
        order: 1;
    }
    .main-menu-close {
        flex: 0 0 auto;
        order: 2;
        margin-left: auto;
    }
    .main-menu-search {
        flex: 1 1 100%;
        order: 3;
        min-width: 0;
    }
}

@media (max-width: 900px) {
    header {
      background-size: 70%;
    }
    .main-menu-header {
      background-size: 70%;
    }
    .main-menu {
        max-height: 90vh;
    }
    .main-menu-header {
        padding: 14px 20px;
        gap: 14px;
    }
    .main-menu-logo svg {
        height: 28px;
        max-width: 180px;
    }
    .main-menu-subtitle {
        font-size: 13px;
    }
    .main-menu-search {
        margin-top: 6px;
    }
    .main-menu-search input {
        padding: 11px 16px 11px 42px;
    }
    .main-menu-close {
        width: 36px;
        height: 36px;
    }
    .main-menu-content {
        padding: 28px 24px 36px;
        gap: 28px 24px;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 600px) {
    .main-menu {
        max-height: 92vh;
    }
    .main-menu-header {
        padding: 10px 12px;
        gap: 8px;
    }
    .main-menu-logo svg {
        height: 24px;
        max-width: 120px;
    }
    .main-menu-subtitle {
        display: none;
    }
    .main-menu-close {
        width: 36px;
        height: 36px;
        padding: 6px;
    }
    .main-menu-search {
        margin-top: 4px;
    }
    .main-menu-search input {
        width: 100%;
        padding: 10px 16px 10px 40px;
        font-size: 14px;
    }
    .main-menu-search > i {
        position: absolute;
        left: 14px;
        right: auto;
        font-size: 14px;
    }
    .main-menu-content {
        padding: 20px 16px 28px;
        gap: 22px;
        grid-template-columns: 1fr;
    }
    .main-menu-category-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .main-menu-header {
        padding: 10px 10px;
    }
    .main-menu-logo svg {
        height: 22px;
        max-width: 100px;
    }
    .main-menu-close {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
    .main-menu-search input {
        padding: 9px 14px 9px 38px;
        font-size: 13px;
    }
    .main-menu-search > i {
        left: 12px;
        font-size: 13px;
    }
}

.main-nav {
    background: transparent;
    margin-top: 10px;
}
.main-nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav-item { position: relative; }

.main-nav-link {
    display: block;
    padding: 6px 0;
    font-size: 16px;

    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    line-height: 19px;
    color: #000;
    text-decoration: none;
    transition: color .2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
.main-nav-item:hover .main-nav-link,
.main-nav-link:focus-visible {
    color: var(--accent, #e2003d);
    text-decoration: none;
}

.main-nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;

    flex-direction: column;
    background-color: #f5f5f5;

    background-image: url("/images/bubble-right.svg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% 140px;

    padding: 20px 0 15px;
    box-shadow: 0 5px 6px rgba(135, 135, 135, .06), 0 5px 6px rgba(135, 135, 135, .85);
    z-index: 950;
}
.main-nav-item.has-children:hover .main-nav-dropdown,
.main-nav-item.has-children:focus-within .main-nav-dropdown {
    display: flex;
}
.main-nav-dropdown-links {
    padding: 0 22px;
}

.main-nav-sublink {
    display: block;
    padding: 0;
    font-size: 14px;

    font-weight: 500;
    letter-spacing: 1.4px;
    line-height: 30px;
    text-transform: uppercase;
    white-space: nowrap;
    color: #000;
    text-decoration: none;
    transition: color .15s;
}
.main-nav-sublink:hover,
.main-nav-sublink:focus-visible {
    color: var(--accent, #e2003d);
    text-decoration: none;
}
.main-nav-dropdown-teaser {

    margin: 0;
    padding: 35px 24px 0;
    text-align: center;
}
.main-nav-dropdown-teaser a {
    font-style: italic;
    font-size: 14px;
    color: #000;
    text-decoration: none;
}
.main-nav-dropdown-teaser a:hover {
    color: var(--accent, #e2003d);
    text-decoration: none;
}

@media (min-width: 901px) {
    .header-menu { display: none !important; }
}
@media (max-width: 900px) {
    .main-nav { display: none; }
}

:root {

    color-scheme: light;

    --bg: #ffffff;
    --text: #1f2430;
    --muted: #5b6272;
    --border: #e3e6ee;
    --card: #ffffff;
    --accent: #e2003d;
    --accent-dark:rgb(170, 0, 45);
    --accent-soft: #ffe9ec;
    --link: #e2003d;
  }

  * {

    box-sizing: border-box;
  }


  html {
    font-size: 62.5%;
  }

  body {
    margin: 0;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
  }


  button, input, optgroup, select, textarea {
    font-family: inherit;
  }



  .breadcrumb {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--muted);
    flex-wrap: wrap;
  }

  .breadcrumb a {
    color: var(--text);
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 500;
    transition: color 0.2s;
  }

  .breadcrumb a:hover {
    color: var(--accent, #e2003d);
  }

  .breadcrumb-home {
    font-size: 16px;
  }

  .breadcrumb-sep {
    color: var(--muted);
    font-weight: 400;
    user-select: none;
  }

  .breadcrumb-current {
    color: var(--muted);
    font-weight: 400;
  }


  .category-page .breadcrumb {
    margin-bottom: 20px;
  }

  @media (max-width: 900px) {
    .category-page .breadcrumb {
      margin-bottom: 16px;
    }
  }

  a { color: var(--link); text-decoration: none; }
  a:hover { text-decoration: none; }

  main{
    min-height: calc(100vh - 834px);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 0;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 700;
    transition: all .2s ease;
    font-size: 14px;
    border-radius: 4px;

  }

  .btn.primary {
    background: var(--accent);
    color: #fff;
  }

  .btn.primary:hover { background: var(--accent-dark); }

  .btn.ghost {
    background: #f4f5fb;
    color: var(--text);
    border-color: var(--border);
  }


  .container { max-width: 1366px; margin: 0 auto; padding: 0 32px; }
  .grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; align-items: start; }
  .col-1 { grid-column: span 1; } .col-2 { grid-column: span 1; } .col-3 { grid-column: span 3; }
  .col-4 { grid-column: span 4; } .col-5 { grid-column: span 5; } .col-6 { grid-column: span 6; }
  .col-7 { grid-column: span 7; } .col-8 { grid-column: span 8; } .col-9 { grid-column: span 9; }
  .col-10 { grid-column: span 10; } .col-11 { grid-column: span 11; } .col-12 { grid-column: span 12; }
  .col-start-1 { grid-column-start: 1; } .col-start-2 { grid-column-start: 2; } .col-start-3 { grid-column-start: 3; }
  .col-start-4 { grid-column-start: 4; } .col-start-5 { grid-column-start: 5; } .col-start-6 { grid-column-start: 6; }
  .col-start-7 { grid-column-start: 7; } .col-start-8 { grid-column-start: 8; } .col-start-9 { grid-column-start: 9; }
  .col-start-10 { grid-column-start: 10; } .col-start-11 { grid-column-start: 11; }
  @media (max-width: 1024px) {
    .col-md-6 { grid-column: span 6 !important; } .col-md-12 { grid-column: span 12 !important; }
    .col-md-start-1 { grid-column-start: 1; }
  }
  @media (max-width: 768px) {
    .container { padding: 0 16px; }
    .col-sm-12 { grid-column: span 12 !important; }
    .col-sm-6 { grid-column: span 6 !important; }
  }
@font-face {
    font-family: "ai-icons";
    src: url("https://all-inkl.com/web-guide/fonts/ai-icons.ttf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
.icon, [class^="ai-icon-"], [class*=" ai-icon-"] {

    font-family: "ai-icons" !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;


    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.ai-icon-x:before {
    content: "\f047";
}

.ai-icon-corner-right-up:before {
    content: "\f048";
}
.ai-icon-facebook-alt:before {
    content: "\f045";
}
.ai-icon-linkedin-alt:before {
    content: "\f044";
}
.ai-icon-facebook:before {
    content: "\f040";
}
.ai-icon-tiktok:before {
    content: "\f041";
}
.ai-icon-youtube:before {
    content: "\f042";
}
.ai-icon-instagram:before {
    content: "\f043";
}
.ai-icon-linkedin:before {
    content: "\f046";
}
.ai-icon-share:before {
    content: "\f03b";
}
.ai-icon-smile:before {
    content: "\f03c";
}
.ai-icon-neutral:before {
    content: "\f03d";
}
.ai-icon-read:before {
    content: "\f03e";
}
.ai-icon-share-alt:before {
    content: "\f03f";
}
.ai-icon-book-open:before {
    content: "\f03a";
}
.ai-icon-camera:before {
    content: "\f039";
}
.ai-icon-home:before {
    content: "\f037";
}
.ai-icon-menu:before {
    content: "\f038";
}
.ai-icon-e-mail:before {
    content: "\f016";
}
.ai-icon-arrow-right:before {
    content: "\f001";
}
.ai-icon-sync-alt:before {
    content: "\f035";
}
.ai-icon-exchange-alt:before {
    content: "\f036";
}
.ai-icon-quote-right:before {
    content: "\f034";
}
.ai-icon-exclamation-circle:before {
    content: "\f000";
}
.ai-icon-edit:before {
    content: "\f002";
}
.ai-icon-copy:before {
    content: "\f003";
}
.ai-icon-code:before {
    content: "\f004";
}
.ai-icon-cloud-upload-alt:before {
    content: "\f005";
}
.ai-icon-clipboard-check:before {
    content: "\f006";
}
.ai-icon-chevron-right:before {
    content: "\f007";
}
.ai-icon-chevron-left:before {
    content: "\f008";
}
.ai-icon-check-circle:before {
    content: "\f009";
}
.ai-icon-check:before {
    content: "\f00a";
}
.ai-icon-calendar-alt:before {
    content: "\f00b";
}
.ai-icon-book:before {
    content: "\f00c";
}
.ai-icon-bold:before {
    content: "\f00d";
}
.ai-icon-arrow-left:before {
    content: "\f00e";
}
.ai-icon-user:before {
    content: "\f00f";
}
.ai-icon-trash:before {
    content: "\f010";
}
.ai-icon-times:before {
    content: "\f011";
}
.ai-icon-thumbs-up:before {
    content: "\f012";
}
.ai-icon-thumbs-down:before {
    content: "\f013";
}
.ai-icon-tags:before {
    content: "\f014";
}
.ai-icon-tag:before {
    content: "\f015";
}
.ai-icon-star:before {
    content: "\f017";
}
.ai-icon-spinner:before {
    content: "\f018";
}
.ai-icon-shield:before {
    content: "\f019";
}
.ai-icon-search:before {
    content: "\f01a";
}
.ai-icon-save:before {
    content: "\f01b";
}
.ai-icon-qoute-right:before {
    content: "\f01c";
}
.ai-icon-puzzle-piece:before {
    content: "\f01d";
}
.ai-icon-plus:before {
    content: "\f01e";
}
.ai-icon-paper-plane:before {
    content: "\f01f";
}
.ai-icon-minus:before {
    content: "\f020";
}
.ai-icon-magic:before {
    content: "\f021";
}
.ai-icon-lock:before {
    content: "\f022";
}
.ai-icon-list-ul:before {
    content: "\f023";
}
.ai-icon-list-ol:before {
    content: "\f024";
}
.ai-icon-link:before {
    content: "\f025";
}
.ai-icon-language:before {
    content: "\f026";
}
.ai-icon-italic:before {
    content: "\f027";
}
.ai-icon-inbox:before {
    content: "\f028";
}
.ai-icon-images:before {
    content: "\f029";
}
.ai-icon-image:before {
    content: "\f02a";
}
.ai-icon-heading:before {
    content: "\f02b";
}
.ai-icon-grip-vertical:before {
    content: "\f02c";
}
.ai-icon-globe:before {
    content: "\f02d";
}
.ai-icon-folder-open:before {
    content: "\f02e";
}
.ai-icon-folder:before {
    content: "\f02f";
}
.ai-icon-file-alt:before {
    content: "\f030";
}
.ai-icon-eye-no:before {
    content: "\f031";
}
.ai-icon-eye:before {
    content: "\f032";
}
.ai-icon-exclamation-triangle:before {
    content: "\f033";
}

.popular-categories-bar {
  max-width: 1302px;
  margin: 0 auto;
  padding: 0 0 20px;
}

.popular-categories-inner {

}

.popular-categories-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text);
}

.popular-categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.popular-category-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 5px;
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  transition: border-color .2s, box-shadow .2s, color .2s;
}

.popular-category-chip:hover {
  color: var(--accent);
  background: #f5f6f8;
  transition: all 0.2s ease;
  text-decoration: none;
}

.popular-category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  background: #ebedf2;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1;
}

.popular-category-chip:hover .popular-category-count {
  background: var(--accent-soft);
  color: var(--accent);
}

@media (max-width: 1300px) {
  .popular-categories-bar {
    margin: 0 20px;
    max-width: calc(100% - 40px);
  }
}

@media (max-width: 768px) {
  .popular-categories-inner {
    padding: 20px 16px;
  }
  .popular-categories-list {
    gap: 8px;
  }
  .popular-category-chip {
    padding: 6px 12px;
    font-size: 12px;
  }
}

.tld-banner {
  position: relative;
  overflow: hidden;

  margin: 20px auto 20px;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
  max-width: 1302px;
  margin-left: auto;
  margin-right: auto;

}
.tld-banner .container { padding: 0 32px; }
.tld-banner-bg {
  border-radius: 5px;
  background-image: url('https://all-inkl.com/web-guide/img/bg-ad-tld-light@2x.png');
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.tld-banner .container {
  position: relative;
  z-index: 2;
}
.tld-banner-inner {
  border-radius: 5px;
  min-height: 320px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: center;
  padding: 48px 0;
}
.tld-banner-content {
  grid-column: span 6;
  max-width: 520px;
}
@media (max-width: 768px) {
  .tld-banner-content { grid-column: span 12; }
}
.tld-banner-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 1px;
}
.tld-banner-title-line {
  display: block;
}
.tld-banner-title-white { color: #000; }
.tld-banner-title-red { color: var(--accent); }
.tld-banner-desc {
  color: #000;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 20px;
  text-align: center;
}
.tld-banner-question {
  color: #000;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 16px;
}
.tld-banner-form {
  display: flex;
  width: max-content;
  gap: 10px;
  align-items: stretch;
}
.tld-banner-input {

  min-width: 260px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 5px;
  background: #fff;
  color: var(--text);
  font-size: 15px;
  outline: none;
}
.tld-banner-input::placeholder {
  color: var(--muted);
}
.tld-banner-select {
  padding: 14px 36px 14px 18px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 5px;
  background: #fff;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("/images/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px auto;
}
.tld-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.tld-banner-btn:hover {
  background: var(--accent-dark);
}

span.tld-banner-title-line:nth-child(2) {
  margin-left: 50px;
  font-size: 50px;
}
span.tld-banner-title-line:nth-child(1) {
  font-size: 50px;
}

@media (max-width: 1300px) {
  .tld-banner {
    margin: 20px !important;
    max-width: calc(100% - 40px) !important;
  }
}

@media (max-width: 768px) {
  .tld-banner .container { padding: 0 16px; }
  .tld-banner-inner { min-height: auto; padding: 32px 0; }

  .tld-banner-bg {
    background-image: none;
    background-color: #d7d8d7;
  }

  .tld-banner-form {
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .tld-banner-input { min-width: 100%; }
}

footer.page-footer {
    background: #f5f6f8;

    padding: 35px 0 35px;
    margin-top: 0;
    border-top: 1px solid #e3e6ee;
}

.footer-inner {
    align-items: flex-start;
    gap: 40px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo svg {
    height: 40px;
    width: auto;
}

.footer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-top,
.footer-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #5b6272;
    line-height: 1.5;
    justify-content: right;

}

.footer-top span,
.footer-nav a {
    color: #5b6272;
    text-decoration: none;
    white-space: nowrap;
}

.footer-nav a:hover {
    color: var(--text);
    text-decoration: underline;
}

.separator {
    color: #5b6272;
    margin: 0 4px;
}

.footer-social {
  text-align: right;font-size: 20px;letter-spacing: 4px;
}

.footer-bottom {
    margin-top: 16px;
    text-align: right;
}

.footer-privacy-link {
    color: #8a8d96;
    text-decoration: none;
    font-size: 13px;
}

.footer-privacy-link:hover {
    color: var(--text);
    text-decoration: underline;
}

@media (max-width: 900px) {
    .footer-inner { gap: 24px; }
}

@media (max-width: 600px) {

    .footer-top,
    .footer-nav {
        font-size: 12px;
        gap: 6px;
    }

    .separator {
        margin: 0 2px;
    }
}
  .article-wrapper {
    margin-top: 24px;
  }


  .article-header {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
  }

  .article-header-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
  }

  .article-header-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    background: #f0f1f3;
    color: #444;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .article-header-tag:hover {
    background: #e4e5e8;
    text-decoration: none;
    color: var(--accent);
  }

  .article-header h1 {
    font-size: 2.8em;
    border-bottom: none;
    padding-bottom: 0;
    color: var(--text);
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.3px;
    line-height: 1.2;
  }

  .article-header-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1300 / 480;
    contain: layout;
    border-radius: 5px;
  }

  .article-header-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  .ai-image-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    border-radius: 4px;
    backdrop-filter: blur(2px);
    pointer-events: none;
  }

  .ai-image-badge i {
    font-size: 11px;
  }

  .meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--muted);
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    align-items: center;
  }

  .dot {
    width: 5px;
    height: 5px;
    background: currentColor;
    border-radius: 50%;
    display: inline-block;
  }

  .wrapper {
    width: 90%;
    max-width: 1336px;
    margin: 0 auto 20px;
    padding: 0 18px;
    position: relative;
    z-index: 2;
  }

  .grid {
    display: grid;
    grid-template-columns: 1fr 385px;
    gap: 24px;
    align-items: start;
  }

  .article-main {
    min-width: 0;
  }

  .article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;

    top: calc(var(--header-height, 155px) + 20px);
    z-index: 10;


  }


  .card {

  }

  .toc {
    padding: 18px;
  }


  .toc h2 {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .toc-icon {
    width: 18px;
    height: 18px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2px 0;
    background: none;
    box-shadow: none;
    clip-path: none;
  }

  .toc-icon::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
  }

  .toc-icon::after {
    content: "";
    display: block;
    width: 75%;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
  }

  .toc-icon span {
    display: block;
    width: 50%;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
  }

  .toc ol {
    margin: 0;
    padding: 0;
    padding-left: 24px;
    color: var(--muted);
    position: relative;
    list-style: none;
  }

  .toc li {
    margin-bottom: 10px;
    line-height: 1.6;
    padding-left: 4px;
    font-size: 14px;
    position: relative;
  }

  .toc li::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 0;
    bottom: -10px;
    width: 2px;
    background: #e3e6ee;
    transition: background 0.2s ease;
  }

  .toc li:last-child::before {
    bottom: 0;
  }

  .toc li a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .toc li:hover::before,
  .toc li.active::before {
    background: var(--accent);
  }

  .toc li a:hover,
  .toc li.active a {
    color: var(--accent);
    text-decoration: none;
  }

  .product { display: grid; gap: 6px; color: var(--muted); font-size: 14px; }


  .related-heading {
    color: var(--text);
    margin-top: 48px;
    margin-bottom: 24px;
  }

  .related {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
  }

  @media (max-width: 900px) {
    .related {
      grid-template-columns: repeat(2, 1fr);
    }
  }

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

  .card-rel {
    display: block;
    text-decoration: none;
    background: transparent;
    transition: opacity 0.2s ease;
  }


  .card-rel-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;

    margin-bottom: 16px;
  }

  .card-rel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .card-rel:hover .card-rel-image img {
    transform: scale(1.03);
  }

  .card-rel-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    word-break: break-word;
  }

  .card-rel-category {
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
  }

  .card-rel-title {
    display: block;
    color: var(--text);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
  }

  .card-rel:hover .card-rel-title{
    color: var(--accent);
    transition: all 0.2s ease;
  }

  .card-rel-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
  }

  .share {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-left: auto;
  }

  .share-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    border-radius: 5px;
  }

  .share-copy:hover {
    background: #f5f6f8;
    color: var(--accent)
  }

  .share-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    animation: tooltipFade 2s ease forwards;
    z-index: 100;
  }

  .share-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1a1a1a;
  }

  @keyframes tooltipFade {
    0% { opacity: 0; transform: translateX(-50%) translateY(4px); }
    15% { opacity: 1; transform: translateX(-50%) translateY(0); }
    75% { opacity: 1; }
    100% { opacity: 0; }
  }

  .share-icon {
    width: 36px;
    height: 36px;
    border-radius: 5px;
    display: grid;
    place-items: center;
    background: #fff;
    color: #343a4b;
    font-size: 15px;
    border: 1px solid var(--border);
    border-bottom: 1px solid var(--border) !important;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .share-icon:hover {
    background: #f5f6f8;
    color: var(--accent);
    border-bottom: 1px solid var(--border) !important;
  }


  .toc-mobile {
    display: none;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    background: var(--card, #fff);
    overflow: hidden;
  }

  .toc-mobile-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    min-height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    text-align: left;
  }

  .toc-mobile-arrow {
    margin-left: auto;
    font-size: 14px;
    transition: transform 0.3s ease;
    transform: rotate(180deg);
  }

  .toc-mobile.collapsed .toc-mobile-arrow {
    transform: rotate(0deg);
  }

  .toc-mobile-dropdown {
    max-height: 600px;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .toc-mobile.collapsed .toc-mobile-dropdown {
    max-height: 0;
  }

  .toc-mobile-dropdown ol {
    margin: 0;
    padding: 0 18px 16px 42px;
    list-style: none;
    position: relative;
  }

  .toc-mobile-dropdown li {

    line-height: 1.6;
    padding-left: 4px;
    font-size: 14px;
    position: relative;
  }

  .toc-mobile-dropdown li::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 0;
    bottom: -10px;
    width: 2px;
    background: #e3e6ee;
    transition: background 0.2s ease;
  }

  .toc-mobile-dropdown li:last-child::before {
    bottom: 0;
  }

  .toc-mobile-dropdown li a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    padding: 8px 0;
    line-height: 1.6;
  }

  .toc-mobile-dropdown li:hover::before,
  .toc-mobile-dropdown li.active::before {
    background: var(--accent);
  }

  .toc-mobile-dropdown li a:hover,
  .toc-mobile-dropdown li.active a {
    color: var(--accent);
  }

  @media (max-width: 1100px) {
    .grid {
      grid-template-columns: 1fr;
    }
    .toc { display: none; }
    .toc-mobile { display: block; }
    .article-sidebar {
      position: static;
    }
  }

  @media (max-width: 900px) {
    .grid { grid-template-columns: 1fr; }
    .sidebar { position: relative; top: 0; }
    .article-sidebar { position: static; }
    .wrapper {
      margin-top: 0;
      width: 100%;
      padding: 0px;
    }
    .card {
      border-radius: 0px;
    }
    .article-header h1 {
      font-size: 1.8em;
      line-height: 1.25;
    }
    .article-header {
      padding: 0 16px;
    }
    .article-header-image {
      border-radius: 0;
    }
    .article-header-image img {
      border-radius: 0;
    }
    .meta {

    }
    article h1, article h2, article h3, article h4, article h5 {
      line-height: 1.3;
    }
  }


  .article-footer-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid var(--border);
  }

  .article-footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .article-footer-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px;
    background: #f0f1f3;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .article-footer-tag:hover {
    background: #e4e5e8;
    text-decoration: none;
    color: var(--accent);
  }

  .article-footer-share {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .article-footer-share a,
  .article-footer-share a:hover,
  .share a,
  .share a:hover {

  }


  .article-newsletter-banner {
    background: linear-gradient(105deg, #0d0508 0%, #1a0a0f 20%, #2a0a12 40%, #4d0a18 60%, #7a0a22 80%, #a80d2a 100%);
    border: none;
    border-radius: 5px;
    padding: 0;
    color: #ffffff;
    display: flex;
    position: relative;
    overflow: hidden;
    min-height: 100px;
    margin-top: 24px;
  }

  .article-newsletter-branding {
    width: 200px;
    padding: 20px;
    position: relative;
    font-size: 24px;
    font-weight: 900;
    font-style: italic;
    line-height: 1.1;
    text-align: center;
    color: #ffffff;
    z-index: 1;
  }

  .article-newsletter-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    flex-wrap: wrap;
  }

  .article-newsletter-header {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .article-newsletter-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .article-newsletter-subtitle {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
  }

  .article-newsletter-btn {
    background: #DC143C;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 10px 18px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
  }

  .article-newsletter-btn:hover {
    background: #f01e43;
    transform: translateY(-1px);
  }

  .article-newsletter-btn.newsletter-btn i{
    font-weight: bold;
  }

  @media (max-width: 900px) {
    article {
      padding: 0px 15px;
    }
  }

  @media (max-width: 600px) {
    .article-newsletter-banner {
      flex-direction: column;
    }
    .article-newsletter-branding {
      width: 100%;
      padding: 16px;
      font-size: 20px;
    }
    .article-newsletter-right {
      flex-direction: column;
      align-items: flex-start;
      padding: 16px 20px;
    }
    .article-newsletter-btn {
      width: 100%;
      justify-content: center;
    }
  }

  @media (max-width: 600px) {
    .article-footer-meta {
      flex-direction: column;
      align-items: flex-start;
    }
    .article-footer-share {
      width: 100%;
      justify-content: flex-start;
    }
  }

.card-rel-date {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted, #666);
  margin-bottom: 4px;
}

article {
    flex: 1;

    overflow-y: auto;
    background: #ffffff;
    color: #333333;
    word-wrap: break-word;

}

article::-webkit-scrollbar {
    width: 10px;
}

article::-webkit-scrollbar-track {
    background: #f5f5f5;
}

article::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 5px;
}

article::-webkit-scrollbar-thumb:hover {
    background: #999999;
}

article .element-palette {
    background: #ffffff;
    padding: 18px 24px;
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-height: 200px;
    overflow-y: auto;
}

article .element-palette::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

article .element-palette::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 4px;
}

article .element-palette::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 4px;
}

article .element-palette::-webkit-scrollbar-thumb:hover {
    background: #999999;
}

article .element-button {
    padding: 10px 14px;
    background: #ffffff;
    color: #333333;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

article .element-button i {
    font-size: 16px;
    color: #333333;
}

article .element-button .button-label {
    display: none;
}

article .element-button:hover {
    background: #F8F8F8;
    border-color: #DC143C;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(220, 20, 60, 0.15);
}

article .element-button:hover i {
    color: #DC143C;
}

article .element-button:active {
    background: #ffffff;
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

article .element-button[data-type="image"] {
    background: #DC143C;
    border-color: #DC143C;
    color: #ffffff;
}

article .element-button[data-type="image"] i {
    color: #ffffff;
}

article .element-button[data-type="image"]:hover {
    background: #B8122F;
    border-color: #B8122F;
}

article .element-button.draggable {
    cursor: grab;
}

article .element-button.draggable:active {
    cursor: grabbing;
}

article h1 {
    font-size: 2.2em;
    margin: 1.2em 0 0.8em 0;
    border-bottom: none;
    padding-bottom: 0;
    color: #333333;
    font-weight: 700;
    letter-spacing: -0.02em;
}
article h2 {
    font-size: 1.8em;
    margin: 1.2em 0 0.6em 0;
    border-bottom: none;
    padding-bottom: 0;
    color: #333333;
    font-weight: 700;
    letter-spacing: -0.01em;
}
article h3 {
    font-size: 1.5em;
    margin: 1em 0 0.5em 0;
    color: #333333;
    font-weight: 700;
}
article h4 { font-size: 1.3em; margin: 1.1em 0 0.5em 0; color: #333333; font-weight: 700; }
article h5 { font-size: 1.1em; margin: 1.2em 0 0.5em 0; color: #333333; font-weight: 700; }
article h6 { font-size: 1em; margin: 1.3em 0 0.5em 0; color: #666666; font-weight: 700; }
article p { margin: 1em 0; line-height: 1.7; color: #333333; }
article ul, article ol { margin: 1em 0; padding-left: 1em; }
article li { margin: 0.6em 0; line-height: 1.6; color: #333333; }
article code {
    background: #F8F8F8;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9em;
    color: #DC143C;
    border: 1px solid #E0E0E0;
}
article .code-block-wrapper {
    position: relative;
    margin: 1.2em 0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

article .code-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #3C3C3C;
    padding: 0 16px;
    height: 40px;
    border-bottom: 1px solid #4A4A4A;
}

article .code-block-tabs {
    display: flex;
    align-items: center;
    gap: 16px;
}

article .code-block-tab {
    color: #9A9A9A;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
    transition: color 0.2s ease;
}

article .code-block-tab:hover {
    color: #CCCCCC;
}

article .code-block-tab.active {
    color: #FFFFFF;
    font-weight: 500;
}

article .code-block-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

article .code-block-action {
    color: #9A9A9A;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s ease;
    background: none;
    border: none;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

article .code-block-action:hover {
    color: #FFFFFF;
}

article .code-block-wrapper pre {
    background: #2D2D2D;
    padding: 20px 24px;
    overflow-x: auto;
    margin: 0;
    border: none;
}

article .code-block-collapsible {
    position: relative;
}

article .code-block-collapsible.is-collapsed pre.code-block-collapsed {

    max-height: calc((14px * 1.7 * 20) + 40px);
    overflow: hidden;
}

article .code-block-collapsible.is-collapsed pre.code-block-collapsed::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(45, 45, 45, 0) 0%, rgba(45, 45, 45, 0.95) 80%, #2D2D2D 100%);
    pointer-events: none;
}

article .code-block-expand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background: #3C3C3C;
    color: #D4D4D4;
    border: none;
    border-top: 1px solid #4A4A4A;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

article .code-block-expand:hover {
    background: #4A4A4A;
    color: #FFFFFF;
}

article .code-block-expand i {
    font-size: 14px;
    transition: transform 0.25s ease;
}

article .code-block-collapsible:not(.is-collapsed) .code-block-expand i {
    transform: rotate(180deg);
}

article pre code {
    background: none;
    padding: 0;
    border: none;
    color: #D4D4D4;
    font-size: 14px;
    line-height: 1.7;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

article pre.line-numbers {
    position: relative;
}

article .code-language-badge {
    display: none;
}

article .code-copy-button {
    color: #9A9A9A;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s ease;
    background: none;
    border: none;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

article .code-copy-button:hover {
    color: #FFFFFF;
}

article .code-copy-button:active {
    transform: scale(0.95);
}

article .code-copy-button.copied {
    color: #4EC9B0;
}

article .code-copy-button.copied:hover {
    color: #4EC9B0;
}

article .code-copy-button i {
    font-size: 16px;
}

article pre[class*="language-"],
article code[class*="language-"] {
    color: #D4D4D4;
    background: #2f2f2f;
    text-shadow: none;
}

article pre .token.tag,
article pre .token.tag .punctuation {
    color: #6A9955;
}

article pre .token.attr-name {
    color: #C586C0;
}

article pre .token.attr-value,
article pre .token.string {
    color: #CE9178;
}

article pre .token.comment {
    color: #6A9955;
    font-style: italic;
}

article pre .token.keyword {
    color: #569CD6;
}

article pre .token.function {
    color: #DCDCAA;
}

article pre .token.number {
    color: #B5CEA8;
}

article pre .token.operator {
    color: #D4D4D4;
}

article pre .token.class-name {
    color: #4EC9B0;
}

article pre .token.property {
    color: #9CDCFE;
}

article pre .token.punctuation {
    color: #D4D4D4;
}

article blockquote {
    position: relative;
    padding: 20px 20px 20px 50px;
    margin: 2em 0;
    background: transparent;
    color: #333333;
    border: none;
    font-style: normal;
    font-size: 1.1em;
    line-height: 1.6;
}

article blockquote::before {
    content: "\201C";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 5em;
    line-height: 1;
    color: #d0d0d0;
    font-family: Georgia, serif;
}

article blockquote p {
    margin: 0 0 1em 0;
}

article blockquote p:last-of-type {
    margin-bottom: 1em;
}

article blockquote footer,
article blockquote cite {
    display: block;
    font-style: normal;
}

article blockquote footer strong,
article blockquote cite strong {
    display: block;
    font-weight: 700;
    color: #222222;
    font-size: 0.95em;
    margin-bottom: 2px;
}

article blockquote footer span,
article blockquote cite span {
    display: block;
    font-size: 0.85em;
    color: #888888;
}
article table {
    border-collapse: collapse;
    width: 100%;
    margin: 1.5em 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
}
article table th, article table td {
    border: 1px solid #e5e5e5;
    padding: 12px 16px;
    text-align: left;
}
article table th {
    background: #DC143C;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
}
article table tr:nth-child(even) {
    background: #F8F8F8;
}
article highlight-button-link{
    border-bottom: none;
}
article a {
    color: #DC143C;
    text-decoration: none;
    font-weight: 600;

    transition: all 0.2s;
}
article a .ai-icon-share {
    display: inline-block;
    font-size: 18px;
    margin-left: 2px;
    vertical-align: middle;
    color: #DC143C;
    transition: color 0.2s;
}
article a:hover {
    color: #B8122F;
}
article a:hover .ai-icon-share {
    color: #B8122F;
}
article .highlight-button-link{
    border-bottom: none ;
}
article img:not(.card-rel-image img) {
    max-width: 100%;
    height: auto;
    margin: 1.5em 0;


}

article .card-rel-image img {
    max-width: none;
    margin: 0;
    border-radius: 5px;
}
article hr {
    border: none;
    border-top: 2px solid #e5e5e5;
    margin: 2em 0;
}

article .custom-markdown-element {
    background: #F8F8F8;
    border: 1px solid #E0E0E0;
    padding: 24px 28px;
    margin: 2em 0;
    border-radius: 5px;
    display: block;

    font-weight: 600;
    color: #333333;
    position: relative;
    transition: all 0.3s ease;
}

article .custom-markdown-element.highlight-box {
    border-radius:5px;
    background: linear-gradient(105deg, #0d0508 0%, #1a0a0f 20%, #2a0a12 40%, #4d0a18 60%, #7a0a22 80%, #a80d2a 100%);
    background-image: url("https://all-inkl.com/web-guide/img/banner-newsletter-black.svg");
    background-size: cover;
    border: none;
    padding: 0;
    color: #ffffff;
    display: flex;
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

article .custom-markdown-element.highlight-box .highlight-right {
    border-radius: 5px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 28px;
    justify-content: center;
}

article .custom-markdown-element.highlight-box .highlight-header {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

article .custom-markdown-element.highlight-box .highlight-title {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

article .custom-markdown-element.highlight-box .highlight-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    text-transform: none;
    letter-spacing: 0;
}

article .custom-markdown-element.highlight-box .highlight-content {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: space-between;
}

article .custom-markdown-element.highlight-box .highlight-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 160px;
}

article .custom-markdown-element.highlight-box .highlight-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

article .custom-markdown-element.highlight-box .highlight-feature-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid #DC143C;
    background: #DC143C;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

article .custom-markdown-element.highlight-box .highlight-feature-icon i {
    color: #ffffff;
    font-size: 9px;
}

article .custom-markdown-element.highlight-box .highlight-feature-text {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    flex: 1;
}

article .custom-markdown-element.highlight-box .highlight-description {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    margin: 0;
}

article .custom-markdown-element.highlight-box .highlight-button {
    background: #DC143C;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-end;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

article .custom-markdown-element.highlight-box .highlight-button::before {
    content: "\f007\f007";
    font-family: "ai-icons" !important;
    font-size: 12px;
    letter-spacing: -17px;
    margin-right: 16px;
}

article .custom-markdown-element.highlight-box .highlight-button:visited {
    color: #ffffff;
}

article .custom-markdown-element.highlight-box .highlight-features:only-child,
article .custom-markdown-element.highlight-box .highlight-features:has(.highlight-feature:only-child) {
    min-width: 50%;
}

@media (max-width: 700px) {
    article .custom-markdown-element.highlight-box {
        flex-direction: column;
    }

    article .custom-markdown-element.highlight-box .highlight-right {
        padding: 20px;
    }

    article .custom-markdown-element.highlight-box .highlight-content {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    article .custom-markdown-element.highlight-box .highlight-button {
        width: 100%;
        justify-content: center;
        align-self: stretch;
    }
}

article .custom-markdown-element.highlight-box .highlight-button:hover {
    background: #f01e43;
    transform: translateY(-1px);
}

article .custom-markdown-element.highlight-box .highlight-button:active {
    transform: translateY(0);
}

article .custom-markdown-element.highlight-box .highlight-add-feature {
    display: none;
}

.preview-editable .custom-markdown-element.highlight-box .highlight-add-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    margin-top: 4px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    border: 1px dashed rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.preview-editable .custom-markdown-element.highlight-box .highlight-add-feature:hover {
    background: rgba(220, 20, 60, 0.25);
    border-color: #DC143C;
    color: #ffffff;
}

.preview-editable .custom-markdown-element.highlight-box .highlight-add-feature i {
    font-size: 11px;
}

article .custom-markdown-element.definition {
    border-radius:5px;
    background: #ffffff;
    border: 1px dashed #c0c0c0;
    padding: 18px 20px;
    margin: 2em 0;
    color: #666666;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 8px 20px;
}

article .custom-markdown-element.definition .definition-icon {
    color: #b0b0b0;
    font-size: 42px;
    flex-shrink: 0;
    grid-row: 1 / 3;
    grid-column: 1;
    align-self: start;
    line-height: 1;
}

article .custom-markdown-element.definition .definition-title {
    font-size: 16px;
    font-weight: 700;
    color: #444444;
    margin: 0;
    line-height: 1.4;
    align-self: end;
}

article .custom-markdown-element.definition .definition-content {
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    color: #666666;
    line-height: 1.7;
    margin: 0;
    grid-column: 2;
}

article .custom-markdown-element.definition .definition-content strong {
    font-weight: 700;
    color: #555555;
}

article .custom-markdown-element .element-title {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
    display: block;
}

article .custom-markdown-element .element-content {
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    display: block;
}
