.video-transcript-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.video-wrapper {
    margin-bottom: 20px;
}
.video-wrapper iframe{
    height:450px;
}
.transcript-section h3 {
    margin-bottom: 15px;
    color: #333;
}

.transcript {
    border: 1px solid #eee;
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
    line-height: 1.6;
    background: #fafafa;
}

.transcript p {
    padding: 8px;
    margin: 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.transcript p:hover {
    background-color: #f5f5f5;
}

.transcript p.highlight {
    background-color: #fff9c4;
    font-weight: bold;
}

.timestamp {
    color: #666;
    font-size: 0.9em;
    margin-right: 10px;
    font-weight: bold;
}

.video-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.video-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
      border: 1px solid #f1f1f1;
}
.video-thumbnail a {
	display: block;
	position: relative;
	background-color: #d6d6d6;
	padding-bottom: 56.25%;
	width: 100%;
	height: 0;
}
.video-thumbnail a:hover {
	background-color: #949494;
}
.video-thumbnail img {
    width: 100%;
    height: 270px !important;
    object-fit: cover;
}
.video-thumbnail a{
    display:flex;
}
.video-info {
    padding: 15px;
}

.video-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.video-info h3 a {
    text-decoration: none;
    color: #333;
}

.video-info h3 a:hover {
    color: #0073aa;
}

.video-excerpt {
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9em;
}

.watch-video-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    transition: background 0.3s ease;
}

.watch-video-btn:hover {
    background: #005a87;
    color: white;
}

.aiovg-svg-icon-play {
	pointer-events: none;
	position: absolute;
	inset: 0;
	z-index: 3;
	margin: auto;
	fill: #fff;
	width: 2rem;
}
.self-hosted {
  max-height: 450px;
}
@media(max-width:480px){
    .video-thumbnail img {
        height: 200px !important;
    }
	.video-list {
	    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
	.single-video_transcript .entry-title {
		font-size: 30px;
		margin-bottom: 10px;
		color: #333;
		line-height: 35px;
		margin-top: 50px;
	}
	.video-wrapper iframe{
		height:100% !important;
	}
}