.secops-home-knowledge {
  margin: 22px 0 50px;
  color: var(--genz-color-gray-400, #94a9c9);
}

.secops-home-hubs,
.secops-home-column {
  border: 1px solid var(--genz-color-gray-800, #222f43);
  border-radius: 14px;
  background: var(--genz-color-gray-900, #0b1222);
  box-shadow: 0 10px 28px rgba(5, 12, 27, 0.12);
}

.secops-home-hubs {
  padding: 18px;
}

.secops-home-section-heading {
  margin-bottom: 13px;
}

.secops-home-section-heading h2,
.secops-home-column__heading h2 {
  margin: 0;
  color: var(--genz-color-white, #e7eef8);
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 700;
  line-height: 1.2;
}

.secops-home-section-heading > div > p:last-child,
.secops-home-column__heading > p {
  margin: 5px 0 0;
  color: var(--genz-color-gray-500, #94a9c9);
  font-size: 12px;
  line-height: 1.45;
}

.secops-home-eyebrow {
  margin: 0 0 4px;
  color: var(--genz-color-brand-1, #0ea5ea);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.secops-home-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.secops-home-hub-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 154px;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--genz-color-gray-800, #222f43);
  border-radius: 10px;
  background: var(--genz-color-gray-850, #131c31);
  color: #fff;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.secops-home-hub-card:hover {
  border-color: var(--genz-color-brand-1, #0ea5ea);
  box-shadow: 0 8px 20px rgba(14, 165, 234, 0.15);
  color: #fff;
  transform: translateY(-1px);
}

.secops-home-hub-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 154px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.secops-home-hub-card:hover img {
  transform: scale(1.025);
}

.secops-home-hub-card__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--genz-color-brand-1, #0ea5ea);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.secops-home-hub-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 12, 27, 0.02) 20%, rgba(5, 12, 27, 0.94) 100%);
}

.secops-home-hub-card__title {
  position: relative;
  z-index: 1;
  max-width: 95%;
  padding: 13px 14px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.88);
}

.secops-home-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.secops-home-column {
  min-width: 0;
  padding: 16px;
}

.secops-home-column__heading {
  min-height: 91px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--genz-color-gray-800, #222f43);
}

.secops-home-column__heading h2 {
  font-size: clamp(18px, 1.8vw, 22px);
}

.secops-home-column__heading .secops-home-column__opening-note {
  color: var(--genz-color-brand-1, #0ea5ea);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.secops-home-analysis-list,
.secops-home-resource-list {
  display: grid;
  gap: 10px;
}

.secops-home-analysis-item {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  height: 211px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--genz-color-gray-800, #222f43);
  border-radius: 10px;
  background: var(--genz-color-gray-850, #131c31);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.secops-home-analysis-item:hover,
.secops-home-resource-item:hover {
  border-color: var(--genz-color-brand-1, #0ea5ea);
  box-shadow: 0 8px 18px rgba(14, 165, 234, 0.1);
  transform: translateY(-1px);
}

.secops-home-analysis-item__thumb {
  display: flex;
  width: 270px;
  height: 209px;
  min-height: 209px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--genz-color-gray-800, #222f43), var(--genz-color-gray-900, #0b1222));
}

.secops-home-analysis-item__thumb img {
  width: 270px;
  height: 209px;
  min-height: 209px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.secops-home-analysis-item:hover .secops-home-analysis-item__thumb img {
  transform: scale(1.02);
}

.secops-home-analysis-item__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: 12px 13px;
}

.secops-home-analysis-item h3,
.secops-home-resource-item h3 {
  margin: 0;
  color: #e7eef8;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.secops-home-analysis-item h3 a {
  color: inherit;
  text-decoration: none;
}

.secops-home-analysis-item h3 a:hover {
  color: var(--genz-color-brand-1, #0ea5ea);
}

.secops-home-analysis-item__description {
  display: -webkit-box;
  margin: 6px 0 0;
  overflow: hidden;
  color: var(--genz-color-gray-400, #94a9c9);
  font-size: 11.5px;
  line-height: 1.46;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.secops-home-item-date {
  margin: 6px 0 0;
  color: var(--genz-color-gray-600, #7e9cc7);
  font-size: 10.5px;
  line-height: 1.3;
}

.secops-home-analysis-item .secops-home-item-date {
  margin-top: auto;
  padding-top: 5px;
}

.secops-home-resource-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  min-width: 0;
  min-height: 124px;
  overflow: hidden;
  border: 1px solid var(--genz-color-gray-800, #222f43);
  border-radius: 10px;
  background: var(--genz-color-gray-850, #131c31);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.secops-home-resource-item__thumb {
  display: flex;
  width: 80px;
  height: 80px;
  min-height: 80px;
  align-items: center;
  justify-content: center;
  margin: 10px 0 10px 10px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--genz-color-gray-800, #222f43), var(--genz-color-gray-900, #0b1222));
}

.secops-home-resource-item__thumb img {
  width: 80px;
  height: 80px;
  min-height: 80px;
  object-fit: cover;
}

.secops-home-resource-item__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 9px 10px 10px;
}

.secops-home-resource-item h3 {
  font-size: 14px;
  line-height: 1.4;
}

.secops-home-resource-item__source {
  display: inline-flex;
  align-self: flex-start;
  min-height: 18px;
  align-items: center;
  margin: 0 0 3px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(14, 165, 234, 0.12);
  color: var(--genz-color-brand-1, #0ea5ea);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
}

.secops-home-resource-item__description {
  margin: 5px 0 0;
  color: var(--genz-color-gray-400, #94a9c9);
  font-size: 11.5px;
  line-height: 1.45;
}

.secops-home-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin: 5px 0 0;
  padding: 0;
  list-style: none;
}

.secops-home-product-tags li {
  display: inline-flex;
  min-height: 16px;
  align-items: center;
  padding: 1px 5px;
  border: 1px solid rgba(14, 165, 234, 0.32);
  border-radius: 999px;
  color: var(--genz-color-gray-300, #b8cdeb);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.2;
}

.secops-home-resource-item__action {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 8px;
}

.secops-home-resource-action {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 3px 7px;
  border: 1px solid var(--genz-color-brand-1, #0ea5ea);
  border-radius: 6px;
  color: var(--genz-color-brand-1, #0ea5ea);
  font-size: 9.5px;
  font-weight: 700;
  text-decoration: none;
}

.secops-home-resource-action:hover {
  background: var(--genz-color-brand-1, #0ea5ea);
  color: #071426;
}

.secops-home-resource-action.secops-resource-action--signin {
  border-color: var(--genz-color-gray-600, #7e9cc7);
  color: var(--genz-color-gray-300, #b8cdeb);
}

.secops-home-item-fallback {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(14, 165, 234, 0.65);
  border-radius: 10px;
  color: var(--genz-color-brand-1, #0ea5ea);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.secops-home-empty {
  margin: 0;
  padding: 16px;
  border: 1px dashed var(--genz-color-gray-700, #66768f);
  border-radius: 10px;
  color: var(--genz-color-gray-500, #94a9c9);
  font-size: 12px;
  text-align: center;
}

.secops-home-knowledge a:focus-visible {
  outline: 3px solid #0bd1d1;
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .secops-home-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .secops-home-column__heading {
    min-height: 0;
  }

  .secops-home-analysis-item {
    grid-template-columns: 270px minmax(0, 1fr);
  }

  .secops-home-analysis-item__thumb,
  .secops-home-analysis-item__thumb img {
    width: 270px;
  }
}

@media (max-width: 767px) {
  .secops-home-hubs,
  .secops-home-column {
    padding: 13px;
  }

  .secops-home-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .secops-home-hub-card {
    min-height: 136px;
  }

  .secops-home-hub-card img {
    min-height: 136px;
  }

  .secops-home-hub-card__title {
    padding: 11px;
    font-size: 15px;
  }
}

@media (max-width: 580px) {
  .secops-home-hub-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .secops-home-analysis-item {
    grid-template-columns: minmax(0, 1fr);
    height: auto;
  }

  .secops-home-analysis-item__thumb {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 270 / 209;
  }

  .secops-home-analysis-item__thumb img {
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .secops-home-analysis-item__body {
    min-height: 160px;
  }

  .secops-home-resource-item {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .secops-home-resource-item__thumb,
  .secops-home-resource-item__thumb img {
    width: 66px;
    height: 66px;
    min-height: 66px;
  }

  .secops-home-resource-item__thumb {
    margin: 8px 0 8px 8px;
  }
}

/* R5 compact homepage Resource panels. */
.secops-home-resource-stack {
  display: grid;
  min-width: 0;
  gap: 16px;
  align-content: start;
}

.secops-home-resource-panel {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--genz-color-gray-800, #222f43);
  border-radius: 14px;
  background: var(--genz-color-gray-900, #0b1222);
  box-shadow: 0 10px 28px rgba(5, 12, 27, 0.12);
}

.secops-home-resource-panel .secops-home-column__heading {
  min-height: 78px;
  margin-bottom: 8px;
  padding-bottom: 8px;
}

.secops-home-resource-panel .secops-home-column__heading h2 {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.2;
}

.secops-home-resource-panel .secops-home-column__heading > p {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.45;
}

.secops-home-resource-panel .secops-home-column__heading .secops-home-column__opening-note {
  font-size: 9px;
  line-height: 1.3;
}

.secops-home-resource-list {
  gap: 5px;
}

.secops-home-resource-item {
  grid-template-columns: 44px minmax(0, 1fr);
  min-height: 46px;
  align-items: center;
  border-radius: 8px;
}

.secops-home-resource-item__thumb,
.secops-home-resource-item__thumb img {
  width: 36px;
  height: 36px;
  min-height: 36px;
}

.secops-home-resource-item__thumb {
  margin: 4px 0 4px 4px;
  border-radius: 6px;
}

.secops-home-resource-item .secops-home-item-fallback {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  font-size: 8px;
}

.secops-home-resource-item__body {
  align-self: stretch;
  justify-content: center;
  padding: 4px 7px;
}

.secops-home-resource-item__kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 2px;
}

.secops-home-resource-item__kicker span {
  display: inline-flex;
  min-height: 13px;
  align-items: center;
  padding: 1px 4px;
  border-radius: 999px;
  background: rgba(14, 165, 234, 0.12);
  color: var(--genz-color-brand-1, #0ea5ea);
  font-size: 7.5px;
  font-weight: 600;
  line-height: 1.15;
}

.secops-home-resource-item__kicker .secops-home-resource-item__access {
  background: rgba(255, 183, 77, 0.14);
  color: #e6a03d;
}

.secops-home-resource-item h3 {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
}

.secops-home-resource-title-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.secops-home-resource-title-link:hover {
  color: var(--genz-color-brand-1, #0ea5ea);
}

@media (max-width: 991px) {
  .secops-home-resource-panel .secops-home-column__heading {
    min-height: 0;
  }
}

@media (max-width: 580px) {
  .secops-home-resource-item {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .secops-home-resource-item__thumb,
  .secops-home-resource-item__thumb img {
    width: 36px;
    height: 36px;
    min-height: 36px;
  }

  .secops-home-resource-item__thumb {
    margin: 4px 0 4px 4px;
  }
}

/* Light-mode contrast for the project-owned Home experience only. */
:is([data-bs-theme="light"], [data-theme="light"]) .secops-home-knowledge {
  color: #465a78;
}

:is([data-bs-theme="light"], [data-theme="light"]) .secops-home-analysis-item h3,
:is([data-bs-theme="light"], [data-theme="light"]) .secops-home-resource-item h3 {
  color: #1f2d48;
}

:is([data-bs-theme="light"], [data-theme="light"]) .secops-home-analysis-item__description,
:is([data-bs-theme="light"], [data-theme="light"]) .secops-home-resource-item__description {
  color: #465a78;
}

:is([data-bs-theme="light"], [data-theme="light"]) .secops-home-item-date {
  color: #4e658a;
}

:is([data-bs-theme="light"], [data-theme="light"]) .secops-home-product-tags li {
  border-color: rgba(52, 65, 97, 0.32);
  color: #344161;
}

:is([data-bs-theme="light"], [data-theme="light"]) .secops-home-eyebrow,
:is([data-bs-theme="light"], [data-theme="light"]) .secops-home-column__heading .secops-home-column__opening-note,
:is([data-bs-theme="light"], [data-theme="light"]) .secops-home-resource-item__source,
:is([data-bs-theme="light"], [data-theme="light"]) .secops-home-resource-item__kicker span {
  color: #0a6f8f;
}

:is([data-bs-theme="light"], [data-theme="light"]) .secops-home-resource-item__source,
:is([data-bs-theme="light"], [data-theme="light"]) .secops-home-resource-item__kicker span {
  background: rgba(10, 111, 143, 0.1);
}

:is([data-bs-theme="light"], [data-theme="light"]) .secops-home-resource-item__kicker .secops-home-resource-item__access {
  background: rgba(122, 77, 0, 0.1);
  color: #7a4d00;
}

:is([data-bs-theme="light"], [data-theme="light"]) .secops-home-analysis-item h3 a:hover,
:is([data-bs-theme="light"], [data-theme="light"]) .secops-home-resource-title-link:hover {
  color: #0a6f8f;
}

:is([data-bs-theme="light"], [data-theme="light"]) .secops-home-resource-action {
  border-color: #0a6f8f;
  color: #0a6f8f;
}

:is([data-bs-theme="light"], [data-theme="light"]) .secops-home-resource-action:hover {
  background: #0a6f8f;
  color: #fff;
}

:is([data-bs-theme="light"], [data-theme="light"]) .secops-home-resource-action.secops-resource-action--signin {
  border-color: #4e658a;
  color: #344161;
}
