/* Filter styles */
.recrutement-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    padding: 0 16px;
    justify-content: center;
  }
  
  .recrutement-filters a {
    padding: 8px 16px;
    background-color: #fff;
    border-radius: 4px;
    color: #666;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    border: 1px solid #eee;
  }
  
  .recrutement-filters a:hover {
    background-color: #f5f5f5;
    color: #e05c44;
  }
  
  .recrutement-filters a.active {
    background-color: #e05c44;
    color: white;
    border-color: #e05c44;
  }
  
  /* Grid Layout */
  .recrutement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    padding: 32px 0;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Card styling */
  .recrutement-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
  }
  
  .recrutement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Image styling */
  .recrutement-thumb {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
  }
  
  .recrutement-thumb a {
    display: block;
    width: 100%;
    height: 100%;
  }
  
  .recrutement-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .recrutement-card:hover .recrutement-thumb img {
    transform: scale(1.05);
  }
  
  /* Content styling */
  .recrutement-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    flex-grow: 1;
  }
  
  /* Category styling */
  .recrutement-cat {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .recrutement-cat a {
    color: #666;
    transition: color 0.2s ease;
  }
  
  .recrutement-cat a:hover {
    color: #e05c44;
  }
  
  /* Title styling */
  .recrutement-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  
  .recrutement-title a {
    color: #222;
    transition: color 0.2s ease;
  }
  
  .recrutement-title a:hover {
    color: #e05c44;
  }
  
  /* Arrow styling */
  .recrutement-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
  }
  
  .recrutement-arrow a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #e05c44;
    color: white;
    border-radius: 4px;
    font-size: 20px;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }
  
  .recrutement-arrow a:hover {
    background-color: #c0503b;
    transform: translateX(3px);
  }
  
  /* Pagination styling */
  .pagination {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    gap: 8px;
  }
  
  .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
  }
  
  .page-numbers.current {
    background-color: #e05c44;
    color: white;
  }
  
  .page-numbers:hover:not(.current) {
    background-color: #f2f2f2;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .recrutement-filters {
      padding: 0 12px;
      gap: 8px;
    }
  
    .recrutement-filters a {
      padding: 6px 12px;
      font-size: 13px;
    }
  
    .recrutement-grid {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
      padding: 24px 16px;
    }
    
    .recrutement-content {
      padding: 20px;
    }
    
    .recrutement-title {
      font-size: 18px;
    }
  }
  
  @media (max-width: 480px) {
    .recrutement-filters {
      flex-direction: column;
      align-items: stretch;
      padding: 0 20px;
    }
  
    .recrutement-filters a {
      text-align: center;
    }
  
    .recrutement-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .recrutement-thumb {
      padding-top: 56.25%; /* 16:9 aspect ratio for mobile */
    }
  }