/* Guide Page Specific Styles */
.guide-container {
  padding: 0 60px;
  max-width: 1440px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 36px 0 20px;
}

.breadcrumb-text {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #313131;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 15.4px;
  white-space: nowrap;
}

.breadcrumb-arrow {
  width: 6px;
  height: 6px;
  border-top: 2px solid #313131;
  border-right: 2px solid #313131;
  transform: rotate(45deg);
}

/* Page Title */
.guide-title {
  text-align: center;
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #111111;
  font-size: 28px;
  letter-spacing: 0.96px;
  line-height: 32px;
  margin: 40px 0 60px;
}

/* Category Cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.guide-category-card {
  background-color: #f7f2e9;
  border-radius: 10px;
  overflow: hidden;
}

.guide-category-header {
  background-color: #ebe5d9;
  padding: 12px 0;
  text-align: center;
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #191919;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 33px;
}

.guide-category-links {
  padding: 23px 16px;
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.guide-category-link {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #474747;
  font-size: 14px;
  letter-spacing: 1.50px;
  line-height: 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.guide-category-link:hover {
  color: #b09c76;
}

.guide-category-link.active {
  font-weight: 700;
  color: #b09c76;
  text-decoration: underline;
}

/* Section Headers */
.guide-section-header {
  background-color: #af936e;
  border-radius: 99px;
  padding: 15px 16px;
  margin: 60px 0 26px;
}

.guide-section-title {
  font-family: "Inter", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 1.50px;
  line-height: 21.6px;
}

.guide-subsection-header {
  background-color: #ebe5d9;
  border-radius: 99px;
  padding: 10px 16px;
  margin: 26px 0;
}

.guide-subsection-title {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #000000;
  font-size: 17px;
  letter-spacing: 1.50px;
  line-height: 20.4px;
}

/* Content Text */
.guide-content {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 14px;
  letter-spacing: 1.50px;
  line-height: 32px;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .guide-container {
    padding: 0 40px;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .guide-container {
    padding: 0 20px;
  }
  
  .guide-title {
    font-size: 24px;
    margin: 30px 0 40px;
  }
  
  .guide-section-header {
    margin: 40px 0 20px;
  }
  
  .guide-content {
    font-size: 13px;
    line-height: 28px;
  }
}

@media (max-width: 480px) {
  .guide-container {
    padding: 0 15px;
  }
  
  .breadcrumb {
    padding: 20px 0 15px;
  }
  
  .guide-title {
    font-size: 20px;
    margin: 20px 0 30px;
  }
  
  .guide-category-header {
    font-size: 16px;
  }
  
  .guide-category-link {
    font-size: 13px;
  }
  
  .guide-section-title {
    font-size: 16px;
  }
  
  .guide-subsection-title {
    font-size: 15px;
  }
}
