* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

ul,
li {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

button,
input,
textarea {
	border: 0;
	background: none;
	font: inherit;
}

html,
body {
	width: 100%;
	height: 100%;
}

.container {
	width: 860px;
	max-width: 100%;
	margin: 0 auto;
}

.floting {
	width: 860px;
	max-width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
}

/* ===== 09 카운팅 ===== */
.kpi-sec {
	padding: 60px 20px;
	background: #f2f2f2;
	text-align: center;
}

.kpi-title {
	font-size: 34px;
	font-weight: 800;
	color: #222;
	margin: 0 0 8px;
}

.kpi-sub {
	color: #888;
	margin: 0 0 26px;
}

.kpi-card {
	display: inline-block;
	background: #fff;
	padding: 26px 28px;
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.kpi-row {
	display: flex;
	align-items: center;
	gap: 22px;
	justify-content: space-between;
}

.kpi-row+.kpi-row {
	margin-top: 12px;
}

.kpi-label {
	font-weight: 800;
	letter-spacing: .5px;
}

.kpi-label.today {
	color: #ff6a00;
}

.kpi-label.total {
	color: #333;
}

.kpi-value {
	font-size: 28px;
	font-weight: 700;
	color: #222;
	min-width: 210px;
	text-align: right;
}

/* ===== 10 Vticker ===== */
.ticker-sec {
	padding: 60px 20px;
	background: #0e2a53;
	text-align: center;
}

.ticker-title {
	font-size: 34px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 22px;
}

.ticker-card {
	max-width: 500px;
	width: 100%;
	display: inline-block;
	background: #fff;
	border-radius: 18px;
	padding: 16px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

/* ===== 10 Vticker ===== */
.vticker{
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  --row-h: 40px;   /* 한 줄 높이 */
  --visible: 6;    /* 보이는 줄 수 */
  height: calc(var(--row-h) * var(--visible));
  overflow: hidden;
  will-change: transform;
}

.vticker li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  height: var(--row-h);
  line-height: var(--row-h);
  color: #222;
  border-bottom: 1px solid #f2f2f2;
  font-weight: 600;
  white-space: nowrap;        /* 줄바꿈 방지 */
  overflow: hidden;
  text-overflow: ellipsis;    /* 길면 … 처리 */
}

.vticker li:last-child {
	border-bottom: 0;
}

.status {
	font-weight: 800;
}

.status.ok {
	color: #e03131;
}

.status.wait {
	color: #666;
}

.padding{
	padding-bottom: 100px;
}

@media (max-width:420px) {
	.kpi-card,
	.ticker-card {
		width: 100%;
	}

	.vticker li {
		padding: 0 14px;
	}

	.kpi-title{
		font-size: 24px;
	}

	.ticker-title{
		font-size: 24px;
	}
}

