/**
 * Blocks
 *  - base styles for block templates.
 ============================================================================ */

// Almost everything in Druapl 8 is a block, so these classes are very generic
// and it can be dangerous to add styles like font-size or colors.
.block {
  margin: 1.25em 0;
}

// Block title.
.block__title {}

// The block has a title.
.block.has-title {}

// Note, Menu blocks use .block-menu__content, see below.
.block__content {

  p:last-of-type {}
}

