.da-investor-report-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    padding: 24px;

    background: #ffffff;
    margin-bottom: 15px;

    border-radius: 16px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.da-investor-report-card:hover {
    transform: translateY(-2px);

    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.da-investor-report-card__content {
    display: flex;

    align-items: center;

    gap: 20px;

    flex: 1;
}

.da-investor-report-card__icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 56px;

    height: 56px;

    border-radius: 12px;

    flex-shrink: 0;

    background: var(--green-pale, #eaf9ef);

    color: var(--green, #16a34a);
}

.da-investor-report-card__icon svg {
    width: 24px;

    height: 24px;
}

.da-investor-report-card__title {
    margin: 0 0 6px;

    font-size: 16px;

    font-weight: 800;

    color: var(--dark, #111827);
}

.da-investor-report-card__description {
    font-size: 13px;

    color: var(--gray, #6b7280);

    line-height: 1.5;
}

.da-investor-report-card__description p:last-child {
    margin-bottom: 0;
}

.da-investor-report-card__button {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 10px 20px;

    border-radius: 10px;

    text-decoration: none;

    white-space: nowrap;
}

.da-investor-report-card__button-icon {
    display: flex;

    align-items: center;
}

.da-investor-report-card__button-icon svg {
    width: 16px;

    height: 16px;
}

/*
|--------------------------------------------------------------------------
| STYLE 1
|--------------------------------------------------------------------------
*/
.da-investor-report-card.style-1 .da-investor-report-card__button.is-highlight {
    background: #16a34a;

    color: #ffffff;
}

.da-investor-report-card.style-1 .da-investor-report-card__button {
    /* background: #16a34a; */

    color: #1e293b;
}


/*
|--------------------------------------------------------------------------
| STYLE 2
|--------------------------------------------------------------------------
*/

.da-investor-report-card.style-2 .da-investor-report-card__button {
    background: #111827;

    color: #ffffff;
}

/*
|--------------------------------------------------------------------------
| HIGHLIGHT BUTTON
|--------------------------------------------------------------------------
*/

.da-investor-report-card__button.is-highlight {
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.da-section-sub-heading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--e-global-color-secondary);
    margin-bottom: 16px
}

.da-section-sub-heading::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--e-global-color-secondary);
    border-radius: 2px;
}

.da-section-heading {}

.da-section-heading .text-green {
    color: var(--e-global-color-secondary);
}

@media (max-width: 767px) {

    .da-investor-report-card {
        align-items: flex-start;
    }

    .da-investor-report-card__button {
        width: 100%;

        justify-content: center;
    }
}