/* VLN Tool Collapse — mobile launcher card + hidden state
   Doubled selectors beat vln-pages.css bare-element rules.
   Inert at >= 768 px. */

@media (max-width: 767.98px) {

  .vlnTool--collapsed.vlnTool--collapsed {
    display: none !important;
  }

  .vlnToolLauncher.vlnToolLauncher {
    --tc-navy: #0A2540;
    --tc-gold: #FFB800;
    --tc-white: #fff;
    --tc-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    max-width: 100%;
    min-height: 110px;
    padding: 20px 16px;
    margin: 0 0 12px;
    border-radius: 14px;
    background: var(--tc-navy);
    border: none;
    box-shadow: 0 2px 8px rgba(10, 37, 64, .18);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  }

  .vlnToolLauncher.vlnToolLauncher .vlnTL-title.vlnTL-title {
    font-family: var(--tc-font);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--tc-white);
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .vlnToolLauncher.vlnToolLauncher .vlnTL-sub.vlnTL-sub {
    font-family: var(--tc-font);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    color: rgba(255, 255, 255, .7);
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .vlnToolLauncher.vlnToolLauncher .vlnTL-btn.vlnTL-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--tc-font);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: var(--tc-navy);
    background: var(--tc-gold);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    margin: 4px 0 0;
    cursor: pointer;
    text-decoration: none;
  }
}

@media (min-width: 768px) {
  .vlnToolLauncher.vlnToolLauncher {
    display: none !important;
  }
}
