/*
Theme Name: GP ADS child theme
Version: 1.0
Description: A child theme of GeneratePress
Template: generatepress
Author: Administrator
*/
@import url("../generatepress/style.css");
/* Your awesome customization starts here */
a:link,a:visited {color: var(--global-color-8) }

.main-title a {color: #fff }
.clfix {  height: 20px;
    background-color: #fff;}
.clfix:after{
			display: block;
			content: "";
			clear: both;
		}
		
#content { display: flex; }

	#primary { flex: 1;}
	

#right-sidebar {
  flex: 0 0 300px;
  float: none;
 
 
  flex-shrink: 0;
}

#primary .adFull,
#primary iframe {
  max-width: 100%;
}

/* Mobil - pod sebou */
@media (max-width: 1024px) {
  #content {
    flex-direction: column; /* Pod sebou */
  }
  
  #primary {
    width: 100%;
    order: 1; /* Content první */
  }
  
  #right-sidebar {
    width: 100%;
    flex: none; /* Zru flex nastavení */
    order: 2; /* Sidebar druhý */
    position: relative !important; /* Zru sticky */
    top: auto !important;
    bottom: auto !important;
  }
}
