/** Shopify CDN: Minification failed

Line 9:0 Unexpected "{"
Line 9:1 Expected identifier but found "%"
Line 11:2 Unexpected "-"
Line 16:1 Expected identifier but found "%"

**/
{%- comment %}
  Blog Featured Card Styles
  - Featured article card with different layout
  - Desktop: left image + right text
  - Mobile: image top + text bottom
  - Image 16:9, hover zoom 1.2x, 0.3s animation
  - Tag: top-right corner, customizable
{% endcomment -%}

/* Container */
.blog-featured-card-wrapper {
  width: 100%;
}

/* Card Container */
.blog-featured-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  width: 100%;
  transition: transform 0.3s ease;
}

/* Desktop: Left Image + Right Text */
@media screen and (min-width: 750px) {
  .blog-featured-card {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }
}

/* Image Wrapper */
.blog-featured-card__image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: rgba(var(--color-foreground), 0.05);
}

/* Featured image is larger */
.blog-featured-card__image-wrapper {
  aspect-ratio: 16/9;
  flex-shrink: 0;
}

/* Mobile image size */
@media screen and (max-width: 749px) {
  .blog-featured-card__image-wrapper {
    width: 100%;
    max-width: none;
  }
}

/* Desktop image size */
@media screen and (min-width: 750px) {
  .blog-featured-card__image-wrapper {
    width: 55%;
  }
}

/* Image */
.blog-featured-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Hover: Zoom 1.2x */
.blog-featured-card:hover .blog-featured-card__image {
  transform: scale(1.2);
}

/* Tag */
.blog-featured-card__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
}

/* Content */
.blog-featured-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media screen and (min-width: 750px) {
  .blog-featured-card__content {
    padding-top: 10px;
  }
}

/* Title */
.blog-featured-card__title {
  margin: 0;
  line-height: 1.3;
  color: rgb(var(--color-foreground));
  transition: color 0.3s ease;
}

/* Title Hover */
.blog-featured-card:hover .blog-featured-card__title {
  color: rgb(var(--color-accent, var(--color-foreground)));
}

/* Excerpt */
.blog-featured-card__excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: rgb(var(--color-foreground));
  opacity: 0.8;
  margin: 0;
}

@media screen and (max-width: 749px) {
  .blog-featured-card__excerpt {
    font-size: 14px;
  }
}
