:root {
  --primary-color: #A4B494;
  --text-color: #1a1a1a;
  --bg-light: #f8f9fa;
  --transition: all 0.3s ease;
}

/* Font Integration */
@font-face {
  font-family: 'Intro Rust';;
  src: url('/fonts/introrust-base.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
  }

  .logo-container {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
  }
  
  .logo-container:hover {
    transform: scale(1.02);
  }
  
  .logo-text {
    font-family: 'Intro Rust' !important;
    font-size: clamp(3rem, 8vw, 8rem);
    letter-spacing: 0.08em;
    color: var(--primary);
    font-weight: normal;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    overflow: visible;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 0;
  }
  
  .logo-part {
    display: inline-block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
    position: relative;
    transform-origin: center;
  }
  
  .hide-letter {
    opacity: 1;
    transition: opacity 0.4s ease;
  }
  
  .logo-container.clicked .hide-letter {
    opacity: 0;
  }
  
  .logo-container.clicked .logo-r {
    animation: moveToTopLeft 6s ease-in-out forwards;
    z-index: 10000;
  }
  
  .logo-container.clicked .logo-q {
    animation: moveToBottomRight 6s ease-in-out forwards;
    z-index: 10000;
  }
  
  .logo-container.clicked {
    pointer-events: none;
    background: transparent;
  }
  
  .loader.fade-out {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0s;
    pointer-events: none;
  }
  
  @keyframes moveToTopLeft {
    0% {
      transform: translate(0, 0) scale(1);
      opacity: 1;
    }
    20% {
      opacity: 1;
    }
    100% {
      transform: translate(-100vw, -100vh) scale(1);
      opacity: 1;
    }
  }
  
  @keyframes moveToBottomRight {
    0% {
      transform: translate(0, 0) scale(1);
      opacity: 1;
    }
    20% {
      opacity: 1;
    }
    100% {
      transform: translate(100vw, 100vh) scale(1);
      opacity: 1;
    }
  }

  @keyframes textReveal {
    0% {
      opacity: 0;
      transform: translateY(20px) scale(0.95);
      filter: blur(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }
  }
/* Base Styles */
.blog-detail-page {
  background-color: #ffffff;
  color: var(--text-color);
  font-family: 'Poppins', sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Navigation Styles */
.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.5rem 2rem;
  width: auto;
  position: sticky;
  top: 0;
  right: 0;
  z-index: 1000;
  background: var(--light);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: 'Intro Rust', sans-serif;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-light);
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link.active {
  color: var(--primary);
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1000;
  color: var(--dark);
}

.hamburger-menu svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.hamburger-line {
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-menu.active {
  color: var(--light);
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: black;
  z-index: 999;
  transition: all 0.4s ease;
  display: none;
}

.mobile-menu.active {
  right: 0;
  display: block;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  gap: 2rem;
}

.mobile-menu .nav-link {
  font-size: 1.5rem;
  color: var(--light);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.mobile-menu.active .nav-link {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Menu Link Delays */
.mobile-menu .nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu .nav-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu .nav-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu .nav-link:nth-child(4) { transition-delay: 0.4s; }

/* Media Queries */
@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }
  
  .desktop-nav {
    display: none;
  }

  .main-nav {
    padding: 1rem;
    top: 0px;
    width: auto;
    right: 0;
  }

  .mobile-menu {
    display: block;
  }
}

@media (min-width: 769px) {
  .hamburger-menu {
    display: none;
  }

  .desktop-nav {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hamburger-menu {
    width: 44px;
    height: 44px;
    padding: 10px;
    bottom: 20px;
  }

  .hamburger-line {
    width: 20px;
  }

  .mobile-menu .nav-link {
    font-size: 20px;
    margin: 16px 0;
  }
}

/* Hero Section */
.blog-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.8) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  color: #ffffff;
  z-index: 2;
}

.article-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  font-size: 14px;
}

.article-category {
  color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
}

.article-title {
  font-family: 'Intro Rust';
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 32px;
  max-width: 900px;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

.author-info {
  line-height: 1.4;
}

.author-name {
  font-family: 'Intro Rust';
  font-size: 18px;
  display: block;
}

/* Content Layout */
.content-wrapper {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 32px;
}

.article-content {
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.lead-paragraph {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    line-height: 1.9;
    color: #333;
    font-weight: 500;
    margin-bottom: 50px;
}

/* Section Styles */
.section-title {
    font-family: 'Intro Rust';
  font-size: 48px;
  margin-bottom: 32px;
  color: #1a1a1a;
}

.section-content {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    line-height: 1.9;
    color: #444;
}

.section-content p {
  margin-bottom: 32px;
}

/* Quote Styles */
.article-quote-wrapper {
  margin: 80px 0;
  padding: 0 20px;
}

.article-quote {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  background-color: #f8f9fa;
  border-radius: 4px;
}

.quote-mark {
  position: absolute;
  top: -30px;
  left: -20px;
    font-family: 'Poppins', sans-serif;
  font-size: 120px;
  color: var(--primary-color);
  opacity: 0.15;
}

.article-quote blockquote {
    font-family: 'Poppins', sans-serif;
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.article-quote cite {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #666;
}

/* Trend Grid */
.trend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0;
}

.trend-item {
  padding: 32px;
  background-color: #f8f9fa;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.trend-number {
    font-family: 'Poppins', sans-serif;
  font-size: 48px;
  color: var(--primary-color);
  opacity: 0.3;
  margin-bottom: 24px;
}

.trend-item h3 {
    font-family: 'Intro Rust';
  font-size: 24px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

/* Full Width Gallery */
.full-width-gallery {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 80px 0;
  background-color: #f8f9fa;
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.gallery-item {
  margin: 0;
}

.gallery-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.02);
}

.gallery-item figcaption {
  margin-top: 16px;
    font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #666;
  text-align: center;
}

/* Article Footer */
.article-footer {
  margin: 80px 0;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.tag {
    font-family: 'Poppins', sans-serif;
  padding: 8px 20px;
  background-color: #f8f9fa;
  border-radius: 24px;
  font-size: 14px;
  color: #666;
  transition: all 0.3s ease;
}

.tag:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 24px;
}

.share-label {
   font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #666;
}

.share-buttons {
  display: flex;
  gap: 16px;
}

.share-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 24px;
    font-family: 'Poppins', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.share-icon {
  font-size: 18px;
}

.share-button.linkedin {
  background-color: var(--primary-color);
  color: white;
}

.share-button.twitter {
  background-color: #8FA67F;
  color: white;
}

.share-button.facebook {
  background-color: #B9C7AD;
  color: white;
}

.share-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(164, 180, 148, 0.2);
  opacity: 0.9;
}

/* Related Articles */
.related-articles {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 80px 0;
  background-color: #f8f9fa;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.related-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background-color: #ffffff;
  transition: transform 0.3s ease;
}

.card-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.4));
}

.card-content {
  padding: 32px;
}

.card-category {
    font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--primary-color);
  margin-bottom: 16px;
  display: block;
}

.related-card h3 {
    font-family: 'Intro Rust';
  font-size: 24px;
  margin-bottom: 24px;
  line-height: 1.3;
}

.related-card .read-more {
    font-family: 'Poppins', sans-serif;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.related-card:hover {
  transform: translateY(-4px);
}

.related-card:hover img {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .article-title {
    font-size: 48px;
  }
  
  .trend-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-content {
    bottom: 10%;
  }

  .article-title {
    font-size: 36px;
  }

  .lead-paragraph {
    font-size: 20px;
  }

  .section-title {
    font-size: 36px;
  }

  .trend-grid,
  .gallery-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .article-quote blockquote {
    font-size: 24px;
  }

  .gallery-item img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .article-title {
    font-size: 34px;
  }

  .article-meta {
    flex-direction: column;
    gap: 8px;
  }

  .article-quote {
    padding: 32px 24px;
  }

  .article-share {
    flex-direction: column;
    align-items: flex-start;
  }

  .share-buttons {
    width: 100%;
    flex-direction: column;
  }

  .share-button {
    width: 100%;
    justify-content: center;
  }
}

/* Footer Styles */
.elegant-footer {
  background-color: #ffffff;
  padding: 80px 0 40px;
  margin-top: 80px;
  border-top: 1px solid var(--bg-light);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-name {
    font-family: 'Intro Rust';
  font-size: 36px;
  color: var(--text-color);
  margin: 0;
}

.brand-tagline {
    font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #666;
  margin: 0;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.social-link {
    font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.elegant-icon {
  font-size: 18px;
  color: var(--primary-color);
}

.social-link:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.nav-column h3 {
    font-family: 'Intro Rust', sans-serif;
  font-size: 18px;
  color: var(--text-color);
  margin: 0 0 24px 0;
}

.nav-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-column ul li {
  margin-bottom: 12px;
}

.nav-column ul li a {
    font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: var(--transition);
}

.nav-column ul li a:hover {
  color: var(--primary-color);
}

.contact-info .contact-detail {
  margin-bottom: 16px;
}

.contact-detail .label {
    font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #666;
  display: block;
  margin-bottom: 4px;
}

.contact-detail a {
    font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-detail a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--bg-light);
}

.copyright {
    font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #666;
  margin: 0;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.legal-links a {
    font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: var(--transition);
}

.legal-links a:hover {
  color: var(--primary-color);
}

.separator {
  color: #666;
}

/* Additional Responsive Styles */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .elegant-footer {
    padding: 40px 0 20px;
  }

  .brand-name {
    font-size: 28px;
  }

  .nav-column {
    margin-bottom: 30px;
  }
}

/* Main Content Adjustments */


.article-content {
  background-color: #ffffff;
  padding: 40px 0;
}

.content-wrapper {
  position: relative;
  background-color: #ffffff;
  padding: 40px 56px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Additional Mobile Styles */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .mobile-menu.active {
    display: block;
  }

  .main-content {
    padding-top: 60px;
  }

  .content-wrapper {
    padding: 20px;
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* Loading Screen */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

.logo-container {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
}

.logo-container:hover {
  transform: scale(1.02);
}

.logo-text {
  font-family: 'Intro Rust' !important;
  font-size: clamp(3rem, 8vw, 8rem);
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: normal;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  overflow: visible;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 0;
}

.logo-part {
  display: inline-block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
  position: relative;
  transform-origin: center;
}

.hide-letter {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.logo-container.clicked .hide-letter {
  opacity: 0;
}

.logo-container.clicked .logo-r {
  animation: moveToTopLeft 6s ease-in-out forwards;
  z-index: 10000;
}

.logo-container.clicked .logo-q {
  animation: moveToBottomRight 6s ease-in-out forwards;
  z-index: 10000;
}

.logo-container.clicked {
  pointer-events: none;
  background: transparent;
}

.loader.fade-out {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s;
  pointer-events: none;
}

@keyframes moveToTopLeft {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translate(-100vw, -100vh) scale(1);
    opacity: 1;
  }
}

@keyframes moveToBottomRight {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translate(100vw, 100vh) scale(1);
    opacity: 1;
  }
}

@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Content Animations */
[data-scroll="fade-up"] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-scroll="fade-up"].fade-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Main Content Initial State */
#main-content {
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Additional Animation Classes */
.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
}

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* Fade In Delay Classes */
.fade-delay-1 {
  animation-delay: 0.2s;
}

.fade-delay-2 {
  animation-delay: 0.4s;
}

.fade-delay-3 {
  animation-delay: 0.6s;
} 
/* ==========================
   AUTHOR BOX
========================== */

/* Blog Author Box */

.blog-author-box {
    transition: all .3s ease;
}

.blog-author-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    margin: 60px 0;
    padding: 35px 40px;
    background: #f8f8f8;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
}

.blog-author-image {
    flex: 0 0 170px;
}

.blog-author-image img {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #687b4d;
}

.blog-author-details h3 {
    font-size: 14px;
    color: #687b4d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-author-details h4 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #222;
}

.blog-author-role {
    color: #687b4d;
    font-weight: 600;
    margin-bottom: 18px;
}

.blog-author-details p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.blog-author-link {
    display: inline-block;
    color: #0A66C2;
    font-weight: 600;
    text-decoration: none;
}

.blog-author-link:hover {
    opacity: 0.8;
}

@media (max-width:768px) {
    .blog-author-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .blog-author-image img {
        width: 120px;
        height: 120px;
    }
}