/*Global blocks CSS*/
/* custom you tube block */
  .custom-youtube-embed {
    position: relative;
    display: inline-block;
    max-width: 560px;
    cursor: pointer;
}

.youtube-thumb-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.youtube-thumb-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.play-button::before {
    content: '';
    display: inline-block;
    border-left: 12px solid rgb(227, 28, 61);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 5px;
}
  /* custom you tube block */