@charset "UTF-8";
* {
  color: whitesmoke;
  box-sizing: border-box;
}

html,
body {
  font-family: "Lato", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: radial-gradient(ellipse at 20% 0%, rgba(100, 124, 100, 0.08) 0%, transparent 50%), radial-gradient(ellipse at 80% 100%, rgba(100, 124, 100, 0.05) 0%, transparent 50%), linear-gradient(180deg, #14171a 0%, #191d21 30%, #2F3336 100%);
  background-attachment: fixed;
}

#content {
  flex: 1;
  animation: contentFadeIn 0.5s ease-out;
}

@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#wrapper {
  width: 75%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  #wrapper {
    width: 92%;
  }
}

html {
  scroll-behavior: smooth;
}

::selection {
  background-color: rgba(100, 124, 100, 0.6);
  color: white;
  text-shadow: none;
}

::-moz-selection {
  background-color: rgba(100, 124, 100, 0.6);
  color: white;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #14171a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(100, 124, 100, 0.6) 0%, rgba(80, 104, 80, 0.6) 100%);
  border-radius: 8px;
  border: 2px solid #14171a;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(100, 124, 100, 0.8) 0%, rgba(80, 104, 80, 0.8) 100%);
}
::-webkit-scrollbar-thumb:active {
  background: rgb(100, 124, 100);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(100, 124, 100, 0.5) #14171a;
}

img[loading=lazy] {
  opacity: 0;
  animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.blog-card,
.project-card-container {
  animation: slideUp 0.4s ease-out backwards;
}
.blog-card:nth-child(1),
.project-card-container:nth-child(1) {
  animation-delay: 0.06s;
}
.blog-card:nth-child(2),
.project-card-container:nth-child(2) {
  animation-delay: 0.12s;
}
.blog-card:nth-child(3),
.project-card-container:nth-child(3) {
  animation-delay: 0.18s;
}
.blog-card:nth-child(4),
.project-card-container:nth-child(4) {
  animation-delay: 0.24s;
}
.blog-card:nth-child(5),
.project-card-container:nth-child(5) {
  animation-delay: 0.3s;
}
.blog-card:nth-child(6),
.project-card-container:nth-child(6) {
  animation-delay: 0.36s;
}
.blog-card:nth-child(7),
.project-card-container:nth-child(7) {
  animation-delay: 0.42s;
}
.blog-card:nth-child(8),
.project-card-container:nth-child(8) {
  animation-delay: 0.48s;
}
.blog-card:nth-child(9),
.project-card-container:nth-child(9) {
  animation-delay: 0.54s;
}
.blog-card:nth-child(10),
.project-card-container:nth-child(10) {
  animation-delay: 0.6s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: rgb(100, 124, 100);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  z-index: 100;
  transition: top 0.3s;
}
.skip-to-content:focus {
  top: 0;
}

a:focus, button:focus, input:focus, textarea:focus, select:focus {
  outline: 2px solid rgb(100, 124, 100);
  outline-offset: 2px;
}
a:focus:not(:focus-visible), button:focus:not(:focus-visible), input:focus:not(:focus-visible), textarea:focus:not(:focus-visible), select:focus:not(:focus-visible) {
  outline: none;
}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid rgb(100, 124, 100);
  outline-offset: 2px;
}

nav a.menu:focus-visible {
  outline: 2px solid white;
  outline-offset: -2px;
  background-color: rgba(0, 0, 0, 0.15);
}

.blog-card:focus-within, .project-card:focus-within {
  outline: 2px solid rgb(100, 124, 100);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

header {
  font-size: 40px;
  text-align: center;
  margin-bottom: 12px;
  padding: 24px 0 16px;
  animation: headerFadeIn 0.6s ease-out;
}
@media (max-width: 600px) {
  header {
    font-size: 30px;
    padding: 16px 0 12px;
  }
}
header #top_title {
  display: inline-block;
  vertical-align: top;
  font-weight: 300;
  letter-spacing: 2px;
  background: linear-gradient(135deg, whitesmoke 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
header #bottom_ttile {
  font-size: 28px;
  color: rgb(130, 154, 130);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.85;
}
@media (max-width: 600px) {
  header #bottom_ttile {
    font-size: 18px;
    letter-spacing: 2px;
  }
}

@keyframes headerFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
footer {
  width: 50%;
  max-width: 600px;
  padding: 16px 0;
  font-size: 15px;
  text-align: center;
  margin: 60px auto 80px;
  border-top: 1px solid rgba(100, 124, 100, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 600px) {
  footer {
    width: 90%;
    margin-bottom: 40px;
  }
}
footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.15s ease;
  display: inline-block;
}
footer a:hover {
  color: rgb(130, 154, 130);
  transform: translateY(-1px);
}
footer a i {
  font-size: 18px;
}

nav {
  background: linear-gradient(135deg, rgba(100, 124, 100, 0.95) 0%, rgba(80, 104, 80, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  padding: 6px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
  animation: navbarFade 0.4s ease forwards;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 600px) {
  nav {
    display: none;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, rgba(100, 124, 100, 0.98) 0%, rgba(80, 104, 80, 0.98) 100%);
    width: 100%;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
  }
  nav.active {
    display: flex;
  }
}

@keyframes navbarFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
a.menu,
div.menu {
  text-decoration: none;
  display: inline-block;
  margin: 8px 6px;
  padding: 10px 22px;
  text-align: center;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
a.menu:not(:last-child)::before,
div.menu:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  transition: opacity 0.15s ease;
}
@media (max-width: 600px) {
  a.menu,
  div.menu {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    margin: 0;
  }
  a.menu::before,
  div.menu::before {
    display: none;
  }
  a.menu.first,
  div.menu.first {
    border-left: none;
  }
}
a.menu::after,
div.menu::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 600px) {
  a.menu::after,
  div.menu::after {
    display: none;
  }
}
a.menu:hover,
div.menu:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
a.menu:hover::after,
div.menu:hover::after {
  width: 50%;
  left: 25%;
}
a.menu.active,
div.menu.active {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-radius: 8px;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-weight: 600;
}
a.menu.active::after,
div.menu.active::after {
  width: 60%;
  left: 20%;
  background: rgba(255, 255, 255, 0.95);
  height: 2px;
}

.hamburger {
  display: none;
}
@media (max-width: 600px) {
  .hamburger {
    display: block;
    cursor: pointer;
    padding: 12px;
    background: linear-gradient(135deg, rgba(100, 124, 100, 0.95) 0%, rgba(80, 104, 80, 0.95) 100%);
    text-align: center;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hamburger:active {
    background: linear-gradient(135deg, rgba(80, 104, 80, 0.95) 0%, rgba(60, 84, 60, 0.95) 100%);
  }
}

.language-selector {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  margin-right: 16px;
}
@media (max-width: 600px) {
  .language-selector {
    margin-left: 0;
    margin-right: 0;
  }
}
.language-selector .language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  text-decoration: none;
  color: whitesmoke;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
.language-selector .language-toggle:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.language-selector .language-toggle:active {
  transform: translateY(-1px);
}
.language-selector .language-toggle .flag-icon {
  width: 18px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
@media (max-width: 600px) {
  .language-selector .language-toggle {
    padding: 12px 20px;
    font-size: 16px;
  }
  .language-selector .language-toggle .flag-icon {
    width: 22px;
  }
}

.card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 320px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.1);
  border-color: rgba(100, 124, 100, 0.3);
}
.card-content {
  text-align: justify;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}
.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

article {
  padding: 32px 0;
}
@media (max-width: 600px) {
  article {
    padding: 20px 8px;
  }
}
article h1 {
  font-size: 32px;
  text-align: center;
  margin: 0 12% 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgb(100, 124, 100);
  font-weight: 300;
  letter-spacing: 1px;
  background: linear-gradient(135deg, whitesmoke 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 600px) {
  article h1 {
    font-size: 24px;
    margin: 0 4% 20px;
  }
}
article p {
  text-align: justify;
  line-height: 1.75;
  font-size: 17px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.9);
}

img.left {
  float: left;
  margin: 0 16px 12px 0;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pdf-container {
  position: relative;
  width: 80%;
  height: 80vh;
  margin: 0 auto;
  padding: 16px;
  background-color: rgba(245, 245, 245, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media (max-width: 600px) {
  .pdf-container {
    width: 100%;
    height: 100vh;
    padding: 8px;
  }
}

.responsive-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

#project {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media (max-width: 600px) {
  #project {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

#sidephoto,
#sidetext {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 600px) {
  #sidephoto {
    width: 100%;
    margin: 0;
    text-align: center;
  }
}
#sidephoto img {
  margin-right: 16px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
#sidephoto img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
  #sidephoto img {
    margin: 0;
    width: 100%;
    height: auto;
  }
}

#sidetext {
  text-align: justify;
}
@media (max-width: 600px) {
  #sidetext {
    width: 100%;
    margin: 0;
    text-align: justify;
  }
}
#sidetext.text-box {
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  margin: 20px 0;
}

.project-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px 0;
}

.project-card {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 820px;
  width: 100%;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 20px rgba(100, 124, 100, 0.15);
  border-color: rgba(100, 124, 100, 0.3);
}
.project-card:hover .project-photo img {
  transform: scale(1.03);
}
@media (min-width: 601px) and (max-width: 1024px) {
  .project-card {
    max-width: 92%;
  }
}
@media (max-width: 600px) {
  .project-card {
    flex-direction: column;
    padding: 16px;
  }
}

.project-photo {
  flex: 2;
  margin-right: 24px;
  overflow: hidden;
  border-radius: 12px;
}
@media (max-width: 600px) {
  .project-photo {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.project-photo img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-content {
  flex: 2;
  text-align: justify;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.project-year {
  text-align: center;
  font-size: 1.4em;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgb(130, 154, 130);
  margin: 32px 0 16px;
}

.project-divider {
  height: 1px;
  width: 40%;
  background: linear-gradient(90deg, transparent 0%, rgb(100, 124, 100) 50%, transparent 100%);
  border: 0;
  margin: 0 auto 24px;
}

.post-list {
  margin: 32px 0;
}

.post-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin: 20px 0;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 20px rgba(100, 124, 100, 0.15);
}
.post-card:hover {
  border-color: rgba(100, 124, 100, 0.3);
}
@media (max-width: 600px) {
  .post-card {
    margin: 16px 0;
  }
}
.post-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .post-card h2 {
    font-size: 19px;
  }
}
.post-card h2 a {
  text-decoration: none;
  color: whitesmoke;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.post-card h2 a:hover {
  color: rgb(130, 154, 130);
}

.post-card-content {
  padding: 24px;
}
@media (max-width: 600px) {
  .post-card-content {
    padding: 16px;
  }
}

.post-meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.post-meta i {
  color: rgb(100, 124, 100);
}

.post-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 600px) {
  .post-card-meta {
    gap: 10px;
    font-size: 12px;
  }
}

.post-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.post-meta-item i {
  color: rgb(100, 124, 100);
  font-size: 14px;
}
@media (max-width: 600px) {
  .post-meta-item i {
    font-size: 12px;
  }
}
.post-meta-item .meta-label {
  font-weight: 600;
  color: whitesmoke;
}
.post-meta-item time, .post-meta-item span {
  color: rgba(255, 255, 255, 0.9);
}

.post-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-bottom: 12px;
}
.post-card-tags i {
  color: rgb(100, 124, 100);
  font-size: 13px;
  margin-right: 2px;
}

.tag-small {
  display: inline-block;
  background: rgba(100, 124, 100, 0.15);
  color: rgba(255, 255, 255, 0.9);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid rgba(100, 124, 100, 0.3);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.tag-small:hover {
  background: rgba(100, 124, 100, 0.25);
  border-color: rgb(100, 124, 100);
}
@media (max-width: 600px) {
  .tag-small {
    font-size: 10px;
    padding: 2px 6px;
  }
}

.post-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  padding: 15px 20px;
  background: linear-gradient(135deg, rgba(100, 124, 100, 0.1), rgba(100, 124, 100, 0.05));
  border-left: 4px solid rgb(100, 124, 100);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
@media (max-width: 600px) {
  .post-dates {
    flex-direction: column;
    gap: 12px;
    padding: 12px 15px;
  }
}

.post-date-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 600px) {
  .post-date-item {
    font-size: 14px;
  }
}
.post-date-item i {
  color: rgb(100, 124, 100);
  font-size: 16px;
  width: 20px;
  text-align: center;
}
@media (max-width: 600px) {
  .post-date-item i {
    font-size: 14px;
    width: 18px;
  }
}
.post-date-item .date-label {
  font-weight: 600;
  color: whitesmoke;
}
.post-date-item time {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.post-date-updated {
  padding-left: 20px;
  border-left: 1px solid rgba(100, 124, 100, 0.3);
}
@media (max-width: 600px) {
  .post-date-updated {
    padding-left: 0;
    border-left: none;
    padding-top: 12px;
    border-top: 1px solid rgba(100, 124, 100, 0.3);
  }
}

.post-author {
  padding-left: 20px;
  border-left: 1px solid rgba(100, 124, 100, 0.3);
}
@media (max-width: 600px) {
  .post-author {
    padding-left: 0;
    border-left: none;
    padding-top: 12px;
    border-top: 1px solid rgba(100, 124, 100, 0.3);
  }
}
.post-author .author-name {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.post-tags {
  flex: 1 1 100%;
  padding-top: 12px;
  border-top: 1px solid rgba(100, 124, 100, 0.3);
}
@media (max-width: 600px) {
  .post-tags {
    padding-top: 12px;
  }
}
.post-tags .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.post-tags .tag {
  display: inline-block;
  background: rgba(100, 124, 100, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(100, 124, 100, 0.4);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.post-tags .tag:hover {
  background: rgba(100, 124, 100, 0.3);
  border-color: rgb(100, 124, 100);
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .post-tags .tag {
    font-size: 12px;
    padding: 3px 10px;
  }
}

.post-description {
  margin: 10px 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.read-more-link {
  display: inline-block;
  margin-top: 10px;
  color: rgb(100, 124, 100);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.read-more-link:hover {
  color: #fff;
  transform: translateX(5px);
}

.post {
  padding: 32px 0;
}
.post-header {
  margin-bottom: 36px;
}
.post-content {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin: 28px 0;
  line-height: 1.7;
  font-size: 16px;
}
@media (max-width: 600px) {
  .post-content {
    font-size: 15px;
    padding: 18px;
    margin: 20px 0;
    line-height: 1.6;
  }
}
.post-content h1 {
  font-size: 28px;
  margin: 30px 0 15px;
  border-bottom: 2px solid rgb(100, 124, 100);
  padding-bottom: 10px;
  line-height: 1.3;
}
.post-content h1:first-child {
  margin-top: 0;
}
@media (max-width: 600px) {
  .post-content h1 {
    font-size: 24px;
    margin: 25px 0 12px;
  }
}
.post-content h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 25px 0 12px;
  color: rgb(100, 124, 100);
  line-height: 1.3;
}
@media (max-width: 600px) {
  .post-content h2 {
    font-size: 20px;
    margin: 20px 0 10px;
  }
}
.post-content h3 {
  font-size: 20px;
  margin: 20px 0 10px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
}
@media (max-width: 600px) {
  .post-content h3 {
    font-size: 18px;
  }
}
.post-content h4 {
  font-size: 18px;
  margin: 18px 0 8px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
}
@media (max-width: 600px) {
  .post-content h4 {
    font-size: 16px;
  }
}
.post-content p {
  margin: 10px 0;
  line-height: 1.65;
}
.post-content p:first-child {
  margin-top: 0;
}
.post-content p:last-child {
  margin-bottom: 0;
}
.post-content ul, .post-content ol {
  margin: 12px 0;
  padding-left: 30px;
}
@media (max-width: 600px) {
  .post-content ul, .post-content ol {
    padding-left: 20px;
  }
}
.post-content li {
  margin-bottom: 6px;
  line-height: 1.6;
}
.post-content li:last-child {
  margin-bottom: 0;
}
.post-content ul ul, .post-content ol ol, .post-content ul ol, .post-content ol ul {
  margin: 6px 0;
}
.post-content code {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: "Courier New", Consolas, Monaco, monospace;
  font-size: 0.9em;
  color: #ffb86c;
  border: 1px solid rgba(255, 184, 108, 0.2);
}
.post-content pre {
  background-color: #2d2d2d !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px !important;
  overflow-x: auto;
  margin: 16px 0 !important;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 600px) {
  .post-content pre {
    padding: 12px !important;
    font-size: 13px;
    margin: 12px 0 !important;
  }
}
.post-content pre code {
  background-color: transparent !important;
  padding: 0 !important;
  border: none !important;
  font-size: 14px;
  color: #f8f8f2;
  display: block;
  font-family: "Courier New", Consolas, Monaco, monospace;
  text-shadow: none;
}
@media (max-width: 600px) {
  .post-content pre code {
    font-size: 12px;
  }
}
.post-content pre[class*=language-] {
  position: relative;
}
.post-content blockquote {
  margin: 16px 0;
  padding: 12px 20px;
  background-color: rgba(255, 255, 255, 0.06);
  border-left: 4px solid rgb(100, 124, 100);
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  line-height: 1.6;
}
.post-content blockquote p {
  margin: 8px 0;
}
.post-content blockquote p:first-child {
  margin-top: 0;
}
.post-content blockquote p:last-child {
  margin-bottom: 0;
}
.post-content hr {
  border: none;
  border-top: 1px solid rgba(100, 124, 100, 0.5);
  margin: 24px 0;
}
.post-content a {
  color: rgb(100, 124, 100);
  text-decoration: underline;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.post-content a:hover {
  color: rgb(100, 124, 100);
  filter: brightness(1.3);
}
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}
.post-footer {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(100, 124, 100, 0.5);
}

.back-link {
  color: rgb(100, 124, 100);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.back-link:hover {
  color: #fff;
}

.no-posts {
  text-align: center;
  padding: 40px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}

.about-intro {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 48px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
@media (max-width: 600px) {
  .about-intro {
    flex-direction: column;
    gap: 24px;
    padding: 20px;
    align-items: center;
  }
}

.about-photo {
  flex-shrink: 0;
}
.about-photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgb(100, 124, 100);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 5px rgba(100, 124, 100, 0.12);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.about-photo img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 0 7px rgba(100, 124, 100, 0.18);
}
@media (max-width: 600px) {
  .about-photo img {
    width: 140px;
    height: 140px;
  }
}

.about-summary {
  flex: 1;
  min-width: 0;
}

.about-name {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 4px;
  background: linear-gradient(135deg, whitesmoke 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 600px) {
  .about-name {
    font-size: 22px;
    text-align: center;
  }
}

.about-role {
  font-size: 14px;
  color: rgb(130, 154, 130);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 16px;
}
@media (max-width: 600px) {
  .about-role {
    text-align: center;
  }
}

.about-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 20px;
  text-align: justify;
}

.about-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.about-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.about-contact i {
  color: rgb(100, 124, 100);
  width: 14px;
  text-align: center;
}
@media (max-width: 600px) {
  .about-contact {
    justify-content: center;
  }
}

.about-section-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgb(130, 154, 130);
  margin: 0 0 28px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(100, 124, 100, 0.2);
  position: relative;
}
.about-section-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 48px;
  height: 2px;
  background: rgb(100, 124, 100);
  border-radius: 1px;
}

.about-timeline-section {
  margin-bottom: 52px;
}

.about-company-group {
  margin-bottom: 28px;
}
.about-company-group:last-child {
  margin-bottom: 0;
}

.about-company-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 18px;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(100, 124, 100, 0.3);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  position: relative;
}
.about-company-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgb(100, 124, 100);
  border-radius: 12px 0 0 0;
}

.about-company-name {
  font-size: 15px;
  font-weight: 700;
  color: whitesmoke;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}
.about-company-name i {
  color: rgb(100, 124, 100);
  font-size: 13px;
}

.about-company-period {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  font-variant-numeric: tabular-nums;
}

.about-company-body {
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(100, 124, 100, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 0 0 12px 12px;
  padding: 24px 20px 20px;
}
@media (max-width: 600px) {
  .about-company-body {
    padding: 18px 14px 16px;
  }
}

.about-timeline {
  position: relative;
  padding-left: 36px;
}
.about-timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgb(100, 124, 100) 0%, rgba(100, 124, 100, 0.3) 80%, transparent 100%);
  border-radius: 1px;
}

.about-timeline-item {
  position: relative;
  margin-bottom: 20px;
}
.about-timeline-item:last-child {
  margin-bottom: 0;
}
.about-timeline-item:hover .about-timeline-dot {
  transform: scale(1.25);
}

.about-timeline-dot {
  position: absolute;
  left: -37px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgb(100, 124, 100);
  border: 2px solid #14171a;
  box-shadow: 0 0 0 2px rgb(100, 124, 100);
  z-index: 1;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-timeline-dot.is-current {
  background: rgb(130, 154, 130);
  box-shadow: 0 0 0 2px rgb(130, 154, 130);
}
.about-timeline-dot.is-current::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgb(130, 154, 130);
  opacity: 0;
  animation: about-pulse 2.2s ease-out infinite;
}
.about-timeline-dot.is-edu {
  background: transparent;
  border-color: rgb(130, 154, 130);
  box-shadow: 0 0 0 2px rgba(100, 124, 100, 0.3);
}

@keyframes about-pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.about-timeline-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-timeline-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.1);
  border-color: rgba(100, 124, 100, 0.3);
}
@media (max-width: 600px) {
  .about-timeline-card {
    padding: 14px;
  }
}

.about-timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.about-timeline-date {
  font-size: 12px;
  font-weight: 700;
  color: rgb(130, 154, 130);
  letter-spacing: 0.5px;
  font-variant-numeric: tabular-nums;
}

.about-current-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(130, 154, 130, 0.15);
  border: 1px solid rgba(130, 154, 130, 0.4);
  color: rgb(130, 154, 130);
}

.about-timeline-title {
  font-size: 16px;
  font-weight: 600;
  color: whitesmoke;
  margin: 0 0 3px;
}

.about-timeline-company {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.about-timeline-company i {
  color: rgb(100, 124, 100);
  font-size: 11px;
}

.about-project-tag {
  display: inline-block;
  background: rgba(100, 124, 100, 0.12);
  color: rgba(255, 255, 255, 0.9);
  padding: 2px 9px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgba(100, 124, 100, 0.3);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-timeline-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-align: justify;
}
.about-timeline-desc strong {
  color: whitesmoke;
  font-weight: 600;
}
@media (max-width: 600px) {
  .about-timeline-desc {
    font-size: 13px;
  }
}

.about-contributions {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(100, 124, 100, 0.2);
}

.about-contributions-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.about-contributions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.about-contributions-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.5;
}
.about-contributions-list li::before {
  content: "◆";
  color: rgb(100, 124, 100);
  font-size: 7px;
  flex-shrink: 0;
  margin-top: 4px;
}

.about-skills-section {
  margin-bottom: 48px;
}

.about-skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (min-width: 601px) and (max-width: 1024px) {
  .about-skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .about-skills-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.about-skill-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-skill-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.1);
  border-color: rgba(100, 124, 100, 0.3);
}
.about-skill-card h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgb(130, 154, 130);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-skill-card h3 i {
  color: rgb(100, 124, 100);
  font-size: 13px;
  width: 14px;
  text-align: center;
}
.about-skill-card p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-align: left;
}

.about-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.about-skill-tag {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(100, 124, 100, 0.1);
  border: 1px solid rgba(100, 124, 100, 0.3);
  border-radius: 8px;
  padding: 3px 10px;
  white-space: nowrap;
}

.blog-post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow-x: auto;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
}
@media (max-width: 600px) {
  .blog-post-content table {
    font-size: 14px;
    margin: 16px 0;
  }
}
.blog-post-content thead {
  background-color: rgba(100, 124, 100, 0.2);
}
.blog-post-content th {
  padding: 12px 16px;
  text-align: left;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgb(100, 124, 100);
  background-color: rgba(100, 124, 100, 0.15);
}
@media (max-width: 600px) {
  .blog-post-content th {
    padding: 10px 12px;
  }
}
.blog-post-content td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(100, 124, 100, 0.2);
}
@media (max-width: 600px) {
  .blog-post-content td {
    padding: 8px 12px;
  }
}
.blog-post-content tbody tr {
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-post-content tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.04);
}
.blog-post-content tbody tr:last-child td {
  border-bottom: none;
}
.blog-post-content tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.02);
}
@media (max-width: 600px) {
  .blog-post-content table {
    display: table;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
table th, table td {
  padding: 10px;
  text-align: left;
  border: 1px solid rgba(100, 124, 100, 0.3);
}
table th {
  background-color: rgba(255, 255, 255, 0.08);
  font-weight: bold;
}
table tr:hover {
  background-color: rgba(255, 255, 255, 0.04);
}

@media print {
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  nav,
  .hamburger,
  footer,
  .back-link,
  button {
    display: none !important;
  }
  @page {
    margin: 2cm;
  }
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  header {
    border-bottom: 2px solid black;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  h1 {
    font-size: 24pt;
    page-break-after: avoid;
  }
  h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }
  h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  p, blockquote {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre, code {
    border: 1px solid #999;
    page-break-inside: avoid;
    font-family: "Courier New", monospace;
    background: #f5f5f5 !important;
    padding: 10px;
  }
  code {
    padding: 2px 4px;
  }
  table {
    border-collapse: collapse;
    width: 100%;
  }
  th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
  }
  th {
    background-color: #f2f2f2 !important;
    font-weight: bold;
  }
  .blog-post-content {
    border: none !important;
    padding: 0 !important;
  }
  #wrapper {
    width: 100% !important;
    max-width: none !important;
  }
}
@media (max-width: 600px) {
  img {
    max-width: 100%;
    height: auto;
  }
}
