


/* ------------------- Studio header (rewrite of style.css)------------------- */

header {
  right: 5%;
  left: auto;
  transform: translateX(0%);
  width: 23px;
  max-width: 23px;
  min-width: 23px;
  justify-content: center;
}

header img {
  height: 1em;
}

header a:hover {
  filter: drop-shadow(1px 1px 3px var(--active-color));
}

/* ------------------- Article ------------------- */

article{
  padding: 20px;
  overflow-x: visible;
}

.container-about {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;

  max-width: 870px;
  padding: 150px;
  font-family: var(--alter-font);

  background-image: url("img/about-bg.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.container-about a{
  text-decoration: none;
  color: var(--active-color);
}

.quote-image {
  position: absolute;
  top: 50px;
  left: -120px;
  z-index: 100;
  width: 200px;
  height: auto;
}
.quote{ 
  position: relative;
  z-index: 1;
  padding-left: 90px;
}

.quote-image-right {
  position: absolute;
  top: 50px;
  right: -30px;
  z-index: 100;
  width: 200px;
  height: auto;
}
.quote-right {
  position: relative;
  z-index: 1;
  padding: 25px 180px 25px 35px;

  border-color: var(--active-color);
  background-color: var(--scene-bg-color);
  max-width: 80%; 
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 320' fill='0d0d0d'%3E%3Cpath d='M82.87 129.48S77.32 98.96 114.31 74c-12.95 0-89.7 30.52-89.7 113.74 0 33.09 27.59 59.73 61.01 58.19 29.85-1.37 54.07-25.6 55.44-55.45 1.54-33.41-25.1-61-58.19-61zm154.26 0S231.58 98.96 268.57 74c-12.95 0-89.7 30.52-89.7 113.74 0 33.09 27.58 59.73 61.01 58.19 29.85-1.37 54.07-25.6 55.44-55.45 1.54-33.41-25.1-61-58.19-61z'%3E%3C/path%3E%3C/svg%3E"), 
                  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 320' fill='%0d0d0d'%3E%3Cpath d='M82.87 129.48S77.32 98.96 114.31 74c-12.95 0-89.7 30.52-89.7 113.74 0 33.09 27.59 59.73 61.01 58.19 29.85-1.37 54.07-25.6 55.44-55.45 1.54-33.41-25.1-61-58.19-61zm154.26 0S231.58 98.96 268.57 74c-12.95 0-89.7 30.52-89.7 113.74 0 33.09 27.58 59.73 61.01 58.19 29.85-1.37 54.07-25.6 55.44-55.45 1.54-33.41-25.1-61-58.19-61z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-size: 24px 24px, 24px 24px;
  background-position: top 12px left 12px, bottom 12px right 12px;
}

@media (max-width: 480px) {
  .quote-right {
    padding: 25px 180px 25px 35px;
  }
}


/* ------------------- Sidebar additional------------------- */
aside {
  background-size: cover;
}

.anchor-section{
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.anchor-section a {
  text-decoration: none;
  flex-grow: 1;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0px 0px 0px 50px;
  color: var(--active-color);
  background-image: url('/icon/link.svg');
  background-position: 20px 50%;
  background-size: 16px;
  background-repeat: no-repeat;
}

/* ------------------- Section ------------------- */

section{
  padding-top: 100px;
  background-size: cover;
}





@media (max-width: 480px) {
  header {
    width: 60px;
    max-width: 60px;
  }
  article{
    justify-content: start;
  }
  .quote {
    padding-left:0px;
    padding: 0px 0px 100px 50px;
  }
  .quote-image{
    bottom: -130px;
    top: auto;
    left: 20%;
    transform: rotate(-90deg);
    transform-origin: center;
  }
  .quote-image-right{
    width: 100px;
  }
  aside{
    min-height: auto;
    padding-bottom: 30px;
  }
}