body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
  }
  
  .board-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .board-header h2 {
    font-size: 24px;
    color: #333;
  }
  
  .btn-home {
    background-color: #4CAF50;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
  }
  
  .event-card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .event-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
  }
  
  .event-card:hover {
    transform: translateY(-5px);
  }
  
  .event-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
  }
  
  .event-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
  }
  
  .event-content {
    font-size: 15px;
    color: #555;
  }
  
  /* 상세 페이지 전용 */
  .event-view {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .event-full-content {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin-top: 20px;
    white-space: pre-line;
  }
  