  /* Diseño Moderno del Blog */
  .blog-hero {
    background: linear-gradient(135deg, #c62076 0%, #b01d69 50%, #981958 100%);
    padding: 40px 0 30px;
    position: relative;
    overflow: hidden;
  }
  
  .blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="blog-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23blog-grain)"/></svg>');
    opacity: 0.3;
  }
  
  .blog-hero-content {
    position: relative;
    z-index: 2;
  }
  
  .blog-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .blog-hero .subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Blog Content */
  .blog-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f8f9fa 100%);
    position: relative;
  }
  
  .blog-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="blog-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23c62076" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23blog-pattern)"/></svg>');
    opacity: 0.3;
  }
  
  .blog-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  /* Featured Post */
  .featured-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(198, 32, 118, 0.1);
    border: 1px solid rgba(198, 32, 118, 0.1);
    margin-bottom: 50px;
    transition: all 0.3s ease;
  }
  
  .featured-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(198, 32, 118, 0.15);
  }
  
  .featured-image {
    height: 300px;
    background: linear-gradient(135deg, #c62076, #b01d69);
    position: relative;
    overflow: hidden;
  }
  
  .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .featured-post:hover .featured-image img {
    transform: scale(1.05);
  }
  
  .featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #c62076, #b01d69);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(198, 32, 118, 0.3);
  }
  
  .featured-content {
    padding: 30px;
  }
  
  .featured-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #6c757d;
  }
  
  .featured-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .featured-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  
  .featured-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 20px;
  }
  
  .read-more-btn {
    background: linear-gradient(135deg, #c62076, #b01d69);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }
  
  .read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198, 32, 118, 0.3);
    color: white;
    text-decoration: none;
  }
  
  /* Blog Grid */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(198, 32, 118, 0.08);
    border: 1px solid rgba(198, 32, 118, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
  }
  
  .blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c62076, #b01d69, #981958);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .blog-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(198, 32, 118, 0.15);
    border-color: rgba(198, 32, 118, 0.2);
  }
  
  .blog-card:hover::before {
    opacity: 1;
  }
  
  .blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, #c62076, #b01d69);
    position: relative;
    overflow: hidden;
  }
  
  .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .blog-card:hover .blog-card-image img {
    transform: scale(1.05);
  }
  
  .blog-card-content {
    padding: 25px;
    background: white;
    position: relative;
  }
  
  .blog-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #6c757d;
  }
  
  .blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    background: rgba(198, 32, 118, 0.1);
    border-radius: 12px;
    color: #c62076;
    font-weight: 500;
  }
  
  .blog-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
    height: 3.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
  }
  
  .blog-card:hover .blog-card-title {
    color: #c62076;
  }
  
  .blog-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 20px;
    height: 4.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  
  .blog-card-link {
    color: #c62076;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(198, 32, 118, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .blog-card-link:hover {
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #c62076, #b01d69);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(198, 32, 118, 0.3);
  }
  
  /* Categories Sidebar */
  .blog-sidebar {
    background: linear-gradient(135deg, #ffffff 0%, #fcf5f5 100%);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(198, 32, 118, 0.1);
    border: 2px solid rgba(198, 32, 118, 0.12);
    height: fit-content;
    position: sticky;
    top: 20px;
    backdrop-filter: blur(10px);
  }
  
  .sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #c62076;
    position: relative;
    text-align: center;
  }
  
  .sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #c62076, #b01d69);
    border-radius: 1px;
  }
  
  .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .category-item {
    margin-bottom: 6px;
  }
  
  .category-link {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(198, 32, 118, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .category-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(198, 32, 118, 0.1), transparent);
    transition: left 0.5s ease;
  }
  
  .category-link:hover {
    background: linear-gradient(135deg, #c62076, #b01d69);
    color: white;
    text-decoration: none;
    transform: translateX(3px);
    box-shadow: 0 6px 16px rgba(198, 32, 118, 0.25);
  }
  
  .category-link:hover::before {
    left: 100%;
  }
  
  .category-count {
    background: rgba(198, 32, 118, 0.15);
    color: #c62076;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .category-link:hover .category-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
  }
  
  /* Newsletter Signup */
  .newsletter-signup {
    background: linear-gradient(135deg, #c62076, #b01d69);
    border-radius: 16px;
    padding: 20px;
    margin-top: 25px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .newsletter-signup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: newsletterGlow 3s ease-in-out infinite alternate;
  }
  
  @keyframes newsletterGlow {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(180deg) scale(1.1); }
  }
  
  .newsletter-content {
    position: relative;
    z-index: 2;
  }
  
  .newsletter-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .newsletter-text {
    font-size: 0.85rem;
    opacity: 0.95;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .newsletter-input {
    padding: 10px 12px;
    border: none;
    border-radius: 20px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    transition: all 0.3s ease;
  }
  
  .newsletter-input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
  }
  
  .newsletter-input::placeholder {
    color: #666;
    font-size: 0.8rem;
  }
  
  .newsletter-btn {
    background: white;
    color: #c62076;
    border: none;
    padding: 10px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
  }
  
  .newsletter-btn:active {
    transform: translateY(0);
  }
  
  /* Responsive */
  @media (max-width: 1200px) {
    .blog-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }
    
    .col-lg-9 {
      flex: 0 0 75%;
      max-width: 75%;
    }
    
    .col-lg-3 {
      flex: 0 0 25%;
      max-width: 25%;
    }
  }
  
  @media (max-width: 768px) {
    .blog-hero {
      padding: 30px 0 20px;
    }
    
    .blog-hero h1 {
      font-size: 2rem;
    }
    
    .blog-content {
      padding: 40px 0;
    }
    
    .featured-image {
      height: 200px;
    }
    
    .featured-content {
      padding: 20px;
    }
    
    .featured-title {
      font-size: 1.5rem;
    }
    
    .blog-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .blog-card-image {
      height: 150px;
    }
    
    .blog-card-content {
      padding: 20px;
    }
    
    .col-lg-9 {
      flex: 0 0 100%;
      max-width: 100%;
    }
    
    .col-lg-3 {
      flex: 0 0 100%;
      max-width: 100%;
    }
    
    .blog-sidebar {
      padding: 15px;
      margin-top: 30px;
    }
    
    .sidebar-title {
      font-size: 1.1rem;
      margin-bottom: 15px;
    }
    
    .category-link {
      padding: 8px 10px;
      font-size: 0.85rem;
    }
    
    .newsletter-signup {
      padding: 15px;
      margin-top: 20px;
    }
    
    .newsletter-title {
      font-size: 0.9rem;
    }
    
    .newsletter-text {
      font-size: 0.8rem;
    }
    
    .newsletter-form {
      gap: 8px;
    }
    
    .newsletter-input {
      padding: 8px 10px;
      font-size: 0.8rem;
    }
    
    .newsletter-btn {
      padding: 8px 12px;
      font-size: 0.8rem;
    }
  }
  .blog-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
  }
  
  .blog-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .blog-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
  }
  
  .blog-content {
    padding: 60px 0;
  }
  
  .blog-sidebar {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
  }
  
  .blog-sidebar h4 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .blog-sidebar .list-group-item {
    border: none;
    padding: 8px 0;
    background: transparent;
  }
  
  .blog-sidebar .list-group-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .blog-sidebar .list-group-item a:hover {
    color: #007bff;
  }
  
  .blog-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  .blog-card-body {
    padding: 25px;
  }
  
  .blog-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  
  .blog-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .blog-card-title a:hover {
    color: #007bff;
  }
  
  .blog-card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #888;
  }
  
  .blog-meta i {
    margin-right: 5px;
  }
  
  .blog-tags {
    margin-bottom: 15px;
  }
  
  .blog-tag {
    display: inline-block;
    background: #e9ecef;
    color: #495057;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 8px;
    margin-bottom: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .blog-tag:hover {
    background: #007bff;
    color: white;
  }
  
  .blog-read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  
  .blog-read-more:hover {
    color: #0056b3;
  }
  
  .search-form {
    margin-bottom: 30px;
  }
  
  .search-form .form-control {
    border-radius: 25px;
    border: 2px solid #e9ecef;
    padding: 12px 20px;
  }
  
  .search-form .btn {
    border-radius: 25px;
    padding: 12px 25px;
  }
  
  .pagination {
    justify-content: center;
    margin-top: 40px;
  }
  
  .pagination .page-link {
    border-radius: 8px;
    margin: 0 5px;
    border: 1px solid #dee2e6;
    color: #007bff;
  }
  
  .pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
  }
  
  @media (max-width: 768px) {
    .blog-hero h1 {
      font-size: 2rem;
    }
    
    .blog-hero p {
      font-size: 1rem;
    }
    
    .blog-content {
      padding: 40px 0;
    }
  }
  /* Diseño Moderno del Blog Detail */
  .blog-detail-hero {
    background: linear-gradient(135deg, #c62076 0%, #b01d69 50%, #981958 100%);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
  }
  
  .blog-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="detail-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23detail-grain)"/></svg>');
    opacity: 0.3;
  }
  
  .blog-detail-hero-content {
    position: relative;
    z-index: 2;
  }
  
  .blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    flex-wrap: wrap;
  }
  
  .blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 500;
  }
  
  .blog-detail-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .blog-detail-resumen {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-weight: 400;
  }
  
  /* Blog Content */
  .blog-detail-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f8f9fa 100%);
    position: relative;
  }
  
  .blog-detail-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="detail-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23c62076" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23detail-pattern)"/></svg>');
    opacity: 0.3;
  }
  
  .blog-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  /* Post Content */
  .blog-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.1);
    margin-bottom: 40px;
    position: relative;
  }
  
  .blog-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c62076, #b01d69, #981958);
  }
  
  .blog-post-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .blog-post:hover .blog-post-image {
    transform: scale(1.02);
  }
  
  .blog-post-body {
    padding: 40px;
  }
  
  .blog-post-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
  }
  
  .blog-post-content h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 35px 0 18px;
    color: #2c3e50;
    position: relative;
    padding-left: 18px;
  }
  
  .blog-post-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    background: linear-gradient(135deg, #e91e63, #c2185b);
    border-radius: 2px;
  }
  
  .blog-post-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 28px 0 14px;
    color: #2c3e50;
  }
  
  .blog-post-content h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 22px 0 10px;
    color: #c62076;
  }
  
  .blog-post-content p {
    margin-bottom: 18px;
    line-height: 1.7;
  }
  
  .blog-post-content ul, .blog-post-content ol {
    margin-bottom: 22px;
    padding-left: 25px;
  }
  
  .blog-post-content li {
    margin-bottom: 8px;
    line-height: 1.6;
  }
  
  .blog-post-content ul li {
    position: relative;
  }
  
  .blog-post-content ul li::marker {
    color: #c62076;
  }
  
  .blog-post-content ol {
    counter-reset: item;
  }
  
  .blog-post-content ol li {
    counter-increment: item;
  }
  
  .blog-post-content ol li::marker {
    color: #c62076;
    font-weight: bold;
  }
  
  .blog-post-content strong {
    color: #2c3e50;
    font-weight: 700;
  }
  
  .blog-post-content li strong {
    color: #c62076;
    font-weight: 600;
  }
  
  .blog-post-content em {
    color: #c62076;
    font-style: italic;
  }
  
  .blog-post-content blockquote {
    border-left: 3px solid #c62076;
    padding-left: 18px;
    margin: 25px 0;
    font-style: italic;
    color: #666;
    background: rgba(233, 30, 99, 0.04);
    padding: 18px;
    border-radius: 0 8px 8px 0;
  }
  
  /* Tags Section */
  .blog-post-tags {
    padding: 25px 40px;
    border-top: 1px solid rgba(233, 30, 99, 0.08);
    background: linear-gradient(135deg, #fcf5f5 0%, #ffffff 100%);
  }
  
  .blog-tag {
    display: inline-block;
    background: linear-gradient(135deg, #c62076, #b01d69);
    color: white;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.8rem;
    margin-right: 8px;
    margin-bottom: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }
  
  .blog-tag:hover {
    background: linear-gradient(135deg, #c2185b, #ad1457);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.25);
  }
  
  /* Social Share */
  .social-share {
    display: flex;
    gap: 12px;
    margin: 30px 0;
    justify-content: center;
  }
  
  .social-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
  }
  
  .social-share a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .social-share a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  }
  
  .social-share a:hover::before {
    opacity: 1;
  }
  
  .social-share .facebook { background: linear-gradient(135deg, #c62076, #b01d69); }
  .social-share .twitter { background: linear-gradient(135deg, #c62076, #b01d69); }
  .social-share .linkedin { background: linear-gradient(135deg, #c62076, #b01d69); }
  .social-share .whatsapp { background: linear-gradient(135deg, #c62076, #b01d69); }
  
  /* Sidebar */
  .blog-sidebar {
    background: linear-gradient(135deg, #ffffff 0%, #fcf5f5 100%);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.1);
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
  }
  
  .blog-sidebar h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(233, 30, 99, 0.15);
    position: relative;
    text-align: left;
  }
  
  .blog-sidebar h4::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 25px;
    height: 1px;
    background: linear-gradient(90deg, #c62076, #b01d69);
    border-radius: 1px;
  }
  
  .related-post {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(233, 30, 99, 0.08);
  }
  
  .related-post:hover {
    background: rgba(198, 32, 118, 0.04);
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.08);
  }
  
  .related-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .related-post:hover img {
    transform: scale(1.03);
  }
  
  .related-post-content h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
  }
  
  .related-post-content h6 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .related-post-content h6 a:hover {
    color: #c62076;
  }
  
  .related-post-content small {
    color: #6c757d;
    font-size: 0.75rem;
  }
  
  /* Comments Section */
  .comments-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.1);
    padding: 30px;
    margin-top: 30px;
    position: relative;
  }
  
  .comments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c62076, #b01d69, #981958);
    border-radius: 16px 16px 0 0;
  }
  
  .comments-section h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .comment {
    border-bottom: 1px solid rgba(233, 30, 99, 0.08);
    padding: 20px 0;
  }
  
  .comment:last-child {
    border-bottom: none;
  }
  
  .comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }
  
  .comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c62076, #b01d69);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.8rem;
    box-shadow: 0 2px 6px rgba(233, 30, 99, 0.2);
  }
  
  .comment-author {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
  }
  
  .comment-date {
    color: #6c757d;
    font-size: 0.8rem;
  }
  
  .comment-content {
    color: #666;
    line-height: 1.5;
    margin-left: 44px;
    background: rgba(198, 32, 118, 0.02);
    padding: 10px 14px;
    border-radius: 8px;
    border-left: 2px solid #c62076;
    font-size: 0.85rem;
  }
  
  .comment-form {
    background: linear-gradient(135deg, #fcf5f5 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
    border: 1px solid rgba(233, 30, 99, 0.08);
  }
  
  .comment-form h4 {
    margin-bottom: 15px;
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }
  
  .comment-form .form-control {
    border-radius: 10px;
    border: 1px solid rgba(233, 30, 99, 0.15);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }
  
  .comment-form .form-control:focus {
    border-color: #c62076;
    box-shadow: 0 0 0 2px rgba(198, 32, 118, 0.08);
  }
  
  .comment-form .btn {
    border-radius: 16px;
    padding: 8px 20px;
    font-weight: 500;
    background: linear-gradient(135deg, #c62076, #b01d69);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
  }
  
  .comment-form .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.2);
  }
  
  /* Responsive */
  @media (max-width: 1200px) {
    .col-lg-8 {
      flex: 0 0 75%;
      max-width: 75%;
    }
    
    .col-lg-4 {
      flex: 0 0 25%;
      max-width: 25%;
    }
  }
  
  @media (max-width: 768px) {
    .blog-detail-hero {
      padding: 35px 0 25px;
    }
    
    .blog-detail-title {
      font-size: 1.8rem;
    }
    
    .blog-detail-meta {
      flex-direction: column;
      gap: 8px;
    }
    
    .blog-detail-content {
      padding: 35px 0;
    }
    
    .blog-post-body {
      padding: 25px 18px;
    }
    
    .blog-post-content h2 {
      font-size: 1.4rem;
    }
    
    .blog-post-content h3 {
      font-size: 1.2rem;
    }
    
    .blog-post-tags {
      padding: 18px;
    }
    
    .comments-section {
      padding: 18px;
    }
    
    .comment-content {
      margin-left: 0;
      margin-top: 10px;
    }
    
    .comment-avatar {
      width: 28px;
      height: 28px;
      font-size: 0.7rem;
    }
    
    .col-lg-8 {
      flex: 0 0 100%;
      max-width: 100%;
    }
    
    .col-lg-4 {
      flex: 0 0 100%;
      max-width: 100%;
    }
    
    .blog-sidebar {
      padding: 18px;
      margin-top: 25px;
    }
    
    .social-share {
      flex-wrap: wrap;
      gap: 8px;
    }
    
    .social-share a {
      width: 38px;
      height: 38px;
      font-size: 0.9rem;
    }
  }
  .tag-hero {
    background: linear-gradient(135deg, #007bff 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
  }
  
  .tag-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .tag-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
  }
  
  .blog-content {
    padding: 60px 0;
  }
  
  .blog-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  .blog-card-body {
    padding: 25px;
  }
  
  .blog-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  
  .blog-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .blog-card-title a:hover {
    color: #007bff;
  }
  
  .blog-card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #888;
  }
  
  .blog-meta i {
    margin-right: 5px;
  }
  
  .blog-tags {
    margin-bottom: 15px;
  }
  
  .blog-tag {
    display: inline-block;
    background: #e9ecef;
    color: #495057;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 8px;
    margin-bottom: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .blog-tag:hover {
    background: #007bff;
    color: white;
  }
  
  .blog-tag.active {
    background: #007bff;
    color: white;
  }
  
  .blog-read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  
  .blog-read-more:hover {
    color: #0056b3;
  }
  
  .tag-sidebar {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
  }
  
  .tag-sidebar h4 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .tag-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .tag-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
  }
  
  .tag-details h5 {
    margin: 0;
    color: #333;
  }
  
  .tag-details p {
    margin: 5px 0 0;
    color: #666;
    font-size: 0.9rem;
  }
  
  .pagination {
    justify-content: center;
    margin-top: 40px;
  }
  
  .pagination .page-link {
    border-radius: 8px;
    margin: 0 5px;
    border: 1px solid #dee2e6;
    color: #007bff;
  }
  
  .pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
  }
  
  @media (max-width: 768px) {
    .tag-hero h1 {
      font-size: 2rem;
    }
    
    .tag-hero p {
      font-size: 1rem;
    }
    
    .blog-content {
      padding: 40px 0;
    }
  }
