@charset "UTF-8";
/* Single post design system
 * Loaded only on single posts via AssetsManager::tailwindAssets().
 * Plain CSS â€” no Tailwind directives. CSS variables (--color-ob-*)
 * are defined in dist/tailwind.css which loads first.
 *
 * Kept UNLAYERED so class-specific rules beat WordPress's unlayered
 * global-styles output (h1/h2/p rules generated from theme.json). */

body.single-post #site-breadcrumbs {
  display: none;
}

/* Legacy app.css sets `main { overflow: hidden }` which kills position:sticky
 * inside. Scope this override to single posts only. */
body.single-post main#primary.site-main {
  overflow: visible;
  background: var(--color-ob-bg-cool);
}

.ob-single-hero {
  position: relative;
  width: 100%;
  min-height: 327px;
  background-color: var(--color-ob-dark-blue);
  background-image:
    linear-gradient(90deg,
      rgba(13, 25, 38, 0.92) 0%,
      rgba(26, 49, 75, 0.75) 55%,
      rgba(26, 49, 75, 0.35) 100%),
    var(--hero-bg, none);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  display: flex;
  align-items: center;
  padding-bottom: 40px;
}

.prose-ob figure>img {
  margin-bottom: 16px;
}

.prose-ob figure {
  margin-bottom: 30px;
}

.ob-single-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.ob-single-hero__title {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 6vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 720px;
  margin: 0;
}

.ob-meta-strip {
  position: relative;
  margin: -47px 0 0;
  padding: 20px 24px;
  background-color: #fff;
  background-image: url('../../img/hp-dots.svg'), url('../../img/hp-dots-right.svg');
  background-repeat: no-repeat, no-repeat;
  background-position: left center, right center;
  background-size: auto 84%, auto 84%;
  border-radius: 7px;
  box-shadow: 0px 4px 210px 0px #C3D1E459;
  font-size: 13px;
  color: var(--color-ob-dark);
  z-index: 3;
  font-family: Quando;
}

.ob-meta-strip a {
  color: inherit;
  text-decoration: none;
}

.ob-meta-strip a:hover {
  text-decoration: underline;
}

.ob-single-breadcrumbs {
  font-size: 14px;
  color: var(--color-ob-muted);
  padding: 34px 0 34px;
}

.ob-single-breadcrumbs a {
  color: var(--color-ob-dark-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ob-single-breadcrumbs .sep {
  margin: 0 6px;
  color: var(--color-ob-muted);
}

.ob-single-body {
  padding-bottom: 80px;
  background: var(--color-ob-bg-cool);
}

.ob-single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ob-single-toc {
  display: none;
  border-radius: 16px 16px 0 0;
  color: #fff;
  padding: 30px;
  background: linear-gradient(212.5deg, #101E2F 43.91%, #354E6A 97.43%);
}

.ob-single-toc #toc.widget.toc_wrapper {
  margin: 0;
}

.ob-single-toc .widget_title {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 18px;
}

.ob-single-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ob-single-toc li {
  padding: 10px 14px;
  border-left: 2px solid #D9E8F180;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  border-radius: 0 6px 6px 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ob-single-toc li a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.ob-single-toc li.current {
  color: #fff;
  border-left: 2px solid;
  border-image-source: linear-gradient(0deg, #E7BFE7 8.21%, #FF5212 123.26%);
  border-image-slice: 1;
}

.ob-single-toc li:hover {
  color: #fff;
}

.ob-share-card {
  background: var(--color-ob-bg);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ob-share-card__label {
  color: var(--color-ob-dark-primary);
  font-size: 15px;
  font-weight: 400;
}

.ob-share-card__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ob-share-card__list a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--color-ob-dark-blue);
  transition: background 0.2s ease;
}

.ob-share-card__list a:hover {
  background: rgba(26, 49, 75, 0.08);
}

.ob-share-card__list img {
  width: auto;
  height: 16px;
  display: block;
}

.prose-ob {
  color: var(--color-ob-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
}

.prose-ob>*:first-child {
  margin-top: 0;
}

/* Force orange on every heading in the article, beating WP global-styles
 * inline CSS, Gutenberg has-*-color classes, and any inline style="color:â€¦".
 * h2/h3/h4 are intentionally excluded â€” they get their own color rules below. */
.prose-ob h1,
.prose-ob h5,
.prose-ob h6,
.prose-ob h1 *,
.prose-ob h5 *,
.prose-ob h6 * {
  color: var(--color-ob-orange-primary) !important;
}

.prose-ob h3,
.prose-ob h3 *,
.prose-ob h4,
.prose-ob h4 * {
  color: var(--color-ob-dark-blue) !important;
}

.prose-ob h1,
.prose-ob h2,
.prose-ob h3,
.prose-ob h4,
.prose-ob h5,
.prose-ob h6 {
  font-family: Poppins, sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.prose-ob h1 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  margin: 48px 0 24px;
}

.prose-ob h2,
.prose-ob h2 * {
  background: linear-gradient(161.15deg, #FF9974 8.73%, #FF5212 118.52%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
}

.prose-ob h2 {
  font-family: Poppins, sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 39.15px;
  letter-spacing: -0.02em;
  margin: 50px 0 24px;
  padding-top: 46px;
  border-top: 2px solid;
  border-image-source: linear-gradient(270.03deg, #101E2F 12.31%, #E7BFE7 48.93%, #FF5212 131.32%);
  border-image-slice: 1;
}

.prose-ob h3,
.prose-ob h3 strong {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -0.02em;
  margin: 40px 0 16px;
}

.prose-ob h4 {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -0.02em;
  margin: 32px 0 12px;
}

.prose-ob h5 {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.4;
  margin: 28px 0 10px;
}

.prose-ob h6 {
  font-size: 16px;
  line-height: 1.4;
  margin: 24px 0 8px;
}

.prose-ob p {
  color: var(--color-ob-dark-blue);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 24px;
}

.prose-ob a {
  color: #23BEBB;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose-ob a:hover {
  color: var(--color-ob-teal-hover);
}

.prose-ob strong,
.prose-ob b {
  color: var(--color-ob-dark-primary);
  font-weight: 600;
}

.prose-ob em,
.prose-ob i {
  font-style: italic;
}

.prose-ob ul,
.prose-ob ol {
  padding-left: 1.5rem;
  margin: 0 0 24px;
  color: var(--color-ob-dark-blue);
  font-weight: 300;
}

.prose-ob ul {
  list-style: disc;
}

.prose-ob ol {
  list-style: decimal;
}
.prose-ob li::marker {
    font-size: 18px;
}
.prose-ob ul ul {
  list-style: circle;
}

.prose-ob ul ul ul {
  list-style: square;
}

.prose-ob li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

figure.wp-block-pullquote blockquote {
  padding: 20px 25px;
  font-family: 'Poppins';
}

figure.wp-block-pullquote blockquote cite {
  text-transform: none;
  font-size: 16px;
}

figure.wp-block-pullquote blockquote p:first-child {
  font-weight: 600;
}

.prose-ob blockquote {
  position: relative;
  margin: 52px 0;
  padding: 40px 28px;
  background: linear-gradient(179.79deg, rgba(219, 228, 237, 0.5) 0.19%, rgba(236, 240, 244, 0.5) 61.04%);
  border-radius: 15px;
  border: 0;
  color: var(--color-ob-dark-primary);
  font-family: 'Quando', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  overflow: visible;
}

.prose-ob blockquote::before,
.prose-ob blockquote::after {
  content: '';
  position: absolute;
  width: 41px;
  height: 41px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.prose-ob blockquote::before {
  top: -20px;
  left: 40px;
  background-image: url('../../img/blog/lq.svg');
}

.prose-ob blockquote::after {
  right: 40px;
  bottom: -20px;
  background-image: url('../../img/blog/rq.svg');
}

.prose-ob blockquote>*:first-child {
  margin-top: 0;
}

.prose-ob blockquote>*:last-child {
  margin-bottom: 0;
}

.prose-ob blockquote p {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 16px;
  color: inherit;
}

.prose-ob img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 32px 0;
}

/* Related posts (template-parts/related-posts.php) */

.ob-related-posts__title {
  font-family: Poppins, sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: -0.02em;
  color: var(--color-ob-dark-blue);
}

/* On single posts app.css loads (it's skipped on home.php), and its bare
 * `h3 {…}` plus theme.json's global `a { text-decoration: underline }`
 * leak into the card markup. Restate the card title/link styles here so
 * the cards look the same as on home.php. */
.ob-related-posts a {
  text-decoration: none;
}

.ob-related-posts h3 {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 25px;
  color: #fff;
}

/* Author box (template-parts/author-box.php) */

.ob-author-box {
  margin-top: 56px;
  padding-top: 58px;
  border-top: 2px solid;
  border-image-source: linear-gradient(270.03deg, #101E2F 12.31%, #E7BFE7 48.93%, #FF5212 131.32%);
  border-image-slice: 1;
  color: var(--color-ob-dark-blue);
}

.ob-author-box__head {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ob-author-box__avatar-wrap {
  flex: 0 0 50px;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  background: #E5E7EB;
}

.ob-author-box__avatar {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ob-author-box__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.ob-author-box__label {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(26, 49, 75, 0.7);
}

.ob-author-box__name {
  margin: 0 0 0 0;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0;
  color: var(--color-ob-dark-blue) !important;
}

.ob-author-box__bio {
  margin: 32px 0 0;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: rgba(26, 49, 75, 0.7);
}

.ob-author-box__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.ob-author-box__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  text-decoration: none;
}

.ob-author-box__linkedin img {
  display: block;
  width: 36px;
  height: 36px;
}

.ob-author-box__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(161.15deg, #FF9974 8.73%, #FF5212 88.52%);
}

.ob-author-box__more {
  font-family: Poppins, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #23BEBB;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ob-author-box__more:hover {
  color: var(--color-ob-teal-hover);
}

/* Hero 2-column layout (title | newsletter card) */

.ob-single-hero__grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}

/* Newsletter subscribe card */

.ob-newsletter-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 28px 32px;
  width: 100%;
  max-width: 482px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ob-newsletter-card--hero {
  display: none;
}

.ob-newsletter-card__divider {
  display: block;
  width: 280px;
  max-width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #FF9974 0%, #E8BFE6 100%);
  margin-bottom: 20px;
}

figure.wp-block-pullquote {
  border: 0;
  padding: 0;
  text-align: start;
  margin: 0 0 1em;
}

figure.wp-block-pullquote blockquote:before,
figure.wp-block-pullquote blockquote:after {
  display: none;
}

.ob-newsletter-card__title {
  color: var(--color-ob-dark-primary);
  font-family: Poppins, sans-serif;
  font-size: 24px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 30px !important;
  max-width: 300px;
}

.ob-newsletter-card__form {
  width: 100%;
}

/* HubSpot form overrides â€” scoped to the newsletter card only */
.ob-newsletter-card .hs-form {
  position: relative;
  display: block;
  max-width: 386px;
  margin: auto;
}

.ob-newsletter-card__form img {
  max-width: 110px !important;
  margin: 20px auto;
  display: none !important;
}

.ob-newsletter-card .submitted-message p {
  margin-bottom: 5px !important;
}

.ob-newsletter-card .hs-form fieldset {
  max-width: none;
  margin: 0;
}

.ob-newsletter-card .hs-form .hs-form-field {
  width: 100% !important;
  margin: 0;
  min-height: 58px;
}

:root :where(.wp-block-image figcaption) {
  color: #1A314BB2;
  font-size: 16px;
  text-align: left;
  font-weight: 400;
  padding: 0 12px;
  line-height: 22px;
  font-style: italic;
}

.ob-newsletter-card .hs-form .hs-form-field>label,
.ob-newsletter-card .hs-form .hs_error_rollup,
.ob-newsletter-card .hs-form .hs-richtext {
  display: none !important;
}

.ob-newsletter-card .hs-form .input {
  margin: 0 !important;
}

.ob-newsletter-card .hs-form input.hs-input {
  width: 100% !important;
  height: 58px;
  background-color: var(--color-ob-dark-blue);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0 70px 0 28px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  box-sizing: border-box;
}

.ob-newsletter-card .hs-form input.hs-input::placeholder {
  color: #fff;
  opacity: 1;
  font-weight: 300;
}

.ob-newsletter-card .hs-form input.hs-input:focus {
  box-shadow: 0 0 0 2px rgba(253, 96, 74, 0.4);
}

.ob-newsletter-card .hs-form .hs_submit,
.ob-newsletter-card .hs-form .actions {
  margin: 0 !important;
  padding: 0 !important;
}

.ob-newsletter-card .hs-form .hs_submit {
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
}

.ob-newsletter-card .hs-form .hs-button {
  width: 42px;
  height: 42px;
  min-width: 0;
  border-radius: 999px;
  border: none;
  color: transparent !important;
  font-size: 0 !important;
  text-indent: -9999px;
  cursor: pointer;
  background-color: transparent !important;
  background-image:
    url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 6L15 12L9 18' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    var(--gradient-ob-orange);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: auto, cover;
  transition: opacity 0.2s ease;
  padding: 0;
  line-height: 1;
}

.ob-newsletter-card .hs-form .hs-button:hover {
  opacity: 0.92;
}

.ob-newsletter-card .hs-form .hs-error-msgs {
  list-style: none;
  padding: 6px 0 0;
  margin: 0;
  font-size: 12px;
  color: #FFB4A8;
  text-align: center;
  left: 0;
  position: absolute;
  right: 0;
}

.ob-newsletter-card .submitted-message {
  color: var(--color-ob-dark-primary);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

/* FAQs section — rendered at the end of the post when ACF repeater has rows.
 * The .prose-ob h2 inherits the existing top-border + gradient text. */
.ob-faqs__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.ob-faqs__item {
  background: linear-gradient(179.79deg, rgba(219, 228, 237, 0.5) 0.19%, rgba(236, 240, 244, 0.5) 61.04%);
  border-radius: 16px;
  overflow: hidden;
}

.ob-faqs__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 32px;
  cursor: pointer;
  list-style: none;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-ob-dark, #1A314B);
}

.ob-faqs__summary::-webkit-details-marker,
.ob-faqs__summary::marker {
  display: none;
  content: "";
}

.ob-faqs__question {
  flex: 1 1 auto;
}

.ob-faqs__chevron {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--color-ob-dark, #1A314B);
  transition: transform 0.2s ease;
}

.ob-faqs__item[open] .ob-faqs__chevron {
  transform: rotate(180deg);
}

.ob-faqs__answer {
  padding: 0 32px 32px;
  color: var(--color-ob-dark, #1A314B);
  font-size: 16px;
  line-height: 1.6;
}

.ob-faqs__answer p {
  margin: 0 0 12px;
}

.ob-faqs__answer p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  figure.wp-block-pullquote blockquote {
    padding: 45px 50px;
    line-height: 32px;
    
    
    
    
    
    
    
    
    
    
    
    
    @charset "UTF-8";
    body.single-post #site-breadcrumbs {
    display: none}
    body.single-post main#primary.site-main {
    overflow: visible;
    background: var(--color-ob-bg-cool)}

.ob-single-hero {
    position: relative;
    width: 100%;
    min-height: 327px;
    background-color: var(--color-ob-dark-blue);
    background-image: linear-gradient(90deg,rgba(13,25,38,.92) 0%,rgba(26,49,75,.75) 55%,rgba(26,49,75,.35) 100%),var(--hero-bg,none);
    background-size: cover,cover;
    background-position: center,center;
    background-repeat: no-repeat,no-repeat;
    display: flex;
    align-items: center;
    padding-bottom: 40px}

.prose-ob
    figure>img {
    margin-bottom: 16px}

.prose-ob
    figure {
    margin-bottom: 30px}

.ob-single-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%}

.ob-single-hero__title {
    color: #fff;
    font-family: Poppins,sans-serif;
    font-weight: 500;
    font-size: clamp(28px, 6vw, 42px);
    line-height: 1.2;
    letter-spacing: -.02em;
    max-width: 720px;
    margin: 0}

.ob-meta-strip {
    position: relative;
    margin: -47px 0 0;
    padding: 20px 24px;
    background-color: #fff;
    background-image: url(../../../../../../../../themes/onebeat_theme/img/hp-dots.svg),url(../../../../../../../../themes/onebeat_theme/img/hp-dots-right.svg);
    background-repeat: no-repeat,no-repeat;
    background-position: left center,right center;
    background-size: auto 84%,auto 84%;
    border-radius: 7px;
    box-shadow: 0 4px 210px 0 #C3D1E459;
    font-size: 13px;
    color: var(--color-ob-dark);
    z-index: 3;
    font-family: Quando}

.ob-meta-strip
    a {
    color: inherit;
    text-decoration: none}

.ob-meta-strip
    a:hover {
    text-decoration: underline}

.ob-single-breadcrumbs {
    font-size: 14px;
    color: var(--color-ob-muted);
    padding: 34px 0 34px}

.ob-single-breadcrumbs
    a {
    color: var(--color-ob-dark-primary);
    text-decoration: underline;
    text-underline-offset: 3px}

.ob-single-breadcrumbs .sep {
    margin: 0 6px;
    color: var(--color-ob-muted)}

.ob-single-body {
    padding-bottom: 80px;
    background: var(--color-ob-bg-cool)}

.ob-single-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px}

.ob-single-toc {
    display: none;
    border-radius: 16px 16px 0 0;
    color: #fff;
    padding: 30px;
    background: linear-gradient(212.5deg,#101E2F 43.91%,#354E6A 97.43%)}

.ob-single-toc #toc.widget.toc_wrapper {
    margin: 0}

.ob-single-toc .widget_title {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 18px}

.ob-single-toc
    ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px}

.ob-single-toc
    li {
    padding: 10px 14px;
    border-left: 2px solid #D9E8F180;
    color: rgba(255,255,255,.6);
    font-size: 14px;
    line-height: 1.6;
    border-radius: 0 6px 6px 0;
    transition: background 0.2s ease,color 0.2s ease,border-color 0.2s ease}

.ob-single-toc
    li a {
    color: inherit;
    text-decoration: none;
    display: block}

.ob-single-toc
    li.current {
    color: #fff;
    border-left: 2px solid;
    border-image-source: linear-gradient(0deg,#E7BFE7 8.21%,#FF5212 123.26%);
    border-image-slice: 1}

.ob-single-toc
    li:hover {
    color: #fff}

.ob-share-card {
    background: var(--color-ob-bg);
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px}

.ob-share-card__label {
    color: var(--color-ob-dark-primary);
    font-size: 15px;
    font-weight: 400}

.ob-share-card__list {
    display: flex;
    align-items: center;
    gap: 4px}

.ob-share-card__list
    a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--color-ob-dark-blue);
    transition: background 0.2s ease}

.ob-share-card__list
    a:hover {
    background: rgba(26,49,75,.08)}

.ob-share-card__list
    img {
    width: auto;
    height: 16px;
    display: block}

.prose-ob {
    color: var(--color-ob-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 28px}

.prose-ob>*:
    first-child {
    margin-top: 0}

.prose-ob
    h1,.prose-ob h5,.prose-ob h6,.prose-ob h1 *,.prose-ob h5 *,.prose-ob h6 * {
    color: var(--color-ob-orange-primary)!important}

.prose-ob
    h3,.prose-ob h3 *,.prose-ob h4,.prose-ob h4 * {
    color: var(--color-ob-dark-blue)!important}

.prose-ob
    h1,.prose-ob h2,.prose-ob h3,.prose-ob h4,.prose-ob h5,.prose-ob h6 {
    font-family: Poppins,sans-serif;
    font-weight: 500;
    letter-spacing: -.01em}

.prose-ob
    h1 {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.2;
    margin: 48px 0 24px}

.prose-ob
    h2,.prose-ob h2 * {
    background: linear-gradient(161.15deg,#FF9974 8.73%,#FF5212 118.52%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent!important}

.prose-ob
    h2 {
    font-family: Poppins,sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 39.15px;
    letter-spacing: -.02em;
    margin: 50px 0 24px;
    padding-top: 46px;
    border-top: 2px solid;
    border-image-source: linear-gradient(270.03deg,#101E2F 12.31%,#E7BFE7 48.93%,#FF5212 131.32%);
    border-image-slice: 1}

.prose-ob
    h3,.prose-ob h3 strong {
    font-family: Poppins,sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -.02em;
    margin: 40px 0 16px}

.prose-ob
    h4 {
    font-family: Poppins,sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -.02em;
    margin: 32px 0 12px}

.prose-ob
    h5 {
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.4;
    margin: 28px 0 10px}

.prose-ob
    h6 {
    font-size: 16px;
    line-height: 1.4;
    margin: 24px 0 8px}

.prose-ob
    p {
    color: var(--color-ob-dark-blue);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 24px}

.prose-ob
    a {
    color: #23BEBB;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px}

.prose-ob
    a:hover {
    color: var(--color-ob-teal-hover)}

.prose-ob
    strong,.prose-ob b {
    color: var(--color-ob-dark-primary);
    font-weight: 600}

.prose-ob
    em,.prose-ob i {
    font-style: italic}

.prose-ob
    ul,.prose-ob ol {
    padding-left: 1.5rem;
    margin: 0 0 24px;
    color: var(--color-ob-body);
    font-weight: 300}

.prose-ob
    ul {
    list-style: disc}

.prose-ob
    ol {
    list-style: decimal}

.prose-ob
    ul ul {
    list-style: circle}

.prose-ob
    ul ul ul {
    list-style: square}

.prose-ob
    li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400}
    figure.wp-block-pullquote blockquote {
    padding: 20px 25px;
    font-family: 'Poppins'}
    figure.wp-block-pullquote blockquote cite {
    text-transform: none;
    font-size: 16px}
    figure.wp-block-pullquote blockquote p:first-child {
    font-weight: 600}

.prose-ob
    blockquote {
    position: relative;
    margin: 52px 0;
    padding: 40px 28px;
    background: linear-gradient(179.79deg,rgba(219,228,237,.5) .19%,rgba(236,240,244,.5) 61.04%);
    border-radius: 15px;
    border: 0;
    color: var(--color-ob-dark-primary);
    font-family: 'Quando',serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 28px;
    overflow: visible}

.prose-ob
    blockquote::before,.prose-ob blockquote::after {
    content: '';
    position: absolute;
    width: 41px;
    height: 41px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center}

.prose-ob
    blockquote::before {
    top: -20px;
    left: 40px;
    background-image: url(../../../../../../../../themes/onebeat_theme/img/blog/lq.svg)}

.prose-ob
    blockquote::after {
    right: 40px;
    bottom: -20px;
    background-image: url(../../../../../../../../themes/onebeat_theme/img/blog/rq.svg)}

.prose-ob
    blockquote>*:first-child {
    margin-top: 0}

.prose-ob
    blockquote>*:last-child {
    margin-bottom: 0}

.prose-ob
    blockquote p {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin-bottom: 16px;
    color: inherit}

.prose-ob
    img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 32px 0}

.ob-related-posts__title {
    font-family: Poppins,sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 38px;
    letter-spacing: -.02em;
    color: var(--color-ob-dark-blue)}

.ob-related-posts
    a {
    text-decoration: none}

.ob-related-posts
    h3 {
    margin: 0;
    font-family: Poppins,sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 25px;
    color: #fff}

.ob-author-box {
    margin-top: 56px;
    padding-top: 58px;
    border-top: 2px solid;
    border-image-source: linear-gradient(270.03deg,#101E2F 12.31%,#E7BFE7 48.93%,#FF5212 131.32%);
    border-image-slice: 1;
    color: var(--color-ob-dark-blue)}

.ob-author-box__head {
    display: flex;
    align-items: center;
    gap: 24px}

.ob-author-box__avatar-wrap {
    flex: 0 0 50px;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    background: #E5E7EB}

.ob-author-box__avatar {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover}

.ob-author-box__heading {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0}

.ob-author-box__label {
    margin: 0;
    font-family: Poppins,sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(26,49,75,.7)}

.ob-author-box__name {
    margin: 0 0 0 0;
    font-family: Poppins,sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0;
    color: var(--color-ob-dark-blue)!important}

.ob-author-box__bio {
    margin: 32px 0 0;
    font-family: Poppins,sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: rgba(26,49,75,.7)}

.ob-author-box__footer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px}

.ob-author-box__linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    text-decoration: none}

.ob-author-box__linkedin
    img {
    display: block;
    width: 36px;
    height: 36px}

.ob-author-box__dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(161.15deg,#FF9974 8.73%,#FF5212 88.52%)}

.ob-author-box__more {
    font-family: Poppins,sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: #23BEBB;
    text-decoration: underline;
    text-underline-offset: 3px}

.ob-author-box__more:
    hover {
    color: var(--color-ob-teal-hover)}

.ob-single-hero__grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%}

.ob-newsletter-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 28px 32px;
    width: 100%;
    max-width: 482px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center}

.ob-newsletter-card--hero {
    display: none}

.ob-newsletter-card__divider {
    display: block;
    width: 280px;
    max-width: 100%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg,#FF9974 0%,#E8BFE6 100%);
    margin-bottom: 20px}
    figure.wp-block-pullquote {
    border: 0;
    padding: 0;
    text-align: start;
    margin: 0 0 1em}
    figure.wp-block-pullquote blockquote:before,figure.wp-block-pullquote blockquote:after {
    display: none}

.ob-newsletter-card__title {
    color: var(--color-ob-dark-primary);
    font-family: Poppins,sans-serif;
    font-size: 24px;
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: -.01em;
    margin: 0 0 30px!important;
    max-width: 300px}

.ob-newsletter-card__form {
    width: 100%}

.ob-newsletter-card .hs-form {
    position: relative;
    display: block;
    max-width: 386px;
    margin: auto}

.ob-newsletter-card__form
    img {
    max-width: 110px!important;
    margin: 20px auto;
    display: none!important}

.ob-newsletter-card .submitted-message
    p {
    margin-bottom: 5px!important}

.ob-newsletter-card .hs-form
    fieldset {
    max-width: none;
    margin: 0}

.ob-newsletter-card .hs-form .hs-form-field {
    width: 100%!important;
    margin: 0;
    min-height: 58px}

:
    root :where(.wp-block-image figcaption) {
    color: #1A314BB2;
    font-size: 16px;
    text-align: left;
    font-weight: 400;
    padding: 0 12px;
    line-height: 22px;
    font-style: italic}

.ob-newsletter-card .hs-form .hs-form-field>
    label,.ob-newsletter-card .hs-form .hs_error_rollup,.ob-newsletter-card .hs-form .hs-richtext {
    display: none!important}

.ob-newsletter-card .hs-form .input {
    margin: 0!important}

.ob-newsletter-card .hs-form
    input.hs-input {
    width: 100%!important;
    height: 58px;
    background-color: var(--color-ob-dark-blue);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0 70px 0 28px;
    font-family: Poppins,sans-serif;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    box-sizing: border-box}

.ob-newsletter-card .hs-form
    input.hs-input::placeholder {
    color: #fff;
    opacity: 1;
    font-weight: 300}

.ob-newsletter-card .hs-form
    input.hs-input:focus {
    box-shadow: 0 0 0 2px rgba(253,96,74,.4)}

.ob-newsletter-card .hs-form .hs_submit,.ob-newsletter-card .hs-form .actions {
    margin: 0!important;
    padding: 0!important}

.ob-newsletter-card .hs-form .hs_submit {
    position: absolute;
    top: 50%;
    right: 7px;
    transform: translateY(-50%)}

.ob-newsletter-card .hs-form .hs-button {
    width: 42px;
    height: 42px;
    min-width: 0;
    border-radius: 999px;
    border: none;
    color: transparent!important;
    font-size: 0!important;
    text-indent: -9999px;
    cursor: pointer;
    background-color: transparent!important;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 6L15 12L9 18' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),var(--gradient-ob-orange);
    background-repeat: no-repeat,no-repeat;
    background-position: center,center;
    background-size: auto,cover;
    transition: opacity 0.2s ease;
    padding: 0;
    line-height: 1}

.ob-newsletter-card .hs-form .hs-button:
    hover {
    opacity: .92}

.ob-newsletter-card .hs-form .hs-error-msgs {
    list-style: none;
    padding: 6px 0 0;
    margin: 0;
    font-size: 12px;
    color: #FFB4A8;
    text-align: center;
    left: 0;
    position: absolute;
    right: 0}

.ob-newsletter-card .submitted-message {
    color: var(--color-ob-dark-primary);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin: 0}

.ob-faqs__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px}

.ob-faqs__item {
    background: linear-gradient(179.79deg,rgba(219,228,237,.5) .19%,rgba(236,240,244,.5) 61.04%);
    border-radius: 16px;
    overflow: hidden}

.ob-faqs__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 32px 32px;
    cursor: pointer;
    list-style: none;
    font-family: Poppins,sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: var(--color-ob-dark,#1A314B)}

.ob-faqs__summary::
    -webkit-details-marker,.ob-faqs__summary::marker {
    display: none;
    content: ""}

.ob-faqs__question {
    flex: 1 1 auto}

.ob-faqs__chevron {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    color: var(--color-ob-dark,#1A314B);
    transition: transform 0.2s ease}

.ob-faqs__item[
    open] .ob-faqs__chevron {
    transform: rotate(180deg)}

.ob-faqs__answer {
    padding: 0 32px 32px;
    color: var(--color-ob-dark,#1A314B);
    font-size: 16px;
    line-height: 1.6}

.ob-faqs__answer
    p {
    margin: 0 0 12px}

.ob-faqs__answer
    p:last-child {
    margin-bottom: 0}
    @media (min-width: 768px) {
    figure.wp-block-pullquote blockquote {
        padding:45px 50px;
    line-height: 31px;
    }

    .ob-related-posts__title {
    font-size: 40px;
    line-height: 52px}

    .ob-single-hero {
    height: 567px;
    min-height: 567px;
    background-image: linear-gradient(90deg,rgba(13,25,38,.9) 0%,rgba(26,49,75,.55) 60%,rgba(26,49,75,.15) 100%),var(--hero-bg,none);
    padding-bottom: 40px}

    .ob-single-hero__title {
    font-size: clamp(38px, 4vw, 56px);
    max-width: 640px}

    .ob-single-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    gap: 0}

    .ob-single-toc {
    display: block}

    .ob-share-card {
    border-radius: 0 0 16px 16px;
    padding: 24px 24px}

    .prose-ob,.prose-ob p,.prose-ob li {
    font-size: 20px;
    line-height: 38px}

    .prose-ob h2 {
    font-size: 40px;
    line-height: 52px;
    margin: 60px 0 24px;
    padding-top: 56px}

    .prose-ob blockquote {
    margin: 80px 0;
    padding: 80px 80px;
    font-size: 25px;
    line-height: 45px}

    .prose-ob blockquote::
    before,.prose-ob blockquote::after {
        width: 74px;
    height: 74px}

    .prose-ob blockquote::
    before {
        top: -37px;
    left: 80px}

    .prose-ob blockquote::
    after {
        right: 80px;
    bottom: -37px}
}
    @media (min-width: 1024px) {
    .prose-ob h3,.prose-ob h3 strong {
        font-size:30px!important;
    line-height: 42px;
    margin: 40px 0 16px}

    .ob-meta-strip {
    margin: -32px 0 0;
    background-color: #fff;
    background-image: url(../../../../../../../../themes/onebeat_theme/img/hp-dots.svg),url(../../../../../../../../themes/onebeat_theme/img/hp-dots-right.svg);
    background-size: auto 100%,auto 100%;
    border-radius: 7px;
    font-size: 13px}

    .ob-author-box__name {
    font-size: 30px;
    line-height: 40px;
    margin: 10px 0 0 0}

    .ob-meta-strip {
    height: 110px;
    padding: 0 88px;
    margin: -55px 0 0;
    font-size: 20px;
    display: flex;
    align-items: center}

    .ob-author-box__avatar-wrap {
    flex: 0 0 90px;
    width: 90px;
    height: 90px}

    .ob-author-box__label {
    font-size: 16px}

    .ob-meta-strip__list {
    width: 100%}

    .ob-single-hero__grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px}

    .ob-single-hero__grid .ob-single-hero__title {
    flex: 1 1 auto;
    max-width: none}

    .ob-newsletter-card--hero {
    display: flex;
    flex: 0 0 482px;
    width: 482px;
    height: 294px;
    justify-content: center}

    .ob-newsletter-card--mobile {
    display: none}

    .ob-newsletter-card__title {
    font-size: 20px}
}
    @media (min-width: 1280px) {
    .ob-newsletter-card__title {
        font-size:20px}
};
  }

  .ob-related-posts__title {
    font-size: 40px;
    line-height: 52px;
  }

  .ob-single-hero {
    height: 567px;
    min-height: 567px;
    background-image:
      linear-gradient(90deg,
        rgba(13, 25, 38, 0.9) 0%,
        rgba(26, 49, 75, 0.55) 60%,
        rgba(26, 49, 75, 0.15) 100%),
      var(--hero-bg, none);
    padding-bottom: 40px;
  }

  .ob-single-hero__title {
    font-size: clamp(38px, 4vw, 56px);
    max-width: 640px;
  }

  .ob-single-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    gap: 0;
  }

  .ob-single-toc {
    display: block;
  }

  .ob-share-card {
    border-radius: 0 0 16px 16px;
    padding: 24px 24px;
  }

  .prose-ob,
  .prose-ob p,
  .prose-ob li {
    font-size: 20px;
    line-height: 38px;
  }

  .prose-ob h2 {
    font-size: 40px;
    line-height: 52px;
    margin: 60px 0 24px;
    padding-top: 56px;
  }

  .prose-ob blockquote {
    margin: 80px 0;
    padding: 80px 80px;
    font-size: 25px;
    line-height: 45px;
  }

  .prose-ob blockquote::before,
  .prose-ob blockquote::after {
    width: 74px;
    height: 74px;
  }

  .prose-ob blockquote::before {
    top: -37px;
    left: 80px;
  }

  .prose-ob blockquote::after {
    right: 80px;
    bottom: -37px;
  }

}

@media (min-width: 1024px) {


  .prose-ob h3,
  .prose-ob h3 strong {
    font-size: 30px !important;
    line-height: 42px;
    margin: 40px 0 16px;
  }

  .ob-meta-strip {
    margin: -32px 0 0;
    background-color: #fff;
    background-image: url('../../img/hp-dots.svg'), url('../../img/hp-dots-right.svg');
    background-size: auto 100%, auto 100%;
    border-radius: 7px;
    font-size: 13px;

  }

  .ob-author-box__name {
    font-size: 30px;
    line-height: 40px;
    margin: 10px 0 0 0;

  }

  .ob-meta-strip {
    height: 110px;
    padding: 0 88px;
    margin: -55px 0 0;
    font-size: 20px;
    display: flex;
    align-items: center;
  }

  .ob-author-box__avatar-wrap {
    flex: 0 0 90px;
    width: 90px;
    height: 90px;

  }

  .ob-author-box__label {
    font-size: 16px;
  }

  .ob-meta-strip__list {
    width: 100%;
  }

  .ob-single-hero__grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }

  .ob-single-hero__grid .ob-single-hero__title {
    flex: 1 1 auto;
    max-width: none;
  }

  .ob-newsletter-card--hero {
    display: flex;
    flex: 0 0 482px;
    width: 482px;
    height: 294px;
    justify-content: center;
  }

  .ob-newsletter-card--mobile {
    display: none;
  }

  .ob-newsletter-card__title {
    font-size: 20px;
  }
}

@media (min-width: 1280px) {
  .ob-newsletter-card__title {
    font-size: 20px;
  }
}