#od-notice-community {
      padding: 100px 0;
      background: #fff;
      border-top: 1px solid var(--ml-border);
    }

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

    .nc-col-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 20px;
      border-bottom: 2px solid #111;
      margin-bottom: 20px;
    }

    .nc-col-head h4 {
      font-size: 16px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #111;
    }

    .nc-col-head .plus-btn {
      width: 20px;
      height: 20px;
      position: relative;
      cursor: pointer;
    }

    .nc-col-head .plus-btn::before,
    .nc-col-head .plus-btn::after {
      content: '';
      position: absolute;
      background: #999;
      transition: 0.3s;
    }

    .nc-col-head .plus-btn::before {
      width: 100%;
      height: 1.5px;
      top: 50%;
      transform: translateY(-50%);
    }

    .nc-col-head .plus-btn::after {
      height: 100%;
      width: 1.5px;
      left: 50%;
      transform: translateX(-50%);
    }

    .nc-col:hover .nc-col-head .plus-btn::after {
      transform: translateX(-50%) rotate(90deg);
      opacity: 0;
    }

    /* Column 1: Notice List */
    .nc-notice-list li {
      border-bottom: 1px solid #f0f0f0;
    }

    .nc-notice-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0;
      cursor: pointer;
      transition: 0.3s;
      position: relative;
    }

    .nc-notice-item .title-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
      transition: 0.4s cubic-bezier(0.2, 0, 0, 1);
    }

    .nc-notice-item .title {
      font-size: 14px;
      font-weight: 600;
      color: #333;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      max-width: 200px;
    }

    .nc-notice-item .date {
      font-size: 12px;
      color: #bbb;
      font-weight: 500;
    }

    .nc-notice-item .arrow {
      width: 0;
      height: 12px;
      opacity: 0;
      transition: 0.4s;
      overflow: hidden;
      display: flex;
      align-items: center;
      color: var(--ml-accent);
    }

    .nc-notice-item:hover .title-wrap {
      transform: translateX(15px);
    }

    .nc-notice-item:hover .title {
      color: var(--ml-accent);
    }

    .nc-notice-item:hover .arrow {
      width: 20px;
      opacity: 1;
      margin-right: 5px;
    }

    /* Column 2: Event Banner */
    .nc-event-banner {
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 1 / 1.1;
      position: relative;
      cursor: pointer;
      background: #f0f0f0;
    }

    .nc-event-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nc-event-banner:hover img {
      transform: scale(1.08);
    }

    .nc-event-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 30px;
      color: #fff;
    }

    .nc-event-overlay .cat {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.1em;
      margin-bottom: 10px;
      opacity: 0.8;
    }

    .nc-event-overlay h5 {
      font-size: 22px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 10px;
    }

    .nc-event-overlay .more {
      font-size: 12px;
      font-weight: 700;
      border-bottom: 1.5px solid #fff;
      display: inline-block;
      padding-bottom: 2px;
      align-self: flex-start;
    }

    /* Column 3: SNS Grid */
    .nc-sns-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .nc-sns-item {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 1/1;
      cursor: pointer;
      background: #f5f5f5;
    }

    .nc-sns-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.5s;
    }

    .nc-sns-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: 0.3s;
      color: #fff;
    }

    .nc-sns-item:hover img {
      transform: scale(1.1);
    }

    .nc-sns-item:hover .nc-sns-overlay {
      opacity: 1;
    }

    .nc-sns-overlay svg {
      width: 24px;
      height: 24px;
    }