.status-card-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
.status-card { flex: 1; min-width: calc(50% - 10px); background: #f6f9ff; border-radius: 5px; padding: 30px 40px 30px 30px; display: flex; align-items: center; justify-content: space-between; box-sizing: border-box; }
.status-card.type-cyan { background: #f0fbfc; }
.status-card .label-box { display: flex; align-items: center; gap: 20px; }
.status-card .ico { width: 100px; height: 100px; background-color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; background-position: center; background-repeat: no-repeat; background-size: 30px; }
.status-card .ico.ico-01 { background-image: url("/_res/unist/industry/img/content/ico-status1.png"); }
.status-card .ico.ico-02 { background-image: url("/_res/unist/industry/img/content/ico-status2.png"); }
.status-card .ico.ico-03 { background-image: url("/_res/unist/industry/img/content/ico-status3.png"); }
.status-card .ico.ico-04 { background-image: url("/_res/unist/industry/img/content/ico-status4.png"); }
.status-card .label { font-weight: 600; font-size: 20px; line-height: 100%; letter-spacing: -2%; vertical-align: middle; }
.status-card .num { font-family: Prompt; color: #011a7a; font-weight: 600; font-size: 48px; line-height: 100%; letter-spacing: 1%; text-align: right; vertical-align: middle; }
.status-card.type-cyan .num { color: #0faabc; }
.summary-row { background: #f9fafb; border-radius: 5px; padding: 40px; display: flex; align-items: center; justify-content: space-between; }
.summary-row .label { color: #333; font-weight: 700; font-size: 22px; line-height: 100%; letter-spacing: -2%; vertical-align: middle; }
.summary-row .values { display: flex; gap: 40px; }
.summary-row .val-item { display: flex; align-items: center; gap: 12px; }
.summary-row .val-item .txt { color: #666; font-weight: 600; font-size: 18px; line-height: 100%; letter-spacing: -2%; vertical-align: middle; }
.summary-row .val-item .num { font-weight: 700; font-size: 30px; line-height: 100%; letter-spacing: -2%; vertical-align: middle; }
.chart-container { border: 1px solid #d6dce8; border-radius: 5px; padding: 60px; display: flex; gap: 40px; width: 100%; box-sizing: border-box; }
.chart-content { flex: 1; position: relative; overflow: visible; }
.chart-inner { margin-left: 80px; position: relative; overflow: visible; }
.chart-main { position: relative; overflow: visible; padding-bottom: 15px; }
.chart-main::before { content: ""; position: absolute; top: 0; left: 0; bottom: 0; width: 2px; background-color: #333; z-index: 11; pointer-events: none; }
.chart-data { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 25px; padding-right: 30px; }
.chart-row { display: flex; align-items: center; position: relative; }
.chart-row .year-label { position: absolute; left: -80px; width: 60px; text-align: right; font-weight: 700; font-size: 14px; line-height: 100%; letter-spacing: -2%; vertical-align: middle; }
.chart-row .row-bars-wrap { flex: 1; display: flex; flex-direction: column; gap: 2px; }
@keyframes fillBar {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}
.chart-bar { height: 10px; transform-origin: left; animation: fillBar 2.2s cubic-bezier(0.1, 0.7, 0.1, 1) forwards; }
.chart-bar.blue { background-color: #0a60ff; }
.chart-bar.cyan { background-color: #07b0c3; animation-delay: 0.2s; animation-fill-mode: both; }
.bar-w42 { width: 42.1%; }
.bar-w44 { width: 44%; }
.bar-w47 { width: 47%; }
.bar-w50 { width: 50%; }
.bar-w54 { width: 54%; }
.bar-w57 { width: 57%; }
.bar-w60 { width: 60%; }
.bar-w64 { width: 64%; }
.bar-w68 { width: 68%; }
.bar-w72 { width: 72%; }
.bar-w78 { width: 78%; }
.bar-w85 { width: 85%; }
.chart-grid { position: absolute; top: 0; left: 0; right: 0; bottom: 0px; display: flex; justify-content: space-between; pointer-events: none; padding-right: 30px; z-index: 1; }
.chart-grid .grid-line { width: 0; height: 100%; border-left: 1px solid #dddddd; }
.chart-grid .grid-line:first-child { border-left: 1px solid #dddddd; }
.chart-x-axis { display: flex; justify-content: space-between; margin-top: 10px; padding-right: 30px; overflow: visible; }
.chart-x-axis span { width: 0; flex: 0 0 0; display: flex; justify-content: center; white-space: nowrap; position: relative; overflow: visible; z-index: 5; color: #666; font-weight: 700; font-size: 14px; line-height: 100%; letter-spacing: -2%; }
.chart-legend { display: flex; flex-direction: column; gap: 15px; justify-content: center; flex-shrink: 0; }
.legend-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; line-height: 100%; letter-spacing: -2%; vertical-align: middle; }
.legend-item::before { content: ""; width: 12px; height: 12px; border-radius: 50%; }
.legend-item.blue::before { background-color: #0a60ff; }
.legend-item.cyan::before { background-color: #07b0c3; }
.search-banner .img-box { border-radius: 10px; overflow: hidden; margin-bottom: 30px; }
.search-banner .btn-wrap { display: flex; gap: 6px; }
.search-banner .btn-custom { display: flex; align-items: center; justify-content: space-between; padding: 15px 25px; border: 1px solid #0a60ff; border-radius: 50px; color: #0a60ff; text-decoration: none; gap: 8px; font-weight: 700; font-size: 16px; line-height: 100%; letter-spacing: -2%; text-align: right; }
.search-banner .btn-custom.dark { border-color: #011a7a; color: #011a7a; }
.search-banner .btn-custom::after { content: ""; width: 10px; height: 10px; background-position: center; background-repeat: no-repeat; background-size: contain; }
.search-banner .btn-new1::after { background-image: url("/_res/unist/industry/img/content/ico-new-tab1.png"); }
.search-banner .btn-new2::after { background-image: url("/_res/unist/industry/img/content/ico-new-tab2.png"); }
.con-p {font-size: 20px; font-weight: 700}
@media screen and (max-width: 1024px) {
  .status-card { padding: 30px; }
  .status-card .num { font-size: 32px; }
  .chart-container { flex-direction: column; padding: 30px 15px; }
  .chart-inner { margin-left: 50px; }
  .chart-row .year-label { left: -50px; width: 45px; }
  .chart-legend { flex-direction: row; justify-content: flex-end; }
  .search-banner .btn-custom { padding: 12px 18px; font-size: 14px; }
}
@media screen and (max-width: 768px) {
  .chart-container { padding: 20px 10px; }
  .chart-inner { margin-left: 45px; }
  .chart-row .year-label { left: -45px; width: 40px; font-size: 13px; }
  .status-card { min-width: 100%; padding: 20px; }
  .summary-row { flex-direction: column; align-items: flex-start; gap: 20px; padding: 20px; }
  .search-banner .img-box { margin-bottom: 20px; }
  .search-banner .btn-wrap { flex-wrap: wrap; }
  .search-banner .btn-custom { padding: 10px 12px; font-size: 13px; flex: 1; justify-content: center; }
  .search-banner .btn-custom span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}
@media screen and (max-width: 500px) {
  .search-banner .btn-custom { padding: 17px 10px; font-size: 14px; }
}
@media(max-width:374px){
  .summary-row .values{gap: 20px;}
  .summary-row .val-item .num{font-size: 26px;}
}