/* ---------- Webinars: layout to match the design ---------- */

.cw-banner {
	background: #f3f3f3;
	text-align: center;
	padding: 40px 20px;
}
.cw-banner h1 {
	font-size: 70px;
	font-weight: 800;
	color: #3C3C3C;
	margin: 0;
}
#cw-search-input::placeholder {
color: #585858;
}
.cw-wrap {
	max-width: 1100px;
	margin: 0 auto;
	padding: 90px 20px;
}
.cw-wrap.cw-single-content {
padding: 0px 0px !important;
}
/* search box */
.cw-search {
	position: relative;
	max-width: 640px;
	margin: 0 auto 90px;
}
.cw-search-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #888;
	font-size: 14px;
}
#cw-search-input {
	width: 100%;
	padding: 12px 16px 12px 36px;
	border: 1px solid #ddd;
	background: #eee;
	border-radius: 4px;
	font-size: 14px;
	box-sizing: border-box;
}

/* section titles */
.cw-section h2 {
	font-size: 50px;
	font-weight: 800;
	color: #2d2d2d;
	margin: 0 0 50px;
        color:#3C3C3C;
}

.cw-section-shaded {
	background: #f3f3f3;
        padding-top:90px;
        padding-bottom:90px;
}

.cw-empty {
	text-align: center;
	font-weight: 700;
	color: #333;
	padding: 30px 0;
        font-size:30px;
}

/* card grid */
.cw-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.cw-card {
	display: block;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	border-radius: 2px;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cw-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.cw-card-image {
	height: 254px;
	background-color: #555;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 16px;
	box-sizing: border-box;
	position: relative;
}
.cw-card-image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.05) 60%);
}
.cw-card-title {
	position: relative;
	color: #fff;
	font-weight: 800;
	font-size: 30px;
	line-height: normal;
}

.cw-card-footer {
	background: #E52A41;
	color: #fff;
	text-align: center;
	padding: 10px 12px;
	font-size: 18px;
	font-weight: 400;
        text-decoration:none;
}
.cw-card-footer:hover {
        text-decoration:none;
}

.cw-card.cw-hidden {
	display: none;
}

/* single webinar page */
.cw-single-hero {
	background-color: #444;
	background-size: cover;
	background-position: center;
	padding: 80px 20px;
	color: #fff;
	text-align: center;
	position: relative;
}
.cw-single-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.45);
}
.cw-single-hero-inner {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
}
.cw-single-hero h1 {
	font-size: 32px;
	margin: 0 0 10px;
}
.cw-single-date {
	font-weight: 600;
	margin-bottom: 20px;
}
.cw-btn {
	display: inline-block;
	background: #d9344a;
	color: #fff;
	text-decoration: none;
	padding: 12px 28px;
	border-radius: 4px;
	font-weight: 700;
}

@media (max-width: 768px) {
	.cw-banner h1 { font-size: 28px; }
	.cw-grid { grid-template-columns: 1fr; }

.cw-search {
margin: 0 auto 40px;
}
.cw-section h2 { text-align:center; }

}
