.video-section {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.video-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.video-heading {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

@media(max-width:670px){
	.video-heading{
	    margin-bottom:10px
	}
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tabs button {
  background: #3AAFA9;
  color: #fff;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: 0.3s;
}

.tabs button.active,
.tabs button:hover {
  background: #17252a;
  color: #fff;
}

.top-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.bottom-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background: #000;
}

.video-card img {
  width: 100%;
  display: block;
  transition: transform 0.3s;
}

.video-card:hover img {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  color: #fff;
}

.video-title a {
    color: #fff !important;
}

.category {
  display: inline-block;
  background: #2b7a78;
  color: #fff;
  padding: 3px 6px;
  font-size: 12px;
  border-radius: 3px;
  margin-bottom: 5px;
}

.video-title {
  font-weight: bold;
  font-size: 16px;
  margin: 5px 0;
}

.video-date {
  font-size: 12px;
  opacity: 0.8;
}

.load-more-wrap {
    text-align: center;
    padding-top: 20px;
}

button#load-more {
    background-color: rgb(255, 255, 255);
    font-family: Raleway, sans-serif;
    font-size: 18px;
    font-weight: 700;
    fill: rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    border-style: solid;
    border-color: rgb(43, 122, 120);
}

button#load-more:hover {
    background-color: #2B7A78;
    color: #FFFFFF;
    border-color: #2B7A78;
}