/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #131415;
  color: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: #C29F7B;
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  padding: 18px 0;
  transition: background 0.5s ease-in-out;
}

.header.scrolled {
  background: #131415 !important;
  padding: 12px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  position: relative;
  z-index: 1000;
  font-family: 'Courgette', cursive;
  font-size: 28px;
  font-weight: 500;
  color: #C19F7D;
  letter-spacing: 0;
}

.logo:hover {
  color: #C29F7D;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-desktop a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #CCC;
  transition: color 0.5s ease-in-out;
}

.nav-desktop a:hover {
  color: #C19F7D;
}

.nav-desktop .client-dashboard {
  color: #C19F7D;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1000;
  position: relative;
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
  display: block;
  width: 25px;
  height: 2px;
  background: #CCC;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.hamburger-icon {
  position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger-icon::before {
  top: -8px;
}

.hamburger-icon::after {
  top: 8px;
}

.nav-toggle.active .hamburger-icon {
  background: transparent;
}

.nav-toggle.active .hamburger-icon::before {
  top: 0;
  transform: rotate(45deg);
  background: #FFF;
}

.nav-toggle.active .hamburger-icon::after {
  top: 0;
  transform: rotate(-45deg);
  background: #FFF;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #131415;
  padding: 100px 20px 40px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  z-index: 999;
  overflow-y: auto;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #CCC;
}

.nav-mobile a:hover {
  color: #FFF;
}

.nav-mobile .client-dashboard {
  color: #C19F7D;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  background-color: #131415;
  background-image: url('../images/02-scaled.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #C29F7D;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(19, 20, 21, 0.8);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1140px;
}

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 0;
  color: #FFF;
}

.hero h1 span {
  color: #C29F7D;
}

.hero h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #C5C8CC;
  margin-bottom: 50px;
  line-height: 40px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 88px;
  margin: 40px auto 0;
}

.partner-logos img {
  opacity: 1;
  transition: opacity 0.3s ease;
  width: 127px;
  height: auto;
}

.partner-logos img:hover {
  opacity: 0.7;
}

/* Section Divider */
.section-divider {
  height: 1px;
  background: #1A1A1B;
  margin: 0;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: #131415;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: start;
  padding: 0 10px;
}

.about-content .accent {
  color: #C29F7C;
  font-weight: 600;
}

.about-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.5;
  color: #727170;
}

/* Client Slider */
.client-slider {
  padding: 60px 0;
  overflow: hidden;
  background: #131415;
}

.slider-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.slider-track:hover {
  animation-play-state: paused;
}

.slider-track img {
  height: 35px;
  width: auto;
  margin: 0 40px;
  opacity: 0.4;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.slider-track img:hover {
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Featured Work Section */
.featured-work {
  padding: 100px 0;
  background: #131415;
}

.section-header {
  text-align: start;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 20px;
  color: #FFF;
}

.section-header h2 span {
  color: #C29F7C;
}

.section-header p {
  font-family: 'Inter', sans-serif;
  font-size: 1.3125rem;
  font-weight: 400;
  color: #727170;
  max-width: 700px;
  margin: 0;
  line-height: 31.5px;
  text-align: start;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.portfolio-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #7A7A7A;
  margin-bottom: 16px;
}

.portfolio-name {
  font-weight: 900;
  color: #C79F78;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 6/7;
  cursor: pointer;
  display: block;
  transition: box-shadow 0.3s ease;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.portfolio-item .wireframe {
  opacity: 1;
  z-index: 1;
  object-fit: cover;
  background: #1D1D1F;
}

.portfolio-item .screenshot {
  opacity: 0;
  z-index: 2;
}

.portfolio-item:hover .wireframe {
  opacity: 0;
}

.portfolio-item:hover .screenshot {
  opacity: 1;
}

/* Glow colors for each project */
.portfolio-project:nth-child(1) .portfolio-item:hover {
  box-shadow: 0 0 10px 0 #2928B4;
}

.portfolio-project:nth-child(2) .portfolio-item:hover {
  box-shadow: 0 0 10px 0 #2890CF;
}

.portfolio-project:nth-child(3) .portfolio-item:hover {
  box-shadow: 0 0 10px 0 #2693CE;
}

.portfolio-project:nth-child(4) .portfolio-item:hover {
  box-shadow: 0 0 10px 0 #17CE7F;
}

.portfolio-project:nth-child(5) .portfolio-item:hover {
  box-shadow: 0 0 10px 0 #A236C9;
}

.portfolio-project:nth-child(6) .portfolio-item:hover {
  box-shadow: 0 0 10px 0 #2293E0;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.portfolio-visit {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  color: #C29F7C;
  font-weight: 600;
  font-size: 13px;
}

.portfolio-item:hover .portfolio-visit {
  opacity: 1;
  transform: translateY(0);
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: #131415;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 30px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-icon svg {
  width: 28px;
  height: 28px;
}

.services-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 20px;
  color: #FFF;
}

.services-header h2 span {
  color: #C29F7C;
}

.services-header p {
  font-family: 'Inter', sans-serif;
  font-size: 1.3125rem;
  font-weight: 400;
  color: #C5C8CC;
  line-height: 31.5px;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.service-box {
  padding: 30px 30px 15px 30px;
  margin: 0 10px 25px 10px;
  background: transparent;
  border-radius: 10px;
  border: 1px solid #2F2F2F;
  transition: all 0.3s ease;
}

.service-box:hover {
  background: #1D1D1F;
  border-color: #C29F7C;
}

.service-box h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 12px;
  color: #FFF;
}

.service-box p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #C5C8CC;
  line-height: 31.5px;
}

.service-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  padding-top: 50px;
  border-top: 1px solid #1A1A1B;
}

.service-column h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 60px;
  margin-bottom: 20px;
  color: #C5C8CC;
  border-bottom: 1px solid #C29F7C;
  padding-bottom: 10px;
}

.service-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-column li a,
.service-column li span {
  font-size: 16px;
  color: #727170;
  transition: color 0.3s ease;
  display: block;
}

.service-column li a:hover {
  color: #C29F7C;
}

.service-column li span {
  cursor: default;
  color: #727170;
}

/* Brands Section */
.brands-section {
  padding: 100px 0;
  background: #131415;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1140px;
  margin: 0 auto;
}

.brand-card {
  background: #1D1D1F;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 194px;
  transition: background 0.3s ease;
}

.brands-grid img {
  width: 46%;
  height: auto;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.brands-grid img:hover {
  opacity: 1;
}

/* Contact Section */
.contact-section {
  padding: 100px 0 91px;
  background: #131415;
  border-top: 1px solid #1A1A1B;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-logo {
  max-width: 120px;
  margin-bottom: 30px;
}

.contact-about {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #808080;
  line-height: 1.7;
  margin-bottom: 40px;
}

.office {
  margin-bottom: 30px;
}

.office h4 {
  font-family: 'Inter', sans-serif;
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #C5C8CC;
}

.office p {
  font-size: 16px;
  color: #808080;
  margin-bottom: 4px;
  line-height: 23px;
}

.office .hours {
  color: #CCCCCC;
}

.office .phone {
  color: #9c8065;
  font-weight: 800;
}

.contact-links {
  margin-top: 30px;
}

.contact-links a {
  display: block;
  font-size: 19.2px;
  font-weight: 600;
  color: #C29F7C;
  margin-bottom: 8px;
}

.contact-links a:hover {
  color: #FFF;
}

.social-links {
  margin-top: 30px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  color: #131415;
  background: #C29F7C;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #C19F7D;
}

.map-container {
  position: relative;
}

.map-container img {
  width: 100%;
  border-radius: 8px;
}

.map-hotspot {
  position: absolute;
  width: 27px;
  height: 27px;
  background: #C29F7D;
  border-radius: 50%;
  cursor: pointer;
  animation: pulse 2s infinite;
}

.map-hotspot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(194, 159, 124, 0.3);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.map-hotspot.uk {
  left: 8%;
  top: 46%;
}

.map-hotspot.us {
  left: 90%;
  top: 20%;
}

.map-tooltip {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  color: #000000;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #FFFFFF;
}

.map-tooltip img {
  width: 18px;
  height: auto;
}

.map-hotspot:hover .map-tooltip {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}

/* Hiring CTA */
.hiring-section {
  padding: 46px 0 80px;
  background: #131415;
  text-align: center;
}

.hiring-section a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #C5C8CC;
  border: 1px solid #C5C8CC;
  border-radius: 42px;
  padding: 12px 24px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.hiring-section a:hover {
  color: #C29F7C;
  border-color: #C29F7C;
}

.hiring-section a strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* Footer */
.footer {
  padding: 20px 0;
  background: #131415;
  border-top: 1px solid #1A1A1B;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer p {
  font-size: 16px;
  color: gray;
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  display: inline-block;
  padding: 13px 0;
  font-size: 14px;
  color: gray;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #C29F7C;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  
  .service-links {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .map-container {
    order: -1;
  }
  
  .contact-section {
    padding: 80px 0 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .partner-logos {
    gap: 24px 40px;
  }

  .partner-logos img {
    width: 100px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2rem;
    white-space: normal;
  }
  
  .hero h2 {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .section-header h2,
  .services-header h2 {
    font-size: 1.5rem;
  }

  .about-content p {
    font-size: 1.125rem;
  }

  .contact-section {
    padding: 50px 0 0;
  }
}

@media (max-width: 480px) {
  .partner-logos {
    gap: 20px 24px;
  }

  .partner-logos img {
    width: 80px;
  }

  .service-links {
    grid-template-columns: 1fr;
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .map-hotspot.uk {
    left: 8%;
    top: 46%;
  }

  .map-hotspot.us {
    left: 90%;
    top: 20%;
  }
}

/* ==========================================================================
   Blog
   ========================================================================== */

.blog-hero {
  padding: 160px 0 60px;
  background: #131415;
  background-image: url('../images/02-scaled.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  border-bottom: 2px solid #C29F7D;
  text-align: center;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(19, 20, 21, 0.8);
}

.blog-hero .container {
  position: relative;
  z-index: 1;
}

.blog-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #FFF;
  margin-bottom: 20px;
}

.blog-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #C5C8CC;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.blog-section {
  padding: 80px 0;
  background: #131415;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.post-card {
  padding: 30px;
  background: transparent;
  border-radius: 10px;
  border: 1px solid #2F2F2F;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  background: #1D1D1F;
  border-color: #C29F7C;
}

.post-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3em;
  margin-bottom: 12px;
}

.post-card h3 a {
  color: #C29F7C;
}

.post-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #C5C8CC;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.post-card .read-more {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #C29F7C;
  margin-bottom: 16px;
}

.post-card .read-more:hover {
  color: #FFF;
}

.post-meta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #727170;
  border-top: 1px solid #2F2F2F;
  padding-top: 16px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #C5C8CC;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background: #1D1D1F;
  color: #C29F7C;
}

.pagination .current {
  background: #C29F7C;
  color: #131415;
}

/* Single Post */
.post-hero {
  padding: 160px 0 40px;
  background: #131415;
  border-bottom: 2px solid #C29F7D;
  text-align: center;
}

.post-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #C29F7C;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.3em;
}

.post-meta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #C5C8CC;
}

.post-meta-bar .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #C29F7C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #131415;
  font-weight: 700;
  font-size: 14px;
}

.post-layout {
  padding: 80px 0;
  background: #131415;
}

.post-layout .container {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1000px;
}

.post-toc {
  position: sticky;
  top: 100px;
  border: 1px solid #2F2F2F;
  border-radius: 10px;
  padding: 20px;
}

.post-toc h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FFF;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.post-toc ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-toc a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #C29F7C;
  line-height: 1.4em;
  display: block;
}

.post-toc a:hover {
  color: #FFF;
}

.post-content {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #C5C8CC;
  max-width: 760px;
}

.post-content h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #FFF;
  margin: 40px 0 16px;
}

.post-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFF;
  margin: 32px 0 14px;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
  margin: 0 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-content a {
  color: #C29F7C;
  text-decoration: underline;
}

.post-content a:hover {
  color: #FFF;
}

.post-content strong {
  color: #FFF;
  font-weight: 600;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.post-content figure {
  margin: 20px 0;
}

.post-content blockquote {
  border-left: 3px solid #C29F7C;
  padding-left: 20px;
  color: #FFF;
  font-style: italic;
  margin: 20px 0;
}

.post-back {
  margin-bottom: 40px;
}

.post-back a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #C5C8CC;
}

.post-back a:hover {
  color: #C29F7C;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .post-layout .container {
    grid-template-columns: 1fr;
  }

  .post-toc {
    position: static;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 120px 0 50px;
  }

  .blog-hero h1 {
    font-size: 2rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .post-hero {
    padding: 120px 0 30px;
  }

  .post-hero h1 {
    font-size: 1.75rem;
  }

  .post-content {
    font-size: 16px;
  }
}