/**
 * Copyright IBM Corp. 2016, 2024
 *
 * This source code is licensed under the Apache-2.0 license found in the
 * LICENSE file in the root directory of this source tree.
 */

@use '@carbon/styles/scss/config' as *;
@use '@carbon/styles/scss/utilities/convert' as *;
@use '../../globals/vars' as *;
@use '../../globals/imports' as *;
@use '../../internal/content-block';
@use '../../internal/content-item/content-item';
@use '../image';

@mixin content-block-simple {
  .#{$prefix}--content-block-simple__media-video {
    max-inline-size: to-rem(640px);
  }

  .#{$prefix}--content-block-simple__content {
    .#{$prefix}--content-item {
      &:first-of-type {
        margin-block-start: 0;
      }
    }
  }
}
