/* Container alignment for resume entries */
.resume-item-with-icon {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

/* Updated logo container to match the footprint of LinkedIn's native placeholder */
.linkedin-style-logo {
  width: 36px;          /* Scaled down to match the smaller visual footprint */
  height: 36px;         /* Scaled down to match the smaller visual footprint */
  background-color: #f3f2ef;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 14px;
  border-radius: 4px;
  overflow: hidden;    /* Clips any stray edges */
}

/* Custom size for Resume Section Company Logos */
.linkedin-style-logo .company-logo {
  width: 24px;  /* Downscaled from 48px to perfectly match the default SVG */
  height: 24px;
  object-fit: contain; 
  display: block;
}

/* Flawless layout rule for default SVG icons */
.linkedin-style-logo svg {
  width: 24px;         /* Preserves the built-in breathing room for default vectors */
  height: 24px;
}

/* Text block tracking */
.resume-content-block {
  flex-grow: 1;
}
