.row.d-mt-111.m-mt-128.pb-10.mb-0.bg-fff {
    padding-bottom: 0px;
}
 :root {
  --primary: #f28500;
  --primary-hover: #d97500;
  --foreground: #1a2332;
  --background: #f8f9fa;
  --card: #ffffff;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 12px 32px -8px rgba(0, 0, 0, 0.15);
}

 body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

.ti-blog-list a {
  text-decoration: none;
  color: inherit;
}

.ti-blog-list img {
  max-width: 100%;
  height: auto;
  display: block;
}

.ti-blog-list .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.ti-blog-list .header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.ti-blog-list .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.ti-blog-list .logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.ti-blog-list .logo span {
  color: var(--primary);
}

.ti-blog-list .nav {
  display: none;
  gap: 32px;
}

.ti-blog-list .nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
}

.ti-blog-list .nav a:hover,
.ti-blog-list .nav a.active {
  color: var(--primary);
}

.ti-blog-list .header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ti-blog-list .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.ti-blog-list .btn-primary {
  background: var(--primary);
  color: white;
}

.ti-blog-list .btn-primary:hover {
  background: var(--primary-hover);
}

.ti-blog-list .btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.ti-blog-list .btn-outline:hover {
  background: var(--primary);
  color: white;
}

.ti-blog-list .btn-ghost {
  background: transparent;
  color: var(--foreground);
  padding: 8px;
}

.ti-blog-list .btn-ghost:hover {
  background: var(--border);
}

.ti-blog-list .menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.ti-blog-list .menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
}

/* Hero */
.ti-blog-list .hero {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2a4a 0%, #0f172a 100%);
}

.ti-blog-list .hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&q=80') center/cover;
  opacity: 0.3;
}

.ti-blog-list .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 35, 50, 0.9) 0%, rgba(26, 35, 50, 0.5) 100%);
}

.ti-blog-list .hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ti-blog-list .hero-label {
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.ti-blog-list .hero-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ti-blog-list .hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  max-width: 500px;
}

/* Filters */
.ti-blog-list .filters {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0px;
  z-index: 90;
}

.ti-blog-list .filters-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}

.ti-blog-list .categories {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ti-blog-list .categories::-webkit-scrollbar {
  display: none;
}

.ti-blog-list .category-btn {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.ti-blog-list .category-btn:hover {
  border-color: var(--primary);
  color: var(--foreground);
}

.ti-blog-list .category-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.ti-blog-list .search-box {
  position: relative;
}

.ti-blog-list .search-box svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  width: 18px;
  height: 18px;
}

.ti-blog-list .search-input {
  width: 100%;
  padding: 10px 12px 10px 40px;
  font-size: 0.875rem;
  border: none;
  border-radius: 8px;
  background: var(--background);
  color: var(--foreground);
}

.ti-blog-list .search-input:focus {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.ti-blog-list .search-input::placeholder {
  color: var(--muted);
}

/* Main Content */
.ti-blog-list .main {
  padding: 48px 0 80px;
}

.ti-blog-list .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.ti-blog-list .section-title {
  font-size: 1.75rem;
  font-weight: 700;
}

.ti-blog-list .article-count {
  color: var(--muted);
  font-size: 15px;
}

/* Blog Grid */
.ti-blog-list .blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Blog Card */
.ti-blog-list .blog-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease forwards;
}

.ti-blog-list .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.ti-blog-list .blog-card:nth-child(1) { animation-delay: 0ms; }
.ti-blog-list .blog-card:nth-child(2) { animation-delay: 100ms; }
.ti-blog-list .blog-card:nth-child(3) { animation-delay: 200ms; }
.ti-blog-list .blog-card:nth-child(4) { animation-delay: 300ms; }
.ti-blog-list .blog-card:nth-child(5) { animation-delay: 400ms; }
.ti-blog-list .blog-card:nth-child(6) { animation-delay: 500ms; }

.ti-blog-list .card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.ti-blog-list .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ti-blog-list .blog-card:hover .card-image img {
  transform: scale(1.1);
}

.ti-blog-list .card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  background: var(--primary);
  color: white;
  border-radius: 50px;
}

.ti-blog-list .card-content {
  padding: 24px;
}

.ti-blog-list .card-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.ti-blog-list .card-date svg {
  width: 16px;
  height: 16px;
}

.ti-blog-list .card-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.ti-blog-list .blog-card:hover .card-title {
  color: var(--primary);
}

.ti-blog-list .card-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ti-blog-list .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  transition: gap 0.2s;
}

.ti-blog-list .card-link:hover {
  gap: 12px;
}

.ti-blog-list .card-link svg {
  width: 16px;
  height: 16px;
}

/* Load More */
.ti-blog-list .load-more {
  text-align: center;
  margin-top: 48px;
}

.ti-blog-list .load-more .btn-outline {
  padding: 14px 32px;
  border-radius: 50px;
}

/* Footer */
.ti-blog-list .footer {
  background: var(--foreground);
  color: white;
  padding: 60px 0 0;
}

.ti-blog-list .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.ti-blog-list .footer-brand .logo {
  margin-bottom: 16px;
}

.ti-blog-list .footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 20px;
}

.ti-blog-list .social-links {
  display: flex;
  gap: 12px;
}

.ti-blog-list .social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.ti-blog-list .social-link:hover {
  background: var(--primary);
}

.ti-blog-list .social-link svg {
  width: 18px;
  height: 18px;
}

.ti-blog-list .footer-section h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.ti-blog-list .footer-links {
  list-style: none;
}

.ti-blog-list .footer-links li {
  margin-bottom: 10px;
}

.ti-blog-list .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.ti-blog-list .footer-links a:hover {
  color: var(--primary);
}

.ti-blog-list .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.ti-blog-list .contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.ti-blog-list .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.ti-blog-list .footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.ti-blog-list .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.ti-blog-list .footer-bottom-links a:hover {
  color: var(--primary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (min-width: 640px) {
  .ti-blog-list .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .ti-blog-list .nav {
    display: flex;
  }

  .ti-blog-list .menu-toggle {
    display: none;
  }

  .ti-blog-list .hero-title {
    font-size: 3rem;
  }

  .ti-blog-list .filters-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .ti-blog-list .search-box {
    width: 280px;
  }

  .ti-blog-list .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ti-blog-list .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .ti-blog-list .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .ti-blog-list .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}