.card {
  box-sizing: border-box;
  padding: 1.2rem;
  transition: all 0.3s ease;
}

/* Performance optimizations */
.layout-card__icon-wrapper,
.layout-card__content,
.layout-card__button-wrapper {
  will-change: transform;
}
{# Author #}

.layout-card__author-footer {
  display: flex;
  align-items: center;
}

{# Author content #}

{% if module.styles.author.alignment.alignment.text_align %}
  .layout-card__author-content {
    text-align: ;
  }
{% endif %}

{# Author image #}

.layout-card__author-image {
  border-radius: 50%;
  width: 50px; /* Adjust as needed */
  height: 50px; /* Adjust as needed */
  object-fit: cover;
  margin-right: 10px; /* Add some spacing between image and text */
}
{% if module.author.include_image && module.styles.author.image.corner.radius >= 0 %}
  .layout-card__author-image {
    border-radius: ;
  }
{% endif %}
