@charset "UTF-8";
@font-face {
  font-family: 'iAWriter Duo';
  font-weight: normal;
  font-style: normal;
  src: url("/fonts/iAWriterDuoS-Regular.woff2") format("woff2"); }

@font-face {
  font-family: 'iAWriter Duo';
  font-weight: bold;
  font-style: normal;
  src: url("/fonts/iAWriterDuoS-Bold.woff2") format("woff2"); }

@font-face {
  font-family: 'iAWriter Duo';
  font-weight: normal;
  font-style: italic;
  src: url("/fonts/iAWriterDuoS-Italic.woff2") format("woff2"); }

@font-face {
  font-family: 'iAWriter Duo';
  font-weight: bold;
  font-style: italic;
  src: url("/fonts/iAWriterDuoS-BoldItalic.woff2") format("woff2"); }

@font-face {
  font-family: 'iAWriter Quattro';
  font-weight: normal;
  font-style: normal;
  src: url("/fonts/iAWriterQuattroS-Regular.woff2") format("woff2"); }

@font-face {
  font-family: 'iAWriter Quattro';
  font-weight: normal;
  font-style: italic;
  src: url("/fonts/iAWriterQuattroS-Italic.woff2") format("woff2"); }

@font-face {
  font-family: 'iAWriter Quattro';
  font-weight: bold;
  font-style: normal;
  src: url("/fonts/iAWriterQuattroS-Bold.woff2") format("woff2"); }

@font-face {
  font-family: 'iAWriter Quattro';
  font-weight: bold;
  font-style: italic;
  src: url("/fonts/iAWriterQuattroS-BoldItalic.woff2") format("woff2"); }

@font-face {
  font-family: 'Lab Mono';
  font-weight: 400;
  font-style: normal;
  src: url("/fonts/labmono-regular-web.woff2") format("woff2"); }

@font-face {
  font-family: "Computer Modern Sans";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/CMUSansSerif.woff2") format("woff2"); }

@font-face {
  font-family: "Computer Modern Sans";
  font-style: normal;
  font-weight: bold;
  src: url("/fonts/CMUSansSerif-Bold.woff2") format("woff2"); }

* {
  box-sizing: border-box; }

body {
  font-family: "iAWriter Duo", monospace;
  margin: 0;
  padding: 0;
  background-color: #ffeee2;
  color: #210078;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  body a, body a:visited {
    color: #331876; }

#container {
  display: grid;
  grid-template-columns: 1fr calc(min(90ch, 100%)) 1fr;
  justify-content: center;
  align-items: flex-start;
  row-gap: 80px;
  width: 100%;
  margin-top: 50px;
  font-size: 16px; }
  @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
    #container {
      grid-template-columns: 0px 100% 0px;
      row-gap: 40px;
      margin-top: 25px; } }
  @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
    #container {
      grid-template-columns: 0px 100% 0px; } }
a, a:visited {
  color: #331876;
  text-decoration: none;
  border-bottom: 1px dotted #331876; }

.full-bleed {
  width: 100%;
  grid-column: 1 / -1 !important; }

#container > * {
  grid-column: 2; }

#topbar-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: space-between;
  align-items: center;
  border-top: 4px solid #210078;
  border-bottom: 4px solid #210078;
  padding: 15px 0; }
  @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
    #topbar-wrapper {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
      padding: 10px 20px;
      row-gap: 20px; } }
  @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
    #topbar-wrapper {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
      padding: 10px 20px;
      row-gap: 25px; } }
  #topbar-wrapper h2 {
    font-size: 30px;
    padding: 0;
    margin: 0;
    font-weight: bold; }
    @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
      #topbar-wrapper h2 {
        font-size: 20px;
        text-align: center; } }
    @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
      #topbar-wrapper h2 {
        font-size: 28px;
        text-align: center; } }
  #topbar-wrapper nav {
    display: flex;
    flex-flow: row;
    justify-content: flex-end;
    gap: 30px; }
    #topbar-wrapper nav a, #topbar-wrapper nav a:visited {
      border: none;
      color: #210078;
      font-family: 'Lab Mono', 'iAWriter Duo', monospace;
      text-decoration: none;
      text-transform: uppercase;
      font-size: 18px; }
      @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
        #topbar-wrapper nav a, #topbar-wrapper nav a:visited {
          font-size: 16px; } }
      @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
        #topbar-wrapper nav a, #topbar-wrapper nav a:visited {
          font-size: 22px; } }
    @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
      #topbar-wrapper nav {
        gap: 15px;
        justify-content: center; } }
    @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
      #topbar-wrapper nav {
        gap: 35px;
        justify-content: center; } }
section.bio {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 20px; }
  @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
    section.bio {
      padding: 0 20px; } }
  @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
    section.bio {
      padding: 0 40px; } }
  section.bio .intro {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    column-gap: 80px;
    place-items: center; }
    @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
      section.bio .intro {
        grid-template-columns: 1fr;
        grid-template-rows: auto, auto;
        row-gap: 30px; } }
    section.bio .intro .profile-photo {
      display: flex;
      flex-flow: column;
      align-items: center;
      gap: 10px; }
      section.bio .intro .profile-photo .profile-img {
        width: 100%;
        height: auto;
        min-height: 450px;
        min-width: 320px;
        border-radius: 25px;
        background-image: url("/myphoto.jpg");
        background-size: cover; }
        @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
          section.bio .intro .profile-photo .profile-img {
            min-height: 250px;
            min-width: 300px;
            max-height: 225px;
            max-width: 400px; } }
      section.bio .intro .profile-photo .credits {
        text-transform: uppercase;
        font-size: 12px;
        text-align: center;
        color: #212121; }
    section.bio .intro h3 {
      font-size: 42px;
      font-weight: 400;
      line-height: 140%;
      margin: 0;
      text-align: center;
      text-transform: uppercase;
      font-family: 'Lab Mono', 'iAWriter Duo', monospace; }
      @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
        section.bio .intro h3 {
          font-size: 24px; } }
      @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
        section.bio .intro h3 {
          font-size: 28px; } }
  section.bio .bio-text p {
    line-height: 160%;
    font-size: 28px; }
    @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
      section.bio .bio-text p {
        font-size: 18px;
        text-align: center; } }
    @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
      section.bio .bio-text p {
        font-size: 24px; } }
.section-title {
  text-transform: uppercase;
  margin: 0;
  color: #210078;
  font-size: 60px;
  font-weight: bold; }
  @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
    .section-title {
      font-size: 32px;
      padding: 0 20px;
      text-align: center; } }
  @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
    .section-title {
      font-size: 42px;
      padding: 0 40px; } }
.section-subheader {
  margin: 0;
  color: #210078;
  opacity: 30%;
  font-size: 24px;
  font-weight: bold;
  font-style: italic; }
  @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
    .section-subheader {
      font-size: 20px;
      padding: 0 20px;
      text-align: center; } }
  @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
    .section-subheader {
      font-size: 22px;
      padding: 0 40px; } }
.header-block {
  display: flex;
  flex-flow: column;
  gap: 10px; }

.current-work {
  display: grid;
  grid-template-rows: auto auto;
  row-gap: 60px; }
  @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
    .current-work {
      padding: 0 20px; } }
  @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
    .current-work {
      padding: 0 40px; } }
.entry-work-large {
  display: flex;
  flex-direction: column;
  gap: 20px; }
  .entry-work-large h1 {
    font-size: 26px;
    margin: 0;
    text-transform: uppercase; }
    @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
      .entry-work-large h1 {
        text-align: center; } }
    @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
      .entry-work-large h1 {
        text-align: left; } }
  .entry-work-large p {
    font-size: 20px;
    margin: 0;
    line-height: 160%; }
    @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
      .entry-work-large p {
        text-align: center;
        font-size: 18px; } }
    @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
      .entry-work-large p {
        text-align: left; } }
  .entry-work-large h3 {
    font-size: 16px;
    text-transform: uppercase;
    opacity: 50%;
    margin: 0; }
    @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
      .entry-work-large h3 {
        text-align: center; } }
.entry-app-large {
  display: grid;
  grid-template-columns: 300px 1fr;
  width: 100%;
  column-gap: 20px;
  row-gap: 0;
  align-items: start; }
  @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
    .entry-app-large {
      grid-template-columns: 1fr;
      place-items: center; } }
  .entry-app-large .icon-column img {
    width: 256px;
    height: 256px;
    border-radius: 22.5%; }
  .entry-app-large .desc-column {
    display: flex;
    flex-flow: column;
    gap: 10px;
    margin-top: 20px;
    height: 100%; }
    .entry-app-large .desc-column h1 {
      font-size: 26px;
      margin: 0; }
    .entry-app-large .desc-column p {
      font-size: 20px;
      line-height: 150%;
      margin: 0; }
      @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
        .entry-app-large .desc-column p {
          text-align: center; } }
    .entry-app-large .desc-column h3 {
      color: #210078;
      opacity: 50%;
      font-size: 16px;
      margin: 25px 0 0 0;
      text-transform: uppercase; }
    @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
      .entry-app-large .desc-column {
        justify-content: center;
        align-items: center; } }
.recent-essays {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0;
  column-gap: 10px;
  border-bottom: 2px solid #210078; }
  .recent-essays .recent-essay-item, .recent-essays .recent-essay-item:visited {
    display: grid;
    grid-template-columns: 4fr 1fr 1fr;
    padding: 25px 10px;
    font-size: 18px;
    line-height: 120%;
    text-decoration: none;
    color: #210078;
    border-top: 2px solid #210078;
    border-bottom: none;
    background-color: transparent;
    transition: background-color 0.25s ease, color 0.25s ease; }
    @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
      .recent-essays .recent-essay-item, .recent-essays .recent-essay-item:visited {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        row-gap: 20px; } }
    .recent-essays .recent-essay-item .essay-title, .recent-essays .recent-essay-item:visited .essay-title {
      font-weight: 400; }
      @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
        .recent-essays .recent-essay-item .essay-title, .recent-essays .recent-essay-item:visited .essay-title {
          grid-column: 1 / -1; } }
    .recent-essays .recent-essay-item .date, .recent-essays .recent-essay-item:visited .date {
      text-transform: uppercase;
      text-align: right;
      display: inline-block; }
      @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
        .recent-essays .recent-essay-item .date, .recent-essays .recent-essay-item:visited .date {
          grid-column: 2;
          grid-row: 2;
          text-align: right; } }
    .recent-essays .recent-essay-item .reading-time, .recent-essays .recent-essay-item:visited .reading-time {
      text-transform: uppercase;
      text-align: center;
      font-weight: bold;
      opacity: 25%;
      display: inline-block; }
      @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
        .recent-essays .recent-essay-item .reading-time, .recent-essays .recent-essay-item:visited .reading-time {
          grid-column: 1;
          grid-row: 2;
          text-align: left; } }
  .recent-essays .recent-essay-item:hover {
    background: #210078;
    color: #fff; }

.ios-folders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px 36px;
  margin-top: 32px;
  justify-items: start; }
  @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
    .ios-folders {
      grid-template-columns: 1fr;
      padding: 0 20px;
      gap: 28px;
      justify-items: center; } }
  @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
    .ios-folders {
      grid-template-columns: 1fr;
      gap: 32px;
      justify-items: center; } }
  .ios-folders .folder-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    width: 360px;
    min-width: 240px;
    max-width: 360px; }
  .ios-folders .folder {
    background: rgba(255, 255, 255, 0.45);
    border-radius: 36px;
    padding: 38px 28px 28px 28px;
    box-shadow: 0 4px 24px 0 rgba(33, 0, 120, 0.04);
    width: 100%;
    min-height: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    overflow: hidden;
    transition: box-shadow 0.2s; }
    .ios-folders .folder:hover {
      box-shadow: 0 8px 32px 0 rgba(33, 0, 120, 0.1); }
  .ios-folders .folder-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
    width: 100%;
    justify-items: center;
    align-items: center; }
  .ios-folders .folder-content.five {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 18px; }
    .ios-folders .folder-content.five .app-item {
      gap: 8px; }
      .ios-folders .folder-content.five .app-item img {
        width: 72px;
        height: 72px; }
        @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
          .ios-folders .folder-content.five .app-item img {
            width: 60px;
            height: 60px; } }
      .ios-folders .folder-content.five .app-item span {
        font-size: 16px; }
        @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
          .ios-folders .folder-content.five .app-item span {
            font-size: 14px; } }
  .ios-folders .app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #210078;
    padding: 0;
    border-radius: 14px;
    border: none;
    transition: transform 0.2s; }
    .ios-folders .app-item:hover {
      /* No background, just scale */
      transform: scale(1.12); }
    .ios-folders .app-item img {
      width: 80px;
      height: 80px;
      border-radius: 18px;
      object-fit: cover;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      background: #fff; }
      @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
        .ios-folders .app-item img {
          width: 60px;
          height: 60px; } }
    .ios-folders .app-item span {
      font-size: 18px;
      font-weight: 500;
      text-align: center;
      line-height: 1.2;
      color: #210078;
      font-family: 'iAWriter Duo', monospace;
      letter-spacing: 0.02em; }
      @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
        .ios-folders .app-item span {
          font-size: 15px; } }
  .ios-folders .folder-title {
    margin-top: 0.2em;
    font-size: 22px;
    font-family: 'iAWriter Duo', monospace;
    color: #210078;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 1; }
    @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
      .ios-folders .folder-title {
        font-size: 16px; } }
.ios-folders.enlarged {
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 32px;
  justify-items: center; }
  .ios-folders.enlarged .folder-block {
    width: 100%;
    max-width: 400px; }
  .ios-folders.enlarged .folder {
    min-height: 400px;
    height: 400px;
    border-radius: 40px;
    padding: 64px 32px 48px 32px; }
  .ios-folders.enlarged .folder-content {
    gap: 32px 24px; }
  .ios-folders.enlarged .app-item {
    gap: 12px; }
    .ios-folders.enlarged .app-item .portfolio-icon, .ios-folders.enlarged .app-item img {
      width: 100px;
      height: 100px;
      border-radius: 20px; }
    .ios-folders.enlarged .app-item span {
      font-size: 22px; }
  .ios-folders.enlarged .folder-title {
    font-size: 26px;
    margin-top: 0.4em; }
  @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
    .ios-folders.enlarged {
      grid-template-columns: 1fr; }
      .ios-folders.enlarged .folder-block {
        max-width: 95vw; } }
  @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
    .ios-folders.enlarged {
      grid-template-columns: 1fr; }
      .ios-folders.enlarged .folder-block {
        max-width: 95vw; } }
section.postlist {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  padding: 50px 0 0 0; }

section.archivelist {
  flex: 3; }
  @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
    section.archivelist {
      padding: 0 20px; } }
  @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
    section.archivelist {
      padding: 0 40px; } }
  section.archivelist h3 {
    margin: 20px 0 5px 0;
    padding: 0; }
  section.archivelist ul {
    list-style: '— ';
    padding: 0 30px;
    margin: 30px 0;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px; }
    section.archivelist ul .date {
      margin-right: 10px;
      color: #666; }

.work-with-me p {
  font-size: 24px;
  line-height: 160%; }
  @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
    .work-with-me p {
      font-size: 18px; } }
  @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
    .work-with-me p {
      font-size: 22px; } }
@media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
  .work-with-me {
    padding: 0 20px; } }

@media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
  .work-with-me {
    padding: 0 40px; } }

.logo-btn, .logo-btn:visited {
  border: 2px solid #1f1f1f;
  background: #fff;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  column-gap: 15px;
  align-items: center;
  justify-items: space-around;
  padding: 10px 20px;
  max-width: 350px;
  border-radius: 20px;
  margin: 15px 0; }
  .logo-btn .logo, .logo-btn:visited .logo {
    width: 60px;
    height: 60px; }
  .logo-btn .button-title, .logo-btn:visited .button-title {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase; }

.logo-btn:hover {
  background: #1f1f1f;
  color: #fff; }

.notion-btn {
  background-image: url("/icons/notion-logo-no-background.png");
  background-size: cover; }

.portfolio-detail-block .shots {
  width: 100%;
  height: 362px;
  background-color: #ccc; }

.portfolio-detail-block .desc-cols {
  width: 75%;
  column-width: 250px;
  margin-top: 20px;
  column-gap: 30px; }

.portfolio-detail-block p {
  margin: 0 0 20px 0;
  line-height: 140%; }

.dashed-list {
  list-style: '— ';
  padding: 0 30px;
  margin: 30px 0 30px 30px;
  font-size: 24px;
  line-height: 160%;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px; }
  @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
    .dashed-list {
      font-size: 18px;
      padding: 0; } }
  @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
    .dashed-list {
      font-size: 20px;
      padding: 0; } }
.splash {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 10px; }
  .splash img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover; }
  .splash .credits {
    text-transform: uppercase;
    font-size: 12px;
    text-align: center;
    color: #212121; }

.currently-reading {
  display: flex;
  flex-flow: column;
  gap: 50px; }
  @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
    .currently-reading {
      text-align: center;
      align-items: center;
      padding: 0 20px; } }
  @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
    .currently-reading {
      padding: 0 40px; } }
  .currently-reading .book {
    display: grid;
    grid-template-columns: 150px 1fr;
    column-gap: 50px;
    justify-content: space-between; }
    @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
      .currently-reading .book {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        row-gap: 50px;
        justify-content: start; } }
    .currently-reading .book .book-cover {
      text-decoration: none;
      border: none; }
      .currently-reading .book .book-cover img {
        width: 150px;
        height: auto; }
    .currently-reading .book .desc {
      display: flex;
      flex-flow: column;
      gap: 15px; }
      .currently-reading .book .desc h3 {
        margin: 0;
        font-size: 22px; }
      .currently-reading .book .desc h4 {
        margin: 0;
        font-size: 20px;
        color: #210078;
        opacity: 30%;
        text-transform: uppercase; }
      .currently-reading .book .desc p {
        font-size: 18px;
        line-height: 160%; }

a.article_link, a.article_link:visited {
  display: block;
  color: #171717;
  text-decoration: none;
  width: 100%; }

section.post_summary {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  border: 1px solid #ccc;
  border-radius: 15px;
  gap: 25px;
  padding: 40px; }
  section.post_summary h4.date {
    width: 20%;
    padding: 5px 0 0 0;
    margin: 0;
    font-size: 14px;
    color: #434343;
    font-weight: 400; }
  section.post_summary div.title_and_blurb {
    width: 75%; }
    section.post_summary div.title_and_blurb h1 {
      padding: 0 0 20px 0;
      margin: 0;
      font-size: 18px;
      color: #353535;
      font-family: "Computer Modern Sans", "iAWriter Duo", sans-serif; }
    section.post_summary div.title_and_blurb article {
      font-size: 16px;
      line-height: 26px;
      font-family: "iAWriter Quattro", sans-serif;
      font-weight: 400; }

@media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
  .post_wrapper {
    padding: 0 20px; } }

@media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
  .post_wrapper {
    padding: 0 40px; } }

section.a_post h1 {
  padding: 25px 0 15px 0;
  margin: 0;
  font-size: 30px;
  font-family: "Computer Modern Sans", "iAWriter Duo", sans-serif; }

section.a_post .date {
  padding: 0 0 0 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: #000; }

section.a_post article {
  padding: 25px 0 0 0;
  font-family: "iAWriter Quattro", sans-serif;
  font-size: 18px;
  line-height: 32px;
  font-weight: normal; }
  section.a_post article h3, section.a_post article h2, section.a_post article h1, section.a_post article h4 {
    font-size: 22px;
    font-family: "Computer Modern Sans", "iAWriter Duo", sans-serif; }

section.a_post aside {
  padding: 40px 0 40px 0; }
  section.a_post aside section.adjacent_posts {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px; }
    section.a_post aside section.adjacent_posts h4 {
      text-transform: uppercase;
      margin: 5px 0;
      padding: 0;
      font-size: 12px;
      font-weight: normal; }

blockquote {
  font-size: 16px;
  line-height: 26px;
  color: #585858;
  border-left: 1px solid #3a3a3a;
  padding: 0 3% 0 3%;
  margin: 30px 0 0 0; }

a.prev, a.next, a.prev:visited, a.next:visited {
  font-size: 14px;
  text-decoration: none !important;
  font-weight: normal;
  border-bottom: 1px solid #000; }

section.page_content h1 {
  margin: 0;
  padding: 0; }

section.page_content article {
  font-size: 16px;
  line-height: 1.55rem; }

section.page_content ul {
  list-style-type: '— '; }

footer {
  display: flex;
  flex-flow: column;
  justify-content: start;
  align-items: center;
  border-top: 1px solid #210078;
  gap: 30px;
  margin-bottom: 80px; }
  @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
    footer {
      padding: 0 20px; } }
  @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
    footer {
      padding: 0 40px; } }
  footer div.copyright {
    font-size: 14px;
    padding: 20px 0 20px 0;
    text-transform: uppercase;
    line-height: 160%; }

section.pagination {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px; }
  section.pagination a, section.pagination a:visited {
    font-size: 14px;
    text-decoration: none !important;
    font-weight: normal;
    text-transform: uppercase; }

div.post_img {
  padding: 10px 0; }
  div.post_img p.mdimage {
    text-align: center;
    margin: 0; }
    div.post_img p.mdimage img {
      max-width: 80%; }
  div.post_img div.caption {
    text-align: center;
    font-size: 12px;
    max-width: 70%;
    margin: 0 auto; }

a.tw {
  background-image: url("/twitter_line.svg"); }

a.ig {
  background-image: url("/ins_line.svg"); }

a.lin {
  background-image: url("/linkedin_line.svg"); }

a.tik {
  background-image: url("/tiktok_line.svg"); }

.job-app-container {
  display: flex;
  flex-flow: column;
  gap: 40px; }
  .job-app-container h1 {
    padding: 0;
    margin: 0;
    text-align: center;
    font-family: "Computer Modern Sans", "iAWriter Duo", sans-serif;
    font-size: 28px; }
  @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
    .job-app-container {
      padding: 0 20px; } }
  @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
    .job-app-container {
      padding: 0 40px; } }
.job-columns {
  width: 100%;
  column-gap: 50px;
  column-rule: 1px dotted #b7b7b7;
  column-count: 3; }
  @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
    .job-columns {
      column-count: 1; } }
  @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
    .job-columns {
      column-count: 2; } }
  .job-columns .job-block {
    margin: 0 0 40px 0;
    break-inside: avoid; }
    .job-columns .job-block h2 {
      font-size: 16px;
      margin: 0;
      padding: 0;
      text-transform: capitalize;
      font-family: "Computer Modern Sans", "iAWriter Duo", sans-serif; }
    .job-columns .job-block p {
      padding: 0;
      margin: 15px 0;
      font-size: 14px;
      line-height: 160%;
      font-family: "iAWriter Quattro", sans-serif; }
    .job-columns .job-block h2:first-of-type {
      margin-top: 0px; }

.resume {
  display: grid;
  grid-template-columns: 1.8fr 1fr; }
  @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
    .resume {
      padding: 0 20px;
      grid-template-columns: 1fr; } }
  @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
    .resume {
      padding: 0 40px;
      grid-template-columns: 3fr 1fr; } }
  .resume .work-exp-col {
    display: grid;
    row-gap: 25px;
    border-right: 1px dotted #5a5a5a;
    padding: 0 50px 0 0; }
    @media screen and (min-device-width: 320px) and (max-device-width: 599px), screen and (max-width: 599px) {
      .resume .work-exp-col {
        border-right: none; } }
    @media screen and (min-device-width: 600px) and (max-device-width: 1024px), screen and (min-width: 600px) and (max-width: 1024px) {
      .resume .work-exp-col {
        border-right: none; } }
    .resume .work-exp-col .work-exp h3 {
      font-size: 14px;
      text-transform: uppercase;
      font-family: "iAWriter Duo", monospace;
      font-weight: 400;
      color: #5a5a5a;
      margin: 10px 0; }
      .resume .work-exp-col .work-exp h3 a, .resume .work-exp-col .work-exp h3 a:visited {
        color: #5a5a5a;
        text-decoration: none; }
      .resume .work-exp-col .work-exp h3 a:hover {
        color: #5a5a5a;
        text-decoration: none; }
    .resume .work-exp-col .work-exp h2 {
      font-size: 18px;
      font-family: "Computer Modern Sans", "iAWriter Duo", sans-serif;
      margin: 10px 0; }
    .resume .work-exp-col .work-exp p {
      font-size: 14px;
      font-family: "iAWriter Quattro", sans-serif;
      line-height: 150%;
      text-align: justify; }
      .resume .work-exp-col .work-exp p a, .resume .work-exp-col .work-exp p a:visited {
        text-decoration: none; }
      .resume .work-exp-col .work-exp p a:hover {
        text-decoration: none; }
    .resume .work-exp-col .work-exp .resume-date {
      font-size: 14px;
      text-transform: uppercase;
      font-family: "iAWriter Duo", monospace;
      font-weight: 400;
      color: #5a5a5a; }
    .resume .work-exp-col .work-exp .secondary-work {
      display: flex;
      flex-flow: column;
      gap: 15px;
      margin-top: 20px; }
      .resume .work-exp-col .work-exp .secondary-work h4 {
        margin: 0;
        padding: 0;
        font-size: 14px;
        text-transform: uppercase;
        font-family: "iAWriter Quattro", sans-serif;
        color: #5a5a5a;
        font-weight: 400; }
      .resume .work-exp-col .work-exp .secondary-work .project {
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        padding: 0 0 0 0;
        gap: 5px;
        font-family: "iAWriter Quattro", sans-serif; }
        .resume .work-exp-col .work-exp .secondary-work .project .project-title {
          display: flex;
          flex-flow: row nowrap;
          justify-content: start;
          gap: 15px;
          font-size: 14px;
          text-transform: uppercase;
          font-weight: 600; }
        .resume .work-exp-col .work-exp .secondary-work .project .project-desc {
          font-size: 14px;
          text-align: left;
          line-height: 160%;
          margin-left: 15px; }
  .resume .thumbnail-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px; }

.portfolio-minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 480px;
  padding: 64px 0 80px 0; }
  .portfolio-minimal .portfolio-icon-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px; }
  .portfolio-minimal .portfolio-icon {
    width: 128px;
    height: 128px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(33, 0, 120, 0.08);
    margin-bottom: 12px;
    object-fit: cover;
    background: #fff; }
  .portfolio-minimal .portfolio-title {
    font-size: 38px;
    font-family: 'Lab Mono', 'iAWriter Duo', monospace;
    color: #210078;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-align: center; }
  .portfolio-minimal .portfolio-desc {
    font-size: 22px;
    font-family: 'iAWriter Duo', monospace;
    color: #210078;
    font-weight: 400;
    margin: 0 0 24px 0;
    text-align: center;
    line-height: 1.4; }
  .portfolio-minimal .portfolio-links {
    margin-top: 32px;
    width: 100%; }
    .portfolio-minimal .portfolio-links h2 {
      font-size: 18px;
      font-family: 'Lab Mono', 'iAWriter Duo', monospace;
      color: #210078;
      font-weight: 700;
      margin-bottom: 10px;
      text-align: left; }
    .portfolio-minimal .portfolio-links ul {
      list-style: none;
      padding: 0;
      margin: 0; }
      .portfolio-minimal .portfolio-links ul li {
        margin-bottom: 8px; }
        .portfolio-minimal .portfolio-links ul li a {
          color: #331876;
          font-size: 18px;
          font-family: 'iAWriter Duo', monospace;
          border-bottom: 1px dotted #331876;
          text-decoration: none; }

.folder-years {
  font-weight: 400;
  color: #210078;
  opacity: 0.3;
  font-size: 18px;
  text-align: center;
  margin-top: 0.2em;
  font-family: 'iAWriter Duo', monospace; }
