@charset "UTF-8";
/* CSS Document */

/* The outer ad row (orange background), max 1200px wide */

.ads {
	margin: 10px auto;   /* 10px top/bottom, auto left/right to center */
  max-width: 1800px;   /* Limit to 1200px on wider screens */
	    background-color: #ccc;
      padding: 2rem;
      text-align: center;
	
}
.ad-row {
  background-color: orange; 
  padding: 10px;
  margin: 10px auto;   /* 10px top/bottom, auto left/right to center */
  max-width: 1800px;   /* Limit to 1200px on wider screens */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

/* The inner placeholder (light gray), also max 1200px */
.ad-placeholder {
  height: 200px;
  background-color: #E4DEDE;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #64748b;
  max-width: 1200px;   
  margin: 10px auto;    /* 10px top/bottom, auto left/right to center */
}



  