/* fonts */
/* rubik-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/ff_web-fonts/rubik-v28-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* rubik-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Rubik';
  font-style: italic;
  font-weight: 400;
  src: url('/assets/fonts/ff_web-fonts/rubik-v28-latin-italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* rubik-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 600;
  src: url('/assets/fonts/ff_web-fonts/rubik-v28-latin-600.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* rubik-600italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Rubik';
  font-style: italic;
  font-weight: 600;
  src: url('/assets/fonts/ff_web-fonts/rubik-v28-latin-600italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* Aleo */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Aleo';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/ff_web-fonts/Aleo-Regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Aleo';
  font-style: italic;
  font-weight: 400;
  src: url('/assets/fonts/ff_web-fonts/Aleo-RegularItalic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Aleo';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/fonts/ff_web-fonts/Aleo-Bold.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Aleo';
  font-style: italic;
  font-weight: 700;
  src: url('/assets/fonts/ff_web-fonts/Aleo-BoldItalic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* !VARIABLES ============================================================== */
:root {
  --orange: #F15A0F;
  --brown: #431F0C;
  --black: #1E1C1A;
  --darkgrey: #6A6866;
  --midgrey: #C2C2C4;
  --lightgrey: #f0f0f2;
  --white: #FEFCFA;
  --blue: #1F6CC6;
  --basesize: 15px;
  --fontstack: Rubik, "Helvetica Neue", Arial, sans-serif;
  --fontstack-heading: Aleo, Georgia, "Times New Roman", serif;
  font-size: var(--basesize);
}
@media screen and (min-width: 640px) {
  :root {
    --basesize: 16px;
  }
}
@media screen and (min-width: 1600px) {
  :root {
    --basesize: 18px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
/* !Basics & Typography ==================================================== */
body {
  background-color: var(--white);
  color: var(--black);
  font-family: var(--fontstack);
  line-height: 1.5rem;
}
a {
  color: var(--blue);
  text-underline-offset: 2px;
}
a:visited {
  color: var(--darkgrey);
}
a:hover {
  color: var(--orange);
  text-decoration-thickness: 2px;
}
a.ext::after {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  background-color: currentColor;
  -webkit-mask-image: url(/images/external-link.svg);
  mask-image: url(/images/external-link.svg);
  mask-position: center right;
  mask-repeat: no-repeat;
  mask-size: contain;
  margin-left: 0.25rem;
}
p,
ul,
li,
pre {
  margin-top: 1rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--fontstack-heading);
  font-weight: 700;
  line-height: 1.5em;
  margin-top: 1.5rem;
  color: var(--darkgrey);
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
}
strong,
.strong {
  font-weight: 600;
}
small,
.small {
  font-size: 0.75em;
}
pre,
code {
  font-family: Menlo, Monaco, "Courier New", monospace;
  overflow-x: scroll;
  text-wrap: nowrap;
  padding: 0.5rem;
  font-size: 0.825rem;
  border-radius: 0.25rem;
  background-color: var(--black);
  color: var(--white);
}
code {
  padding: 0.25rem 0.5rem;
}
blockquote {
  font-family: var(--fontstack-heading);
  font-style: italic;
  border-left: 3px solid var(--blue);
  padding-left: 1rem;
}
/* !LAYOUT ================================================================= */
.container {
  width: 90%;
  max-width: 840px;
  margin: auto;
}
.wideContainer {
  width: 90%;
  max-width: 1280px;
  margin: auto;
}
/* !Elements (repeating ones) ============================================== */
.navList {
  list-style: none;
  padding: 0;
}
/* !HEADER ================================================================= */
.header {
  width: 90%;
  max-width: 840px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0 1rem;
}
@media screen and (min-width: 480px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
  }
}
.siteTitle {
  margin: 0;
  line-height: 1;
  display: inline-block;
}
.siteTitle a {
  display: block;
  width: 160px;
  height: 56px;
  text-indent: -9999px;
  overflow: hidden;
  background-image: url('/images/ff-logo-discret.svg');
}
.mainNavList {
  display: flex;
  gap: 2rem;
  margin: 0;
}
.mainNavList li {
  margin: 0;
}
.mainNavList li a {
  display: inline-block;
  color: var(--black);
  text-decoration: none;
  padding: 2px 1px 8px;
  position: relative;
  transition: color 100ms ease-out;
}
.mainNavList li a:hover {
  color: var(--blue);
}
.mainNavList li a::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: transform 200ms ease-out;
  transform: scaleX(0);
}
.mainNavList li a:hover::after {
  transform: scaleX(1);
  background-color: var(--blue);
}
.mainNavList li.active a::after {
  transform: scaleX(1);
  background-color: var(--orange);
}
/* !CONTENT ================================================================ */
.mainContent {
  padding: 2rem 0;
}
.article {
  margin: 3rem auto 0;
}
hr.divider {
  margin-top: 2rem;
  border-width: 1px 0 0;
  border-style: solid;
  border-color: var(--lightgrey);
}
/* ! Start --------------------------------------------- */
.portrait {
  float: right;
  margin: 0 0 0.5rem 1rem;
}
@media screen and (min-width: 840px) {
  .myPages {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
  }
}
.meLinkList {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.meLinkList a.ext {
  display: block;
  transform: scale(0.875);
  transition: transform 200ms ease-out;
}
.meLinkList a.ext::after {
  display: none;
}
.meLinkList a.ext:hover {
  transform: scale(1);
}
.socialList {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  transition: transform 200ms ease-out;
}
.socialList li {
  margin: 0;
}
.socialList a {
  display: inline-block;
  width: 64px;
  height: 64px;
  text-indent: -9999px;
  overflow: hidden;
  background-image: url(/images/social-icon-mastodon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(0.875);
  transition: all 100ms ease-out;
}
.socialList a:hover {
  transform: scale(1);
}
.socialList a.ext::after {
  display: none;
}
.socialList a.instagramLink {
  background-image: url(/images/social-icon-instagram.svg);
  border-radius: 32px;
}
.socialList a.linkedinLink {
  background-image: url(/images/social-icon-linkedin.svg);
}
.socialList a.githubLink {
  background-image: url(/images/social-icon-github.svg);
}
.socialList a.flickrLink {
  background-image: url(/images/social-icon-flickr.svg);
}
.socialList a.keybaseLink {
  background-image: url(/images/social-icon-keybase.svg);
}
.socialList a.rssLink {
  background-image: url(/images/social-icon-rss.svg);
}
.footSocial {
  position: relative;
}
/* rss select */
.rssSelect {
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: var(--white);
  padding: 2rem 1rem 1rem;
  border-radius: 0.5rem;
  background-image: url(/images/social-icon-rss.svg);
  background-repeat: no-repeat;
  background-size: 1.5rem;
  background-position: center 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
/* !Articles (ans some notes) ---------------------------------------------- */
.articleListing,
.noteListing {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 840px) {
  .articleListing,
  .noteListing {
    gap: 3rem;
  }
}
.articleListing li,
.noteListing li {
  margin: 0;
}
.articleListing article,
.noteListing article {
  margin-top: 0;
}
.articleTitle a,
.noteRef a {
  color: var(--darkgrey);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.articleTitle a .linkMarker,
.noteRef a .linkMarker {
  text-indent: -9999px;
  overflow: hidden;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: var(--blue);
  mask-image: url(/images/entry-arrow.svg);
}
.articleTitle a:visited .linkMarker,
.noteRef a:visited .linkMarker {
  background-color: var(--lightgrey);
}
.artInfo {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.posted {
  position: relative;
  color: var(--darkgrey);
  padding-left: 24px;
}
.posted::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--lightgrey);
  mask-image: url(/images/calendar.svg);
  mask-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.articleFooter {
  margin-top: 3rem;
}
.sectionIntro {
  color: var(--darkgrey);
}
.sectionIntro h1 {
  color: var(--midgrey);
}
/* !Notes ------------------------------------------------------------------ */
.noteListing .noteTitle,
.noteListing .noteRef {
  margin-top: 0;
}
.noteRef {
  font-family: var(--fontstack-heading);
  font-weight: 700;
  font-size: 1.25em;
}
.note {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--lightgrey);
}
.noteListing li:last-child .note {
  border-bottom: none;
}
.noteLink a.ext:after {
  width: 1rem;
  height: 1rem;
}
/* ! share buttons --------------------------------------------------------- */
.shareButtonList {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5em;
}
.shareButton {
  text-indent: -9999px;
  display: block;
  width: 2em;
  height: 2em;
  mask-image: url(/images/share-icon-copy.svg);
  mask-repeat: no-repeat;
  background-color: var(--darkgrey);
  mask-size: contain;
  transform: scale(0.75);
  transition: all 200ms ease-out;
}
.shareButton:hover {
  background-color: var(--blue);
  transform: scale(1);
}
.shareTwitter {
  mask-image: url(/images/share-icon-twitter.svg);
}
.shareTwitter:hover {
  background-color: #1EA1F1;
}
.shareBluesky {
  mask-image: url(/images/share-icon-bluesky.svg);
}
.shareBluesky:hover {
  background-color: #0385FF;
}
.shareMastodon {
  mask-image: url(/images/share-icon-mastodon.svg);
}
.shareMastodon:hover {
  background-color: #6364FF;
}
.shareLinkedin {
  mask-image: url(/images/share-icon-linkedin.svg);
}
.shareLinkedin:hover {
  background-color: #0B66C2;
}
.shareXing {
  mask-image: url(/images/share-icon-xing.svg);
}
.shareXing:hover {
  background-color: #016567;
}
.shareMail {
  mask-image: url(/images/share-icon-mail.svg);
}
.shareMail:hover {
  background-color: var(--blue);
}
.shareWhatsapp {
  mask-image: url(/images/share-icon-whatsapp.svg);
}
.shareWhatsapp:hover {
  background-color: #24D366;
}
/* !FOOTER ================================================================= */
.mainFooter {
  background-color: var(--lightgrey);
  padding: 2rem 0 3rem;
  margin-top: 2rem;
  font-size: 0.825em;
}
.law {
  font-size: 0.75em;
}
.h-card {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}
.verified {
  position: relative;
  padding-right: 1.5em;
}
.verified::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--blue);
  mask-image: url(/images/verified.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
}
/* search */
#search {
  margin-top: 1.5rem;
}
/* pgp */
.pgpKey {
  max-width: 100%;
  width: inherit;
  display: inline-block;
}
