.youtube-latest-video.two-column-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  align-items: stretch;
}

.youtube-latest-video .video-column {
  flex: 1 1 65%;
  min-width: 300px;
}

.youtube-latest-video .video-column .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.youtube-latest-video .video-column .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube-latest-video .content-column {
  flex: 1 1 25%;
  min-width: 250px;
  padding: 40px;
  box-sizing: border-box;
  align-items: center;
  display: flex;
  justify-content: center;
}

.youtube-latest-video .latest-label {
  font-size: 1.8rem;
  font-weight: bold;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.youtube-latest-video .video-title {
  font-size: 2.3rem;
  font-weight: bold;
  color: black;
  margin-bottom: 10px;
}

.youtube-latest-video .video-description {
  color: #333;
  font-size: 1.9rem;
  margin-bottom: 20px;
  text-align: justify;
}

.youtube-latest-video .more-videos-btn {
  background: transparent;
  border-color: var(--color-red);
  color: var(--color-red);
  padding: 8px 16px;
  border: 2px solid;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease;
}

.youtube-latest-video .more-videos-btn:hover {
  background-color: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.youtube-latest-video .no-video {
  text-align: center;
  color: #999;
  font-style: italic;
}
