.pinboard {
    background: #f3e7d4;
    padding: 3rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  /* Note Style */
  .note {
    background: #fff;
    background-image: linear-gradient(to bottom, #fefefe 35px, #e7e7e7 36px);
    background-size: 100% 40px;
    width: 400px;
    padding: 1.5rem;
    box-shadow: 4px 4px 12px rgba(0,0,0,0.15);
    border-radius: 6px;
    position: relative;
    font-family: 'Source Sans Pro', sans-serif;
    transition: transform 0.2s ease;
  }
  
  /* Fake Pin */
  .note::before {
    content: '';
    width: 16px;
    height: 16px;
    background: #c33;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
  }
  
  /* Tilt Variants */
  .tilt-1 { transform: rotate(-1deg); }
  .tilt-2 { transform: rotate(1.5deg); }
  .tilt-3 { transform: rotate(-2deg); }
  .tilt-4 { transform: rotate(2.5deg); }
  .tilt-5 { transform: rotate(-0.5deg); }
  .tilt-6 { transform: rotate(1deg); }
  
  .note:hover {
    transform: scale(1.03);
  }
  
  /* Note Content */
  .note h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
  }
  
  .note p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1rem;
  }
  
  .note a {
    font-weight: bold;
    color: #A8C5A0;
    text-decoration: underline;
  }
  
  /* Category Sticker */
  .note-category {
    position: absolute;
    top: 10px;
    left: -10px;
    background: #A8C5A0;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    transform: rotate(-10deg);
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  }

/* Ensure article images scale responsively */
.section img,
.section-text img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem auto;
  border-radius: 6px;
}

.section img,
.section-text img {
  max-width: 600px; /* or whatever size fits your design */
}


  