@charset "UTF-8";
@keyframes rl-ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes rl-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}
@keyframes rl-slide-in {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.rl {
  background: #f5f4f1;
  color: #1c1c1a;
  font-family: "Barlow", sans-serif;
  -webkit-font-smoothing: antialiased;
}
.rl__ticker {
  background: #cc1f1f;
  height: 32px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.rl__ticker-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.3);
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.rl__ticker-track {
  display: flex;
  align-items: center;
  overflow: hidden;
  flex: 1;
}
.rl__ticker-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: rl-ticker-scroll 70s linear infinite;
  padding-left: 32px;
}
.rl__ticker-item {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 10px;
}
.rl__ticker-item::before {
  content: "▸";
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
}
.rl__masthead {
  background: #ffffff;
  border-bottom: 1px solid #e2e0db;
  padding-left: max(15px, 50% - 635px);
  padding-right: max(15px, 50% - 635px);
}
.rl__masthead-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 36px 0 0;
  border-bottom: 2px solid #0a0a0a;
  gap: 32px;
}
.rl__masthead-top {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.rl__masthead-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  margin: 0;
}
.rl__masthead-subtitle {
  font-family: "Barlow", sans-serif;
  color: #363636;
  border-left: 2px solid #e2e0db;
  font-size: 15px;
  padding-left: 16px;
  padding-bottom: 12px;
  line-height: 1.8;
}
.rl__masthead-meta {
  display: flex;
  gap: 0;
  padding-bottom: 16px;
}
.rl__masthead-stat {
  padding: 0 20px;
  border-left: 1px solid #e2e0db;
  text-align: right;
}
.rl__masthead-stat:first-child {
  border-left: none;
  padding-left: 0;
}
.rl__masthead-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #0a0a0a;
  line-height: 1;
}
.rl__masthead-num span {
  font-size: 14px;
  color: #cc1f1f;
}
.rl__masthead-num--accent {
  color: #cc1f1f;
}
.rl__masthead-lbl {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #363636;
  margin-top: 3px;
}
.rl__filter-bar {
  background: #ffffff;
  border-bottom: 1px solid #e2e0db;
  position: sticky;
  top: 0;
  z-index: 100;
  padding-left: max(15px, 50% - 635px);
  padding-right: max(15px, 50% - 635px);
}
.rl__filter-inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.rl__filter-inner::-webkit-scrollbar {
  display: none;
}
.rl__filter-btn {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #363636;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
  margin-bottom: -1px;
}
.rl__filter-btn:hover {
  color: #1c1c1a;
}
.rl__filter-btn.is-active {
  color: #1c1c1a;
  border-bottom-color: #cc1f1f;
}
.rl__filter-btn.is-active .rl__filter-count {
  color: #cc1f1f;
}
.rl__filter-count {
  color: #363636;
  margin-left: 4px;
  font-size: 10px;
}
.rl__filter-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  flex-shrink: 0;
}
.rl__search-wrap {
  position: relative;
}
.rl__search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #363636;
  pointer-events: none;
}
.rl__filter-search {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #1c1c1a;
  background: #f5f4f1;
  border: 1px solid #e2e0db;
  outline: none;
  padding: 7px 12px 7px 30px;
  width: 200px;
  transition: border-color 0.15s, background 0.15s;
}
.rl__filter-search:focus {
  border-color: #1c1c1a;
  background: #ffffff;
}
.rl__filter-search::-moz-placeholder {
  color: #363636;
}
.rl__filter-search::placeholder {
  color: #363636;
}
.rl__sort-bar {
  background: #f5f4f1;
  border-bottom: 1px solid #e2e0db;
  padding-left: max(15px, 50% - 635px);
  padding-right: max(15px, 50% - 635px);
  display: flex;
  align-items: center;
}
.rl__col-head {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #363636;
  padding: 10px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: color 0.12s;
}
.rl__col-head:hover {
  color: #1c1c1a;
}
.rl__col-head.is-active {
  color: #1c1c1a;
}
.rl__col-head.is-active svg {
  opacity: 1;
  color: #cc1f1f;
}
.rl__col-head svg {
  opacity: 0.5;
}
.rl__col--num {
  width: 48px;
  flex-shrink: 0;
}
.rl__col--date {
  width: 140px;
  flex-shrink: 0;
}
.rl__col--cat {
  width: 160px;
  flex-shrink: 0;
}
.rl__col--title {
  flex: 1;
}
.rl__col--action {
  width: 80px;
  flex-shrink: 0;
  text-align: right;
  justify-content: flex-end;
}
.rl__cat-pill {
  display: inline-block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 9px;
  padding: 3px 8px;
  border: 1px solid currentColor;
}
.rl__cat-pill--executive {
  color: #cc1f1f;
  border-color: #cc1f1f;
}
.rl__cat-pill--economy {
  color: #1a6b3c;
  border-color: #1a6b3c;
}
.rl__cat-pill--healthcare {
  color: #5c1a7a;
  border-color: #5c1a7a;
}
.rl__cat-pill--immigration {
  color: #1a3f7a;
  border-color: #1a3f7a;
}
.rl__cat-pill--energy {
  color: #8a4800;
  border-color: #8a4800;
}
.rl__cat-pill--other {
  color: #363636;
  border-color: #363636;
}
.rl__featured {
  background: #ffffff;
  border-bottom: 2px solid #0a0a0a;
  transition: background 0.12s;
}
.rl__featured.is-hidden {
  display: none;
}
.rl__featured-inner {
  padding-left: max(15px, 50% - 635px);
  padding-right: max(15px, 50% - 635px);
}
.rl__featured-inner:hover {
  background: #f5f4f1;
}
.rl__featured-inner:hover .rl__feat-title {
  color: #cc1f1f;
}
.rl__featured-recent-contain {
  padding-left: max(15px, 50% - 635px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.rl__featured-eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #cc1f1f;
  padding: 16px 0 12px;
  border-bottom: 1px solid #e2e0db;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rl__featured-eyebrow::after {
  content: "";
  display: block;
  height: 1px;
  flex: 1;
  background: #e2e0db;
}
.rl__live-dot {
  width: 7px;
  height: 7px;
  background: #cc1f1f;
  border-radius: 50%;
  animation: rl-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.rl__featured-doc {
  display: grid;
  grid-template-columns: 48px 140px 160px 1fr 220px;
  align-items: start;
  padding: 24px 0;
  cursor: pointer;
}
.rl__feat-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #cc1f1f;
  padding-top: 3px;
}
.rl__feat-date {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #363636;
  padding-top: 3px;
  line-height: 1.6;
}
.rl__feat-cat {
  padding-top: 2px;
}
.rl__feat-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #0a0a0a;
  line-height: 1;
  margin-bottom: 8px;
  text-decoration: none;
  display: block;
  transition: color 0.15s;
}
.rl__featured:hover .rl__feat-title {
  color: #cc1f1f;
}
.rl__feat-desc {
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #363636;
  line-height: 1.65;
  max-width: 600px;
}
.rl__feat-image-col {
  padding-left: 24px;
  padding-top: 2px;
}
.rl__feat-image-slot {
  width: 100%;
  background: #f5f4f1;
  border: 1px solid #e2e0db;
  overflow: hidden;
  transition: border-color 0.15s;
}
.rl__feat-image-slot img {
  width: 100%;
  height: auto;
  display: block;
}
.rl__feat-action {
  margin-top: 10px;
}
.rl__dl-btn {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: #cc1f1f;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}
.rl__dl-btn:hover {
  background: #0a0a0a;
}
.rl__results-info {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: max(15px, 50% - 635px);
  padding-right: max(15px, 50% - 635px);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  letter-spacing: 0.06em;
  color: #363636;
  background: #f5f4f1;
  border-bottom: 1px solid #e2e0db;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rl__results-info strong {
  color: #1c1c1a;
}
.rl__table {
  background: #ffffff;
}
.rl__doc-row {
  display: grid;
  grid-template-columns: 48px 140px 160px 1fr 80px;
  align-items: center;
  padding-left: max(15px, 50% - 635px);
  padding-right: max(15px, 50% - 635px);
  border-bottom: 1px solid #e2e0db;
  cursor: pointer;
  min-height: 60px;
  text-decoration: none;
  color: inherit;
  transition: background 0.1s;
  animation: rl-slide-in 0.25s ease both;
}
.rl__doc-row:nth-child(1) {
  animation-delay: 0.025s;
}
.rl__doc-row:nth-child(2) {
  animation-delay: 0.05s;
}
.rl__doc-row:nth-child(3) {
  animation-delay: 0.075s;
}
.rl__doc-row:nth-child(4) {
  animation-delay: 0.1s;
}
.rl__doc-row:nth-child(5) {
  animation-delay: 0.125s;
}
.rl__doc-row:nth-child(6) {
  animation-delay: 0.15s;
}
.rl__doc-row:nth-child(7) {
  animation-delay: 0.175s;
}
.rl__doc-row:nth-child(8) {
  animation-delay: 0.2s;
}
.rl__doc-row:nth-child(9) {
  animation-delay: 0.225s;
}
.rl__doc-row:nth-child(10) {
  animation-delay: 0.25s;
}
.rl__doc-row:nth-child(11) {
  animation-delay: 0.275s;
}
.rl__doc-row:nth-child(12) {
  animation-delay: 0.3s;
}
.rl__doc-row:nth-child(13) {
  animation-delay: 0.325s;
}
.rl__doc-row:nth-child(14) {
  animation-delay: 0.35s;
}
.rl__doc-row:nth-child(15) {
  animation-delay: 0.375s;
}
.rl__doc-row:nth-child(16) {
  animation-delay: 0.4s;
}
.rl__doc-row:nth-child(17) {
  animation-delay: 0.425s;
}
.rl__doc-row:nth-child(18) {
  animation-delay: 0.45s;
}
.rl__doc-row:nth-child(19) {
  animation-delay: 0.475s;
}
.rl__doc-row:nth-child(20) {
  animation-delay: 0.5s;
}
.rl__doc-row:hover {
  background: #f5f4f1;
}
.rl__doc-row:hover .rl__row-num {
  color: #363636;
}
.rl__doc-row:hover .rl__row-title {
  color: #cc1f1f;
}
.rl__doc-row:hover .rl__row-pdf {
  color: #cc1f1f;
}
.rl__doc-row.is-hidden {
  display: none;
}
.rl__row-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #e2e0db;
  transition: color 0.12s;
}
.rl__row-date {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #363636;
}
.rl__row-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #1c1c1a;
  transition: color 0.15s;
  padding: 14px 20px 14px 0;
  line-height: 1.2;
}
.rl__row-action {
  text-align: right;
}
.rl__row-pdf {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #363636;
  text-decoration: none;
  transition: color 0.12s;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.rl__sentinel {
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: max(15px, 50% - 635px);
  padding-right: max(15px, 50% - 635px);
  background: #ffffff;
  border-bottom: 1px solid #e2e0db;
  display: flex;
  justify-content: center;
}
.rl__spinner {
  display: none;
  align-items: center;
  gap: 6px;
}
.rl__spinner.is-visible {
  display: flex;
}
.rl__spinner-dot {
  width: 8px;
  height: 8px;
  background: #cc1f1f;
  border-radius: 50%;
  animation: rl-spinner-bounce 1.2s ease-in-out infinite;
}
.rl__spinner-dot:nth-child(2) {
  animation-delay: 0.15s;
}
.rl__spinner-dot:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes rl-spinner-bounce {
  0%, 80%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}
.rl__ad-wrap {
  max-width: 500px;
  margin: 32px auto;
  padding: 0 32px;
}
.rl__no-results {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: max(15px, 50% - 635px);
  padding-right: max(15px, 50% - 635px);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #363636;
  text-align: center;
  background: #ffffff;
  border-bottom: 1px solid #e2e0db;
  display: none;
}
.rl__no-results.is-visible {
  display: block;
}
@media (max-width: 991px) {
  .rl__masthead-inner {
    grid-template-columns: 1fr;
  }
  .rl__masthead-meta {
    padding-top: 16px;
    justify-content: flex-start;
  }
  .rl__masthead-title {
    font-size: 48px;
  }
  .rl__featured-doc {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    gap: 12px 0;
  }
  .rl__feat-date, .rl__feat-cat {
    display: none;
  }
  .rl__feat-image-col {
    grid-column: 1/-1;
    padding-left: 0;
  }
  .rl__feat-body {
    grid-column: 2/-1;
  }
}
@media (max-width: 767px) {
  .rl__masthead-title {
    font-size: 36px;
  }
  .rl__sort-bar {
    display: none;
  }
  .rl__doc-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 4px 12px;
    min-height: auto;
  }
  .rl__row-num, .rl__row-date, .rl__row-cat {
    display: none;
  }
  .rl__row-title {
    grid-column: 1;
    padding: 0;
    font-size: 16px;
  }
  .rl__row-action {
    grid-row: 1;
    grid-column: 2;
    align-self: center;
  }
  .rl__ad-wrap {
    padding: 0 16px;
  }
}

/*# sourceMappingURL=research-locker.css.map*/