/* line 2, app/assets/stylesheets/blog/base/_reset.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

/* line 9, app/assets/stylesheets/blog/base/_reset.scss */
body {
  background-color: #171514;
  color: #FFEBD2;
  line-height: 1.6;
}

/* line 15, app/assets/stylesheets/blog/base/_reset.scss */
a {
  text-decoration: none;
  color: inherit;
}

/* line 2, app/assets/stylesheets/blog/base/_layout.scss */
.blog-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* line 8, app/assets/stylesheets/blog/base/_layout.scss */
.blog-main {
  flex: 1;
  width: 100%;
}

/* line 14, app/assets/stylesheets/blog/base/_layout.scss */
.search-container {
  max-width: 1320px;
  margin: 20px auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  /* line 14, app/assets/stylesheets/blog/base/_layout.scss */
  .search-container {
    padding: 0 20px;
  }
}

/* line 2, app/assets/stylesheets/blog/base/_grid.scss */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1320px;
  margin: 40px auto;
  padding: 0 40px;
}

@media (max-width: 1024px) {
  /* line 2, app/assets/stylesheets/blog/base/_grid.scss */
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* line 2, app/assets/stylesheets/blog/base/_grid.scss */
  .card-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

/* line 2, app/assets/stylesheets/blog/components/_header.scss */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #171514;
  width: 100%;
}

@media (min-width: 1440px) {
  /* line 2, app/assets/stylesheets/blog/components/_header.scss */
  .blog-header {
    padding: 20px calc($spacing-xxxl * 2);
  }
}

@media (min-width: 1920px) {
  /* line 2, app/assets/stylesheets/blog/components/_header.scss */
  .blog-header {
    padding: 20px calc($spacing-xxxl * 3);
  }
}

/* line 19, app/assets/stylesheets/blog/components/_header.scss */
.blog-header .blog-header-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* line 26, app/assets/stylesheets/blog/components/_header.scss */
.blog-header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* line 31, app/assets/stylesheets/blog/components/_header.scss */
.blog-header .logo img {
  height: 40px;
  width: auto;
}

/* line 38, app/assets/stylesheets/blog/components/_header.scss */
.blog-header .hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* line 49, app/assets/stylesheets/blog/components/_header.scss */
.blog-header .hamburger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #FFEBD2;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* line 58, app/assets/stylesheets/blog/components/_header.scss */
.blog-header .hamburger-menu:hover span {
  background-color: #FFDDB2;
}

/* line 64, app/assets/stylesheets/blog/components/_header.scss */
.blog-header .hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

/* line 68, app/assets/stylesheets/blog/components/_header.scss */
.blog-header .hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

/* line 72, app/assets/stylesheets/blog/components/_header.scss */
.blog-header .hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* line 78, app/assets/stylesheets/blog/components/_header.scss */
.blog-header .blog-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 0;
}

/* line 84, app/assets/stylesheets/blog/components/_header.scss */
.blog-header .blog-nav a {
  text-decoration: none;
  color: #FFEBD2;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

/* line 91, app/assets/stylesheets/blog/components/_header.scss */
.blog-header .blog-nav a:hover {
  color: #FFDDB2;
}

/* line 96, app/assets/stylesheets/blog/components/_header.scss */
.blog-header .blog-nav .try-button {
  background-color: #FFDDB2;
  color: #000000;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  margin-left: 20px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

/* line 107, app/assets/stylesheets/blog/components/_header.scss */
.blog-header .blog-nav .try-button:hover {
  background-color: #ffc67f;
  transform: translateY(-2px);
  box-shadow: -3px 6px 7.7px 1px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  /* line 2, app/assets/stylesheets/blog/components/_header.scss */
  .blog-header {
    flex-direction: column;
    padding: 20px;
  }
  /* line 120, app/assets/stylesheets/blog/components/_header.scss */
  .blog-header .blog-header-mobile {
    width: 100%;
  }
  /* line 124, app/assets/stylesheets/blog/components/_header.scss */
  .blog-header .hamburger-menu {
    display: flex;
  }
  /* line 128, app/assets/stylesheets/blog/components/_header.scss */
  .blog-header .blog-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #171514;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid #72674D;
    box-shadow: -3px 6px 7.7px 1px rgba(0, 0, 0, 0.25);
    z-index: 1000;
  }
  /* line 142, app/assets/stylesheets/blog/components/_header.scss */
  .blog-header .blog-nav.active {
    display: flex;
  }
  /* line 146, app/assets/stylesheets/blog/components/_header.scss */
  .blog-header .blog-nav a {
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }
  /* line 152, app/assets/stylesheets/blog/components/_header.scss */
  .blog-header .blog-nav .try-button {
    margin-left: 0;
    width: 100%;
  }
}

@media (min-width: 769px) {
  /* line 2, app/assets/stylesheets/blog/components/_header.scss */
  .blog-header {
    flex-direction: row;
  }
  /* line 163, app/assets/stylesheets/blog/components/_header.scss */
  .blog-header .blog-header-mobile {
    display: contents;
  }
  /* line 167, app/assets/stylesheets/blog/components/_header.scss */
  .blog-header .hamburger-menu {
    display: none !important;
  }
  /* line 171, app/assets/stylesheets/blog/components/_header.scss */
  .blog-header .blog-nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }
}

/* line 2, app/assets/stylesheets/blog/components/_search.scss */
.search-bar {
  display: flex;
  align-items: center;
  background-color: #000000;
  border: 1px solid #72674D;
  border-radius: 50px;
  padding: 12px 20px;
  box-shadow: -3px 6px 7.7px 1px rgba(0, 0, 0, 0.25);
}

/* line 11, app/assets/stylesheets/blog/components/_search.scss */
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  padding: 5px;
  background: transparent;
  color: #FFEBD2;
}

/* line 20, app/assets/stylesheets/blog/components/_search.scss */
.search-bar input::placeholder {
  color: #FFEBD2 !important;
  opacity: 0.6 !important;
}

/* line 25, app/assets/stylesheets/blog/components/_search.scss */
.search-bar input::-webkit-input-placeholder {
  /* Edge/Chromium */
  color: #FFEBD2 !important;
  opacity: 0.6 !important;
}

/* line 30, app/assets/stylesheets/blog/components/_search.scss */
.search-bar input::-moz-placeholder {
  /* Firefox 19+ */
  color: #FFEBD2 !important;
  opacity: 0.6 !important;
}

/* line 35, app/assets/stylesheets/blog/components/_search.scss */
.search-bar input:-ms-input-placeholder {
  /* IE 10+ */
  color: #FFEBD2 !important;
  opacity: 0.6 !important;
}

/* line 40, app/assets/stylesheets/blog/components/_search.scss */
.search-bar input:-moz-placeholder {
  /* Firefox 18- */
  color: #FFEBD2 !important;
  opacity: 0.6 !important;
}

/* line 46, app/assets/stylesheets/blog/components/_search.scss */
.search-bar .search-icon {
  color: #FFEBD2;
  opacity: 0.7;
  flex-shrink: 0;
}

/* line 2, app/assets/stylesheets/blog/components/_cards.scss */
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* line 9, app/assets/stylesheets/blog/components/_cards.scss */
.card {
  border-radius: 20px;
  overflow: hidden;
  background-color: #000000;
  border: 1px solid #72674D;
  box-shadow: -3px 6px 7.7px 1px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* line 17, app/assets/stylesheets/blog/components/_cards.scss */
.card:hover {
  transform: translateY(-5px);
  box-shadow: -24px 19px 40px 0 rgba(0, 0, 0, 0.25);
  border-color: #FFDDB2;
}

/* line 23, app/assets/stylesheets/blog/components/_cards.scss */
.card .card-image {
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* line 31, app/assets/stylesheets/blog/components/_cards.scss */
.card .card-image.coral-bg {
  background-color: #FFDDB2;
}

/* line 35, app/assets/stylesheets/blog/components/_cards.scss */
.card .card-image.green-bg {
  background-color: #72674D;
}

/* line 39, app/assets/stylesheets/blog/components/_cards.scss */
.card .card-image .icon {
  width: 150px;
  height: 150px;
}

/* line 45, app/assets/stylesheets/blog/components/_cards.scss */
.card .card-content {
  padding: 25px;
  background-color: #000000;
}

/* line 49, app/assets/stylesheets/blog/components/_cards.scss */
.card .card-content .card-category {
  font-size: 12px;
  margin-bottom: 10px;
  color: #A69785;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* line 58, app/assets/stylesheets/blog/components/_cards.scss */
.card .card-content .card-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #FFEBD2;
  font-family: "Otomanopee One", sans-serif;
}

/* line 67, app/assets/stylesheets/blog/components/_cards.scss */
.card .card-content .card-date {
  color: #A69785;
  font-size: 12px;
}

/* line 2, app/assets/stylesheets/blog/components/_pagination.scss */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 10px;
}

/* line 10, app/assets/stylesheets/blog/components/_pagination.scss */
.pagination {
  display: flex;
  gap: 5px;
  align-items: center;
}

/* line 15, app/assets/stylesheets/blog/components/_pagination.scss */
.pagination .page-item {
  list-style: none;
}

/* line 18, app/assets/stylesheets/blog/components/_pagination.scss */
.pagination .page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 5px 15px;
  text-decoration: none;
  color: #A69785;
  background-color: transparent;
  border: 1px solid #72674D;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* line 34, app/assets/stylesheets/blog/components/_pagination.scss */
.pagination .page-item .page-link:hover {
  color: #FFEBD2;
  border-color: #FFDDB2;
  background-color: rgba(114, 103, 77, 0.1);
}

/* line 41, app/assets/stylesheets/blog/components/_pagination.scss */
.pagination .page-item.active .page-link {
  color: #000000;
  background-color: #FFDDB2;
  border-color: #FFDDB2;
}

/* line 47, app/assets/stylesheets/blog/components/_pagination.scss */
.pagination .page-item.disabled .page-link {
  color: #A69785;
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* line 56, app/assets/stylesheets/blog/components/_pagination.scss */
.pagination .page-item.page-prev .page-link, .pagination .page-item.page-next .page-link {
  padding: 5px 20px;
}

@media (max-width: 768px) {
  /* line 67, app/assets/stylesheets/blog/components/_pagination.scss */
  .pagination .page-item:not(.page-prev):not(.page-next):not(.active) {
    display: none;
  }
  /* line 71, app/assets/stylesheets/blog/components/_pagination.scss */
  .pagination .page-item:nth-child(2), .pagination .page-item:nth-last-child(2) {
    display: block;
  }
}

/* line 2, app/assets/stylesheets/blog/components/_footer.scss */
.blog-footer {
  background-color: #171514;
  padding: 40px 0 20px;
  margin-top: 80px;
  border-top: 1px solid #72674D;
}

/* line 8, app/assets/stylesheets/blog/components/_footer.scss */
.blog-footer .blog-footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  /* line 8, app/assets/stylesheets/blog/components/_footer.scss */
  .blog-footer .blog-footer-container {
    padding: 0 20px;
  }
}

/* line 18, app/assets/stylesheets/blog/components/_footer.scss */
.blog-footer .blog-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

/* line 26, app/assets/stylesheets/blog/components/_footer.scss */
.blog-footer .blog-footer-section h4 {
  margin-bottom: 15px;
  font-size: 15px;
  color: #FFEBD2;
  font-family: "Otomanopee One", sans-serif;
}

/* line 33, app/assets/stylesheets/blog/components/_footer.scss */
.blog-footer .blog-footer-section p {
  margin-bottom: 10px;
  color: #A69785;
  font-size: 12px;
}

/* line 39, app/assets/stylesheets/blog/components/_footer.scss */
.blog-footer .blog-footer-section a {
  color: #FFEBD2;
  transition: color 0.2s ease;
}

/* line 43, app/assets/stylesheets/blog/components/_footer.scss */
.blog-footer .blog-footer-section a:hover {
  color: #FFDDB2;
}

/* line 49, app/assets/stylesheets/blog/components/_footer.scss */
.blog-footer .blog-social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

/* line 54, app/assets/stylesheets/blog/components/_footer.scss */
.blog-footer .blog-social-links .blog-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #FFDDB2;
  color: #000000;
  border-radius: 50%;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

/* line 66, app/assets/stylesheets/blog/components/_footer.scss */
.blog-footer .blog-social-links .blog-social-link:hover {
  background-color: #ffc67f;
  transform: translateY(-2px);
  box-shadow: -3px 6px 7.7px 1px rgba(0, 0, 0, 0.25);
}

/* line 72, app/assets/stylesheets/blog/components/_footer.scss */
.blog-footer .blog-social-links .blog-social-link i {
  font-size: 18px;
}

/* line 78, app/assets/stylesheets/blog/components/_footer.scss */
.blog-footer .blog-footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #72674D;
}

/* line 83, app/assets/stylesheets/blog/components/_footer.scss */
.blog-footer .blog-footer-bottom p {
  color: #A69785;
  font-size: 12px;
}

/* line 2, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  /* line 2, app/assets/stylesheets/blog/pages/_show.scss */
  .blog-post-container {
    padding: 0 20px;
  }
}

/* line 12, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-header {
  margin-bottom: 40px;
}

/* line 15, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-header .blog-post-hero {
  margin: 0 calc(-40px);
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 20px;
}

@media (max-width: 768px) {
  /* line 15, app/assets/stylesheets/blog/pages/_show.scss */
  .blog-post-header .blog-post-hero {
    margin: 0 calc(-20px);
    height: 250px;
  }
  /* line 25, app/assets/stylesheets/blog/pages/_show.scss */
  .blog-post-header .blog-post-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* line 32, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-header .blog-post-hero .hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

/* line 40, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-header .blog-post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

/* line 46, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-header .blog-post-meta .post-category {
  display: inline-block;
  padding: 5px 15px;
  background-color: #FFDDB2;
  color: #000000;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 58, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-header .blog-post-meta .post-date {
  color: #A69785;
  font-size: 12px;
}

/* line 64, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-header .blog-post-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #FFEBD2;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: "Otomanopee One", sans-serif;
}

@media (max-width: 768px) {
  /* line 64, app/assets/stylesheets/blog/pages/_show.scss */
  .blog-post-header .blog-post-title {
    font-size: 1.75rem;
  }
}

/* line 77, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-header .blog-post-excerpt {
  font-size: 1.25rem;
  color: #A69785;
  line-height: 1.6;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #72674D;
}

/* line 86, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-header .blog-post-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: #000000;
  border: 1px solid #72674D;
  border-radius: 20px;
}

/* line 95, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-header .blog-post-author .author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

/* line 102, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-header .blog-post-author .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 108, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-header .blog-post-author .author-avatar .author-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #72674D;
  color: #FFEBD2;
  font-weight: 500;
  font-size: 20px;
}

/* line 122, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-header .blog-post-author .author-info .author-name {
  font-weight: 500;
  color: #FFEBD2;
  margin-bottom: 5px;
}

/* line 128, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-header .blog-post-author .author-info .author-bio {
  font-size: 12px;
  color: #A69785;
  line-height: 1.4;
}

/* line 138, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-content {
  margin-bottom: 40px;
}

/* line 141, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-content .rich-text {
  color: #FFEBD2;
  line-height: 1.8;
  font-size: 20px;
}

/* line 146, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-content .rich-text h1, .blog-post-content .rich-text h2, .blog-post-content .rich-text h3, .blog-post-content .rich-text h4, .blog-post-content .rich-text h5, .blog-post-content .rich-text h6 {
  color: #FFEBD2;
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: "Otomanopee One", sans-serif;
  line-height: 1.3;
}

/* line 154, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-content .rich-text h2 {
  font-size: 1.75rem;
}

/* line 158, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-content .rich-text h3 {
  font-size: 1.5rem;
}

/* line 162, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-content .rich-text p {
  margin-bottom: 20px;
}

/* line 166, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-content .rich-text a {
  color: #FFDDB2;
  text-decoration: underline;
  transition: color 0.2s ease;
}

/* line 171, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-content .rich-text a:hover {
  color: #ffc67f;
}

/* line 176, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-content .rich-text ul, .blog-post-content .rich-text ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

/* line 180, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-content .rich-text ul li, .blog-post-content .rich-text ol li {
  margin-bottom: 10px;
  color: #FFEBD2;
}

/* line 186, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-content .rich-text blockquote {
  margin: 30px 0;
  padding-left: 20px;
  border-left: 4px solid #FFDDB2;
  color: #A69785;
  font-style: italic;
}

/* line 194, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-content .rich-text pre {
  background-color: #000000;
  border: 1px solid #72674D;
  border-radius: 20px;
  padding: 20px;
  overflow-x: auto;
  margin-bottom: 20px;
}

/* line 202, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-content .rich-text pre code {
  color: #FFEBD2;
  font-family: monospace;
  font-size: 15px;
}

/* line 209, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-content .rich-text img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  margin: 20px 0;
}

/* line 216, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-content .rich-text hr {
  border: none;
  height: 1px;
  background-color: #72674D;
  margin: 30px 0;
}

/* line 223, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-content .rich-text table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

/* line 228, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-content .rich-text table th, .blog-post-content .rich-text table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #72674D;
}

/* line 234, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-content .rich-text table th {
  font-weight: 500;
  color: #FFEBD2;
  background-color: rgba(114, 103, 77, 0.1);
}

/* line 240, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-content .rich-text table td {
  color: #FFEBD2;
}

/* line 248, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-tags {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #72674D;
}

/* line 253, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-tags .tags-title {
  font-size: 20px;
  font-weight: 500;
  color: #FFEBD2;
  margin-bottom: 15px;
  font-family: "Otomanopee One", sans-serif;
}

/* line 261, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-tags .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* line 266, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-tags .tags-list .tag {
  display: inline-block;
  padding: 5px 15px;
  background-color: transparent;
  color: #A69785;
  border: 1px solid #72674D;
  border-radius: 50px;
  font-size: 12px;
  transition: all 0.2s ease;
}

/* line 276, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-tags .tags-list .tag:hover {
  border-color: #FFDDB2;
  color: #FFEBD2;
}

/* line 285, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-navigation {
  margin-bottom: 80px;
}

/* line 288, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-navigation .back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #FFEBD2;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 30px;
  transition: all 0.2s ease;
}

/* line 298, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-navigation .back-to-blog:hover {
  color: #FFDDB2;
  transform: translateX(-5px);
}

/* line 303, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-navigation .back-to-blog svg {
  flex-shrink: 0;
}

/* line 308, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-navigation .related-posts {
  margin-top: 40px;
}

/* line 311, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-navigation .related-posts .related-title {
  font-size: 30px;
  font-weight: 500;
  color: #FFEBD2;
  margin-bottom: 20px;
  font-family: "Otomanopee One", sans-serif;
}

/* line 319, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-navigation .related-posts .related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* line 324, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-navigation .related-posts .related-grid .related-card {
  display: block;
  padding: 20px;
  background-color: #000000;
  border: 1px solid #72674D;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 333, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-navigation .related-posts .related-grid .related-card:hover {
  transform: translateY(-5px);
  box-shadow: -3px 6px 7.7px 1px rgba(0, 0, 0, 0.25);
  border-color: #FFDDB2;
}

/* line 340, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-navigation .related-posts .related-grid .related-card .related-content .related-category {
  font-size: 12px;
  color: #A69785;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

/* line 348, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-navigation .related-posts .related-grid .related-card .related-content .related-title {
  font-size: 15px;
  font-weight: 500;
  color: #FFEBD2;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* line 356, app/assets/stylesheets/blog/pages/_show.scss */
.blog-post-navigation .related-posts .related-grid .related-card .related-content .related-date {
  font-size: 12px;
  color: #A69785;
}
