/**
 * Market Pulse Template Styles
 * Green theme: #38a169
 */

.deal-highlight-card {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    border: 2px solid;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.deal-amount {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(56, 161, 105, 0.2);
}

.amount-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2f855a;
    margin-bottom: 0.5rem;
}

.amount-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.deal-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.deal-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.aeco-market-pulse .aeco-post-header {
    border-color: #38a169;
}

.aeco-market-pulse .aeco-callout-box.key-finding {
    border-color: #38a169;
}

.aeco-market-pulse .aeco-callout-box.action-item {
    border-color: #38a169;
}

@media (max-width: 768px) {
    .amount-value {
        font-size: 2.25rem;
    }
    
    .deal-details-grid {
        grid-template-columns: 1fr;
    }
}