/******************************************************************

Stylesheet: Block Style
Block: Avatar

******************************************************************/
/******************************************************************

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
WRAPS
*********************/
/*********************
COLORS
*********************/
/*********************
FONT FAMILY
*********************/
/*********************
FONT SIZES
*********************/
/*********************
PADDINGS
*********************/
/*********************
TRANSITIONS
*********************/
.sp-block-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .sp-block-avatar {
    gap: 32px;
  }
}
.sp-block-avatar .sp-avatar-image {
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.sp-block-avatar .sp-avatar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-block-avatar .sp-avatar-mobile-heading {
  font-size: var(--wp--preset--font-size--sp-small);
  font-weight: 600;
  text-transform: uppercase;
}
.sp-block-avatar .sp-avatar-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.sp-block-avatar .sp-avatar-details > * {
  margin: 0;
}
.sp-block-avatar .sp-avatar-details h3 {
  font-size: var(--sp-font-base-size);
}
