/* 
 * Brand Showcase Card Component Styles
 * Hero section with background image
 */
.brand-showcase-card {
  position: relative;
  padding: 30px 0 60px;
  background: var(--background-default-secondary);
  overflow: visible;
}

/* Background Image */
.brand-showcase-image {
  position: absolute;
  top: var(--position-top, -150px);
  right: var(--position-right, 40px);
  z-index: 1;
  pointer-events: none;
  width: var(--position-width, 750px);
}

.brand-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand-showcase-card .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.brand-showcase-card .brand-description {
  margin: 0;
  padding: 0;
}

.brand-showcase-content {
  max-width: 500px;
}

/* Brand Info */
.brand-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 434px;
  justify-content: center;
}

.brand-logo {
  max-width: 200px;
}

.brand-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.brand-title {
  font-size: 46px;
  font-weight: 550;
  font-family: var(--font-family-title);
  margin: -3px 0 0 0;
}

.brand-title-wrapper {
  margin-top: 4px;
}

.brand-about {
  font-weight: 600;
  color: #949494;
  font-size: 15px;
}

.brand-description {
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin: 0;
}

.brand-cta {
  width: fit-content;
}

@media (max-width: 1330px) {
  .brand-showcase-image {
    width: 650px;
  }
}

/* Responsive - Tablet */
@media (max-width: 1040px) {
  .brand-showcase-card {
    padding: 48px 0;
  }

  .brand-showcase-content {
    max-width: 500px;
  }

  .brand-title {
    font-size: 32px;
    line-height: 40px;
  }

  .brand-logo {
    max-width: 180px;
  }

  .brand-info {
    height: unset;
    gap: 20px;
  }

  .brand-showcase-image {
    display: none;
  }

  .brand-flexible-page .brand-description {
    margin-top: 0;
    padding: 48px 0;
  }

  .brand-flexible-page .brand-info .brand-description {
    padding: 0;
  }

  .brand-flexible-page .description-grid {
    flex-direction: column;
    gap: 20px;
  }

  .brand-flexible-page .logo-circle img {
    width: 136px !important;
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .brand-showcase-card {
    padding: 60px 0 40px;
  }

  .brand-showcase-card .container {
    padding: 0 20px;
  }

  .brand-showcase-content {
    max-width: 100%;
  }

  .brand-logo {
    max-width: 190px;
  }

  .brand-title {
    font-size: 32px;
  }

  .brand-description {
    font-size: 16px;
  }

  .brand-cta {
    width: 100%;
    text-align: center;
  }
}