.event-layout{
    display:grid;
    grid-template-columns:minmax(0,68%) minmax(320px,32%);
    gap:70px;
    align-items:start;
    padding:40px 0;
}
.event-main-content{
    min-width:0;
}
main.event-content section.event-section:not(:last-child) {
    border-bottom: 1px solid #dddada;
    margin-bottom: 30px;
    padding-bottom: 30px;
}
.event-section:last-child{
    margin-bottom:0;
}
.event-section-title {
    margin: 0 0 15px;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}
.event-section-content{
    font-size:16px;
    color:#555;
}
.event-section-content p{
    margin-bottom:0px;
}
.event-section-content ul{
    margin:25px 0;
    padding-left:25px;
}
.event-section-content li{
    margin-bottom:12px;
}
.event-included-list{
    margin:0;
    padding:0;
    list-style:none;
}
.event-included-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}
.event-check-icon{
    width:28px;
    height:28px;
    border-radius:50%;
    background:#b8965a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    flex-shrink:0;
    margin-top:2px;
}
.event-faq-list .event-faq-item:not(:last-child) {
    margin-bottom: 10px;
}
.event-faq-list .event-faq-item button.event-faq-question {
    background: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    justify-content: space-between;
    padding: 15px 20px 15px 20px;
}
.event-faq-list .event-faq-item .event-faq-answer {
    background: #fff;
    border-top: 1px solid #ccc;
}
.event-faq-item:last-child{
	border-bottom:1px solid #e5e5e5;
}
.event-faq-question{
	width:100%;
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding:22px 0;
	background:none;
	border:none;
	cursor:pointer;
	font-size:20px;
	font-weight:600;
	text-align:left;
}
.event-faq-answer{
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:
    max-height .35s ease,
    opacity .30s ease,
    padding .30s ease;
    padding:0;
}
.event-faq-item.active .event-faq-answer {
    opacity: 1;
    padding: 10px 20px 20px 20px;
}
.event-faq-icon
 {
    font-size: 22px;
    line-height: 1;
    font-weight: 400;
}
.event-host-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
}
.event-host-image{
	flex:0 0 100px;
}
.event-host-image img{
	width:100%;
	border-radius:50px;
	display:block;
}
.event-host-content{
	flex:1;
}
.event-host-name{
	margin:0 0 0px;
	font-size:22px;
	font-weight:800;
}
.event-host-bio{
	font-size:16px;
	color:#555;
}
.event-host-content .event-host-bio p {
    margin-bottom: 0px;
}
.event-timing-detail {
    display: flex;
    flex-direction: column;
}
.event-section-timing-details .details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 30px;
}
.event-section-timing-details .details-grid .event-timing-detail span.timing-label {
    font-weight: 600;
}

@media(max-width:768px){
	.event-host-card{
		flex-direction:column;
	}
	.event-host-image{
		flex:0 0 auto;
		max-width:260px;

	}
}