

.hb-videosection-container {
    max-width: 1200px;
    padding: 10px;
    margin: 0 auto;
    /* opacity: 0; Start hidden for animation */
}

.hb-videosection-header {
    color: white; 
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden; /* For text animation */
}

.hb-videosection-header-text {
    font-weight: bold;
    border-radius: 5px;
    padding: 8px 20px;
    background-color: #9e1a1a;
    font-size: 34px;
    width: fit-content;
    /* opacity: 0; Start hidden for animation */
    /* transform: translateY(20px); Start below for animation */
}

.hb-videosection-arrow-icon {
    width: clamp(30px, 3vw, 40px);
    height: clamp(30px, 3vw, 40px);
    /* opacity: 0; Start hidden for animation */
}

.hb-videosection-videos-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.hb-videosection-main-video {
    grid-column: 1;
    grid-row: 1 / span 2;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 460px;
    transition: transform 0.3s ease;
}

.hb-videosection-small-video {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 220px;
    transition: transform 0.3s ease;
}
.hb-videosection-small-video:hover , .hb-videosection-main-video:hover {
    transform: scale(1.01);
}

.hb-videosection-video-thumbnail {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}



.hb-videosection-video-thumbnail img{
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 10px;
}

@media (max-width: 1024px) {
  .hb-videosection-video-thumbnail img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}


.hb-videosection-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
     transform: translate(-50%, -50%) scale(0.8); /*Start smaller for animation */
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    /* opacity: 0; Start hidden for animation */
    transition: transform 0.3s ease;
}

.hb-videosection-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: rgba(255, 255, 255, 0.9);
}

.hb-videosection-main-video .hb-videosection-play-button {
    width: 80px;
    height: 80px;
}

.hb-videosection-play-icon {
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-left: 20px solid #333;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

.hb-videosection-main-video .hb-videosection-play-icon {
    border-top: 18px solid transparent;
    border-left: 30px solid #333;
    border-bottom: 18px solid transparent;
}

.hb-videosection-video-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    /* opacity: 0; Start hidden for animation */
    /* transform: translateY(10px); Start below for animation */
}

.hb-videosection-small-video .hb-videosection-video-title {
    font-size: 16px;
    bottom: 10px;
    left: 10px;
}

.hb-videosection-channel-info {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    /* opacity: 0;  // Start hidden for animation */
}

.hb-videosection-channel-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    margin-right: 10px;
}

.hb-videosection-channel-name {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.hb-videosection-time-info {
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    /* opacity: 0; //Start hidden for animation */
}

.hb-videosection-time-icon {
    margin-right: 5px;
    width: 25px;
    height: 25px;
}
.hb-videosection-small-video .hb-videosection-time-icon {
    margin-right: 5px;
    width: 15px;
    height: 15px;
}

.hb-videosection-small-video .hb-videosection-channel-info, 
.hb-videosection-small-video .hb-videosection-time-info {
    top: 10px;
}

.hb-videosection-small-video .hb-videosection-channel-info {
    left: 10px;
}

.hb-videosection-small-video .hb-videosection-time-info {
    right: 10px;
    font-size: 12px;
}

.hb-videosection-small-video .hb-videosection-channel-logo {
    width: 20px;
    height: 20px;
}

.hb-videosection-small-video .hb-videosection-channel-name {
    font-size: 12px;
}

/* Responsive styles */
@media (max-width: 1024px) {
.hb-videosection-videos-container {
    grid-template-columns: 3fr 2fr;
}

.hb-videosection-main-video {
    height: 400px;
}

.hb-videosection-small-video {
    height: 190px;
}

.hb-videosection-video-title {
    font-size: clamp(18px, 4vw, 20px);
}

.hb-videosection-small-video .hb-videosection-video-title {
    font-size: clamp(12px, 4vw, 14px);
}
}

@media (max-width: 768px) {
.hb-videosection-container {
    padding: 20px;
}
.hb-videosection-videos-container {
    grid-template-columns: repeat(2, 1fr);
    /* grid-template-rows: repeat(2, 1fr); */
    grid-template-rows: auto auto;
    grid-auto-rows: auto;
}

.hb-videosection-main-video {
    grid-column: span 2 / span 2;
    grid-row: 1;
    height: 350px;
}

.hb-videosection-small-video {
    height: 200px;
    grid-row-start: 2;
}

.hb-videosection-header-text {
    font-size: 22px;
}

.hb-videosection-main-video .hb-videosection-play-button {
    width: 60px;
    height: 60px;
}

.hb-videosection-main-video .hb-videosection-play-icon {
    border-top: 14px solid transparent;
    border-left: 22px solid #333;
    border-bottom: 14px solid transparent;
}

.hb-videosection-video-title {
    font-size: 18px;
}

.hb-videosection-small-video .hb-videosection-time-info {
    font-size: 9px;
}
.hb-videosection-small-video .hb-videosection-time-icon {
    width: 10px;
    height: 10px;
}

.hb-videosection-small-video .hb-videosection-channel-logo {
    width: 14px;
    height: 14px;
}

.hb-videosection-small-video .hb-videosection-channel-name {
    font-size: 10px;
}
}

@media (max-width: 480px) {


.hb-videosection-container {
    max-width: 100%;
    padding: 10px;
}

.hb-videosection-header {
    margin-bottom: 15px;
}

.hb-videosection-header-text {
    font-size: 22px;
}


.hb-videosection-videos-container {
    gap: 15px;
}

.hb-videosection-main-video {
    height: 250px;
}

.hb-videosection-small-video {
    height: 180px;
}

.hb-videosection-play-button {
    width: 50px;
    height: 50px;
}

.hb-videosection-main-video .hb-videosection-play-button {
    width: 50px;
    height: 50px;
}

.hb-videosection-play-icon {
    border-top: 10px solid transparent;
    border-left: 16px solid #333;
    border-bottom: 10px solid transparent;
}

.hb-videosection-main-video .hb-videosection-play-icon {
    border-top: 10px solid transparent;
    border-left: 16px solid #333;
    border-bottom: 10px solid transparent;
}

.hb-videosection-video-title {
    font-size: 16px;
    bottom: 10px;
    left: 10px;
}

.hb-videosection-small-video .hb-videosection-video-title {
    font-size: 12px;
    bottom: 8px;
    left: 8px;
}

.hb-videosection-channel-info {
    top: 10px;
    left: 10px;
}

.hb-videosection-channel-logo {
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.hb-videosection-channel-name {
    font-size: 12px;
}

.hb-videosection-time-info {
    top: 10px;
    right: 10px;
    padding: 3px 6px;
    font-size: 10px;
}

.hb-videosection-time-icon {
    width: 15px;
    height: 15px;
}

.hb-videosection-small-video .hb-videosection-time-info {
    font-size: 8px;
}
.hb-videosection-small-video .hb-videosection-time-icon {
    width: 8px;
    height: 8px;
}

.hb-videosection-small-video .hb-videosection-channel-logo {
    width: 12px;
    height: 12px;
}

.hb-videosection-small-video .hb-videosection-channel-name {
    font-size: 8px;
}
}
