.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  margin-bottom: 1.5rem;
  background: #f9fafb;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* Image Styles for Blog Posts */
.blog-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* First image floats left */
.blog-image-left {
    float: left;
    margin: 1rem 2rem 1rem 0;
    max-width: 720px;
    width: 100%;
}

/* Second image floats right */
.blog-image-right {
    float: right;
    margin: 1rem 0 1rem 2rem;
    max-width: 720px;
    width: 100%;
}

/* Clear floats after images */
.image-clear {
    clear: both;
}

/* Responsive image adjustments */
@media (max-width: 768px) {
    .blog-image-left,
    .blog-image-right {
        float: none;
        margin: 1.5rem auto;
        display: block;
        max-width: 100%;
    }
}

/* If you want full-width images */
.blog-image-full {
    width: 100%;
    max-width: 100%;
    margin: 2rem 0;
}

/* For 720px wide images */
.blog-image-720 {
    max-width: 720px;
    width: 100%;
    margin: 2rem auto;
    display: block;
}