/*#############################################################################
BASE STYLE
#############################################################################*/

/*@import url('https://fonts.googleapis.com/css?family=DM+Sans');
@import url('https://fonts.googleapis.com/css2?family=Inter');
@import url('https://fonts.googleapis.com/css?family=Oswald');*/

:root {
    --color-cod-grey: #1e1e1e;
    --color-light-grey: #505050;
    --color-nandor: #515352;
    --color-boulder: #787878;
    --color-alto: #d9d9d9;
    --color-bombay: #b4b9be;
    --color-silver: #bababa;
    --color-alabaster: #f8f8f8;
    --color-mercury: #E2E2E2;   
    --color-white: #fcfcfc;
    --color-black: #000;
    --verticalRhythm: 24px;
    --headerHeight: 67px;
    --headerHeight-mobile: 47px;
    --filtersHeight: 62px;
    --footerHeight: 100px;
    --margin: 8px;
    --grid-gap: 28px;
    --content-width: 902px;
}
a,
hr {
	padding: 0
}
body,
sub,
sup {
	position: relative
}
article,
aside,
details,
figure,
footer,
h2 span,
header,
hr,
nav,
section,
summary {
	display: block
}
h2,
h2 a {
	letter-spacing: .4px
}
.inside-support-page-wrapper table,
table {
	border-collapse: collapse
}
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
body div,
caption,
cite,
code,
dd,
del,
details,
dfn,
dl,
dt,
em,
fieldset,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-weight: 400;
	vertical-align: baseline;
	background: 0 0
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    overflow-y: scroll;
    background-color: var(--color-mercury);
    color: var(--color-cod-grey);
    font-family: Inter, sans-serif;
    font-size: 15px;
    line-height: 23px;
    font-weight: 300;
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: Oswald, sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

h1 {
    padding-top: calc(var(--verticalRhythm) * 3);
    font-size: 30px;
    line-height: 44px;
}

h2 {
    padding-top: var(--verticalRhythm);
    font-size: 1.5em;
}

h3 {
    padding-top: var(--verticalRhythm);
    font-size: 1em;
}

h4 {
    padding-top: var(--verticalRhythm);
    font-size: .7em;
}

p {
    margin: 0;
    padding: 0;
}

ul, ol {
    margin: 0;
    padding: 0;
    padding-left: calc(var(--margin) * 4);
}

li {
    padding-top: calc(var(--verticalRhythm) / 2);
}

li:last-of-type {
    padding-bottom: calc(var(--verticalRhythm) / 2);
}

a {
    color: var(--color-black);
    text-decoration: none;
}

a:hover {
    color: var(--color-black);
}

img {
    max-width: 100%;
    display: block;    
}

/* below small */

td {
    vertical-align: top;
}

pre {
    overflow-x: auto;
    padding: var(--margin) 0;
}

table {
    border-collapse: collapse;
    overflow: auto;
    width: 100%;
    display: block;
}

td, th {
    border: solid 1px var(--color-bombay);
    padding: calc(var(--margin) * 2);
}

thead {
    font-weight: bold;
}

thead tr:nth-child(2n+1) {
    background-color: var(--color-alabaster);    
}

tr:nth-child(odd) {
    background-color: var(--color-alto);
}

tr:nth-child(even){
    background-color: var(--color-alabaster);
}

.button {
    border: 1px solid var(--color-black);
    color: var(--color-black);
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    line-height: 28px;
    font-weight: 300;
    white-space: nowrap;
    padding: 2px 13px;  
}

.button:hover {
    transition: background-color 300ms ease 0ms;
    background-color: var(--color-black);
    color: var(--color-white);
}

/*#############################################################################
Archive
#############################################################################*/
.archive-item {
    padding-top: var(--verticalRhythm);
}

.archive-date{
    color: var(--color-silver);
}

/*#############################################################################
Header
#############################################################################*/
.header {
    background-color: var(--color-black);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1 /* relative to main-content */
}

/* give header its fixed size */
.header-structure{
    height: var(--headerHeight);
}


.nav {
  z-index: 2000;
  position: fixed;
  display: inline-block;
  text-align: left;
  font-weight: 400;
  font-family: Oswald, sans-serif;
  font-size: 16px;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-black);
  color: #515352;
}

.nav__menu-wrapper {
  display: block;
  margin-left: 190px;
  width: 460px;
}

@media screen and (min-width:970px) {
  .nav {
    text-align: center;
    font-size: 19px;
  }

  .nav__menu-wrapper {
    display: inline-block;
    margin-left: 0;
    width: 900px;
  }
}

@media screen and (max-width:970px) {
  .header-structure{
      height: var(--headerHeight-mobile);
  }

  .nav {
    text-align: center;
  }

  .nav__menu-wrapper {
    display: inline-block;
    margin-left: 0;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav__desktop-menu-wrapper {
    display: none;
  }
}

.nav__menu-button-first {
  padding: 18px 10px 10px 0!important;
}

.nav__menu-button-link {
  letter-spacing: 0.2px;
  text-decoration: none;
  color: #515352;
}

.nav__menu-button-link:link,
.nav__menu-button-link:visited {
  color: #515352!important;
}

.nav__menu-button-link:active,
.nav__menu-button-link:hover {
  cursor: pointer;
  background-color: #000;
  color: #fff!important;
}

.nav__menu-button {
  position: relative;
  display: block;
  text-align: left;
  float: left;
  text-transform: uppercase;
  padding: 18px 10px 10px;
  letter-spacing: 0.2px;
  line-height: 28px;
  text-decoration: none;
  color: #515352;
}

.nav__menu-button-social, .nav__print-button-wrapper {
  display: block;
  vertical-align: text-top;
  text-align: right;
  float: right;
  letter-spacing: 0.2px;
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
}

.nav__menu-button-social {
  font-size: 22px!important;
  padding: 20px 6px 10px;
  color: #515352;
}

@media screen and (max-width:970px) {
  .nav__menu-button-social {
    padding: 10px 0 0 14px;
  }
}

.nav__menu-button-social:hover,
.nav__menu-button:hover {
  cursor: pointer;
  background-color: #000;
  color: #fff;
}

.nav__print-button-wrapper {
  margin-top: 18px;
  margin-left: 5px;
  font-size: 15px!important;
  color: #515352;
}

.nav__print-button-bg {
  position: relative;
  display: inline-block;
  text-align: center;
  background-color: #515352;
  border-radius: 3px;
  width: 25px;
  height: 25px;
  color: #000;
}

.nav__print-button {
  margin: 6px 0 0 1px;
}

.nav__print-button-wrapper:hover {
  cursor: pointer;
}

.nav__print-button-wrapper:hover .nav__print-button-bg {
  background-color: #fff!important;
}

.nav__menu-wrapper #print-loader {
  display: none;
  position: relative;
  width: 25px;
  height: 25px;
}

.nav__dropdown {
  position: absolute;
  left: 0;
  padding: 10px 10px 20px;
}

.nav__dropdown-menu-button {
  margin-bottom: 10px;
  display: inline-block;
  color: #515352;
  text-decoration: none;
}

.nav__burger-menu-content-wrapper a:hover,
.nav__dropdown-menu-button:hover {
  color: #fff;
}

.nav__dropdown-menu-button:last-of-type {
  margin-bottom: 0;
}

.nav__dropdown {
  display: none;
  background-color: #000;
}

.nav__dropdown-support:hover .nav__dropdown {
  display: block;
}

@media screen and (min-width:970px) {
  .nav__burger-menu-wrapper {
    display: none!important;
  }
}

@media screen and (max-width:970px) {
  .nav__burger-menu-wrapper {
    display: block;
  }

  .nav__burgermenu-icon-exit {
    display: none;
  }

  .nav__burger-menu-wrapper i {
    margin-top: 15px;
    margin-bottom: 10px;
    float: left;
    margin-right: 0;
  }

  .nav__burger-menu-wrapper i:hover {
    cursor: pointer;
    color: #fff;
  }

  .nav__burger-menu-content-wrapper {
    display: none;
    margin-top: 46px;
    position: fixed;
    right: 200px;
    top: 0;
    width: 200px;
    height: 100vh;
  }
}

@media screen and (min-width:970px) {
  .nav__display-burger-menu {
    display: none!important;
  }
}

.nav__display-burger-menu .nav__burger-menu-content-wrapper {
  display: inline-block!important;
  position: fixed;
  left: 0;
  top: 0;
  width: 200px;
  text-align: left;
  padding-left: 20px;
  padding-right: 19px;
  height: calc(100vh - 46px);
  background-color: #000;
}

.nav__display-burger-menu .nav__burger-menu-content-wrapper a {
  text-decoration: none;
}

.nav__display-burger-menu .nav__burger-menu-content-wrapper li {
  list-style-type: none;
  list-style-position: inside;
  text-transform: uppercase;
  font-style: normal;
  color: #515352;
  margin: 10px;
  margin-bottom: 20px;
  padding: 0;
  line-height: 24px;
}

.nav__display-burger-menu .nav__burger-menu-item-sub:hover,
.nav__display-burger-menu .nav__burger-menu-item:hover {
  color: #fff;
}

.nav__display-burger-menu .nav__burger-menu-content-wrapper .nav__burger-menu-item-sub {
  margin-left: 20px;
}

/*#############################################################################
Layout
#############################################################################*/
.layout {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
    right: 0;
}

.layout-content {
    flex: 1;
    padding-top: var(--headerHeight);
    z-index: 0; /* relative to header */
}

.layout-pagePad {
    padding-left: 0;
    padding-right: 0;
}

.layout-scaffold {
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.layout-footer {
    color: var(--color-boulder);
    height: var(--footerHeight);
    background-color: var(--color-black);
    padding: 24px 0 var(--margin);
}

.layout-footer a {
    color: var(--color-boulder);
}

.layout-footer a:hover {
    color: var(--color-white);
}

@media all and (max-width: 970px) {

    .layout-content {
        padding-top: var(--headerHeight-mobile);
    }

    .layout-pagePad {
        padding-left: 20px;
        padding-right: 20px;
    }

    .layout-scaffold {
        min-width: 100%;
        max-width: 100%;
    }
}

@media all and (max-width: 767px) {
    .layout.layout--moved {
        right: 100vw;
    }

    .layout {
        transition: right 300ms ease-in-out;
    }

    .layout-pagePad {
        padding-left: 30px;
        padding-right: 30px;
    }

    .layout-content {
        padding-top: var(--headerHeight-mobile);
    }

    /* locks body scrolling when menu is open on mobile */
    .layout-body.layout-body--scrollLock {
        overflow: hidden;
        height: 100%;
    }
}

/*#############################################################################
Pager
#############################################################################*/
.pager {
    display: table;
    width: 100%;
}

.pager-previous {
    display: table-cell;
    padding: calc(var(--verticalRhythm) * 4) 0;
    width: 50%;
}

.pager-next {
    display: table-cell;
    padding: calc(var(--verticalRhythm) * 4) 0;
    text-align: right;
    width: 50%;
}


/*#############################################################################
Index
#############################################################################*/
.index {
    transition: padding-top 300ms;
}
@media all and (min-width: 971px) {
    .index {
        display: grid;
        /* grid-template-columns: [col1-start] 50%  [col2-start] 50% [col2-end]; */
        grid-gap: var(--grid-gap);
        padding: var(--verticalRhythm) 0;
        padding-top: calc(56px + var(--filtersHeight));
        /* padding-right: calc(var(--margin) * 4 + ( var(--margin) / 2)) ; another hack, right margin not inherited properly, had to shore up */
    }

    .article-filters.filters--open + .index {
        padding-top: calc(40px + var(--filtersHeight));
    }
}

@media all and (max-width: 970px) {
    .index {
        padding-top: calc(56px + var(--filtersHeight));
        padding-left: 20px;
        padding-right: 20px;
    }

    .article-filters.filters--open + .index {
        padding-top: calc(40px + var(--filtersHeight));
    }
}

@media all and (max-width: 767px) {
    .index {
        padding-top: 0px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .article-filters.filters--open + .index {
        padding-top: 0px;
    }
}

/*#############################################################################
Filters
#############################################################################*/
.article-filters {
    left: 0;
    z-index: 2;
    width: 100%;
    height: var(--filtersHeight);
    transition: height 300ms;
    overflow: hidden;
    position: fixed;
    background-color: var(--color-mercury);
    border-bottom: 1px solid rgba(151, 151, 151, 0.4);
}

.article-filters-container {
    max-width: var(--content-width);
    margin: 0 auto;
}

.article-filters.filters--open .filter-button::after{
    display: block;
    background-image: url("/static/img/Up_Icon.svg");
    content: '';
    width: 12px;
    height: 12px;
}

.filter-button {
    user-select: none;
    width: 100px;
    padding-top: 22px;
    padding-bottom: 21px;
    font-size: 15px;
    line-height: 18px;
}

.filter-button::after {
    display: block;
    margin: 3px 0px 0px 0px;
    float: right;
    background-image: url("/static/img/Down_Icon.svg");
    width: 12px;
    height: 12px;
    content: '';
}

.article-filters .filters-list {
    list-style: none;
    padding-left: 0;
    padding-top: 8px;
    display: grid;
    grid-template-columns: repeat(3, min-content);
    justify-content: space-between;
}

.article-filters .filters-list li {
    width: 210px;
    display: flex;
    padding-top: 0;
    padding-bottom: 26px;
}

.filters-list li label {
    width: 129px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
}

.filters-list span {
    position: relative;
    pointer-events: none;
}

.filters-list li span::before {
    content: "";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 1px 1px;
    border: 1px solid;  
    height: 20px;
    width: 20px;
    left: -20px;
    top: 0px;
}

.filters-list li input[type="checkbox"]:checked + span::before {
    content: '✕';
}

.filters-list li input {
    margin: 0;
    opacity: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-left: auto;
}

.article-filters .filters-list .filter-button-item {
    display: none;
}


@media all and (max-width: 970px) {
    .article-filters-container {
        min-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .article-filters .filters-list {
        grid-template-columns: repeat(2, min-content);
    }

    .article-filters .filters-list li {
        width: 320px;
    }
}

@media all and (max-width: 767px) {
    .article-filters .filters-list .filter-button-item {
        height: auto;
        display: block;
        margin-bottom: 46px;
        padding-bottom: 0px;
    }

    .article-filters:not(.filters--open) .filters-list {
        display: grid;
    }

    .article-filters .filters-list {
        top: var(--headerHeight-mobile);
        right: 0;
        width: 0px;
        height: 100%;
        position: fixed;
        overflow-y: auto;
        overflow-x: hidden;
        padding-top: 30px;
        align-content: start;
        grid-template-columns: 1fr;
        background-color: var(--color-white);
        transition: width 300ms ease-in-out;
    }
    
    .article-filters.filters--open .filters-list {
        width: 100%;
    }
    
    .article-filters {
        position: static;
        border-bottom: none;
    }

    .article-filters,
    .article-filters:not(.filters--open) {
        height: auto;
    }

    .article-filters-container {
        padding-top: 30px;
        padding-left: 30px;
        padding-right: 28px;
        padding-bottom: 30px;
    }

    .article-filters .filters-list li {
        width: 100vw;
        height: 90px;
        padding-bottom: 0;
        padding-left: 30px;
        padding-right: 30px;
    }

    .article-filters .filters-list li:last-child {
        height: calc(66px * 2);
    }

    .filter-button,
    .filter-button-close {
        height: 52px;
        border: 2px solid var(--color-black);
        padding-top: 0;
        font-size: 20px;
        padding-top: 15px;
        text-align: center;
        margin-left: auto;
        cursor: pointer;
    }

    .filter-button:after {
        display: none;
    }

    .filter-button-close {
        width: 126px;
        line-height: 18px;
        user-select: none;
    }

    .filter-button-close:after {
        content: '';
        float: none;
        width: 10px;
        height: 10px;
        margin-left: 14px;
        display: inline-block;
        transform: rotate(45deg);
        border-right: 2px solid var(--color-black);
        border-top: 2px solid var(--color-black);
    }

    .filters-list li input {
        width: 40px;
        height: 40px;
    }

    .filters-list li label {
        font-size: 24px;
    }

    .filters-list li span::before {
        width: 40px;
        height: 40px;
        left: -40px;
        font-size: 29px;
        border-width: 2px;
    }
}


/*#############################################################################
Post summary
#############################################################################*/
.postSummary {
    height: 176px;
    position: relative;
    white-space: nowrap;
    grid-column-start: 1;
    grid-column-end: col2-end;
    margin: 0px 0px 50px 0px;
}

.postSummary-coverLink {
    color: var(--color-black);
    display: block;
}

.postSummary-coverLink:hover {
    color: var(--color-black);
}

.postSummary-image {
    width: 327px;
    height: 176px;
    float: right;
    object-fit: cover;
}

.postSummary-caption {
    display: inline-block;
    max-width: 50%;
    vertical-align: top;
    white-space: normal;
}

.postSummary-description {
    color: var(--color-black);
    height: 46px;
    width: 100%;
    font-weight: 300;
    margin: 5px 0px 18px 0px;
    overflow: hidden;
}

.postSummary-descriptionWrapper{
    width: calc(100% + 42px);
}

.postSummary-title {
    margin: -11px 0px 0px 0px;
    padding: 0px;
}

.postSummary-pinned {
    display: inline-block;
    font-style: italic;
    font-size: 12px;
    font-weight: 300;
    line-height: 23px;
    color: var(--color-light-grey);
}
.postSummary-pinned img { 
    display: none;
    height: 13px;
    float: left;
    margin: 5px -2px 0px -3px;
}

.postSummary-pinned p {
    float: left;
    display: none;
} 

.postSummary:hover .button {
    transition: background-color 300ms ease 0ms;
    background-color: var(--color-black);
    color: var(--color-white);
}

.postSummary.postSummary--weightStandard .postSummary-pinned {
    opacity: 0.0;
}

@media all and (min-width: 768px) {
    
/* 
    .postSummary.postSummary--weightPinned{
        white-space: nowrap;
        grid-column: col1-start / col2-end;
        padding-bottom: calc( var(--verticalRhythm) * 2);
    }

    .postSummary.postSummary--weightPinned .postSummary-description {
        max-height: 62px;
        min-height: 62px;
        overflow: hidden;
    }

    .postSummary.postSummary--weightPinned .postSummary-caption  {
        display: inline-block;
        max-width: 50%;
        vertical-align: top;
        white-space: normal;
        position: relative;
        top: 10px; 
    }

    .postSummary.postSummary--weightPinned .postSummary-image  {
        max-width: 50%;
        max-height: 275px;
        min-height: 275px;
        float: right;
        padding-left: 14px;
    }


    .postSummary.postSummary--weightStandard{
        white-space: nowrap;
        grid-column: col1-start / col2-end;
        padding-bottom: calc( var(--verticalRhythm) * 2);
    }

    .postSummary.postSummary--weightStandard .postSummary-description {
        max-height: 62px;
        min-height: 62px;
        overflow: hidden;
    }

    .postSummary.postSummary--weightStandard .postSummary-caption  {
        display: inline-block;
        max-width: 50%;
        vertical-align: top;
        white-space: normal;
        position: relative;
        top: 10px; 
    }

    .postSummary.postSummary--weightStandard .postSummary-image  {
        max-width: 50%;
        max-height: 275px;
        min-height: 275px;
        float: right;
        padding-left: 14px;
    }
    */
}

@media all and (max-width: 767px) {
    .postSummary {
        height: auto;
        margin: 0 28px 60px 30px;
    }

    .postSummary .postSummary-caption {
        max-width: 100%;
        padding: 31px 0 0 0;
    }

    .postSummary .postSummary-title {
        font-size: 40px;
        line-height: 44px;
    }

    .postSummary-descriptionWrapper{
        width: 100%;
    }

    .postSummary .postSummary-description {
        height: 100%;
        max-height: 110px;
        font-size: 18px;
        line-height: 28px;
    }

    .postSummary .postSummary-image  {
        float: none;
        height: auto;
        width: 100%;
        object-fit: cover;
    }

    .postSummary .postSummary-pinned {
        font-size: 16px;
        line-height: 23px;
        position: absolute;
        top: -30px;
    }

    .postSummary .postSummary-pinned img {
        transform: scale(1.1);
        margin: 2px 0 0 -5px;
        height: 1.06em;
    }

    .postSummary .postSummary-caption .button {
        width: 100px;
        height: 52px;
        font-size: 20px;
        border-width: 2px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}



/*#############################################################################
Post
#############################################################################*/
.post {
    position: relative;
    padding-bottom: 210px;
}

.post-heroWrapper{
    position: relative;
    height: 418px;
    max-height: 418px;
}

@media all and (max-width: 767px) {
    .post-heroWrapper{
        height: auto;
        max-height: none;
    }   
}

.post .post-title{
    color: var(--color-black);
    max-width: 677px;
    font-size: 40px;
    line-height: 40px;
    margin-top: 2px;
}

.post a {
    text-decoration: underline;
}

.post table {
    padding-top: var(--verticalRhythm);
}

.post table table {
    padding-top: 0;
}

pre[class*="language-"] {
    margin-top: var(--verticalRhythm);
}

.post-hero {
    max-width: 100%;
    object-fit: cover;    
    width: 100%;
    max-height: 418px;
}

.post-date {
    padding: calc(var(--verticalRhythm) / 2) 0;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: calc(var(--verticalRhythm) * 2);
}

.post-tags {
    font-weight: bold;
}

.post h1 {
    font-size: 28px;
}

.post h2 {
    font-size: 24px;
}

.post h1,
.post h2,
.post h3,
.post p,
.post li {
    padding-top: 15px;
}

@media all and (max-width: 970px) {
    .post .post-title {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media all and (max-width: 767px) {
    .post {
        padding-bottom: 261px;
    }

    .post .post-title{
        color: var(--color-black);
        font-size: 36px;
        padding: 34px 101px 0 28px;
    }

    .post h1 {
        font-size: 20px;
        line-height: 47px;
        padding-top: 17px;
    }

    .post p {
        font-size: 14px;
        line-height: 26px;
    }
}

/*#############################################################################
Publication
#############################################################################*/

.publication {
    display: flex;
    padding: var(--verticalRhythm) 0;
    align-items: flex-start;
}

.publication .description {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    justify-content: space-between;
}

.publication img {
    object-fit: contain;
}

@media all and (max-width: 767px) {
    .publication img {
        width: 100%;
    }    
}

.publication h2 {
    padding-top: 0;
    line-height: 1.2em;
}

.publication p {
    padding-top: 15px;
}

.publication .links {
    display: flex;
    flex-flow: row wrap;
    padding-top: 8px;
    padding-left: 2px;
    padding-right: 2px;
}

.publication .links a {
    padding: 7px 12px;
    border: 1px solid #000;
    border-radius: 25px;
    text-decoration: none;
    margin: 7px 7px 0 0;
    width: fit-content;
    display: flex;
    align-items: center;
}

.publication .links a:hover {
    background-color: #000;
    color: #fff;
}

.openLink {
    height: 7px;
    width: 12px;
}

.download {
    height: 12px;
    width: 11px;
}

.publication .links a img {
    margin-left: 11px;
}

.publication .links a:hover img {
    filter: invert(100%);
}

@media all and (max-width: 767px) {
    .publication {
        flex-direction: column;
    }

    .publication .description {
        padding-left: 0;
    }

    .publication .description h2{
        padding-top: 15px;
    }
}
