/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */
  .wood-section {
    background: #f3f3f1;
    padding: 50px 20px;
  }

  .wood-container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .wood-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .wood-header h2 {
    font-size: 34px;
    line-height: 1.2;
    margin: 0 0 10px;
    color: #111;
    font-weight: 700;
  }

  .wood-header p {
    font-size: 15px;
    color: #333;
    margin: 0;
  }

  .wood-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .wood-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .wood-card img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .wood-card-content {
    padding: 18px 16px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .wood-card h3 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #111;
    font-weight: 700;
  }

  .wood-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #222;
    margin: 0 0 18px;
    flex: 1;
  }

  .wood-btn {
    display: inline-block;
    align-self: flex-start;
    background: #445221;
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 4px;
    transition: background 0.25s ease;
  }

  .wood-btn:hover {
    background: #334016;
    color: #fff !important;
    text-decoration: none;
  }

  /* tablette */
  @media (max-width: 991px) {
    .wood-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .wood-header h2 {
      font-size: 28px;
    }
  }

  /* mobile */
  @media (max-width: 767px) {
    .wood-section {
      padding: 35px 15px;
    }

    .wood-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .wood-header {
      margin-bottom: 28px;
    }

    .wood-header h2 {
      font-size: 24px;
    }

    .wood-card img {
      height: 240px;
    }

    .wood-card h3 {
      font-size: 22px;
    }
  }