/**
 * Reset some basic elements
 */
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css");
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0;
}

/**
 * Basic styling
 */
body {
  font: 400 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #333333;
  background-color: #fff5e6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure,
.highlight {
  margin-bottom: 15px;
}

/**
 * `main` element
 */
main {
  display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */
}

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle;
}

/**
 * Figures
 */
figure > img {
  display: block;
}

figcaption {
  font-size: 14px;
}

/**
 * Lists
 */
ul, ol {
  margin-left: 30px;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

/**
 * Links
 */
a {
  color: #8b4513;
  text-decoration: none;
}
a:visited {
  color: rgb(71.6993670886, 35.5917721519, 9.8006329114);
}
a:hover {
  color: #333333;
  text-decoration: underline;
}
.social-media-list a:hover {
  text-decoration: none;
}
.social-media-list a:hover .username {
  text-decoration: underline;
}

/**
 * Blockquotes
 */
blockquote {
  color: #757575;
  border-left: 4px solid #e0e0e0;
  padding-left: 15px;
  font-size: 18px;
  letter-spacing: -1px;
  font-style: italic;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/**
 * Code formatting
 */
pre,
code {
  font-size: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  background-color: #eef;
}

code {
  padding: 1px 5px;
}

pre {
  padding: 8px 12px;
  overflow-x: auto;
}
pre > code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

/**
 * Wrapper
 */
.wrapper {
  max-width: -webkit-calc(800px - (30px * 2));
  max-width: calc(800px - 30px * 2);
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media screen and (max-width: 800px) {
  .wrapper {
    max-width: -webkit-calc(800px - (30px));
    max-width: calc(800px - (30px));
    padding-right: 15px;
    padding-left: 15px;
  }
}

/**
 * Clearfix
 */
.footer-col-wrapper:after, .wrapper:after {
  content: "";
  display: table;
  clear: both;
}

/**
 * Icons
 */
.svg-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  fill: #757575;
  padding-right: 5px;
  vertical-align: text-top;
}

.social-media-list li + li {
  padding-top: 5px;
}

/**
 * Tables
 */
table {
  margin-bottom: 30px;
  width: 100%;
  text-align: left;
  color: rgb(96.9, 96.9, 96.9);
  border-collapse: collapse;
  border: 1px solid #e0e0e0;
}
table tr:nth-child(even) {
  background-color: rgb(239.3, 239.3, 239.3);
}
table th, table td {
  padding: 9.999999999px 15px;
}
table th {
  background-color: rgb(231.65, 231.65, 231.65);
  border: 1px solid rgb(213.8, 213.8, 213.8);
  border-bottom-color: rgb(193.4, 193.4, 193.4);
}
table td {
  border: 1px solid #e0e0e0;
}

/**
 * Site header
 */
.site-header {
  border-top: 5px solid #424242;
  border-bottom: 1px solid #e0e0e0;
  min-height: 55.95px;
  position: relative;
}

.site-title {
  font-size: 26px;
  font-weight: 300;
  line-height: 54px;
  letter-spacing: -1px;
  margin-bottom: 0;
  float: left;
}
.site-title, .site-title:visited {
  color: #424242;
}

.site-nav {
  float: right;
  line-height: 54px;
}
.site-nav .nav-trigger {
  display: none;
}
.site-nav .menu-icon {
  display: none;
}
.site-nav .page-link {
  color: #333333;
  line-height: 1.5;
}
.site-nav .page-link:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 600px) {
  .site-nav {
    position: absolute;
    top: 9px;
    right: 15px;
    background-color: #fff5e6;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    text-align: right;
  }
  .site-nav label[for=nav-trigger] {
    display: block;
    float: right;
    width: 36px;
    height: 36px;
    z-index: 2;
    cursor: pointer;
  }
  .site-nav .menu-icon {
    display: block;
    float: right;
    width: 36px;
    height: 26px;
    line-height: 0;
    padding-top: 10px;
    text-align: center;
  }
  .site-nav .menu-icon > svg {
    fill: #424242;
  }
  .site-nav input ~ .trigger {
    clear: both;
    display: none;
  }
  .site-nav input:checked ~ .trigger {
    display: block;
    padding-bottom: 5px;
  }
  .site-nav .page-link {
    display: block;
    margin-left: 20px;
    padding: 5px 10px;
  }
  .site-nav .page-link:not(:last-child) {
    margin-right: 0;
  }
}

/**
 * Site footer
 */
.site-footer {
  border-top: 1px solid #e0e0e0;
  padding: 30px 0;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 15px;
}

.contact-list,
.social-media-list {
  list-style: none;
  margin-left: 0;
}

.footer-col-wrapper {
  font-size: 15px;
  color: #757575;
  margin-left: -15px;
}

.footer-col {
  float: left;
  margin-bottom: 15px;
  padding-left: 15px;
}

.footer-col-1 {
  width: -webkit-calc(35% - (30px / 2));
  width: calc(35% - 30px / 2);
}

.footer-col-2 {
  width: -webkit-calc(20% - (30px / 2));
  width: calc(20% - 30px / 2);
}

.footer-col-3 {
  width: -webkit-calc(45% - (30px / 2));
  width: calc(45% - 30px / 2);
}

@media screen and (max-width: 800px) {
  .footer-col-1,
  .footer-col-2 {
    width: -webkit-calc(50% - (30px / 2));
    width: calc(50% - 30px / 2);
  }
  .footer-col-3 {
    width: -webkit-calc(100% - (30px / 2));
    width: calc(100% - 30px / 2);
  }
}
@media screen and (max-width: 600px) {
  .footer-col {
    float: none;
    width: -webkit-calc(100% - (30px / 2));
    width: calc(100% - 30px / 2);
  }
}
/**
 * Page content
 */
.page-content {
  padding: 30px 0;
  flex: 1;
}

.page-heading {
  font-size: 32px;
}

.post-list-heading {
  font-size: 28px;
}

.post-list {
  margin-left: 0;
  list-style: none;
}
.post-list > li {
  margin-bottom: 30px;
}

.post-meta {
  font-size: 14px;
  color: #757575;
}

.post-link {
  display: block;
  font-size: 24px;
}

/**
 * Posts
 */
.post-header {
  margin-bottom: 30px;
}

.post-title {
  font-size: 42px;
  letter-spacing: -1px;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .post-title {
    font-size: 36px;
  }
}

.post-content {
  margin-bottom: 30px;
}
.post-content h2 {
  font-size: 32px;
}
@media screen and (max-width: 800px) {
  .post-content h2 {
    font-size: 28px;
  }
}
.post-content h3 {
  font-size: 26px;
}
@media screen and (max-width: 800px) {
  .post-content h3 {
    font-size: 22px;
  }
}
.post-content h4 {
  font-size: 20px;
}
@media screen and (max-width: 800px) {
  .post-content h4 {
    font-size: 18px;
  }
}

/**
 * Syntax highlighting styles
 */
.highlight {
  background: #fff;
}
.highlighter-rouge .highlight {
  background: #eef;
}
.highlight .c {
  color: #998;
  font-style: italic;
}
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
.highlight .k {
  font-weight: bold;
}
.highlight .o {
  font-weight: bold;
}
.highlight .cm {
  color: #998;
  font-style: italic;
}
.highlight .cp {
  color: #999;
  font-weight: bold;
}
.highlight .c1 {
  color: #998;
  font-style: italic;
}
.highlight .cs {
  color: #999;
  font-weight: bold;
  font-style: italic;
}
.highlight .gd {
  color: #000;
  background-color: #fdd;
}
.highlight .gd .x {
  color: #000;
  background-color: #faa;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gr {
  color: #a00;
}
.highlight .gh {
  color: #999;
}
.highlight .gi {
  color: #000;
  background-color: #dfd;
}
.highlight .gi .x {
  color: #000;
  background-color: #afa;
}
.highlight .go {
  color: #888;
}
.highlight .gp {
  color: #555;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #aaa;
}
.highlight .gt {
  color: #a00;
}
.highlight .kc {
  font-weight: bold;
}
.highlight .kd {
  font-weight: bold;
}
.highlight .kp {
  font-weight: bold;
}
.highlight .kr {
  font-weight: bold;
}
.highlight .kt {
  color: #458;
  font-weight: bold;
}
.highlight .m {
  color: #099;
}
.highlight .s {
  color: #d14;
}
.highlight .na {
  color: #008080;
}
.highlight .nb {
  color: #0086B3;
}
.highlight .nc {
  color: #458;
  font-weight: bold;
}
.highlight .no {
  color: #008080;
}
.highlight .ni {
  color: #800080;
}
.highlight .ne {
  color: #900;
  font-weight: bold;
}
.highlight .nf {
  color: #900;
  font-weight: bold;
}
.highlight .nn {
  color: #555;
}
.highlight .nt {
  color: #000080;
}
.highlight .nv {
  color: #008080;
}
.highlight .ow {
  font-weight: bold;
}
.highlight .w {
  color: #bbb;
}
.highlight .mf {
  color: #099;
}
.highlight .mh {
  color: #099;
}
.highlight .mi {
  color: #099;
}
.highlight .mo {
  color: #099;
}
.highlight .sb {
  color: #d14;
}
.highlight .sc {
  color: #d14;
}
.highlight .sd {
  color: #d14;
}
.highlight .s2 {
  color: #d14;
}
.highlight .se {
  color: #d14;
}
.highlight .sh {
  color: #d14;
}
.highlight .si {
  color: #d14;
}
.highlight .sx {
  color: #d14;
}
.highlight .sr {
  color: #009926;
}
.highlight .s1 {
  color: #d14;
}
.highlight .ss {
  color: #990073;
}
.highlight .bp {
  color: #999;
}
.highlight .vc {
  color: #008080;
}
.highlight .vg {
  color: #008080;
}
.highlight .vi {
  color: #008080;
}
.highlight .il {
  color: #099;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #fff5e6;
  color: #333333;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 16px;
  }
}

body {
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #8b4513;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  border-bottom: 2px solid rgba(139, 69, 19, 0.1);
  margin-top: 1.5em;
  margin-bottom: 0.6em;
  padding-bottom: 0.2em;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

h1 {
  font-size: 2.3em;
}

h2 {
  font-size: 1.8em;
}

h3 {
  font-size: 1.4em;
}

h4 {
  font-size: 1.2em;
}

h5 {
  font-size: 1.1em;
  font-weight: 400;
}

h6 {
  font-size: 1em;
  font-weight: 400;
}

p {
  margin-bottom: 1.2em;
}
p:last-child {
  margin-bottom: 0;
}

.post-content h1 + p,
.post-content h2 + p,
.post-content h3 + p,
.post-content h4 + p,
.post-content h5 + p,
.post-content h6 + p,
.page-content h1 + p,
.page-content h2 + p,
.page-content h3 + p,
.page-content h4 + p,
.page-content h5 + p,
.page-content h6 + p {
  margin-top: 0.8em;
}

.page-content {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
  flex: 1 0 auto;
}

.site-header {
  background-color: #fff5e6;
  border-bottom: 1px solid #e0e0e0;
  min-height: 40px;
  position: relative;
  z-index: 100;
  width: 100%;
}

.site-title {
  font-size: 24px;
  font-weight: 300;
  line-height: 40px;
  letter-spacing: -0.5px;
  margin-bottom: 0;
  float: left;
  text-decoration: none;
  color: #8b4513;
}
.site-title:hover {
  text-decoration: none;
  color: #424242;
}

.site-nav {
  float: right;
  line-height: 40px;
  display: flex;
  align-items: center;
  margin-left: auto;
}
.site-nav .nav-trigger {
  display: none;
}
.site-nav .menu-icon {
  display: none;
}
.site-nav .trigger {
  display: flex;
  align-items: center;
}
.site-nav .page-link {
  color: #333333;
  line-height: 40px;
  text-decoration: none;
  margin-left: 1.3rem;
  white-space: nowrap;
  font-size: 18px;
}
.site-nav .page-link:hover {
  color: #8b4513;
  text-decoration: none;
}
.site-nav .page-link:first-child {
  margin-left: 0;
}

@media screen and (max-width: 600px) {
  .site-nav {
    position: absolute;
    top: 9px;
    right: 15px;
    background-color: #fff5e6;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    text-align: right;
    z-index: 1000;
  }
  .site-nav label[for=nav-trigger] {
    display: block;
    float: right;
    width: 32px;
    height: 32px;
    z-index: 2;
    cursor: pointer;
  }
  .site-nav .menu-icon {
    display: block;
    float: right;
    width: 32px;
    height: 24px;
    line-height: 0;
    padding-top: 8px;
    text-align: center;
  }
  .site-nav .menu-icon > svg {
    width: 18px;
    height: 15px;
  }
  .site-nav .menu-icon > svg path {
    fill: #333333;
  }
  .site-nav input ~ .trigger {
    clear: both;
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #fff5e6;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 5px 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .site-nav input:checked ~ .trigger {
    display: block;
    padding-bottom: 5px;
  }
  .site-nav .page-link {
    display: block;
    padding: 5px 10px;
    margin: 0;
    margin-left: 20px;
    line-height: 1.5;
  }
  .site-nav .page-link:not(:last-child) {
    margin-right: 0;
  }
  .site-nav .page-link:hover {
    background-color: #e0e0e0;
  }
}
.wrapper {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 15px;
  background: transparent;
  align-items: center;
  justify-content: space-between;
}

a:not(.share-btn):not(.vote-btn):not(.site-title):not(.page-link):not(.toc-nav a) {
  color: #8b4513;
  text-decoration: none;
  transition: all 0.2s ease;
}
a:not(.share-btn):not(.vote-btn):not(.site-title):not(.page-link):not(.toc-nav a):hover {
  color: rgb(94.1329113924, 46.7278481013, 12.8670886076);
  text-decoration: underline;
}
a:not(.share-btn):not(.vote-btn):not(.site-title):not(.page-link):not(.toc-nav a):visited {
  color: #8b4513;
}

blockquote {
  background: #e0e0e0;
  border-left: 3px solid #757575;
  padding: 12px;
  font-size: 0.95em;
  color: #333333;
}

.container,
.container-fluid {
  background-color: transparent;
  max-width: 100%;
  overflow-x: hidden;
}

.btn-primary {
  background-color: #8b4513;
  border-color: #8b4513;
}
.btn-primary:hover {
  background-color: rgb(183.8670886076, 91.2721518987, 25.1329113924);
  border-color: rgb(183.8670886076, 91.2721518987, 25.1329113924);
}

.card,
html,
body,
.page-content {
  background-color: #fff5e6;
  color: #333333;
}

.card {
  border-color: #e0e0e0;
}

.site-footer {
  border-top: 1px solid #e0e0e0;
  padding: 1.2rem 0;
  background-color: #fff5e6;
  font-size: 0.9rem;
}
.site-footer .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 2rem;
}
.site-footer .footer-description {
  flex: 1;
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}
.site-footer .footer-description p {
  margin: 0;
}
.site-footer .social-links {
  display: flex;
  gap: 1rem;
  margin-left: 1.5rem;
}
.site-footer .social-links a {
  color: #424242;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff5e6, #f0e6d4);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
}
.site-footer .social-links a i {
  display: inline-block;
  line-height: 1;
}
.site-footer .social-links a:hover {
  color: #8b4513;
  transform: translateY(-3px);
  background: linear-gradient(145deg, #fff8eb, #f5ebd9);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.site-footer .social-links a:active {
  transform: translateY(-1px);
}
.site-footer .footer-copyright {
  text-align: center;
  color: #757575;
  font-size: 0.8rem;
  border-top: 1px solid rgba(224, 224, 224, 0.5);
  padding-top: 1rem;
  margin-top: 1rem;
}
.site-footer .footer-copyright p {
  margin: 0;
}

@media screen and (max-width: 600px) {
  .site-footer .footer-row {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
  .site-footer .social-links {
    margin-left: 0;
    justify-content: center;
  }
  .site-footer .footer-description {
    font-size: 0.9rem;
  }
}
.container {
  position: relative;
}

.section-title {
  color: #333333;
  font-size: 1.8rem;
  font-weight: 600;
}

.about-section {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 4rem;
}
.about-section .about-content {
  flex: 1;
}
.about-section .about-content h1 {
  color: #8b4513;
}
.about-section .about-content p {
  color: #333333;
}
.about-section .about-content p a {
  color: #8b4513;
  transition: opacity 0.3s ease;
}
.about-section .about-content p a:hover {
  opacity: 0.85;
}

.portrait-container {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  border-radius: 20px;
  margin-top: var(--portrait-margin, 0rem);
  position: relative;
  background: transparent;
  transition: transform 0.3s ease;
}
.portrait-container:hover {
  transform: translateY(-5px);
}
.portrait-container:hover .wave-hand {
  display: block;
}
@media screen and (max-width: 768px) {
  .portrait-container {
    width: 100%;
    height: 350px;
    margin: 0 auto;
    margin-bottom: 1.5rem;
    overflow: hidden;
  }
}

.portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 20px;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .portrait-image {
    object-position: center -17px;
  }
}

@media screen and (max-width: 768px) {
  .about-section {
    flex-direction: column-reverse;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 768px) {
  .about-section {
    padding: 0 1rem;
  }
  .about-section .portrait-container {
    margin-bottom: 1.5rem;
  }
}

@keyframes popAndWave {
  0% {
    transform: translate(0, 30px) scale(0.2);
    opacity: 0;
  }
  10% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  30% {
    transform: translate(-5px, -5px) rotate(-15deg);
  }
  40% {
    transform: translate(-5px, -5px) rotate(15deg);
  }
  50% {
    transform: translate(-5px, -5px) rotate(-15deg);
  }
  60% {
    transform: translate(-5px, -5px) rotate(15deg);
  }
  70% {
    transform: translate(0, 0) rotate(0);
  }
  90% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0, 20px);
    opacity: 0;
  }
}
.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #757575;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.post-meta .meta-left,
.post-meta .meta-right {
  display: flex;
  align-items: center;
}

.post-title {
  margin: 0.2rem 0;
}
.post-title a {
  color: #8b4513;
  font-size: 1.6rem;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.3;
  transition: opacity 0.3s ease;
}
.post-title a:hover {
  opacity: 0.85;
}

.post-excerpt {
  color: #333333;
  margin: 0.8rem 0;
  line-height: 1.6;
}

.read-more {
  color: #8b4513;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: all 0.2s ease;
}
.read-more:hover {
  opacity: 0.85;
  transform: translateX(5px);
}

.view-all-container {
  text-align: center;
  margin-top: 2rem;
}

.view-all-posts {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border: 1.5px solid #8b4513;
  color: #8b4513;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  background: transparent;
}
.view-all-posts:hover {
  opacity: 0.85;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.blog-header {
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.page-title {
  color: #8b4513;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}

.page-description {
  color: #757575;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.post-card {
  background: #fff5e6;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(139, 69, 19, 0.1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-2px);
  border-color: #8b4513;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.post-card:hover .post-image {
  transform: scale(1.05);
}

.post-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #757575;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}
.post-meta .meta-left,
.post-meta .meta-right {
  display: flex;
  align-items: center;
}

.post-title {
  margin: 0 0 1rem 0;
}
.post-title a {
  color: #8b4513;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.3;
  transition: opacity 0.3s ease;
}
.post-title a:hover {
  opacity: 0.85;
}

.post-excerpt {
  color: #333333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 1rem;
}
.post-footer .categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.post-footer .read-more {
  white-space: nowrap;
  margin-left: auto;
}
.post-footer .read-more .arrow-icon {
  transition: transform 0.2s ease;
}
.post-footer .read-more:hover .arrow-icon {
  transform: translateX(3px);
}

.category {
  background: rgba(139, 69, 19, 0.05);
  color: #8b4513;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2.5rem;
  }
  .posts-grid {
    grid-template-columns: 1fr;
  }
  .post-meta {
    flex-wrap: wrap;
  }
  .post-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .post-footer .read-more {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-header {
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: #fff5e6;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(139, 69, 19, 0.1);
}
.contact-card:hover {
  transform: translateY(-2px);
  border-color: #8b4513;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.contact-card:hover .contact-icon {
  background: #8b4513;
  color: #fff5e6;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff5e6;
  border: 2px solid #8b4513;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: all 0.3s ease;
  color: #8b4513;
}

.contact-method {
  font-size: 1.4rem;
  color: #8b4513;
  margin: 0 0 0.8rem 0;
}

.contact-description {
  color: #757575;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #8b4513;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.contact-link .arrow-icon {
  transition: transform 0.2s ease;
}
.contact-link:hover {
  opacity: 0.85;
}
.contact-link:hover .arrow-icon {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  html,
  body {
    font-size: 15px;
    line-height: 1.5;
  }
  h1 {
    font-size: 1.8em;
  }
  h2 {
    font-size: 1.4em;
  }
  h3 {
    font-size: 1.2em;
  }
  h4 {
    font-size: 1.1em;
  }
  h5 {
    font-size: 1em;
  }
  h6 {
    font-size: 0.95em;
  }
  p {
    margin-bottom: 1em;
  }
  .page-content {
    padding: 1rem 0;
  }
  .site-header {
    min-height: 50px;
    padding: 0 10px;
  }
  .site-title {
    font-size: 20px;
    line-height: 50px;
  }
  .site-nav {
    line-height: 50px;
  }
  .site-nav .page-link {
    line-height: 50px;
    font-size: 15px;
    margin-left: 0.8rem;
  }
  .wrapper {
    padding: 0 10px;
  }
  blockquote {
    padding: 8px;
    font-size: 0.85em;
    margin: 1em 0;
  }
  .container,
  .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
  }
  .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .card {
    margin-bottom: 1rem;
  }
  .site-footer {
    padding: 0.8rem 0;
    font-size: 0.8rem;
  }
  .site-footer .footer-row {
    gap: 1rem;
    margin-bottom: 0.6rem;
  }
  .site-footer .footer-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .site-footer .social-links {
    gap: 0.6rem;
    margin-left: 0.5rem;
  }
  .site-footer .social-links a {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .site-footer .social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }
  .site-footer .footer-copyright {
    font-size: 0.7rem;
    padding-top: 0.6rem;
    margin-top: 0.6rem;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .about-section {
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  .about-section .about-content {
    text-align: left;
  }
  .portrait-container {
    width: 100%;
    height: 280px;
    margin-bottom: 1rem;
    max-width: 280px;
  }
  .portrait-container:hover {
    transform: translateY(-3px);
  }
  .portrait-image {
    object-position: center -10px;
  }
  .post-meta {
    font-size: 0.9rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .post-meta .meta-left,
  .post-meta .meta-right {
    gap: 0.5rem;
  }
  .post-title a {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  .post-excerpt {
    margin: 0.6rem 0;
    line-height: 1.5;
  }
  .read-more {
    font-size: 0.9rem;
  }
  .read-more:hover {
    transform: translateX(3px);
  }
  .view-all-container {
    margin-top: 1rem;
  }
  .view-all-posts {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
  .view-all-posts:hover {
    transform: translateY(-0.5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }
  .blog-container {
    padding: 0 0.5rem;
  }
  .blog-header {
    padding: 1rem 0;
    margin-bottom: 1rem;
  }
  .page-title {
    font-size: 2rem;
    margin: 0 0 0.3rem 0;
  }
  .page-description {
    font-size: 1rem;
    max-width: 100%;
    line-height: 1.5;
    padding: 0 0.5rem;
  }
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .thoughts-grid {
    grid-template-columns: 1fr;
  }
  .thought-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .thought-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .thought-footer .read-more {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 1.5rem;
  }
}
@media screen and (max-width: 360px) {
  .page-title {
    font-size: 1.8rem;
  }
  .portrait-container {
    width: 100%;
    height: 250px;
    max-width: 250px;
  }
  .portrait-image {
    object-position: center -5px;
  }
}
@media screen and (max-width: 480px) {
  .site-nav input ~ .trigger {
    min-width: 120px;
    padding: 3px 8px;
  }
  .site-nav input:checked ~ .trigger {
    padding-bottom: 3px;
  }
  .site-nav .page-link {
    padding: 4px 8px;
    margin-left: 15px;
    font-size: 14px;
  }
  .site-nav label[for=nav-trigger] {
    width: 28px;
    height: 28px;
  }
  .site-nav .menu-icon {
    width: 28px;
    height: 22px;
    padding-top: 6px;
  }
  .site-nav .menu-icon > svg {
    width: 16px;
    height: 13px;
  }
}
@media screen and (max-width: 480px) {
  .site-footer .footer-row {
    gap: 1rem;
  }
  .site-footer .footer-description {
    font-size: 0.85rem;
  }
}

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