.inset-callout {
    border: 2px solid #1a3a5c;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    width: 42%;
    margin-bottom: 1.25rem;
}

.inset-callout--right {
    float: right;
    margin-left: 2rem;
    clear: right;
}

.inset-callout--left {
    float: left;
    margin-right: 2rem;
    clear: left;
}

.inset-callout__header {
    padding: 12px 18px;
}

.inset-callout__title {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
}

.inset-callout__list {
    margin: 0;
    padding: 16px 18px 16px 34px;
    list-style: disc;
}

.inset-callout__item {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #222;
    padding: 5px 0;
    border-bottom: 1px solid #eef0f3;
}
.inset-callout__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* clearfix after float */
.inset-callout + * {
    overflow: visible;
}
.inset-callout--right ~ *,
.inset-callout--left ~ * {
    clear: none;
}

/* After all content, clear float */
#resource-view-ct::after {
    content: '';
    display: table;
    clear: both;
}

@media (max-width: 767px) {
    .inset-callout,
    .inset-callout--right,
    .inset-callout--left {
        float: none !important;
        width: 100% !important;
        margin: 0 0 1.5rem 0 !important;
        clear: both;
    }
}