.channel-details-card {
  gap: var(--space-sm, 8px);
  padding: var(--space-md, 16px);
  border-radius: var(--border-radius-border-radius-lg, 16px);
  background-color: var(--color-surface-default, #ffffff);
  border: 1px solid #E5E5E5;
  box-shadow: 0px 4px 20px rgba(1, 4, 20, 0.1);
  margin-bottom: var(--space-lg, 24px);
}
.details-card {
  gap: var(--space-md, 16px);
  justify-content: space-between;
}
.channel-details-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.details-card:has(.channel-deatils-image) .channel-details-logo {
  width: 40px;
  height: 40px;
}
.channel-details-logo img {
  width: 100%;
  height: 100%;
}
.channel-nav > div {
  gap: var(--space-xs, 4px);
  width: 100%;
  display: flex;
  flex-direction: column;
}
.channel-nav-flex {
  gap: 8px;
  align-items: center;
}
.channel-details-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs, 4px);
  flex: 1;
}
.channel-deatils-image {
  width: 328px;
  height: 185px;
  border-radius: var(--border-radius-border-radius-lg, 16px);
  overflow: hidden;
}
.channel-deatils-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.channel-left-content {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.channel-deatils-price {
  display: flex;
  gap: var(--space-sm, 8px);
  align-items: center;
  margin-top: var(--space-2xl, 40px);
}
.discount_price {
  font-weight: var(--font-weight-font-weight-extra-bold, 800);
}
.original_price {
  color: var(--color-foreground-subtle, #C5C5C6);
  font-weight: var(--font-weight-font-weight-bold, 700);
}
.channel-details-count,
.channel-details-description {
  color: var(--color-foreground-strong, #606062);
  font-weight: var(--font-weight-font-weight-medium, 500);
}
.card-type-channel_details_card.card {
  border: 0;
}
.card-type-channel_details_card .placeholder-data {
  display: flex;
  flex-direction: row-reverse;
  gap: var(--space-md, 16px);
}
.card-type-channel_details_card .card-image {
  width: 328px;
  height: 185px;
  overflow: hidden;
}
.card-type-channel_details_card .card-image .skeleton {
  display: block;
  width: 100%;
  height: 100%;
}
.card-type-channel_details_card .card-body {
  padding: 0;
  flex: 1 1 0%;
  width: auto;
}
.card-type-channel_details_card .card-body .skeleton-title {
  display: block;
  width: 96px;
  height: 34px;
}
.card-type-channel_details_card .card-body .skeleton-description,
.card-type-channel_details_card .card-body .skeleton-timestamp {
  display: block;
  width: 100%;
  height: 15px;
}
.card-type-channel_details_card .card-body .skeleton-button {
  position: absolute;
  bottom: 0;
  display: block;
  width: 128px;
  height: 34px;
}
@media only screen and (max-width: 960px) {
  .channel-details-card {
    gap: 3px;
  }
  .channel-details-logo {
    width: 40px;
    height: 40px;
  }
  .details-card {
    flex-direction: column-reverse;
  }
  .channel-deatils-image,
  .card-type-channel_details_card .card-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    aspect-ratio: 16/9;
    width: calc(100% + 32px);
    margin-left: -16px;
  }
  .channel-details-card {
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
  }
  .channel-left-content,
  .card-type-channel_details_card .card-body {
    padding: var(--space-md, 16px);
    border-radius: var(--border-radius-border-radius-lg, 16px);
    background-color: var(--color-surface-default, #ffffff);
    border: 1px solid #E5E5E5;
    box-shadow: 0px 4px 20px rgba(1, 4, 20, 0.1);
  }
  .card-type-channel_details_card .placeholder-data {
    flex-direction: column;
  }
  .card-type-channel_details_card .card-body .skeleton-timestamp {
    margin-top: 64px !important;
    width: 128px;
    height: 34px;
  }
  .card-type-channel_details_card .card-body .skeleton-button {
    position: relative;
    width: 100%;
    height: 15px;
  }
}
