@charset "utf-8";

@use 'sass:map';
@use '../abstracts/variables';
@use '../abstracts/mixins/breakpoints' as *;
@use '../abstracts/mixins/typography';

.pkt-bodytext {
  &--large {
    @include typography.get-text('pkt-txt-20-light');

    @include bp('phablet-up') {
      @include typography.get-text('pkt-txt-22-light');
    }

    @include bp('tablet-up') {
      @include typography.get-text('pkt-txt-24-light');
    }
  }

  &--medium {
    @include typography.get-text('pkt-txt-16-light');

    @include bp('phablet-up') {
      @include typography.get-text('pkt-txt-18-light');
    }

    @include bp('tablet-up') {
      @include typography.get-text('pkt-txt-20-light');
    }
  }

  &--small {
    @include typography.get-text('pkt-txt-14-light');

    @include bp('phablet-up') {
      @include typography.get-text('pkt-txt-14-light');
    }

    @include bp('tablet-up') {
      @include typography.get-text('pkt-txt-16-light');
    }
  }
}
