
/*********************************************/
/*                  FONTS                    */
/*********************************************/

@font-face {
    font-family: 'lunchtype21bold';
    src: url('../fonts/lunchtype21-bold-webfont.woff2') format('woff2'),
         url('../fonts/lunchtype21-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'lunchtype21medium';
    src: url('../fonts/lunchtype21-medium-webfont.woff2') format('woff2'),
         url('../fonts/lunchtype21-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'lunchtype21regular';
    src: url('../fonts/lunchtype21-regular-webfont.woff2') format('woff2'),
         url('../fonts/lunchtype21-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: 'lunchtype21italic';
  src: url('../fonts/lunchtype21-regular-italic-webfont.woff2') format('woff2'),
       url('../fonts/lunchtype21-regular-italic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'jeanmichel';
  src: url('../fonts/JeanMichel.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


/*********************************************/
/*          TYPE UTILITIES                   */
/*********************************************/

section h2 {
  font-size: 1.167em;
  color: var(--brand-alt-color);
  text-transform: uppercase;
}

.big {
  line-height: 1;
  font-size: 1.375em;
  font-family: 'lunchtype21medium'
}

.big p {
  margin: 0;
}

.italic {
  font-family: "lunchtype21italic";
}

.small {
  font-size: 0.8em;
  font-family: "lunchtype21regular";
}

.alt-branded {
  color: var(--brand-alt-color);
}

.unbreakable {
  white-space: nowrap;
}

.quote {
  display: block;
  border-left: 1px solid var(--brand-alt-color);
  padding-left: var(--main-margin);
  margin: var(--main-margin) 0;
}

.citation-author::before {
  content: " — ";
}

p a, ul.equipe-bureau a {
  color: black;
  text-decoration: none;
  border-bottom: 1px solid var(--brand-alt-color);
}

p a:hover, ul.equipe-bureau a:hover {
  color: var(--brand-alt-color);
}

.align-right {
  text-align: right;
}


/*********************************************/
/*          ARTIST NAVIGATION LINKS          */
/*********************************************/

.artists-links {
  display: flex;
  justify-content: space-between;
  margin-top: 2em;
}

.artists-links a {
  text-decoration: none;
  color: #BBB;
  border: none;
}

.artists-links img {
    max-height: 0.6em;
    vertical-align: middle;
}

.link-artist-next img {
  transform: scaleX(-1);
}

.link-artist-previous {

}

/*********************************************/
/*            EQUIPE                         */
/*********************************************/

h2.equipe {
  margin-top: 1.5em;
  padding-bottom: 0.5em;
  /*border-bottom: 1px solid var(--brand-alt-color);*/
}

ul.equipe {
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--main-margin);
}
ul.equipe li {
  list-style-type: none;
  width: 45%;
}
ul.equipe li > span {
  display: block;
}

ul.equipe a {
  text-decoration: none;
  border: none;
}

ul.equipe.insta a {
  display: block;
  text-decoration: none;
  color: var(--text-color);
}

ul.equipe.insta a:hover {
  color: var(--brand-alt-color);
}

ul.equipe.insta a::before {
  content: "@";
  color: var(--brand-alt-color);
}



/*********************************************/
/*            BORDERED LIST                  */
/*********************************************/


.bordered-segment {
  /*display: flex;*/
  display: block;
  justify-content: space-between;
  border-bottom: 1px solid var(--brand-alt-color);
  padding: 0.3em 0 0.8em 0;
}
h2 + .bordered-segment,
.bordered-top {
  border-top: 1px solid var(--brand-alt-color);
}
.bordered-bottom {
  border-bottom: 1px solid var(--brand-alt-color);
}
.bordered-segment span:first-child {
  display: block;
  text-align: left;
  font-family: 'lunchtype21medium';
  line-height: 1.5;
  font-size: 1.1em;
}
.bordered-segment span:last-child {
  display: block;
  text-align: right;
  margin-top: 1em;
}

/*********************************************/
/*            DOWNLOAD LINKS                 */
/*********************************************/

a.download-link {
  display: inline-block;
  text-decoration: none;
  color: var(--external-link-color);
  border: 1px solid var(--external-link-color);
  border-radius: 6px;
  padding: 4px 12px;
  margin: 0 6px 6px 6px;
  text-align: center;
  transition: all 0.15s linear;
}
a.download-link.year-link {
  width: 3.6em;
  padding: 4px 0;

}
a.download-link:hover {
  color: white;
  background-color: var(--external-link-color);
}


a.external {
  display: inline-block;
  text-decoration: none;
  padding: 2px 16px;
/*  margin: 24px;*/
  border: 1px solid var(--brand-color);
  border-radius: 8px;
  color: var(--brand-color);
  transition: all 0.3s linear;
}

a.external:hover {
  color: white;
  background-color: var(--brand-color);
  transition: all 0.1s linear;
}


a.read-more {
  display: inline-block;
  text-decoration: none;
  padding: 2px 16px;
/*  margin: 24px;*/
  border: 1px solid var(--brand-alt-color);
  border-radius: 4px;
  color: var(--brand-alt-color);
  transition: all 0.3s linear;
}

a.read-more:hover {
  color: white;
  background-color: var(--brand-alt-color);
  transition: all 0.1s linear;
}


/*********************************************/
/*            "S"     BRANDING               */
/*********************************************/

.branded-s {
    white-space: nowrap;
    /*cursor: crosshair;*/
    cursor: none;
}
.branded-s:hover {
    color: var(--brand-color);
}
.branded-s::before {
    content: "«";
    display: inline-block;
    margin-right: 2px;
    transform: rotate(0deg);
    position: relative;
    bottom: 0em;
    transition: all 0.15s ease-out;
}
.branded-s:hover::before {
    transform: rotate(-8deg) scale(1.2) translateX(-5px);
    bottom: 0em;
    color: var(--brand-color);
}
.branded-s::after {
    content: "»";
    display: inline-block;
    margin-left: 2px;
    transform: rotate(0deg);
    position: relative;
    bottom: 0em;
    transition: all 0.15s ease-out;
}

.branded-s:hover::after {
    transform: rotate(-8deg) scale(1.2) translateX(5px);
    bottom: 0.2em;
    color: var(--brand-color);
}
