/* Blackmagic thin announcement banner — homepage strip */

.bmd-thin-banner {
  --bmd-bg: #0a0a0a;
  --bmd-orange: #F1651F;
  --bmd-white: #ffffff;
  --bmd-line: #222222;
  box-sizing: border-box;
  width: 100%;
  background: var(--bmd-bg);
  border-bottom: 1px solid var(--bmd-line);
  font-family: Arial, Helvetica, sans-serif;
}

.bmd-thin-banner *,
.bmd-thin-banner *::before,
.bmd-thin-banner *::after {
  box-sizing: border-box;
}

.bmd-thin-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  min-height: 64px;
}

.bmd-thin-banner__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 28px;
  border-right: 1px solid var(--bmd-line);
}

.bmd-thin-banner__brand img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 240px;
  object-fit: contain;
}

.bmd-thin-banner__copy {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 12px;
  min-width: 0;
  margin: 0;
}

.bmd-thin-banner__kicker {
  margin: 0;
  color: var(--bmd-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

.bmd-thin-banner__title {
  margin: 0;
  color: var(--bmd-white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.2;
  white-space: nowrap;
}

.bmd-thin-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
  padding: 9px 20px;
  background: var(--bmd-orange);
  color: var(--bmd-white) !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-decoration: none !important;
  text-transform: uppercase;
  border-radius: 4px;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.bmd-thin-banner__btn:hover,
.bmd-thin-banner__btn:focus-visible {
  background: #d45516;
  color: var(--bmd-white) !important;
}

@media screen and (max-width: 991px) {
  .bmd-thin-banner__inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "copy"
      "btn";
    justify-items: center;
    text-align: center;
    gap: 10px;
    padding: 14px 16px 16px;
    min-height: 0;
  }

  .bmd-thin-banner__brand {
    grid-area: brand;
    justify-content: center;
    width: 100%;
    padding: 0 0 10px;
    border-right: 0;
    border-bottom: 1px solid var(--bmd-line);
  }

  .bmd-thin-banner__brand img {
    height: 36px;
    max-width: 220px;
    width: auto;
    margin: 0 auto;
  }

  .bmd-thin-banner__copy {
    grid-area: copy;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
  }

  .bmd-thin-banner__kicker {
    font-size: 10px;
    letter-spacing: 1.8px;
    white-space: normal;
  }

  .bmd-thin-banner__title {
    font-size: 16px;
    white-space: normal;
  }

  .bmd-thin-banner__btn {
    grid-area: btn;
    margin-left: 0;
    width: 100%;
    max-width: 320px;
    padding: 12px 18px;
  }
}
