/* Blossom Icon Box Widget */
.bib-wrapper {
    display: block;
}

.bib-link-wrap {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    --bib-media-gap: 0px;
}

.bib-link-wrap--left {
    flex-direction: row;
    column-gap: var(--bib-media-gap);
}

.bib-link-wrap--top {
    flex-direction: column;
    row-gap: var(--bib-media-gap);
}

.bib-media {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    font-size: 2rem;
}

.bib-media--circle {
    border-radius: 50%;
}

.bib-media--square {
    border-radius: 0;
}

.bib-media--none {
    border-radius: 0;
}

.bib-media .bib-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bib-media .bib-icon-wrap svg,
.bib-media .bib-icon-wrap i {
    width: 1em;
    height: 1em;
    font-size: 1em;
}

.bib-media .bib-text {
    font-weight: 700;
    line-height: 1;
}

.bib-content {
    flex: 1;
    min-width: 0;
}

.bib-title {
    margin: 0 0 0.35em;
    font-size: 1.25em;
    line-height: 1.3;
}

.bib-description {
    margin: 0;
    line-height: 1.5;
}

.bib-description p:last-child {
    margin-bottom: 0;
}
