/* ================================================================================ */
/*  Project: WebRH
/*  Author: Digital Experience
/*  Date: Mon Apr 20 2026 20:53:32 GMT+0000 (Coordinated Universal Time)
/*  
/*  Copyright © 2026 Red Hat, Inc.
/*  https://www.redhat.com
/* ================================================================================ */

.rh-customer-success--component {
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  background-color: #ffffff;
  text-decoration: none;
  overflow: hidden;
}
.rh-customer-success--component:hover .rh-customer-success-img-container[data-rh-overlay-hover=dark]::before {
  background-color: rgba(0, 0, 0, 0.6);
}
.rh-customer-success--component:hover .rh-customer-success-img-container[data-rh-overlay-hover=light]::before {
  background-color: rgba(255, 255, 255, 0.8);
}
.rh-customer-success--component:hover .rh-customer-success-cta {
  color: light-dark(#004d99, #92c5f9);
}

.rh-customer-success-img-container {
  position: relative;
  height: 190px;
  background-size: cover;
  background-position: center center;
}
.rh-customer-success-img-container::before {
  transition: background-color 0.3s ease;
}
.rh-customer-success-img-container[data-rh-background-image=fallback] {
  background: url("../images/cardbg-black-squares.png") #292929;
  background-size: auto;
  background-position: right bottom;
  background-repeat: no-repeat;
}
.rh-customer-success-img-container > * {
  position: relative;
}

.rh-customer-success-logo-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.rh-customer-success-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: auto;
  max-width: 70%;
  height: auto;
  max-height: 100px;
}
[data-rh-align=content-shift] .rh-customer-success-logo {
  top: calc(50% - 16px);
}

.rh-customer-success-content {
  display: flex;
  flex-flow: column wrap;
  flex-grow: 1;
  position: relative;
  background-color: #ffffff;
  padding: 20px 20px 32px;
  margin: -32px 32px 0;
}
.rh-customer-success-content > * {
  margin-top: 0;
}

.rh-customer-success-title {
  font-family: RedHatDisplay, "Red Hat Display", Helvetica, Arial, sans-serif;
  font-family: var(--rh-font-family-heading, RedHatDisplay, "Red Hat Display", Helvetica, Arial, sans-serif);
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 400;
  margin: 0 0 16px;
  color: light-dark(#151515, #ffffff);
}
@media (min-width: 768px) {
  .rh-customer-success-title {
    font-size: 1rem;
  }
}
.rh-customer-success-title:last-child {
  margin-bottom: 0;
}
.rh-customer-success-title:not(:last-child) {
  margin-bottom: 16px;
}
.rh-customer-success-title a {
  text-decoration: none;
  color: inherit;
}
.rh-customer-success-title a:hover, .rh-customer-success-title a:active, .rh-customer-success-title a:focus {
  color: light-dark(#004d99, #c7c7c7);
}

.rh-customer-success-summary {
  font-family: RedHatText, "Red Hat Text", Helvetica, Arial, sans-serif;
  font-family: var(--rh-font-family-body-text, RedHatText, "Red Hat Text", Helvetica, Arial, sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 16px;
  color: light-dark(#151515, #ffffff);
}
@media (min-width: 768px) {
  .rh-customer-success-summary {
    font-size: 1.125rem;
  }
}
.rh-customer-success-summary:last-child {
  margin-bottom: 0;
}

.rh-customer-success-cta {
  font-family: RedHatDisplay, "Red Hat Display", Helvetica, Arial, sans-serif;
  font-family: var(--rh-font-family-heading, RedHatDisplay, "Red Hat Display", Helvetica, Arial, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  background: none;
  border: 0;
  margin: auto 0 0;
  padding: 3px 0;
  position: relative;
  color: light-dark(#0066cc, #92c5f9);
}
.rh-customer-success-cta:active, .rh-customer-success-cta:focus {
  outline: 1px dotted light-dark(#0066cc, #92c5f9);
  outline-offset: 1px;
  text-decoration: none !important;
  transition: none;
}
.rh-customer-success-cta:focus {
  outline-color: light-dark(#004d99, #b9dafc);
}
[data-rh-theme^="dark desaturated"] .rh-customer-success-cta {
  color: #ffffff;
}
[data-rh-theme^="dark desaturated"] .rh-customer-success-cta:active, [data-rh-theme^="dark desaturated"] .rh-customer-success-cta:focus {
  outline-color: #ffffff;
}