@charset "UTF-8";
body > main > header {
  background-size: cover;
}
body > main > section > article a {
  text-decoration: underline;
}
body > main > section > article a:hover {
  font-weight: bold;
}

.page-hero__wrapper h1 {
  margin: 0 !important;
}
.page-hero__wrapper span {
  display: inline;
  margin-top: 0 !important;
  padding-bottom: 10px !important;
  text-align: center;
}

#article__header {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#article__header h2 {
  margin-bottom: 6px;
}
#article__details {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #666666;
}
@media (min-width: 768px) {
  #article__details {
    align-items: center;
  }
}
#article__details-body {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
}
#article__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
#article__links a {
  text-decoration: none;
}
#article__links a:hover {
  font-weight: inherit;
}
#article__ftr-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 12px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#article__ftr-links div span {
  display: block;
  font-size: 0.85em;
  text-transform: uppercase;
}
#article__ftr-links div a {
  display: block;
  padding: 10px 0 0;
  font-size: 1.2em;
  color: inherit;
  text-decoration: none;
}
#article__ftr-links div a:hover {
  text-decoration: underline;
}
#article__ftr-links div time {
  font-size: 0.75em;
  line-height: 1.2;
}
#article__ftr-links div:nth-child(2) {
  text-align: right;
}

#articles__backlink {
  margin: -30px 0 30px;
  font-size: 14px;
  color: var(--dkblue);
}

.article-list {
  display: grid;
  grid-template-columns: 1fr;
  padding-left: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .article-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .article-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.article-list li {
  padding: 12px 0;
  border-bottom: 1px solid #EDEADE;
}
.article-list li figure {
  position: relative;
  display: flex;
  align-content: center;
  height: 250px;
  margin: 0;
  margin-bottom: 16px;
  text-align: center;
  border: 5px solid #FFFFFF;
  box-shadow: 0px 0px 10px 1px #d9d9d9;
  overflow: hidden;
  transition: box-shadow 0.3s ease-out;
}
.article-list li figure:hover {
  box-shadow: 0px 0px 12px 2px #9a9a9a;
}
.article-list li figure img {
  width: 100%;
  object-fit: cover;
}
.article-list li figure .article-tag {
  position: absolute;
  bottom: 15px;
  left: 0;
  padding: 6px 16px 6px 12px;
  color: var(--font-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  font-style: italic;
  text-transform: uppercase;
  background-color: white;
  border-radius: 0px 4px 4px 0px;
}
.article-list li figure .article-tag.news {
  color: white;
  background-color: var(--green);
}
.article-list li figure .article-tag.project {
  color: white;
  background-color: var(--dkblue);
}
.article-list li figure .article-tag.gen-info {
  color: white;
  background-color: var(--blue);
}
.article-list li figure .article-tag.event {
  color: #733907;
  background-color: #F2B807;
}
.article-list li figure .article-tag.tech-tip {
  color: #002b5c;
  background-color: #ef4135;
}
.article-list li .article__title {
  display: inline-block;
  padding: 2px 2px 0px 0;
  color: #111111;
  font-size: 20px;
  line-height: 165%;
  background-color: transparent;
  background-image: linear-gradient(to bottom, var(--blue) 0%, var(--blue) 100%);
  background-repeat: no-repeat;
  background-size: 100% 0;
  background-position: 0 111%;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
.article-list li .article__title:hover, .article-list li .article__title:focus {
  color: white;
  background-size: 100% 88%;
  border-bottom: 2px solid var(--dkblue);
  cursor: pointer;
}

.article-author-image {
  height: 56px;
  width: 56px;
  min-width: 56px;
  border-radius: 9999px;
  object-fit: contain;
}
.article-author-name {
  width: 100%;
  color: var(--font-color);
  font-weight: 650;
  line-height: 1.25rem;
}
.article-author-name a {
  color: inherit;
}
.article-author-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  font-weight: 440;
  line-height: 1.5;
}
.article-author-meta a {
  color: inherit;
  text-decoration: none;
}
.article-author-meta a:hover {
  text-decoration: underline;
}

#project__details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  #project__details {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }
}
#project__details__overview h2 {
  margin-top: 0;
}
#project__details__overview ul {
  display: inline-block;
  padding: 0;
  list-style: none;
}
#project__details__overview ul li {
  position: relative;
  padding: 10px 10px 10px 24px;
  color: var(--dkblue);
  border-top: 1px solid rgba(51, 51, 51, 0.12);
}
#project__details__overview ul li:nth-child(1) {
  padding-top: 0;
  border-top: none;
}
#project__details__overview ul li::before {
  position: relative;
  left: -20px;
  display: inline-block;
  font: var(--fa-font-solid);
  content: "";
  color: var(--font-color);
}
#project__details__image {
  margin: 0;
  text-align: center;
}
@media (min-width: 768px) {
  #project__details__image {
    margin-top: 40px;
    text-align: right;
  }
}
#project__details__image img {
  max-height: 275px;
  border: 5px solid #FFFFFF;
  box-shadow: 0px 0px 10px 1px #c0c0c0;
  transform: rotate(-2deg);
}
#project__details a:hover,
#project__details a:focus {
  text-decoration: underline;
}

.project__gallery {
  margin: 70px 0 40px;
}
@media (min-width: 768px) {
  .project__gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.project__gallery figure {
  margin: 0;
}
.project__gallery figure img {
  min-height: 200px;
  max-height: 275px;
  border: 5px solid #FFFFFF;
  box-shadow: 0px 0px 10px 1px #c0c0c0;
  transform: rotate(-2deg);
  transition: 0.3s ease-in-out all;
}
.project__gallery figure img:hover {
  box-shadow: 0px 0px 10px 3px #c0c0c0;
  transform: scale(1.1) !important;
}
.project__gallery figure:nth-child(even) img {
  transform: rotate(2deg);
}

#news__header {
  margin-bottom: 6px;
}
#news__details {
  margin-top: 0;
  font-size: 14px;
  color: #666666;
}

blockquote {
  display: block;
  border-width: 2px 0;
  border-style: solid;
  border-color: #eee;
  padding: 1.5em 0 0.5em;
  margin: 1.5em 0;
  position: relative;
}
blockquote:before {
  content: "“";
  position: absolute;
  top: 0em;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 3rem;
  height: 2rem;
  font: 6em/1.08em "PT Sans", sans-serif;
  color: #666;
  text-align: center;
}
blockquote:after {
  content: "– " attr(cite);
  display: block;
  text-align: right;
  font-size: 0.875em;
  font-weight: 600;
  color: var(--dkblue);
}

#event__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  #event__content {
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }
}
#event__details {
  align-self: self-start;
  padding: 16px;
  color: #050505;
  border-radius: max(0px, min(8px, calc((100vw - 4px - 100%)* 9999)))/8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
#event__details h3 {
  margin: 0;
  padding: 4px 0 16px;
  font-size: 20px;
  font-weight: 900;
  line-height: 24px;
  color: inherit;
}
#event__details p {
  margin: 0;
  padding: 8px 0;
  font-size: 15px;
  line-height: 20px;
  color: inherit;
}
#event__details p i {
  color: #989EA8;
}
#event__details p a {
  color: inherit;
}
#event__details p a:hover {
  text-decoration: underline;
}
#event__details__info p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
}

#tech-tip__credit {
  clear: both;
  display: inline-flex;
  flex-direction: column;
  padding: 20px;
  margin-top: 40px;
  text-align: center;
  border: 2px solid black;
}
@media (min-width: 768px) {
  #tech-tip__credit {
    max-width: 375px;
  }
}
#tech-tip__credit img {
  min-height: 45px;
  max-height: 55px;
  max-width: 100%;
}
#tech-tip__credit p {
  font-size: 14px;
}
#tech-tip__credit p:last-child {
  margin-bottom: 0;
}
#tech-tip__credit a.btn {
  text-decoration: none;
}
#tech-tip__credit a.btn:hover {
  text-decoration: underline;
}
#tech-tip__credit a:hover {
  font-weight: inherit;
}
#tech-tip__credit__file-size {
  margin-top: 4px;
  text-align: center;
}

/*# sourceMappingURL=articles.css.map */
