.cd-container {
	/*max-width: 100%;*/
	/*margin: 30px auto;*/
	background: #f1f6f9;
	padding: 20px 10px;
	border-radius: 10px;
	border: 1px solid #e6eef8
}

.cd-filters {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 18px;
	gap: 12px;
	flex-wrap: wrap
}

.cd-location-tabs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap
}

.cd-tab {
	background: #fff;
	border-radius: 20px;
	padding: 6px 12px;
	border: 1px solid #e8eef5;
	cursor: pointer
}

.cd-tab.active {
	background: #0075b2;
	color: #fff;
	border-color: #0075b2
}

.cd-controls select {
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 12px;
    height: 29px;
	
}

.cd-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.cd-card {
	width: calc(33.333% - 10px);
	background: #fff;
	border-radius: 8px;
	border: 1px solid #e9f2fb;
	padding: 15px 10px;
	box-sizing: border-box;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.cd-card-inner {
	display: flex;
	gap: 12px;
	align-items: flex-start
}

.cd-card-left img {
	width: 70px !important;
	height: 70px !important;
	object-fit: contain;
	border-radius: 6px;
	background: #fff;
	padding: 6px;
	border: 1px solid #f0f0f0
}

.cd-card .cd-title {
    max-width: 240px;   /* adjust according to card width */
}


.cd-title {
    margin: 0;
    font-size: 16px !important;
    line-height: 1.15;
    white-space: nowrap;        /* force single line */
    overflow: hidden;           /* hide extra text */
    text-overflow: ellipsis;    /* add ... */
    display: block;
    max-width: 100%;            /* responsive */
}

.cd-meta {
	font-size: 14px;
	color: #434549;
	margin: 8px 0
}

.cd-stats {
	font-size: 14px;
	color: #434549;
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 8px
}

.cd-button {
    display: inline-block;
    padding: 5px 20px;
    background: #0075b2;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 12px;
}

.cd-home-slider {
	max-width: 1200px;
	margin: 20px auto
}

.cd-slider-inner {
	display: flex;
	gap: 12px;
	overflow: auto;
	padding-bottom: 6px
}

.cd-home-slider .cd-card {
	min-width: 320px;
	flex: 0 0 auto
}

@media(max-width:900px) {
	.cd-card {
		width: calc(50% - 10px)
	}
}

@media(max-width:600px) {
	.cd-card {
		width: 100%
	}

	.cd-card-inner {
		flex-direction: row
	}

	.cd-card-left img {
		width: 60px;
		height: 60px
	}
	.cd-card .cd-title {
        max-width: 200px;   /* adjust according to card width */
    }
}

.cd-single-wrap {
	max-width: 1100px;
	margin: 30px auto;
	background: #fff;
	padding: 28px;
	border-radius: 6px;
	border: 1px solid #eaeaea
}

.cd-single-hero {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	margin-bottom: 18px
}

.cd-single-hero img {
	width: 70px;
	height: 70px;
	object-fit: contain
}

.cd-key-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 10px
}

.cd-key-table td {
	padding: 10px;
	border: 1px solid #f0f0f0
}