/**
 * Smart Brevity - The NatureCredits Theme
 * Takeaways Style (Bloomberg-inspired)
 */

/* ==========================================================================
   Smart Brevity Container
   ========================================================================== */
.smart-brevity {
    background-color: #f5f5f5;
    border-radius: 4px;
    padding: 24px;
    margin: 32px 0;
}

/* ==========================================================================
   Smart Brevity Header
   ========================================================================== */
.smart-brevity__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
}

.smart-brevity__header-icon {
    width: 20px;
    height: 20px;
    color: #1a1a1a;
}

.smart-brevity__header-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a1a1a;
}

/* ==========================================================================
   Smart Brevity Item
   ========================================================================== */
.smart-brevity__item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.smart-brevity__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.smart-brevity__item--deeper {
    border-bottom: none;
    padding-bottom: 0;
}

.smart-brevity__content {
    display: block;
}

.smart-brevity__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b6b6b;
    margin-bottom: 8px;
}

.smart-brevity__text {
    font-size: 15px;
    line-height: 1.65;
    color: #1a1a1a;
    margin: 0;
}

/* ==========================================================================
   Go Deeper Link
   ========================================================================== */
.smart-brevity__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    margin-top: 4px;
}

.smart-brevity__link:hover {
    color: #0d7377;
}

.smart-brevity__link-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.15s ease;
}

.smart-brevity__link:hover .smart-brevity__link-icon {
    transform: translateX(2px);
}

/* ==========================================================================
   Icon Removed - Using Text Labels Only
   ========================================================================== */
.smart-brevity__icon {
    display: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 767px) {
    .smart-brevity {
        padding: 20px 16px;
        margin: 24px 0;
    }

    .smart-brevity__text {
        font-size: 14px;
    }

    .smart-brevity__link {
        font-size: 13px;
    }
}
