/*
  Theme Name:   astra moviesbiz child
  Theme URI:    http://example.com/child-theme/
  Description:  astra moviesbiz child
  Author:       Karunakar
  Author URI:   http://example.com
  Template:     astra
  Version:      1.0.0
*/
/* Base message styles */
.kk-video-featured-grid {
  display: grid;
  grid-template-columns: auto 1fr; /* First column auto-sized for image, second takes remaining space */
  gap: 20px; /* Space between image and taxonomy */
  align-items: start; /* Align items to the top */
  margin-bottom: 20px;
}

.kk-video-featured-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Alternative using flexbox if you prefer */
/*
.kk-video-featured-grid {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.kk-video-featured-image {
    flex-shrink: 0;
}

.kk-video-taxonomy {
    flex: 1;
}
*/

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .kk-video-featured-grid {
    grid-template-columns: 1fr; /* Stack vertically on mobile */
    gap: 15px;
  }
}
