/* 2 столбца: sidebar | содержимое страницы */
.container { 
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr; /* 1fr = "одна свободная доля" */
}

body {
   margin: 0;
   font-family: sans-serif;
   font-weight: 400;
   color: #111;
   background-color: #fff;
   text-align: justify;
   font-size: 17px;
   line-height: 1.5;
}

h1, h3 { color: var(--golden-rod); }
h2 { font-size: 1.7rem; color: var(--golden-rod) }
h3 { font-size: 1.2rem; margin-bottom: 0; }


p {
    font-size: 18px;
    margin: 15px 15px;
}



/* Специфические блоки */
.title-text {
   font-size: 1.2rem;
   font-weight: bold;
   color: var(--clr-black);
   padding: 15px 70px;
   text-align: center;
}



.outline-left {
    padding: 10px 68px 20px 20px;
    border-left: 4px solid var(--golden-rod);
    margin-left: 20px;
    font-style: italic;
    color: #555;
}




#about-us {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: stretch;
   padding: 0;
}

.ed-text { flex: 0 0 50%; }

#ed-img {
    flex: 0 0 50%;
    height: 450px;
    position: relative;
    margin-top: 40px;
}

.background-image-holder {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
