/*
Theme Name: CBRA-Theme
Description: Das CBRA-Basis-Theme
Author: CBRA Digital
Author URI: https://cbra-media.com
Version: 1.2.0
Text Domain: cbra-theme
*/

/* CONTENTS */
/*
 * 1. Resets
 * 2. Layout
 * 3. General Styles - Blocks
 */

/* GENERAL STYLES */

/*--------------------------------------------------------------
# RESETS
--------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select,
address {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Scrollbar */
body {
  overflow: overlay;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: transparent;
}

::-webkit-scrollbar {
  width: 6px;
  background-color: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background-color: #efefef;
}

/*--------------------------------------------------------------
# LAYOUT
--------------------------------------------------------------*/
main {
  display: grid;
  grid-template-columns: 1fr 1fr min(1040px, 100%) 1fr 1fr;
}
main > * {
  grid-column: 3;
}
main > .cb-halfbleed--left {
  grid-column: 2 / 4;
}
main > .cb-halfbleed--right {
  grid-column: 3 / 5;
}
main > .cb-halfbleed--both {
  grid-column: 2 / 5;
}
main > .cb-fullbleed--left {
  grid-column: 1 / 4;
}
main > .cb-fullbleed--right {
  grid-column: 3 / 6;
}
main > .cb-fullbleed--both {
  grid-column: 1 / 6;
}

/*--------------------------------------------------------------
# General Styles - Blocks
--------------------------------------------------------------*/
.cb-block {
  margin-top: var(--margin-desktop-top);
  margin-bottom: var(--margin-desktop-bottom);
}
