  @font-face {
    font-family: 'voyage regular';
    src: url('https://files.jcink.net/uploads2/luiskin/Fonts/voyage_regular.otf') format('truetype');
  }
  
  @font-face {
    font-family: 'voyage bold';
    src: url('https://files.jcink.net/uploads2/luiskin/Fonts/voyage_bold.otf') format('truetype');
  }
  

* {
  box-sizing: border-box;
}

:root {
  /* figma: golden hour (retro) */
  --dark-orange: 225, 79, 1;
  --orange: 240, 95, 4;
  --soft-orange: 246, 135, 67;
  --yellow: 242, 163, 45;
  --sand: 244, 176, 110;
  --terracotta: 174, 112, 103;
  --purple: 177, 169, 193;
  --white: 255, 255, 255;
  
  /* font families*/
  --voyage-regular: "Voyage Regular", serif; 
  --voyage-bold: "Voyage Bold", serif;
  --eb-garamond: "EB Garamond", serif;
  --lato: "Lato", sans serif;
  --ampunsuhu: "Ampunsuhu";
  
  /* padding */
  --pad5: 5px;
  --pad10: 10px;
  --pad15: 15px;
  --pad20: 20px;
  --pad30: 30px;
  --pad40: 40px;
  
  /* border styling */
  --border-1px: 1px solid;
  --border-2px: 2px solid;
}

a {
    text-decoration: wavy underline lightblue;
  text-decoration-thickness: 1px;
  text-decoration-skip-ink: none;
  text-underline-offset: 4px;
  color: orange;}

a.credit {
    position:fixed;
    z-index:10;
    right:20px;
    bottom:20px;
}


a.credit i {font-size:24px;}

h1 {
  font-family: var(--voyage-regular);
  text-transform: uppercase;
  font-size: 2.5em;
  text-align: left;
  line-height: 1;
}

.iris-request {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 640px;
  height: auto;
  overflow: hidden;
  padding: var(--pad5);
}

.iris-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  font-family: var(--lato);
  font-weight: 900;
  letter-spacing: 1.4px;
  font-size: 17px;
  padding: var(--pad10) 0;

}

.iris-top a { background-image: linear-gradient(to bottom, #e85d04, orange);color: #fff; text-decoration: none; padding: 10px;  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15); border-radius: 100px;  font-size: 12px;}

.iris-top u {
  color: rgba(var(--soft-orange));
  text-decoration: none; 
}

.iris-top i {
  color: rgb(var(--sand));
  font-size: 1.3em;
}

.iris-title {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  border-top: var(--border-1px) rgba(var(--purple),.3);
  border-bottom: var(--border-1px) rgba(var(--purple),.3);
  padding: var(--pad30) 0;
}

.iris-title .req-title {
  font-family: var(--voyage-regular);
  text-transform: uppercase;
  font-size: 2.5em;
  text-align: left;
  line-height: 1;
}

.iris-column {
  column-count: 2;
  column-gap: 20px;
  & h2, & img {
  break-inside: avoid;
  }
  padding: var(--pad40) 0;
  font-family: var(--eb-garamond);
  text-align: justify;
  border-bottom: var(--border-1px) rgba(var(--purple),.3);
}

.iris-column b, strong {
  color: rgb(var(--soft-orange));
}

.iris-column i, em {
  color: rgb(var(--sand));
}

.iris-body {
  display: grid;
  grid-template-columns: 1fr 20px 1fr;
  position: relative;
  align-items: start;
  padding-top: var(--pad40);
}

.iris-col-left,
.iris-col-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.iris-divider {
  height: 100%;
  position: relative;
}

.iris-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(var(--orange),.5);
}

.iris-entry .e-one {
  position: relative;
  display: flex;
  align-items: space-between;
}

.iris-entry .e-one .p-title {
  font-family: var(--voyage-bold);
  font-size: 1.3em;
  top: 0px;

}

.iris-entry .e-one .p-title a { color: #000; text-decoration: none;}

.iris-entry.--left .e-one .p-title {
  position: absolute;
  right: 15px;
}

.iris-entry.--right .e-one .p-title {
  position: absolute;
  left: 15px;
}

.iris-entry .e-one .img-border {
  position: relative;
  width: 82px;
  height: 82px;
  border: var(--border-1px) rgba(var(--purple),.4);
  border-radius: 100%;
  padding: var(--pad5);
  filter: grayscale(100%);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
}
.iris-entry .e-one .img {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  object-fit: cover;
}
.iris-entry .e-one .img-border::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 210px;
  height: .5px;
  background: rgba(var(--orange),.5);
}

.iris-entry.--left .e-one .img-border::before {
   left: 80px;
}

.iris-entry.--right .e-one .img-border::before {
  right: 80px;
}

.iris-entry .e-one .req-text {
  text-align: justify;
  padding: var(--pad15);
  margin-top: 35px;
  font-size: .7em;
  font-family: var(--lato);
}

.iris-entry.--left {
  grid-column: 1;
}

.iris-entry.--right {
  grid-column: 3;
}

.iris-entry.--right .e-one {
  flex-direction: row-reverse;
}

.iris-entry .req-info {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
}

.iris-entry .req-info trait {
  display: inline-block;
  background: rgba(var(--yellow));
  padding: var(--pad5);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: .9em;
  white-space: nowrap;
 color: #fff;
}

.iris-entry .req-info trait a { color: #fff; text-decoration: none;}

.iris-entry.--left .req-info {
  justify-content: flex-end;
}
.iris-entry.--right .req-info {
  justify-content: flex-start;
}

.iris-footer {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23b1a9c1' fill-opacity='0.3' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
  min-height: 100px;
  padding: var(--pad20);
}

.iris-footer .iris-note {
  flex: 1;
  border: var(--border-1px) rgba(var(--purple), .1);
  background: rgb(var(--white));
  padding: var(--pad20);
  text-align: justify;
  font-size: .8em;
  line-height: 1.5;
  font-family: var(--eb-garamond);
}


.iris-note a {
  flex: 1;
text-decoration: wavy underline lightblue;
  text-decoration-thickness: 1px;
  text-decoration-skip-ink: none;
  text-underline-offset: 4px;
  padding: var(--pad10);
  text-align: center;
  line-height: 1.5;
  font-family: var(--eb-garamond);
  color: #000;

}


.iris-request .i-footer {
  align-self: center;
  padding: var(--pad15);
  color: rgb(var(--terracotta));
}


.aff {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.aff a {
  display: inline-block;
background-image: linear-gradient(to bottom, #ccc, #ddd);
  padding: 7px;
border-radius: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: .7em;
  white-space: nowrap;
 color: #fff;
 text-decoration: none;
box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.10);
}


