*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
  line-height: 1.6;
  color: #1f2937;
  background-color: #f9fafb;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: #1f2937;
}

h1 {
  font-size: clamp(2rem, 4vw + 1.5rem, 3rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw + 1rem, 2rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw + 1rem, 1.5rem);
}

h4 {
  font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
}

h5 {
  font-size: clamp(0.8rem, 1vw + 0.6rem, 0.875rem);
}

h6 {
  font-size: clamp(0.8rem, 1vw + 0.6rem, 0.875rem);
}

p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
a:hover {
  color: rgb(11.1512195122, 99.1219512195, 242.8487804878);
}
a:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.25rem;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

input, textarea, select {
  font-family: inherit;
  font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
  line-height: 1.5;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.5rem;
  transition: border-color 0.2s ease-in-out;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
button:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

th, td {
  padding: 0.5rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

th {
  font-weight: 600;
  background-color: #f8fafc;
}

blockquote {
  margin: 1.5rem 0;
  padding: 1.5rem;
  border-left: 4px solid #3b82f6;
  background-color: #f8fafc;
  font-style: italic;
}
blockquote p:last-child {
  margin-bottom: 0;
}

code {
  background-color: #f8fafc;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: "Fira Code", "Courier New", monospace;
  font-size: 0.9em;
}

pre {
  background-color: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}
pre code {
  background: none;
  padding: 0;
}

hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 2rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 2rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

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

.mb-0 {
  margin-bottom: 0;
}

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

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

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

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

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

.mt-0 {
  margin-top: 0;
}

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

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

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

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

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

.site-header {
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
  transition: all 0.3s ease-in-out;
}
.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
}

.site-branding .site-title a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e88e5;
  text-decoration: none;
}
.site-branding .site-title a:hover {
  color: rgb(21.5458167331, 109.3864541833, 186.4541832669);
}
.site-branding .site-description {
  display: none;
}

.main-navigation,
.mobile-menu-toggle {
  display: none;
}

.header-search .search-form {
  display: flex;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  overflow: hidden;
}
.header-search .search-form .search-field {
  border: none;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  background-color: transparent;
}
.header-search .search-form .search-field:focus {
  outline: none;
  box-shadow: none;
}
.header-search .search-form .search-submit {
  background-color: #1e88e5;
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s;
}
.header-search .search-form .search-submit:hover {
  background-color: rgb(21.5458167331, 109.3864541833, 186.4541832669);
}

.site-footer {
  background-color: #111827;
  color: #9ca3af;
  padding: 2rem 0;
  margin-top: 3rem;
  font-size: clamp(0.8rem, 1vw + 0.6rem, 0.875rem);
}
.site-footer a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.site-footer a:hover {
  color: #fff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media (max-width: 420px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

.footer-copyright p {
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}
.footer-social .social-link {
  font-size: 1.25rem;
}

.newsletter-signup {
  margin-top: 1rem;
}
.newsletter-signup .newsletter-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media (max-width: 420px) {
  .newsletter-signup .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
}
.newsletter-signup .newsletter-form .newsletter-email {
  flex: 1;
  min-width: 200px;
}
@media (max-width: 420px) {
  .newsletter-signup .newsletter-form .newsletter-email {
    min-width: auto;
  }
}
.newsletter-signup .newsletter-form .newsletter-submit {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #3b82f6;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  font-size: clamp(0.8rem, 1vw + 0.6rem, 0.875rem);
  font-weight: 500;
  line-height: 1.25;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}
.newsletter-signup .newsletter-form .newsletter-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.newsletter-signup .newsletter-form .newsletter-submit:active {
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 99;
}
.back-to-top:hover {
  background-color: rgb(11.1512195122, 99.1219512195, 242.8487804878);
  transform: translateY(-2px);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 420px) {
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 2rem);
  padding: 2rem 0;
  min-height: calc(100vh - 200px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 769px) {
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 769px) {
  .archive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.content-sidebar {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 769px) {
  .content-sidebar {
    grid-template-columns: 2fr 1fr;
  }
}

@media (max-width: 420px) {
  .sidebar {
    order: -1;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 421px) and (max-width: 768px) {
  .card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 769px) {
  .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.masonry-grid {
  -moz-columns: 1;
  columns: 1;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
}
@media (min-width: 421px) and (max-width: 768px) {
  .masonry-grid {
    -moz-columns: 2;
    columns: 2;
  }
}
@media (min-width: 769px) {
  .masonry-grid {
    -moz-columns: 3;
    columns: 3;
  }
}
.masonry-grid .masonry-item {
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

.flex-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.flex-grid .flex-item {
  flex: 1 1 100%;
}
@media (min-width: 421px) and (max-width: 768px) {
  .flex-grid .flex-item {
    flex: 1 1 calc(50% - 0.75rem);
  }
}
@media (min-width: 769px) {
  .flex-grid .flex-item {
    flex: 1 1 calc(33.333% - 1rem);
  }
}
@media (min-width: 1200px) {
  .flex-grid .flex-item {
    flex: 1 1 calc(25% - 1.125rem);
  }
}

.grid-gap-sm {
  gap: 0.5rem;
}

.grid-gap-md {
  gap: 1rem;
}

.grid-gap-lg {
  gap: 1.5rem;
}

.grid-gap-xl {
  gap: 2rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 420px) {
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 421px) and (max-width: 768px) {
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 769px) {
  .grid-cols-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid-center {
  justify-items: center;
  align-items: center;
}

.grid-start {
  justify-items: start;
  align-items: start;
}

.grid-end {
  justify-items: end;
  align-items: end;
}

.grid-padding {
  padding: 1.5rem;
}
@media (max-width: 420px) {
  .grid-padding {
    padding: 1rem;
  }
}

.container-sm {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 2rem);
}

.container-md {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 2rem);
}

.container-lg {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 2rem);
}

.container-xl {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 2rem);
}

.card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card__thumbnail {
  position: relative;
  overflow: hidden;
}
.card__thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.card__category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #3b82f6;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: clamp(0.8rem, 1vw + 0.6rem, 0.875rem);
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
}

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

.card__meta {
  font-size: clamp(0.8rem, 1vw + 0.6rem, 0.875rem);
  color: #6b7280;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.card__meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.card__title {
  font-size: clamp(1.2rem, 2vw + 1rem, 1.5rem);
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1rem 0;
}
.card__title a {
  color: inherit;
  text-decoration: none;
}
.card__title a:hover {
  color: #3b82f6;
}

.card__excerpt {
  color: #6b7280;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card__footer .read-more-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #3b82f6;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  font-size: clamp(0.8rem, 1vw + 0.6rem, 0.875rem);
  font-weight: 500;
  line-height: 1.25;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem 1.5rem;
}
.card__footer .read-more-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.card__footer .read-more-btn:active {
  transform: translateY(0);
}
.card__footer .card__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.card__footer .card__tags .tag-link {
  font-size: clamp(0.8rem, 1vw + 0.6rem, 0.875rem);
  color: #6b7280;
  background-color: #f9fafb;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-decoration: none;
}
.card__footer .card__tags .tag-link:hover {
  background-color: #e5e7eb;
  color: #1f2937;
}

.single-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.post-header {
  text-align: center;
  margin-bottom: 3rem;
}
.post-header .post-category {
  display: inline-block;
  background-color: #3b82f6;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 4px;
  font-size: clamp(0.8rem, 1vw + 0.6rem, 0.875rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.post-header .post-title {
  font-size: clamp(1.5rem, 3vw + 1rem, 2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: #1f2937;
}
@media (max-width: 420px) {
  .post-header .post-title {
    font-size: clamp(1.5rem, 3vw + 1rem, 2rem);
  }
}
.post-header .post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: clamp(0.8rem, 1vw + 0.6rem, 0.875rem);
  color: #6b7280;
}
@media (max-width: 420px) {
  .post-header .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.post-header .post-meta .post-date,
.post-header .post-meta .post-author,
.post-header .post-meta .post-reading-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.post-header .post-meta .post-author {
  font-weight: 500;
  color: #1f2937;
}

.post-featured-image {
  margin-bottom: 3rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
  line-height: 1.75;
  color: #1f2937;
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1f2937;
}
.post-content h2 {
  font-size: clamp(1.5rem, 3vw + 1rem, 2rem);
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.5rem;
}
.post-content h3 {
  font-size: clamp(1.2rem, 2vw + 1rem, 1.5rem);
}
.post-content p {
  margin-bottom: 1.5rem;
}
.post-content ul, .post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.post-content ul li, .post-content ol li {
  margin-bottom: 0.5rem;
}
.post-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #f8fafc;
  border-left: 4px solid #3b82f6;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw + 1rem, 1.5rem);
}
.post-content blockquote p {
  margin-bottom: 0;
}
.post-content blockquote p:last-child {
  margin-bottom: 0;
}
.post-content blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: clamp(0.8rem, 1vw + 0.6rem, 0.875rem);
  color: #6b7280;
  font-style: normal;
}
.post-content pre {
  background-color: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid #e5e7eb;
}
.post-content pre code {
  background: none;
  padding: 0;
  color: #1f2937;
}
.post-content code {
  background-color: #f8fafc;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: "Fira Code", "Courier New", monospace;
  font-size: 0.9em;
  color: #1f2937;
}
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.post-content table th, .post-content table td {
  padding: 0.5rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}
.post-content table th {
  background-color: #f8fafc;
  font-weight: 600;
}
.post-content table tr:last-child td {
  border-bottom: none;
}
.post-content a {
  color: #3b82f6;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.post-content a:hover {
  color: rgb(11.1512195122, 99.1219512195, 242.8487804878);
}

.post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.post-tags {
  margin-bottom: 1.5rem;
}
.post-tags .tags-title {
  font-size: clamp(0.8rem, 1vw + 0.6rem, 0.875rem);
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.post-tags .tags-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.post-tags .tags-list .tag {
  background-color: #f8fafc;
  color: #1f2937;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: clamp(0.8rem, 1vw + 0.6rem, 0.875rem);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  border: 1px solid #e5e7eb;
}
.post-tags .tags-list .tag:hover {
  background-color: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.author-bio {
  background-color: #f9fafb;
  border-radius: 16px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: box-shadow 0.3s ease-in-out;
  margin-bottom: 2rem;
}
.author-bio:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.author-bio .author-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.author-bio .author-header .author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.author-bio .author-header .author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.author-bio .author-header .author-info .author-name {
  font-size: clamp(1.5rem, 3vw + 1rem, 2rem);
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}
.author-bio .author-header .author-info .author-title {
  font-size: clamp(0.8rem, 1vw + 0.6rem, 0.875rem);
  color: #6b7280;
}
.author-bio .author-description {
  font-size: clamp(0.8rem, 1vw + 0.6rem, 0.875rem);
  line-height: 1.75;
  color: #6b7280;
}

.related-posts {
  margin-top: 3rem;
}
.related-posts .related-title {
  font-size: clamp(2rem, 4vw + 1.5rem, 3rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1f2937;
}
.related-posts .related-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 421px) and (max-width: 768px) {
  .related-posts .related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 769px) {
  .related-posts .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.social-sharing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.social-sharing .share-title {
  font-size: clamp(0.8rem, 1vw + 0.6rem, 0.875rem);
  font-weight: 600;
  color: #1f2937;
}
.social-sharing .share-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.social-sharing .share-buttons .share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.social-sharing .share-buttons .share-button.facebook {
  background-color: #1877f2;
}
.social-sharing .share-buttons .share-button.twitter {
  background-color: #1da1f2;
}
.social-sharing .share-buttons .share-button.linkedin {
  background-color: #0077b5;
}
.social-sharing .share-buttons .share-button.whatsapp {
  background-color: #25d366;
}
.social-sharing .share-buttons .share-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.comments-section {
  margin-top: 3rem;
}
.comments-section .comments-title {
  font-size: clamp(2rem, 4vw + 1.5rem, 3rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1f2937;
}
.comments-section .comment-form {
  background-color: #f9fafb;
  border-radius: 16px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: box-shadow 0.3s ease-in-out;
  margin-bottom: 2rem;
}
.comments-section .comment-form:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.comments-section .comment-form .form-group {
  margin-bottom: 1rem;
}
.comments-section .comment-form .form-group label {
  display: block;
  font-size: clamp(0.8rem, 1vw + 0.6rem, 0.875rem);
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #1f2937;
}
.comments-section .comment-form .form-group input,
.comments-section .comment-form .form-group textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-size: clamp(0.8rem, 1vw + 0.6rem, 0.875rem);
}
.comments-section .comment-form .form-group input:focus,
.comments-section .comment-form .form-group textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.comments-section .comment-form .form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.comments-section .comment-form .submit-button {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #3b82f6;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  font-size: clamp(0.8rem, 1vw + 0.6rem, 0.875rem);
  font-weight: 500;
  line-height: 1.25;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.comments-section .comment-form .submit-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.comments-section .comment-form .submit-button:active {
  transform: translateY(0);
}
/*# sourceMappingURL=main.css.map */
