@charset "utf-8";

.fa-icon,
blockquote:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/**********
 Variables
 **********/
body {
  /* Text */
  --text-font-family: 'Open Sans', sans-serif;
  --heading-font-family: 'Open Sans', sans-serif;
  --text-font-size: 16px;
  --text-font-size-large: calc(16px + 2px);
  --heading-1-font-size: 40px;
  --heading-2-font-size: 32px;
  --heading-3-font-size: 22px;
  --heading-4-font-size: 18px;
  --heading-5-font-size: 16px;
  --heading-6-font-size: calc(16px - 2px);
  /* Other */
  --border-radius-base: 18px;
  --border-radius-small: calc(18px / 2);
  --border-radius-button: 25px;
  --logo-height: 40px;
  --border-width: 1px;
  --white-color: #fff;
  /* Assets */
  --assets-check-svg: url(/hc/theming_assets/01HZM5E2P26F7449JAMJQTVN5A);
  --assets-circle-svg: url(/hc/theming_assets/01HZM5E310ZH1XM7TXVA5FB90R);
}

/**********
 Light mode
 **********/
body {
  --primary-color: rgba(0, 115, 223, 1);
  --secondary-color: rgba(0, 115, 223, 1);
  --primary-bg-color: #FFFFFF;
  --primary-bg-color-always: #FFFFFF;
  --secondary-bg-color: rgba(247, 246, 243, 1);
  --secondary-bg-color-always: rgba(247, 246, 243, 1);
  --primary-text-color: rgba(41, 48, 57, 1);
  --secondary-text-color: rgba(77, 77, 77, 1);
  --link-color: rgba(32, 99, 171, 1);
  --border-color: rgba(213, 213, 213, 1);
  --info-color: rgba(32, 99, 171, 1);
  --success-color: rgba(11, 124, 195, 1);
  --warning-color: #F1D52F;
  --danger-color: #e64545;
  --primary-color-light-hover: #0063c0;
  --primary-color-hover: #0053a2;
  --primary-color-active: #004c93;
  --secondary-color-hover: #0053a2;
  --secondary-color-active: #004c93;
  --secondary-bg-color-hover: #efede7;
  --secondary-bg-color-active: #ebe8e1;
  --secondary-text-color-hover: #434343;
  --secondary-text-color-active: #3e3e3e;
  --link-color-hover: #164577;
  --link-color-active: #143e6b;
  --bg-image-opacity: 0.5;
  --bg-image-opacity-dark: 0.5;
  --bg-image-color: var(--primary-text-color);
}

.layout--style-filled .section:nth-child(even),
.layout--style-invert .section:nth-child(odd),
.section--secondary {
  /* Invert colors */
  --primary-bg-color: rgba(247, 246, 243, 1);
  --secondary-bg-color: #FFFFFF;
}

/*********
 Dark mode
 *********/
.ui-dark body {
  /* UI dark colors */
  --primary-color: #1863BC;
  --secondary-color: rgba(29, 138, 188, 1);
  --primary-bg-color: rgba(41, 48, 57, 1);
  --primary-bg-color-always: rgba(41, 48, 57, 1);
  --secondary-bg-color: #182233;
  --secondary-bg-color-always: #182233;
  --primary-text-color: #FFFFFF;
  --secondary-text-color: #8290A8;
  --link-color: #1863BC;
  --border-color: #242f42;
  --info-color: #1863BC;
  --success-color: #67C30B;
  --warning-color: #F1D52F;
  --danger-color: #e64545;
  --primary-color-light-hover: #1b71d7;
  --primary-color-hover: #2d81e4;
  --primary-color-active: #3b89e6;
  --secondary-color-hover: #36abe0;
  --secondary-color-active: #43b0e2;
  --secondary-bg-color-hover: #2c3e5d;
  --secondary-bg-color-active: #304567;
  --link-color-hover: #4891e8;
  --link-color-active: #5699e9;
  --bg-image-opacity: 0.5;
  --bg-image-opacity-dark: 0.75;
  --bg-image-color: var(--primary-bg-color);
}

.ui-dark .layout--style-filled .section:nth-child(even),
.ui-dark .layout--style-invert .section:nth-child(odd),
.ui-dark .section--secondary {
  /* Invert colors */
  --primary-bg-color: #182233;
  --secondary-bg-color: rgba(41, 48, 57, 1);
}

/***********
 Base styles
 ***********/
*,
*:before,
*:after {
  box-sizing: border-box;
}

body,
html {
  min-height: 100vh;
}

[dir] body,
[dir] html {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--text-font-family);
  font-size: var(--text-font-size);
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary-text-color);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

[dir] body {
  background-color: var(--secondary-bg-color);
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

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

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

a:active,
a.is-active {
  color: var(--link-color-active);
}

[dir] a.is-disabled {
  cursor: default;
}

a.is-disabled,
a.is-disabled:hover,
a.is-disabled:active,
a.is-disabled.is-active {
  color: var(--secondary-text-color);
}

[dir] a,
[dir] button,
[dir] [type=submit],
[dir] [type=button],
[dir] [type=reset] {
  cursor: pointer;
}

a,
input,
button,
select,
textarea,
label {
  transition: all 400ms cubic-bezier(0.17, 0.67, 0.54, 1);
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus,
label:focus {
  outline: none;
}

a.focus-visible,
input.focus-visible,
button.focus-visible,
select.focus-visible,
textarea.focus-visible,
label.focus-visible {
  outline: auto 5px -webkit-focus-ring-color;
}

[dir] figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/********
 Headings
 ********/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--heading-font-family);
  font-weight: 700;
}

h1,
.h1 {
  font-size: var(--heading-2-font-size);
  line-height: 1.2;
}

[dir] h1,
[dir] .h1 {
  margin: 0 0 1.2em;
}

[dir] .markdown h1,
[dir] .markdown .h1 {
  margin-top: 1.2em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
  h1,
  .h1 {
    font-size: var(--heading-1-font-size);
    line-height: 1.1;
  }

  [dir] h1,
  [dir] .h1 {
    margin: 0 0 1em;
  }

  [dir] .markdown h1,
  [dir] .markdown .h1 {
    margin-top: 1em;
  }
}

h2,
.h2 {
  font-size: var(--heading-3-font-size);
  line-height: 1.3;
}

[dir] h2,
[dir] .h2 {
  margin: 0 0 1.3em;
}

[dir] .markdown h2,
[dir] .markdown .h2 {
  margin-top: 1.3em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
  h2,
  .h2 {
    font-size: var(--heading-2-font-size);
    line-height: 1.2;
  }

  [dir] h2,
  [dir] .h2 {
    margin: 0 0 1.2em;
  }

  [dir] .markdown h2,
  [dir] .markdown .h2 {
    margin-top: 1.2em;
  }
}

h3,
.h3 {
  font-size: var(--heading-4-font-size);
  line-height: 1.4;
}

[dir] h3,
[dir] .h3 {
  margin: 0 0 1.4em;
}

[dir] .markdown h3,
[dir] .markdown .h3 {
  margin-top: 1.4em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
  h3,
  .h3 {
    font-size: var(--heading-3-font-size);
    line-height: 1.3;
  }

  [dir] h3,
  [dir] .h3 {
    margin: 0 0 1.3em;
  }

  [dir] .markdown h3,
  [dir] .markdown .h3 {
    margin-top: 1.3em;
  }
}

h4,
.h4 {
  font-size: var(--heading-4-font-size);
  line-height: 1.4;
}

[dir] h4,
[dir] .h4 {
  margin: 0 0 1.4em;
}

[dir] .markdown h4,
[dir] .markdown .h4 {
  margin-top: 1.4em;
}

h5,
.h5 {
  font-size: var(--heading-5-font-size);
  line-height: 1.5;
}

[dir] h5,
[dir] .h5 {
  margin: 0 0 1.5em;
}

[dir] .markdown h5,
[dir] .markdown .h5 {
  margin-top: 1.5em;
}

h6,
.h6 {
  font-size: var(--heading-6-font-size);
  line-height: 1.5;
}

[dir] h6,
[dir] .h6 {
  margin: 0 0 1.5em;
}

[dir] .markdown h6,
[dir] .markdown .h6 {
  margin-top: 1.5em;
}

/**********************
 Other default elements
 *********************/
[dir] p,
[dir] ul,
[dir] ol,
[dir] dl,
[dir] pre,
[dir] table,
[dir] blockquote {
  margin: 1.5em 0 1.5em;
}

[dir] li {
  margin: 0.75em 0 0.75em;
}

small,
.small {
  font-size: var(--heading-6-font-size);
}

[role="main"] {
  flex-grow: 1;
  position: relative;
}

hr {
  display: block;
  height: 0;
}

[dir] hr {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

pre {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  color: var(--primary-bg-color);
}

[dir] pre {
  padding: 8px 16px;
  border-radius: var(--border-radius-base);
  background-color: var(--primary-text-color);
}

.ui-dark pre {
  color: var(--secondary-text-color);
}

[dir].ui-dark pre {
  background-color: var(--secondary-bg-color);
}

blockquote {
  display: block;
  position: relative;
  z-index: 2;
}

[dir=ltr] blockquote {
  padding-left: 16px;
  border-left: 1px solid var(--border-color);
}

[dir=rtl] blockquote {
  padding-right: 16px;
  border-right: 1px solid var(--border-color);
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
  [dir=ltr] blockquote {
    padding-left: 24px;
  }

  [dir=rtl] blockquote {
    padding-right: 24px;
  }
}

@media only screen and (min-width: 980px) {
  [dir=ltr] blockquote {
    padding-left: 32px;
  }

  [dir=rtl] blockquote {
    padding-right: 32px;
  }
}

blockquote:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -4px;
  font-size: 60px;
  color: var(--secondary-bg-color);
}

[dir=ltr] blockquote:before {
  left: 8px;
}

[dir=rtl] blockquote:before {
  right: 8px;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9) and (max-width: 979px), only screen and (min-width: 668px) and (min-height: 416px) and (max-width: 979px) {
  [dir=ltr] blockquote:before {
    left: 12px;
  }

  [dir=rtl] blockquote:before {
    right: 12px;
  }
}

@media only screen and (min-width: 980px) {
  [dir=ltr] blockquote:before {
    left: 16px;
  }

  [dir=rtl] blockquote:before {
    right: 16px;
  }
}

.list-unstyled {
  list-style: none;
}

[dir=ltr] .list-unstyled {
  padding-left: 0;
}

[dir=rtl] .list-unstyled {
  padding-right: 0;
}

dl.details {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
}

[dir] dl.details {
  margin-bottom: 32px;
  margin-top: 0;
}

dl.details > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

dl.details > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

dl.details > dt {
  font-weight: 700;
}

[dir] dl.details > dt {
  margin-bottom: 12px;
}

[dir=ltr] dl.details > dt {
  margin-right: 8px;
}

[dir=rtl] dl.details > dt {
  margin-left: 8px;
}

[dir] dl.details > dd {
  margin-bottom: 12px;
}

dl.details > div {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
}

[dir] dl.details > div {
  margin-bottom: 12px;
}

dl.details--type-2 {
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

[dir] dl.details--type-2 {
  margin-bottom: 0;
}

dl.details--type-2 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

dl.details--type-2 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

dl.details--type-2 > dd {
  color: var(--secondary-text-color);
}

@media only screen and (min-width: 980px), only screen and (max-width: 567px) and (max-aspect-ratio: 13 / 9) {
  [dir=ltr] dl.details--type-2 > dd {
    text-align: right;
  }

  [dir=rtl] dl.details--type-2 > dd {
    text-align: left;
  }
}

[dir] dl.details--no-margin {
  margin-bottom: 0;
}

.text-secondary {
  font-size: var(--heading-6-font-size);
  line-height: 1.5;
  color: var(--secondary-text-color);
}

/******
 Tables
 ******/
.table-container {
  display: block;
  width: 100%;
  overflow-x: auto;
}

[dir] .table-container {
  border: 1px solid var(--border-color);
}

.table-container table:not(.pika-table) {
  width: calc(100% + 3px);
  max-width: calc(100% + 3px);
}

[dir] .table-container table:not(.pika-table) {
  margin: -1px;
}

table:not(.pika-table) {
  width: 100%;
  max-width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

table:not(.pika-table) thead {
  font-weight: 700;
}

[dir] table:not(.pika-table) thead {
  background-color: var(--secondary-bg-color);
}

[dir] table:not(.pika-table) tfoot {
  background-color: var(--secondary-bg-color);
}

table:not(.pika-table) thead,
table:not(.pika-table) tbody,
table:not(.pika-table) tfoot {
  width: 100%;
  max-width: 100%;
}

[dir=ltr] table:not(.pika-table) th {
  border-left: 1px solid var(--border-color);
}

[dir=rtl] table:not(.pika-table) th {
  border-right: 1px solid var(--border-color);
}

[dir] table:not(.pika-table) td {
  padding: 8px;
  border: 1px solid var(--border-color);
}

/*******
 Iframes
 *******/
.iframe {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
}

.iframe iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

[dir=ltr] .iframe iframe {
  left: 0;
}

[dir=rtl] .iframe iframe {
  right: 0;
}

[dir] .markdown > * {
  margin: 1.5em 0 1.5em;
}

/* Wysiwyg body */
.wysiwyg-body p code {
  display: inline-block;
  color: var(--primary-text-color);
  white-space: pre;
}

[dir] .wysiwyg-body p code {
  padding: 0 0.25em;
  border-radius: 2px;
  border: 1px solid var(--border-color);
  background-color: var(--secondary-bg-color);
}

.wysiwyg-body a {
  text-decoration: underline;
}

.wysiwyg-body a:hover {
  text-decoration: none;
}

.wysiwyg-body blockquote {
  font-style: italic;
  overflow: hidden;
}

[dir=ltr] .wysiwyg-body blockquote {
  border-left: 5px solid var(--border-color);
  margin-left: 0;
  margin-right: 0;
  padding-left: 1.5em;
  padding-right: 1.5em;
}

[dir=rtl] .wysiwyg-body blockquote {
  border-right: 5px solid var(--border-color);
  margin-right: 0;
  margin-left: 0;
  padding-right: 1.5em;
  padding-left: 1.5em;
}

.comments__item-body.wysiwyg-body blockquote:before {
  color: var(--primary-bg-color);
}

[dir] .comments__item-body.wysiwyg-body p code,
[dir].ui-dark .comments__item-body pre {
  background-color: var(--primary-bg-color);
}


/* === Topbar Nav === */
#topbar-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 86px;
  background: #ffffff;
  z-index: 200;
}

.header {
  top: 86px !important;
}

@media (max-width: 768px) {
  #topbar-nav {
    height: 72px;
  }
  .header {
    top: 72px !important;
  }
}




/* -----
[dir] body {
  padding-top: 86x; 
}

@media (max-width: 768px) {
  [dir] body {
    padding-top: 1px; 
  }
}
------
*/

main {
  padding-top: 86px;
}

@media (max-width: 768px) {
  main {
    padding-top: 72px;
  }
}



/* Transitions */
#topbar-nav {
  transition: transform 0.3s ease;
}

.header {
  transition: top 0.3s ease;
}

/* Hidden state */
body.topbar-hidden #topbar-nav {
  transform: translateY(-100%);
}

body.topbar-hidden .header {
  top: 0 !important;
}

@media (max-width: 768px) {
  body.topbar-hidden .header {
    top: 0 !important;
  }
}
#topbar-nav {
  box-shadow: 0 2px 8px rgba(41, 48, 57, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
  max-width: 1500px;
  margin: 0 auto;
}

.topbar-logo-link {
  display: flex;
  align-items: center;
}

.topbar-logo {
  height: 27px;
  width: auto;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-signin {
  font-size: 16px;
  font-weight: 700;
  color: #293039;
  text-decoration: none;
  padding: 0 12px;
}

.topbar-signin:hover {
  color: #0073df;
}

.topbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  border-radius: 36px;
  height: 40px;
  padding: 0 22px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.topbar-btn--secondary {
  background: white;
  border: 1.5px solid #e4e8ee;
  color: #0061be;
}

.topbar-btn--secondary:hover {
  border-color: #0061be;
}

.topbar-btn--primary {
  background: #0073df;
  border: none;
  color: white;
  font-weight: 600;
}

.topbar-btn--primary:hover {
  background: #005fc7;
  color: white;
}
@media (max-width: 768px) {
  .topbar-signin,
  .topbar-btn--secondary {
    display: none;
  }

  .topbar-inner {
    padding: 0 24px;
  }
}/* =============================================================
   BIORENDER HELP CENTER — REDESIGN CSS
   INSTRUCTIONS: Append this entire block to the END of your
   existing style.css in the Zendesk theme editor.
   If any existing rules conflict, remove or comment them out.
   ============================================================= */


/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --hc-bg:          #f0ede8;   /* warm cream — main page background  */
  --hc-surface:     #ffffff;   /* card / panel surface               */
  --hc-border:      #e4dfd7;   /* subtle warm border                 */
  --hc-border-hover:#ccc6bc;   /* border on hover                    */

  --hc-text-1:      #111111;   /* headings                           */
  --hc-text-2:      #3d3d3d;   /* body                               */
  --hc-text-3:      #6b7280;   /* muted / secondary                  */

  --hc-blue:        #2563eb;   /* primary action blue                */
  --hc-blue-dark:   #1d4ed8;   /* hover state                        */
  --hc-blue-light:  rgba(37,99,235,0.08);

  --hc-ai-grad:     linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  --hc-graph-blue:  #2563eb;

  --hc-radius-sm:   8px;
  --hc-radius:      10px;
  --hc-radius-lg:   14px;

  --hc-shadow-card: 0 1px 4px rgba(0,0,0,0.06);
  --hc-shadow-hover:0 4px 12px rgba(0,0,0,0.10);

  --hc-header-h:    60px;
  --hc-max-w:       1080px;
}


/* ── Shared Layout ──────────────────────────────────────────── */
.hc-wrap {
  max-width: var(--hc-max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* Force cream background on the entire page */
body,
.main-column,
#main-content,
.container {
  background-color: var(--hc-bg) !important;
}


/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.hc-header {
  background: var(--hc-surface);
  border-bottom: 1px solid var(--hc-border);
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--hc-header-h);
}

.hc-header__inner {
  max-width: var(--hc-max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.hc-header__logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.hc-header__logo img {
  display: block;
}
.hc-header__logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--hc-text-1);
  letter-spacing: -0.01em;
}

/* Category Nav Tabs */
.hc-header__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}
.hc-header__nav::-webkit-scrollbar { display: none; }

.hc-nav-tab {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--hc-text-3);
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--hc-radius-sm);
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  line-height: 1;
}
.hc-nav-tab:hover {
  color: var(--hc-text-1);
  background: var(--hc-bg);
}
.hc-nav-tab.is-active,
.hc-nav-tab[data-active="true"] {
  color: var(--hc-blue);
  border-bottom-color: var(--hc-blue);
}

/* Right side actions */
.hc-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.hc-header__contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--hc-text-2);
  background: transparent;
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}
.hc-header__contact-btn:hover {
  background: var(--hc-bg);
  border-color: var(--hc-border-hover);
}

.hc-header__user-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--hc-bg);
  border: 1px solid var(--hc-border);
  color: var(--hc-text-3);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.15s;
}
.hc-header__user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hc-header__user-avatar:hover {
  border-color: var(--hc-border-hover);
}

/* Mobile nav overlay */
.hc-mobile-nav {
  display: none;
  position: fixed;
  inset: var(--hc-header-h) 0 0 0;
  background: var(--hc-surface);
  z-index: 199;
  padding: 16px 0;
  border-top: 1px solid var(--hc-border);
  overflow-y: auto;
}
.hc-mobile-nav.is-open {
  display: block;
}
.hc-mobile-nav__inner {
  display: flex;
  flex-direction: column;
}
.hc-mobile-nav__link {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--hc-text-2);
  text-decoration: none;
  border-bottom: 1px solid var(--hc-border);
}
.hc-mobile-nav__link--cta {
  color: var(--hc-blue);
  font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hc-hero {
  background: var(--hc-bg);
  padding: 64px 0 52px;
  text-align: center;
}

.hc-hero__title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--hc-text-1);
  margin: 0 0 28px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

/* Search form */
.hc-search-form {
  margin-bottom: 22px;
}
.hc-search-form__box {
  display: flex;
  align-items: center;
  max-width: 620px;
  margin: 0 auto;
  background: var(--hc-surface);
  border: 1.5px solid var(--hc-border);
  border-radius: var(--hc-radius-lg);
  padding: 5px 5px 5px 18px;
  box-shadow: var(--hc-shadow-card);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.hc-search-form__box:focus-within {
  border-color: var(--hc-blue);
  box-shadow: 0 0 0 3px var(--hc-blue-light);
}
.hc-search-form__icon {
  color: var(--hc-text-3);
  flex-shrink: 0;
  margin-right: 10px;
}
.hc-search-form__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14.5px;
  color: var(--hc-text-1);
  padding: 8px 0;
  min-width: 0;
}
.hc-search-form__input::placeholder {
  color: var(--hc-text-3);
}
.hc-search-form__btn {
  flex-shrink: 0;
  background: var(--hc-blue);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.hc-search-form__btn:hover {
  background: var(--hc-blue-dark);
}

/* Popular tags */
.hc-hero__popular {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}
.hc-hero__pop-label {
  color: var(--hc-text-3);
  font-weight: 500;
}
.hc-pop-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  color: var(--hc-text-2);
  background: var(--hc-surface);
  border: 1px solid var(--hc-border);
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.hc-pop-tag:hover {
  border-color: var(--hc-border-hover);
  color: var(--hc-text-1);
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT UPDATES STRIP
   ═══════════════════════════════════════════════════════════ */
.hc-updates {
  background: var(--hc-bg);
  padding: 0 0 44px;
}

.hc-updates__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.hc-updates__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hc-text-3);
  margin: 0;
}
.hc-updates__more-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--hc-blue);
  text-decoration: none;
}
.hc-updates__more-link:hover {
  text-decoration: underline;
}
.hc-updates__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Update card */
.hc-ucard {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--hc-surface);
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius);
  padding: 18px 20px;
  text-decoration: none;
  transition: box-shadow 0.15s, border-color 0.15s, transform 0.15s;
}
.hc-ucard:hover {
  box-shadow: var(--hc-shadow-hover);
  border-color: var(--hc-border-hover);
  transform: translateY(-1px);
}
.hc-ucard__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--hc-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hc-ucard__icon--ai    { background: var(--hc-ai-grad); }
.hc-ucard__icon--graph { background: var(--hc-graph-blue); }

.hc-ucard__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hc-ucard__body strong {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--hc-text-1);
}
.hc-ucard__body span {
  font-size: 12.5px;
  color: var(--hc-text-3);
}
.hc-ucard__arrow {
  color: #c4bfb8;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   BROWSE COLLECTIONS
   ═══════════════════════════════════════════════════════════ */
.hc-collections {
  background: var(--hc-bg);
  padding: 0 0 52px;
}

.hc-collections__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}
.hc-collections__title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--hc-text-1);
  margin: 0;
  letter-spacing: -0.015em;
}
.hc-collections__count {
  font-size: 13px;
  color: var(--hc-text-3);
}

/* 3-column grid */
.hc-coll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Collection card */
.hc-ccard {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--hc-surface);
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius);
  padding: 18px 20px;
  text-decoration: none;
  transition: box-shadow 0.15s, border-color 0.15s, transform 0.15s;
}
.hc-ccard:hover {
  box-shadow: var(--hc-shadow-hover);
  border-color: var(--hc-border-hover);
  transform: translateY(-1px);
}
.hc-ccard__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--hc-radius-sm);
  background: var(--hc-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--hc-text-3);
}
.hc-ccard__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.hc-ccard__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--hc-text-1);
  line-height: 1.3;
}
.hc-ccard__desc {
  font-size: 12.5px;
  color: var(--hc-text-3);
  line-height: 1.45;
}


/* ═══════════════════════════════════════════════════════════
   PROMOTED ARTICLES
   ═══════════════════════════════════════════════════════════ */
.hc-promoted {
  background: var(--hc-bg);
  padding: 0 0 72px;
}

.hc-promoted__title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--hc-text-1);
  margin: 0 0 6px;
  letter-spacing: -0.015em;
}
.hc-promoted__sub {
  font-size: 13px;
  color: var(--hc-text-3);
  margin: 0 0 22px;
}
.hc-promoted__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hc-promoted__link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 0;
  font-size: 13.5px;
  color: var(--hc-blue);
  text-decoration: none;
  border-bottom: 1px solid var(--hc-border);
  transition: color 0.15s;
}
.hc-promoted__link:hover {
  color: var(--hc-blue-dark);
}
.hc-promoted__icon {
  flex-shrink: 0;
  color: var(--hc-text-3);
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
  .hc-coll-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hc-header__nav {
    display: none;   /* show hamburger instead */
  }
  .hc-header__hamburger {
    display: flex;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hc-hero { padding: 44px 0 36px; }
  .hc-hero__title { margin-bottom: 20px; }

  .hc-updates__cards { grid-template-columns: 1fr; }
  .hc-coll-grid      { grid-template-columns: 1fr; }
  .hc-promoted__grid { grid-template-columns: 1fr; gap: 0; }

  .hc-wrap { padding: 0 18px; }
}

/* =============================================================
   STYLE FIXES — append these at the very bottom of style.css,
   after the style_additions block you already pasted.
   ============================================================= */

/* Fix 1: Header overlay — the .container rule was too broad
   and was painting a cream box inside the existing blue header */
.container {
  background-color: transparent !important;
}

/* Fix 2: What's new — align left, side by side with the label */
.hc-updates__head {
  justify-content: flex-start !important;
  gap: 20px !important;
}

/* Fix 3: Remove the inner border/outline on the search input */
.hc-search-form__input,
.hc-search-form__input:focus,
.hc-search-form__input:active,
.hc-search-form__input:hover {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
}
/* =============================================================
   SPACING FIXES — append at the very bottom of style.css
   ============================================================= */

/* Less space between the "Product Updates" label row and the two tiles */
.hc-updates__head {
  margin-bottom: 8px !important;
}

/* More space after the two tiles (before "Browse all collections") */
.hc-updates {
  padding-bottom: 64px !important;
}

/* Less space between "Browse all collections" heading and the grid */
.hc-collections__head {
  margin-bottom: 10px !important;
}
/* =============================================================
   SPACING FIX — append at the very bottom of style.css
   ============================================================= */

/* Tighten gap between "Browse all collections" and the grid */
.hc-collections__head {
  margin-bottom: 2px !important;
}
.hc-collections__title {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.hc-coll-grid {
  margin-top: 4px !important;
}
/* =============================================================
   HEIGHT FIX — append at the very bottom of style.css
   ============================================================= */

/* Make all collection tiles the same height within each row */
.hc-coll-grid li {
  display: flex !important;
}
.hc-ccard {
  flex: 1 !important;
  min-height: 88px !important;
}
/* =============================================================
   SPACING & SIZE FIXES — append at the very bottom of style.css
   ============================================================= */

/* Match spacing after both section headers to a medium value */
.hc-updates__head {
  margin-bottom: 12px !important;
}
.hc-collections__head {
  margin-bottom: 12px !important;
}
.hc-coll-grid {
  margin-top: 0 !important;
}

/* Make the BioRender AI and Graphing tiles shorter */
.hc-ucard {
  padding: 13px 20px !important;
}
/* =============================================================
   HEADER REDESIGN — append at the very bottom of style.css
   ============================================================= */

/* Search button in the new header */
.hc-header__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  color: var(--hc-text-3);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.hc-header__search-btn:hover {
  background: var(--hc-bg);
  color: var(--hc-text-1);
}

/* Mobile: hide nav tabs and contact btn; show hamburger */
.hc-header__hamburger {
  display: none;
}
@media (max-width: 900px) {
  .hc-header__nav       { display: none !important; }
  .hc-header__contact-btn { display: none !important; }
  .hc-header__hamburger { display: flex !important; }
}

/* Active nav tab state (set by JS on page load) */
.hc-nav-tab.is-active {
  color: var(--hc-blue) !important;
  border-bottom-color: var(--hc-blue) !important;
}
/* =============================================================
   HEADER FIXES — append at the very bottom of style.css
   ============================================================= */

/* Fix 1: Remove white space above the hero
   The old theme adds padding-top to .layout to offset its fixed header.
   We don't need that anymore. */
.layout,
.layout--in-container,
.layout--style-1,
.layout--style-2,
.layout--style-3 {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Fix 2: Hide the topbar (BioRender branding bar) if it's
   rendering as white space. Remove this rule if you want it back. */
#topbar-nav {
  display: none !important;
}

/* Fix 3: Ensure hamburger never shows on desktop */
.hc-header__hamburger {
  display: none !important;
}

/* Fix 4: Nav tab text smaller than "Help Center" */
.hc-header__logo-text {
  font-size: 16px !important;
  font-weight: 700 !important;
}
.hc-nav-tab {
  font-size: 12.5px !important;
  font-weight: 500 !important;
}
/* =============================================================
   WHITESPACE FIX — append at the very bottom of style.css
   ============================================================= */

/* Force cream background on every possible wrapper so white
   can't bleed through anywhere between the header and hero */
html,
body,
.layout,
.layout--in-container,
.layout--style-1,
.layout--style-2,
.layout--style-3,
#main-content,
.main-content,
.wrapper,
.page-wrapper,
[role="main"],
main {
  background-color: #f0ede8 !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Also catch any ::before pseudo-elements that might add space */
.layout::before,
.layout::after {
  display: none !important;
}
/* =============================================================
   HERO UPDATES — append at the very bottom of style.css
   ============================================================= */

/* 1. More breathing room between popular tags and Product Updates */
.hc-hero {
  padding-bottom: 96px !important;
}

/* 2. Less space between the search bar and popular tags */
.hc-search-form {
  margin-bottom: 12px !important;
}

/* 3. Smaller popular tag text */
.hc-pop-tag {
  font-size: 11.5px !important;
}

/* 4. Popular tag background colour */
.hc-pop-tag {
  background: #E9F0F8 !important;
  border-color: #E9F0F8 !important;
}
.hc-pop-tag:hover {
  background: #d8e5f5 !important;
  border-color: #c5d8f0 !important;
}
/* =============================================================
   HAMBURGER / MOBILE NAV FIX — append at the very bottom of style.css
   ============================================================= */

/* Desktop: show nav tabs, hide hamburger */
.hc-header__hamburger {
  display: none !important;
}

/* Mobile: hide nav tabs + contact btn, show hamburger */
@media (max-width: 900px) {
  .hc-header__nav {
    display: none !important;
  }
  .hc-header__contact-btn {
    display: none !important;
  }
  .hc-header__hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    color: var(--hc-text-2);
    text-decoration: none;
    background: transparent;
    border: 1px solid var(--hc-border);
    transition: background 0.15s;
  }
  .hc-header__hamburger:hover {
    background: var(--hc-bg);
  }
}
/* =============================================================
   SEARCH RESULTS PAGE — append at the very bottom of style.css
   ============================================================= */

/* Compact hero for search results — shorter than the home page version */
.hc-hero--compact {
  padding: 36px 0 36px !important;
}
.hc-hero--compact .hc-hero__title {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  margin-bottom: 16px !important;
}

/* Results page wrapper */
.hc-results-wrap {
  padding-top: 32px;
  padding-bottom: 64px;
}

/* Two-column layout: filters left, results right */
.hc-results-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

/* ── Filters ── */
.hc-results-filters {
  position: sticky;
  top: calc(var(--hc-header-h) + 16px);
}
.hc-filter-box {
  background: var(--hc-surface);
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius);
  padding: 16px 18px;
  margin-bottom: 12px;
}
.hc-filter-box__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--hc-text-3);
  margin: 0 0 10px;
}
.hc-filter-list {
  margin: 0 !important;
  padding: 0 !important;
}
.hc-filter-list li {
  margin: 0 !important;
}
.hc-filter-link {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: var(--hc-text-2);
  text-decoration: none;
  border-bottom: 1px solid var(--hc-border);
  transition: color 0.15s;
}
.hc-filter-list li:last-child .hc-filter-link {
  border-bottom: none;
}
.hc-filter-link:hover { color: var(--hc-blue); }
.hc-filter-link.is-active { color: var(--hc-blue); font-weight: 600; }
.hc-filter-count { color: var(--hc-text-3); font-weight: 400; }

/* ── Results heading ── */
.hc-results-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hc-text-1);
  margin: 0 0 20px;
}

/* ── Result items ── */
.hc-result-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hc-result-item {
  display: block;
  background: var(--hc-surface);
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius);
  padding: 16px 20px;
  text-decoration: none;
  transition: box-shadow 0.15s, border-color 0.15s, transform 0.15s;
}
.hc-result-item:hover {
  box-shadow: var(--hc-shadow-hover);
  border-color: var(--hc-border-hover);
  transform: translateY(-1px);
}
.hc-result-item__title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--hc-blue);
  margin: 0 0 4px;
  line-height: 1.4;
}
.hc-result-item__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0 0 6px !important;
  padding: 0 !important;
  font-size: 11.5px;
  color: var(--hc-text-3);
}
.hc-result-item__breadcrumb li + li::before {
  content: "›";
  margin-right: 4px;
}
.hc-result-item__excerpt {
  font-size: 13px;
  color: var(--hc-text-2);
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Pagination ── */
.hc-results-pagination {
  margin-top: 28px;
}

/* ── Empty state ── */
.hc-results-empty {
  font-size: 14px;
  color: var(--hc-text-3);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hc-results-layout {
    grid-template-columns: 1fr;
  }
  .hc-results-filters {
    position: static;
  }
}
/* =============================================================
   INSTANT SEARCH STYLING — append at the very bottom of style.css
   Styles the Zendesk-generated search form inside our hero
   ============================================================= */

.hc-search-instant-wrap {
  max-width: 620px;
  margin: 0 auto 12px;
}

/* Form wrapper */
.hc-search-instant-wrap .search,
.hc-search-instant-wrap form {
  display: flex !important;
  align-items: center !important;
  background: #ffffff !important;
  border: 1.5px solid var(--hc-border) !important;
  border-radius: var(--hc-radius-lg) !important;
  padding: 5px 5px 5px 18px !important;
  box-shadow: var(--hc-shadow-card) !important;
  margin: 0 !important;
}
.hc-search-instant-wrap .search:focus-within,
.hc-search-instant-wrap form:focus-within {
  border-color: var(--hc-blue) !important;
  box-shadow: 0 0 0 3px var(--hc-blue-light) !important;
}

/* Input */
.hc-search-instant-wrap input[type="search"],
.hc-search-instant-wrap .search-input {
  flex: 1 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  font-size: 14.5px !important;
  color: var(--hc-text-1) !important;
  padding: 8px 0 !important;
  -webkit-appearance: none !important;
}
.hc-search-instant-wrap input[type="search"]::placeholder,
.hc-search-instant-wrap .search-input::placeholder {
  color: var(--hc-text-3) !important;
}

/* Submit button */
.hc-search-instant-wrap button[type="submit"],
.hc-search-instant-wrap .search-button,
.hc-search-instant-wrap input[type="submit"] {
  flex-shrink: 0 !important;
  background: var(--hc-blue) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 9px !important;
  padding: 10px 22px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}
.hc-search-instant-wrap button[type="submit"]:hover,
.hc-search-instant-wrap .search-button:hover {
  background: var(--hc-blue-dark) !important;
}
/* =============================================================
   SEARCH MODAL FIX — append at the very bottom of style.css
   ============================================================= */

/* Raise the search modal above the sticky header (z-index: 200) */
#modal-search {
  z-index: 1000 !important;
}

/* Restore a background on the modal's inner container
   (our .container transparent rule stripped it) */
#modal-search .container,
#modal-search .container--md,
#modal-search .modal-search {
  background-color: var(--hc-surface) !important;
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}
/* =============================================================
   TOPBAR RESTORE — append at the very bottom of style.css
   ============================================================= */

/* 1. Show the topbar (was hidden by an earlier fix) */
#topbar-nav {
  display: block !important;
  z-index: 202 !important;
}

/* 2. Fix the Help Center header directly below the topbar */
.hc-header {
  position: fixed !important;
  top: 86px !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 201 !important;
}

/* 3. Push page content below both fixed bars (86px topbar + 60px header) */
[role="main"],
main {
  padding-top: 146px !important;
}

/* 4. Modal sits above everything */
#modal-search {
  z-index: 1000 !important;
}
#modal-search .container,
#modal-search .container--md,
#modal-search .modal-search {
  background-color: var(--hc-surface) !important;
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

/* 5. Mobile adjustments */
@media (max-width: 768px) {
  .hc-header      { top: 72px !important; }
  [role="main"],
  main            { padding-top: 132px !important; }
}
/* =============================================================
   HEADER SCROLL BEHAVIOUR — append at the very bottom of style.css
   ============================================================= */

/* Topbar scrolls away naturally with the page (not fixed) */
#topbar-nav {
  display: block !important;
  position: relative !important;
  z-index: 202 !important;
}

/* Help Center header sticks at the top once the topbar scrolls away */
.hc-header {
  position: sticky !important;
  top: 0 !important;
  left: unset !important;
  right: unset !important;
  width: 100% !important;
  z-index: 201 !important;
}

/* Remove the fixed-header padding offsets from previous attempts */
[role="main"],
main {
  padding-top: 0 !important;
}

/* Keep search modal above everything */
#modal-search {
  z-index: 1000 !important;
}
#modal-search .container,
#modal-search .container--md,
#modal-search .modal-search {
  background-color: var(--hc-surface) !important;
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}
/* =============================================================
   HIDE "Product Updates & New Features" COLLECTION CARD
   Append at the very bottom of style.css
   ============================================================= */
 
.hc-coll-grid li:has([data-catname="Product Updates & New Features"]) {
  display: none !important;
}
/* =============================================================
   MEDIA GRID — 3 COLUMNS — append at the very bottom of style.css
   ============================================================= */

/* Override the previous 4-column grid to 3 columns */
.hc-media__grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 900px) {
  .hc-media__grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 500px) {
  .hc-media__grid { grid-template-columns: 1fr !important; }
}
/* =============================================================
   WEBINARS & VIDEOS — LAYOUT FIX
   Append at the very bottom of style.css
   ============================================================= */

/* Always keep all 3 cards in a single horizontal row */
.hc-media__grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
  align-items: stretch !important;
}

/* Each card takes equal width, never overflows its cell */
.hc-media-card {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  display: block !important;
  position: relative !important;
  border-radius: var(--hc-radius) !important;
  overflow: hidden !important;
  background: var(--hc-surface) !important;
  border: 1px solid var(--hc-border) !important;
  text-decoration: none !important;
  transition: box-shadow 0.15s, border-color 0.15s, transform 0.15s !important;
}
.hc-media-card:hover {
  box-shadow: var(--hc-shadow-hover) !important;
  border-color: var(--hc-border-hover) !important;
  transform: translateY(-1px) !important;
}

/* Square inner */
.hc-media-card__inner {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 !important;
  overflow: hidden !important;
  background: #0a0a0a !important;
  display: block !important;
}

/* iframes fill the square */
.hc-media-card__inner iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  display: block !important;
}

/* Image fills the square */
.hc-media-card__img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Gradient text overlay stays inside the card */
.hc-media-card__overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 32px 16px 16px !important;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, transparent 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  color: #ffffff !important;
}
.hc-media-card__overlay-label {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
}
/* =============================================================
   WEBINARS & VIDEOS — IMAGE CARD UPDATES
   Append at the very bottom of style.css
   ============================================================= */

/* 16:9 aspect ratio to match video thumbnail dimensions */
.hc-media-card__inner {
  aspect-ratio: 16 / 9 !important;
}

/* "Explore more" right-aligned with breathing room below */
.hc-media__footer {
  display: flex !important;
  justify-content: flex-end !important;
  margin-top: 14px !important;
}

/* Add space below the whole section (matching other sections) */
.hc-media {
  padding-bottom: 64px !important;
}
/* =============================================================
   WEBINARS HEADING SIZE FIX — append at the very bottom of style.css
   ============================================================= */

.hc-media__title {
  font-size: 1.45rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em !important;
  margin: 0 !important;
}
/* =============================================================
   WEBINARS HEADER SPACING — append at the very bottom of style.css
   ============================================================= */

.hc-media__head {
  margin-bottom: 16px !important;
}
