/* 

alexanderdesign

what the function
Design, das funktioniert.

alexanderdesign.io

*/

@charset "UTF-8";

:root {
    --color_bg: #FFFDFC;

    --font_family_1: 'tt_rounds_neue_regular', Helvetica, Arial, sans-serif;
    --font_name_1: tt_rounds_neue_regular;
    --font_weight_1: 400;

    --font_family_2: 'tt_norms_pro_bold', Helvetica, Arial, sans-serif;
    --font_name_2: tt_norms_pro_bold;
    --font_weight_2: 700;
	
	--border_radius_mobile: 20px;
	--border_radius_desk: 30px;
}




/* BASICS */

html {scroll-behavior: smooth;}

.post, .page {
	margin: 0;
}

body {
    height: 100%;
    margin: 0 auto;
    padding: 0;
    -moz-osx-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    overflow-x: hidden;
    overflow-wrap: break-word;
    -webkit-tap-highlight-color: transparent;
    background: var(--color_bg);
    color: #000;
}

body::after {
    content: '';
    display: none;
    background-image: url('img/icon_closer.svg');
}

.body_white {
    background: #fff;
}

img {width: 100%;}

:focus {outline: none}

.bor_rad_top_lef_non {
	border-top-left-radius: 0 !important;
}

.bor_rad_top_rig_no {
	border-top-right-radius: 0 !important;
}

ul {
	margin: 0;
	padding: 0;
}

.hyphen_list {
  list-style: none;
  padding-left: 0;
}

.hyphen_list li {
	position: relative;
	padding: 0 0 0 25px;
	margin: 5px 0;
}

.hyphen_list li::before {
  content: "\2283 ";
  position: absolute;
  top: 0;
  left: 0;
}

/* TYPOGRAPHIE */

@font-face {
    font-family: "tt_rounds_neue_regular";
    src: url("fonts/tt_rounds_neue_regular.woff2") format("woff2"),
         url("fonts/tt_rounds_neue_regular.woff") format("woff");
    font-weight: 400;
}

@font-face {
    font-family: "tt_norms_pro_bold";
    src: url("fonts/tt_norms_pro_bold.woff2") format("woff2"),
         url("fonts/tt_norms_pro_bold.woff") format("woff");
    font-weight: 700;
}

.font_1 {
    font-family: var(--font_family_1);
    font-weight: var(--font_weight_1);
}

.font_2 {
    font-family: var(--font_family_2);
    font-weight: var(--font_weight_2);
}

body {
    font-family: var(--font_family_1);
    font-weight: var(--font_weight_1);
	font-size: 1.06rem;
	line-height: 1.5;
	letter-spacing: 0.01rem; 
}

button {
    font-family: var(--font_family_1);
    font-weight: var(--font_weight_1);
    font-size: 1rem;
    line-height: 1rem;
}

h1, .like_h1, h2, .like_h2, h3, .like_h3, h4, .like_h4, h5, .like_h5, h6, .like_h6 {
    font-family: var(--font_family_2);
    font-weight: var(--font_weight_2);
    margin: 1.5em 0 1em 0;
	text-transform: uppercase;
	font-size: 2.339rem;
	line-height: 2.8067rem;
}

h2, .like_h2 {
	font-size: 1.9125rem;  
	line-height: 2.385rem; 
}

h3, .like_h3 {
	font-size: 1.125rem;  
	line-height: 1.53rem;  
}

h4, .like_h4 {
	font-size: 1.125rem;
	line-height: 1.53rem;
}

h5, .like_h5 {
	font-size: 1.125rem;
	line-height: 1.53rem;
}

h6, .like_h6 { font-size: 1rem; }

.like_p {
    font-family: var(--font_family_1);
    font-weight: var(--font-weight_1);
    font-size: 1rem;
}

a {
    color: #000;
    transition: all 250ms ease;
    cursor: pointer;
    outline: none;
}

a:focus, a:hover, a:active, a:visited {
    color: #000;
    outline: none;
}

.lowercase {
    text-transform: lowercase;
}

.uppercase {
    text-transform: uppercase;
}

.muted {
    font-size: 0.8rem;
    opacity: 0.8;
}

.align_left {
    text-align: left;
}

.align_right {
    text-align: right;
}

.align_center {
    text-align: center;
}

.align_justify {
    text-align: justify;
}

.dis_none {
    display: none;
}

.dis_blo {
    display: block;
}

.dis_in_blo {
    display: inline-block;
}

.nohyph {
    -webkit-hyphens: none; 
    -ms-hyphens: none; 
    hyphens: none;
}

.us_none {
    -webkit-user-select: none;
    user-select: none;
}




/* BUTTONS */

button {
    border-radius: 12px;
	border: 1px dashed #000;
	background: transparent;
	color: #000;
	padding: 9px 20px 7px 20px;
	transition: all 200ms cubic-bezier(1, 0.01, 0.75, 1);
	font-size: 0.8rem;
    font-family: var(--font_family_2);
    font-weight: var(--font_weight_2);
	line-height: normal;
	letter-spacing: 0.0375rem;
	text-transform: uppercase;
	cursor: pointer;
}

button:hover  {
    background: #000;
    color: #fff;
	border-color: transparent;
}

button:active {
	transform: translateY(1px);
	transition: none;
}

.color_white, .color_white a, .color_white a:hover, .color_white a:active {
	color: #fff;
}

.color_white button {
	border-color: #fff;
	color: #fff;
}

.color_white button:hover {
	background: #fff;
	color: #000;
}

/* GRID, FLEX UND POSITION */

.wrapper_big {
	width: calc(100% - 40px);
	max-width: 1440px;
	margin: 0 auto;
}

.wrapper {
	width: calc(100% - 40px);
	max-width: 1180px;
	margin: 0 auto;
}

.wrapper_h100 {
	height: 100%;
}

main {
	padding-top: 130px;
}

.regular_section {
	margin-bottom: 40px;
}

.mehr_beitraege_section {
	margin-top: 140px;
}

.site_title {
	text-align: left;
	margin-bottom: 80px;
}
	
.single_post_site_title {
	margin-bottom: 40px !important;
}

.grid_2, .grid_3, .grid_4 {
    display: grid;
    gap: 30px 30px;
}

.grid_2 {
    grid-template-columns: 1fr;
    grid-template-areas:
        "grid_2_box_1"
        "grid_2_box_2";
}

.grid_3 {
    grid-template-columns: 1fr;
    grid-template-areas:
        "grid_3_box_1"
        "grid_3_box_2"
        "grid_3_box_3";
}

.grid_3 ul {
    padding: 0;
    margin: 0;
}

.grid_3 li {
    list-style-type: none;
    margin: 5px 0;
}

.grid_4 {
    grid-template-columns: 1fr;
    grid-template-areas:
        "grid_4_box_1"
        "grid_4_box_2"
        "grid_4_box_3"
        "grid_4_box_4";
}

.grid_2_box_1, .grid_2_box_2,
.grid_3_box_1, .grid_3_box_2, .grid_3_box_3,
.grid_4_box_1, .grid_4_box_2, .grid_4_box_3, .grid_4_box_4 {
}

.pos_rel {
    position: relative;
}

.clearer {
    clear: both;
}




/* SHOW UND HIDE */

.show_mobile {
    display: block;
}

.show_tablet {
    display: none;
}

.show_desk {
    display: none;
}

.show_mobile_2 {
    display: block;
}

.show_desk_2 {
    display: none;
}




/* HEADER */

header {
	width: 100%;
	height: 100%;
	max-height: 130px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 30000;
	transition: max-height 0.3s ease;
}

.header_scroll {
	max-height: 60px;
}

.nav_bg {
	width: 100%; 
	height: 100%;
	position: absolute;
	z-index: 30010;
	background: rgba(255, 253, 252, 0.70);
	backdrop-filter: blur(20px) saturate(220%);
}

header a {
	text-decoration: none;
}

header li {
	cursor: default;
	padding-left: 15px;
}

header li, header a {
	color: rgba(0,0,0,0.6);
}

header li:hover, header a:hover {
	color: rgba(0,0,0,1);
}

header a:last-child {
	padding-right: 0;
}

header a:active {
	color: rgba(0,0,0,1);
	transition: none !important;
}

header a:visited {
	color: rgba(0,0,0,0.8);
}

.logo_wrapper {
	width: 150px;
	height: 70px;
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translate(-50%);
	z-index: 30100;
	transition: all 300ms ease-out;
	will-change: width, height, top;
}

.logo_scroll {
	width: 100px;
	height: 37px;
	top: calc(50% + 2px);
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 200ms ease-out;
}

header ul {
	position: absolute;
	top: 150px;
	left: 20px;
	z-index: 30020;
	padding: 0;
	margin: 0;
	text-align: left;
    transition: top 0.3s ease;
	will-change: top;
}

header ul li ul {
	position: relative;
	top: 0;
	margin: 0;
	padding: 0;
	left: 0;
	margin-top: 20px;
}

header ul li ul li {
	padding-left: 0;
}

.not_mobile {
	display: none;
}

.header_ul_mobile_scroll {
	top: 100px;
}

header ul li {
	list-style-type: none;
	margin-bottom: 20px;
}

.hide_subline {
	opacity: 0;
}

.nav_desk {
	display: none;
}

.nav_mobile {
	display: block;
}

#menu_toogle {
	width: 40px;
	height: 40px;
	background-image: url('img/icon_opener.svg');
	background-size: 30px;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	position: absolute;
	top: 30px;
	right: 0;
	transform: translate(0);
	z-index: 31000;
	padding: 30px;
	will-change: top, transform;
    transition: top 0.3s ease, transform 0.3s ease;
}

#menu_toogle.menu_toogle_open {
    background-image: url('img/icon_closer.svg'); 
}

#menu {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100vw;
	height: 100vh;
	z-index: 30050;
}

.menu_bg_mobile {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 253, 252, 0.70);
	backdrop-filter: blur(20px) saturate(220%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0s linear 0.3s;
	transform: translateZ(0);
	will-change: backdrop-filter;
}

#menu.show_menu .menu_bg_mobile {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.3s ease;
}

.menu_inner {
	position: relative;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

#menu.show_menu .menu_inner {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: opacity 0.3s ease;
}

#menu.show_menu {
	left: 0;
}

.scroll_menu {
	top: 50% !important;
	transform: translate(0, -50%) !important;
}

.sm_icons_bar_header {
	position: absolute;
	right: 35px;
	top: 150px;
	transition: top 0.3s ease;
}

.sm_icons_bar_header img {
	width: 30px;
	height: 30px;
	display: block;
	margin-bottom: 20px;
}

.scroll_sm_icons_header {
	top: 100px;
}

.no_padd_sm_icon_header a {
	padding: 0;
}

/* FOOTER */

footer button {
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	padding: 0 !important;
	background: transparent !important;
    font-family: var(--font_family_1) !important;
    font-weight: var(--font_weight_1) !important;
	letter-spacing: 0.015rem !important;
	text-transform: revert;
	font-size: 1rem;
	color: rgba(0,0,0,0.6);
}

footer button:hover, footer button:active, footer button:visited {
	color: rgba(0,0,0,1);
}

footer .not_mobile {
	display: none;
}

footer a {
	text-decoration: none;
	color: rgba(0,0,0,0.6);
}

footer a:hover, footer a:active, footer a:visited {
	text-decoration: none;
	color: rgba(0,0,0,1) !important;
}

footer a:active, footer button:active {
	transition: none !important;
}

.footer_max_width {
	max-width: 800px;
}

.sm_icons_bar {
	margin-left: -5px;
}

.sm_icons_bar img {
	width: 40px;
	height: 40px;
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
}

.friends_logos_wrapper {
	margin-top: 80px;
}

.friends_logos_wrapper img {
	max-width: 40px;
	max-height: 40px;
	display: inline-block;
	margin-right: 30px;
	vertical-align: middle;
}

.friends_big_logo {
	max-width: 80px !important;
}

.credit_ad {
	margin: 80px 0 0;
	padding-bottom: 40px;
	font-size: 0.7rem;
	opacity: 0.7;
}

/* PLAYER */

.audio_player {
  max-width: 380px;
  min-width: 200px;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  gap: 10px;
  border-radius: 40px;
}

.player_black .audio_player {
  background-image: url('img/p_bg_black.svg');
  background-size: 380px 60px;
  background-position: left center;
}

.player_white .audio_player {
  background-image: url('img/p_bg_white.svg');
  background-size: 380px 60px;
  background-position: left center;
}

.play_pause_btn {
	width: 40px;
	height: 40px;
	margin-left: 10px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	cursor: pointer;
	transition: transform 100ms ease;
}

.play_pause_btn:active {
	transform: scale(0.9);
}

.player_black .play_pause_btn {
  background-image: url('img/p_play_white.svg');
}

.player_black .play_pause_btn.playing {
  background-image: url('img/p_break_white.svg');
}

.player_white .play_pause_btn {
  background-image: url('img/p_play_black.svg');
}

.player_white .play_pause_btn.playing {
  background-image: url('img/p_break_black.svg');
}

.progress_bar_wrapper {
  flex-grow: 1;
  height: 2px;
  border-radius: 5px;
  position: relative;
  background: transparent;
  overflow: hidden;
}

.player_black .progress_bar_wrapper {
	background: rgba(255,255,255,0.25);
}

.player_white .progress_bar_wrapper {
	background: rgba(0,0,0,0.25);
}

.progress_bar {
  height: 2px;
  width: 0%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
}

.player_black .progress_bar {
	background: #fff;
}

.player_white .progress_bar {
	background: #000;
}

.platform_links {
	display: flex;
	gap: 5px;
	margin-left: auto;
	margin-right: 10px;
}

.platform_icon {
  width: 35px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  opacity: 1;
}

.platform_icon:hover {
	opacity: 0.8;
	transition: opacity 0.3 ease;
}

.platform_icon:active {
	opacity: 1;
	transition: none;
}

.player_white .platform_icon.spotify {
  background-image: url('img/icon_spotify.svg');
}

.player_white .platform_icon.apple {
  background-image: url('img/icon_apple.svg');
}

.player_white .platform_icon.ytmusic {
  background-image: url('img/icon_ytmusic.svg');
}

.player_black .platform_icon.spotify {
  background-image: url('img/icon_spotify_white.svg');
}

.player_black .platform_icon.apple {
  background-image: url('img/icon_apple_white.svg');
}

.player_black .platform_icon.ytmusic {
  background-image: url('img/icon_ytmusic_white.svg');
}

.zeitung {
  background-image: url('img/icon_zeitung.svg');
}

/* PADDING BOXES */

.padding_inner {
	padding: 60px 0px;
}

.padding_inner_2 {
	padding: 40px 0px;
}

.padding_inner_3 {
	padding: 40px 0px;
}

.padding_inner_4 {
	padding: 40px 30px;
}

.padding_inner_5 {
	padding: 40px 30px;
}

.padding_inner h2, .padding_inner h3, .padding_inner h4, .padding_inner_2 h2, .padding_inner_2 h3, .padding_inner_2 h4, .padding_inner_4 h2, .padding_inner_4 h3, .padding_inner_4 h4 {
	margin: 1.2em 0;
}

.padding_inner_5 h2, .padding_inner_5 h3, .padding_inner_5 h4 {
	margin: 0em 0 1.2em;
}

.padding_inner_3 h2, .padding_inner_3 h3, .padding_inner_3 h4 {
	margin-bottom: 1.2em;
}

/* MODULE TEXT MIT 2 FARBBOXEN */

.text_2_colors {
	display: flex;
	flex-direction: column;
	width: 100%;
	box-sizing: border-box;
}

.text_2_colors .col_1 {
	height: 50px;
	width: 100%;
	flex-shrink: 0;
}

.text_2_colors .col_2 {
	width: 100%;
	flex: none;
}

.text_2_colors .col_3 {
	height: 100px;
	width: 100%;
	flex-shrink: 0;
}

.color_area {
	width: 100%;
	height: 100%;
	border-radius: var(--border_radius_mobile);
	background: #000;
}

/* TEXTBOX MIT HINTERGRUNDFARBE */

.background_text {
	border-radius: var(--border_radius_mobile);
	background: #ccc;
}

/* FULLWIDTH IMG */

.fullwidth_img_with_text img {
	border-top-left-radius: var(--border_radius_mobile);
	border-top-right-radius: var(--border_radius_mobile);
}

.fullwidth_img_without_text img {
	border-radius: var(--border_radius_mobile);
}

/* TEXT + BILD & BILD + TEXT */

/* TEXT + BILD (MOBILE FIRST – Bild oben) */

.txt_img_row {
	display: flex;
	flex-direction: column;
	width: 100%;
	border-radius: var(--border_radius_mobile);
	overflow: hidden;
}

.txt_img_row .txt_img_col {
	box-sizing: border-box;
}

.txt_img_row .img_col {
	width: 100%;
	display: flex;
	align-items: stretch;
}

.txt_img_row .img_col img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

.txt_img_row .txt_col {
	width: 100%;
}

/* BEITRAGSANSICHTEN */

.beitrags_vorschau_wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.beitrags_vorschau {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.beitrags_vorschau:hover .beitrags_vorschau_bild img {
  transform: scale(1.05);
}

.beitrags_vorschau:active {
	transform: translateY(3px);
	transition: none;
}

.beitrags_vorschau_bild img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
  transform-origin: center bottom;
}

.beitrags_vorschau_text {
  padding: 40px 30px;
}

.beitrags_datum {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.beitrags_titel {
}

.feed_entdecken_wrapper {
	width: 100%;
	text-align: right;
	margin: 30px 0 70px;
}

/* PAGINATION */

.pagination_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
}

.pagination_wrapper button {
	padding: 6px 20px;
}

.pagination_numbers {
  display: flex;
  gap: 8px;
}

.btn_pag_links, .btn_pag_links:hover {
  transform: scaleX(-1);
}

.btn_pag_links:active {
  transform: scaleX(-1) translateY(1px);
}

.pagination_numbers .page-numbers {
	display: inline-block;
	background: #F5F3F2;
	padding: 6px 22px;
	border-radius: 13px;
	text-decoration: none;
	text-align: center;
}

.pagination_numbers .page-numbers.current {
  background: #EBE9E8;
}

.pagination_numbers .page-numbers:hover {
  background: #EBE9E8;
}

.button_placeholder {
  width: 55px; 
}

/* MEHR BEITRÄGE UNTER POSTS */

.header_more_posts {
	margin: 50px 0 60px;
	max-width: 260px;
}

/* BEITRAG SINGLE ANSICHT */

.post_meta_wrapper {
	margin: -40px 0 70px 0;
}

.post_meta {
	padding: 10px 24px;
	font-size: 0.8rem;
	background: #F5F3F2;
	border-radius: 10px;
	display: inline-block;
}

.post_meta a {
	text-decoration: none;
}

.meta_date {
	margin-right: 20px;
}

.post_reihe {
	padding: 10px 24px;
	font-size: 0.8rem;
	background: #F5F3F2;
	border-radius: 15px;
	display: inline-block;
	margin: -20px 0 20px;
}

.post_reihe p {
	margin: 10px 20px 10px 0;
	display: inline-block;
}

/* PRESSE */

.presse_wrapper {
	background: #F5F3F2;
	border-radius: var(--border_radius_mobile);
	width: 100%;
	padding: 15px;
	position: relative;
	margin-bottom: 20px;
}

.presse_wrapper h3 {
	margin-bottom: 0;
}

.presse_wrapper p {
	margin-top: 5px;
}

.presse_img {
	width: 120px;
	height: 120px;
	border-radius: 10px;
	overflow: hidden;
	display: block;
	position: relative;
}

.presse_img img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
}

.presse_link .presse_img img {
	padding: 15px;
}

.presse_txt {
}

.presse_podcast_icon {
	position: absolute;
	top: 15px;
	right: 15px;
}

.presse_podcast_icon a {
	display: inline-block;
}

.presse_header {
	margin: 60px 0 30px;
}

.presse_link {
	text-decoration: none;
}

/* BRANDS START */

.brand_wrapper_start {
	margin: 30px 0 30px 0;
	max-width: 610px;
}

.brand_wrapper_start img {
	display: inline-block;
	max-width: 130px;
	border-radius: 10px;
	overflow: hidden;
	margin: 5px 10px 5px 0;
	background: #F5F3F2;
}

/* CONTENT */

.muted_module {
	font-size: 0.8rem;
	opacity: 0.5;
}

.datenschutz_wrapper ul {
	padding-left: 20px;
}




@media (min-width: 600px) {

}

/* TABLET */ @media (min-width: 768px) {

	/* FOOTER */
	
	.friends_logos_wrapper img {
		max-width: 60px;
		max-height: 60px;
		display: inline-block;
		margin-right: 50px;
		vertical-align: middle;
	}

	.friends_big_logo {
		max-width: 120px !important;
	}

    /* BASICS */






    /* TYPOGRAPHIE */






    /* BUTTONS */






    




    /* SHOW UND HIDE */

    .show_mobile {
        display: none;
    }

    .show_tablet {
        display: block;
    }

    .show_desk {
        display: none;
    }






    /* CONTENT */
    
}

@media (min-width: 650px) {

	/* PADDING BOXES */

	.padding_inner {
		padding: 60px 0px;
	}

	.padding_inner_2 {
		padding: 40px 0px;
	}

	.padding_inner_3 {
		padding: 40px 0px;
	}

	.padding_inner_4 {
		padding: 80px 50px;
	}

	.padding_inner_5 {
		padding: 40px 50px;
	}
	
    /* GRID, FLEX UND POSITION */

	.regular_section {
		margin-bottom: 80px;
	}
	
	footer .grid_3 {
        grid-template-columns: 0.5fr 0.8fr 1fr;
        grid-template-areas:
            "grid_3_box_1 grid_3_box_2 grid_3_box_3";
    }
	
	.site_title {
		text-align: right;
		width: calc(100% - 75px);
		max-width: 620px;
		margin-left: auto;
		margin-bottom: 80px;
	}

    .grid_2, .grid_3, .grid_4 {
        display: grid;
        gap: 30px 30px;
    }

    .grid_2_box_1, .grid_2_box_2,
    .grid_3_box_1, .grid_3_box_2, .grid_3_box_3,
    .grid_4_box_1, .grid_4_box_2, .grid_4_box_3, .grid_4_box_4 {
    }

    .grid_2 {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "grid_2_box_1 grid_2_box_2";
    }

    .grid_3 {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas:
            "grid_3_box_1 grid_3_box_2 grid_3_box_3";
    }

    .grid_4 {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "grid_4_box_1 grid_4_box_2"
            "grid_4_box_3 grid_4_box_4";
    }

    .grid_3.grid_step {
        gap: 30px;
    }

	/* BEITRAG SINGLE ANSICHT */
	
	.post_meta_wrapper {
		text-align: right;
	}

	/* PRESSE */

	.presse_wrapper {
		background: #F5F3F2;
		border-radius: var(--border_radius_mobile);
		width: 100%;
		padding: 15px;
		position: relative;
		margin-bottom: 20px;
	}

	.presse_img {
		width: 120px;
		height: 120px;
		border-radius: 10px;
		overflow: hidden;
		display: inline-block;
		vertical-align: top;
	}

	.presse_img img {
		display: block;
	}

	.presse_txt {
		width: calc(100% - 255px);
		display: inline-block;
		vertical-align: top;
		padding-left: 30px;
	}

	.presse_podcast_icon {
		display: inline-block;
		vertical-align: top;
		position: absolute;
		top: 20px;
		right: 20px;
	}

	.presse_podcast_icon a {
		display: inline-block;
	}

}


@media (min-width: 850px) {

	/* BEITRAGSANSICHT */
	
	.beitrags_vorschau {
  		border-radius: 30px;
	}

	.beitrags_vorschau_text {
	  padding: 60px 50px 70px 50px;
	}
	
	.beitrags_vorschau_wrapper {
	  display: grid;
	  gap: 2rem;
	}
	
	.beitrags_vorschau_wrapper {
		grid-template-columns: repeat(3, 1fr);
	}	

	.feed_entdecken_wrapper {
		margin: 50px 0 70px;
	}

	.beitrags_excerpt {
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	/* FOOTER */
	
	footer {
		background: url("img/footer_petra.svg");
		background-size: 900px;
		background-position: 60% bottom;
		background-repeat: no-repeat;
	}
	
	/* COLUMS */
	
	.columns_2 {
		column-count: 2;
		column-gap: 4vw;
	}
	
	.columns_3 {
		column-count: 3;
		column-gap: 3vw;
	}
	
	.columns_2 p, .columns_3 p {
		/*margin-top: 0; */
	}
	
	.columns_2 > p:first-child, .columns_3 > p:first-child {
		margin-top: 0;
	}


	.columns_2 > p:first-child, .columns_3 > p:last-child {
		margin-bottom: 0;
	}
	
	/* TEXT + BILD & BILD + TEXT */
	
	.txt_img_row {
		display: flex;
		align-items: stretch;
		width: 100%;
	}

	.txt_img_row.normal {
		flex-direction: row;
		border-radius: var(--border_radius_desk);
		overflow: hidden;
	}

	.txt_img_row.mirrored {
		flex-direction: row-reverse;
	}

	.txt_img_row .txt_img_col {
		box-sizing: border-box;
	}

	.txt_img_row .txt_col {
		flex: 1;
		display: flex;
		align-items: center;
	}

	.txt_img_row .img_col {
		width: 430px;
		flex-shrink: 0;
		display: flex;
		align-items: stretch;
	}

	.txt_img_row .img_col img {
		width: 100%;
		height: auto;
		object-fit: cover;
		display: block;
	}

}


/* DESKTOP */ @media (min-width: 1024px) {

	main {
		padding-top: 110px;
	}

	/* GRID, FLEX UND POSITION */
	
	.site_title {
		margin-bottom: 80px;
	}
	
	.single_post_site_title {
		margin-bottom: 40px;
	}

	/* PADDING BOXES */
	
	.padding_inner {
		padding: 80px 0px;
	}

	.padding_inner_2 {
		padding: 80px 50px;
	}

	.padding_inner_3 {
		padding: 40px 50px;
	}

	.padding_inner_4 {
		padding: 80px 50px;
	}

	.padding_inner_5 {
		padding: 80px 50px;
	}
	
	.padding_footer {
		padding: 0 50px;
	}

	/* MODULE TEXT MIT 2 FARBBOXEN */
	
	.text_2_colors {
		flex-direction: row;
	}

	.text_2_colors.mirrored {
		flex-direction: row-reverse;
	}

	.text_2_colors .col_1 {
		width: 130px;
		height: auto;
		flex-shrink: 0;
	}

	.text_2_colors .col_2 {
		flex: 750 1 0;
		min-width: 0;
	}

	.text_2_colors .col_3 {
		flex: 560 1 0;
		min-width: 0;
		height: auto;
	}

	.color_area {
		width: 100%;
		height: 100%;
		border-radius: var(--border_radius_desk);
		background: #000;
	}
	
	/* TEXTBOX MIT HINTERGRUNDFARBE */

	.background_text {
		border-radius: var(--border_radius_desk);
	}

	/* FULLWIDTH IMG */

	.fullwidth_img_with_text img {
		border-top-left-radius: var(--border_radius_desk);
		border-top-right-radius: var(--border_radius_desk);
	}

	.fullwidth_img_without_text img {
		border-radius: var(--border_radius_desk);
	}

	/* NAVIGATION */
	
	.logo_wrapper {
		width: 160px;
		height: 75px;
		position: absolute;
		top: 50px;
		left: 0;
		z-index: 30100;
		transform: translate(0);
		transition: all 300ms ease-out;
		will-change: width, height, top;
	}

	.logo_scroll {
		width: 100px;
		height: 37px;
		top: calc(50% + 2px);
		transform: translate(0, -50%);
		transition: all 300ms ease-out;
	}
	
	header ul {
		position: absolute;
		top: 50%;
		right: 0;
		transform: translate(0, -50%);
		z-index: 30020;
		padding: 0;
		margin: 0;
		height: 38px;
		text-align: right;
	}

	header ul li {
		display: inline-block;
		position: relative;
		padding: 0 0 30px 0;
		margin-left: 30px;
	}
	
	header ul li ul {
		display: none;
		width: max-content;
		height: max-content;
		background: rgba(255, 253, 252, 0.8);
		backdrop-filter: blur(30px) saturate(200%);
		border-bottom-left-radius: 15px;
		border-bottom-right-radius: 15px;
		transform: none;
		padding: 25px 35px;
		position: absolute;
		top: 22px;
		left: -35px;
		text-align: left;
	}
	
	header ul li ul li {
		margin: 0;
		padding: 8px 20px 5px 0;
	}
	
	header ul li:hover ul {
		display: block;
	}
	
	header ul li:hover ul li {
		display: block;
	}

	.dropdown_ico {
		font-size: 0.8rem;
		transform: rotate(0deg) translate(0px);
		display: inline-block;
		opacity: 0.4;
		transition: all 300ms ease-out;
	}
	
	header ul li:hover .dropdown_ico {
		transform: rotate(0deg) translate(0, -1px);
		opacity: 1;
	}

	.not_mobile {
		display: inline-block;
	}
	
	.nav_desk {
		display: block;
	}

	.nav_mobile {
		display: none;
	}

    /* BASICS */

    .align_left_desk {
        text-align: left;
    }

    .align_right_desk {
        text-align: right;
    }

    .align_center_desk {
        text-align: center;
    }

    .align_justify_desk {
        text-align: justify;
    }

    




    /* TYPOGRAPHIE */

    




    /* BUTTONS */




    /* SHOW UND HIDE */

    .show_mobile {
        display: none;
    }

    .show_tablet {
        display: none;
    }

    .show_desk {
        display: block;
    }

    .show_mobile_2 {
        display: none;
    }

    .show_desk_2 {
        display: block;
    }

    




    /* CONTENT */
	
	
	/* BRANDS START */
	
	.brand_wrapper_start {
		max-width: 1080px;
		margin: 50px auto;
	}
	
	.brand_wrapper_start img {
		display: inline-block;
		max-width: 170px;
		border-radius: 10px;
		overflow: hidden;
		margin: 15px;
		background: #F5F3F2;
	}

}

@media (min-width: 1100px) {

	/* PADDING BOXES */

	.padding_inner_2 {
		padding: 80px 90px;
	}

	.padding_inner_3 {
		padding: 80px 90px;
	}

	.padding_inner_4 {
		padding: 80px 90px;
	}

	.padding_inner_5 {
		padding: 80px 90px;
	}
	
	.padding_footer {
		padding: 0 90px;
	}

}

@media (min-width: 1260px) {

	/* FULLWIDTH IMG */

	.img_wrapper_big img {
		border-bottom-left-radius: var(--border_radius_desk);
		border-bottom-right-radius: var(--border_radius_desk);
	}

}