.ckvision .top_box .title_box {
	background-image:url(https://www.ck.ac.kr/wp-content/uploads/2025/07/ck-vision-bg.jpg);
	background-repeat:no-repeat;background-position:center top;
	background-size:1920px 450px;
	background-attachment:fixed;
	height: 320px
}
    .total-count {
      margin-bottom: 30px;
      font-size: 16px;
      color: #444;
      border-bottom: 3px solid #000;
      padding-bottom: 20px;
      margin-bottom: 20px;
      
    }
    .total-count span {
	    font-weight: bold
}
    .vision-card-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* PC: 3개 */
      gap: 24px;
      margin: 0 auto;
    }

    .vision-card {
      border: 1px solid #ddd;
      border-radius: 6px;
      padding: 30px;
      overflow: hidden;
      display: flex;
    align-items: stretch;
      gap: 20px;
      flex-direction: row; /* 좌우 배치로 변경 */
      background-color: #fff;
      transition: box-shadow 0.2s ease;
      min-height: 120px;
    }

    .vision-card:hover {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .vision-card-img {
      height: 100%;
      aspect-ratio: 12 / 11;
      height: auto;
    }
    .vision-card-img img {
      object-fit: cover;
      flex-shrink: 0;
      width: 100%;
      height: 100%;
      aspect-ratio: 12 / 11;
    }

    .vision-card-body {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .vision-card-category {
      font-size: 12px;
      color: #ff6c00;
      font-weight: bold;
      margin-bottom: 6px;
    }

    .vision-card-title {
      font-size: 18px;
      line-height: 1.2;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .vision-card-date {
      font-size: 14px;
      color: #555;
      margin-bottom: 16px;
    }

    .vision-card-button {
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 12px;
      border: 1px solid #111;
      border-radius: 4px;
      background: #fff;
      color: #111;
      text-decoration: none;
      font-size: 14px;
      transition: background 0.2s ease;
    }

    .vision-card-button:hover {
      background-color: #ff6c00;
      border-color: #ff6c00;
      color: #fff;
    }

    .vision-card-button::after {
      content: '';
      display: inline-block;
      width: 15px;
      height: 15px;
      margin-left: 6px;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"><path stroke=\'%231C274C\' stroke-linecap=\'round\' stroke-linejoin=\'round\' stroke-width=\'1.5\' d=\'m13 11 9-9m0 0h-5.344M22 2v5.344\'/><path stroke=\'%231C274C\' stroke-linecap=\'round\' stroke-width=\'1.5\' d=\'M22 12c0 4.714 0 7.071-1.465 8.535C19.072 22 16.714 22 12 22s-7.071 0-8.536-1.465C2 19.072 2 16.714 2 12s0-7.071 1.464-8.536C4.93 2 7.286 2 12 2\'/></svg>');
      background-size: contain;
      background-repeat: no-repeat;
      vertical-align: middle;
    }

    .vision-card-button:hover::after {
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"><path stroke=\'%23fff\' stroke-linecap=\'round\' stroke-linejoin=\'round\' stroke-width=\'1.5\' d=\'m13 11 9-9m0 0h-5.344M22 2v5.344\'/><path stroke=\'%23fff\' stroke-linecap=\'round\' stroke-width=\'1.5\' d=\'M22 12c0 4.714 0 7.071-1.465 8.535C19.072 22 16.714 22 12 22s-7.071 0-8.536-1.465C2 19.072 2 16.714 2 12s0-7.071 1.464-8.536C4.93 2 7.286 2 12 2\'/></svg>');
    }

    /* 반응형 스타일 */
        @media (max-width: 1240px) {
	    .ckvision .top_box .title_box {
		    height: 250px
}
}
    @media (max-width: 1024px) {
	.aux-org .title_box h2 {
		    padding-top: 140px !important
}
      .vision-card-grid {
        grid-template-columns: repeat(2, 1fr); /* 태블릿: 2개 */
        gap: 16px;
      }
      .vision-card-img {
        height: 100%;
        width: 180px;
        aspect-ratio: 12 / 11;
      }
    }
    @media (max-width: 640px) {
	    	    .ckvision .top_box .title_box {
		    height: 220px
}
      .vision-card-grid {
        grid-template-columns: 1fr; /* 모바일: 1개 */
        gap: 10px;
      }
      .vision-card {
        flex-direction: row;
        align-items: stretch;
        padding: 16px;
      }
      .vision-card-img {
        width: 240px
      }
      .vision-card-title {
        font-size: 15px;
      }
      .vision-card-category, .vision-card-date {
        font-size: 11px;
      }
      .vision-card-button {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        padding: 6px 8px;
      }
    }
    @media (max-width: 460px) {
      .vision-card {
        flex-direction: column;
      }
      .vision-card-img {
        width: 100%;
        aspect-ratio: 12 / 11;
        height: auto;
        margin-bottom: 10px;
      }

    }