/* ============================================
   Content Templates Styles
   ============================================ */

/* Provider Summary Box */
.ffme-provider-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.ffme-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.ffme-summary-header h3 {
    margin: 0;
    font-size: 24px;
    color: white;
}

.ffme-summary-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    background: white;
    color: #667eea;
}

.ffme-summary-badge.ffme-grade-a {
    background: #38ef7d;
    color: #11998e;
}

.ffme-summary-badge.ffme-grade-b {
    background: #00f2fe;
    color: #4facfe;
}

.ffme-summary-badge.ffme-grade-c {
    background: #f5576c;
    color: #f093fb;
}

.ffme-summary-body {
    color: white;
}

.ffme-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ffme-summary-row:last-of-type {
    border-bottom: none;
}

.ffme-summary-label {
    font-weight: 500;
    opacity: 0.9;
}

.ffme-summary-value {
    font-weight: 700;
    font-size: 18px;
}

.ffme-summary-features {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.ffme-summary-features strong {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

.ffme-summary-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ffme-summary-features li {
    padding: 5px 0 5px 25px;
    position: relative;
}

.ffme-summary-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #38ef7d;
}

.ffme-summary-cta {
    margin-top: 20px;
    text-align: center;
}

.ffme-summary-button {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: #667eea !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.ffme-summary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Pros and Cons */
.ffme-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.ffme-pros,
.ffme-cons {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ffme-pros {
    border-left: 4px solid #38ef7d;
}

.ffme-cons {
    border-left: 4px solid #f5576c;
}

.ffme-pros-title,
.ffme-cons-title {
    margin: 0 0 15px 0;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.ffme-pros-title {
    color: #11998e;
}

.ffme-cons-title {
    color: #f5576c;
}

.ffme-pros-list,
.ffme-cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ffme-pros-list li,
.ffme-cons-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.ffme-pros-list li:last-child,
.ffme-cons-list li:last-child {
    border-bottom: none;
}

.ffme-pros-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #38ef7d;
    font-size: 18px;
}

.ffme-cons-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #f5576c;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ffme-provider-summary {
        padding: 20px;
    }
    
    .ffme-summary-header h3 {
        font-size: 20px;
    }
    
    .ffme-summary-badge {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .ffme-summary-value {
        font-size: 16px;
    }
    
    .ffme-pros-cons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* How We Evaluate Page Styles */
.ffme-methodology-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.ffme-methodology-intro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
}

.ffme-methodology-intro h1 {
    color: white;
    margin-bottom: 15px;
}

.ffme-methodology-intro p {
    font-size: 18px;
    opacity: 0.95;
    margin: 0;
}

.ffme-category-methodology {
    background: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
}

.ffme-category-methodology h3 {
    margin-top: 0;
    color: #667eea;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ffme-category-weight {
    background: #667eea;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.ffme-methodology-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.ffme-methodology-criteria {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    margin-top: 15px;
}

.ffme-methodology-criteria h4 {
    margin-top: 0;
    font-size: 16px;
    color: #333;
}

.ffme-methodology-criteria ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.ffme-methodology-criteria li {
    padding: 5px 0;
    color: #666;
}

.ffme-methodology-faq {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.ffme-methodology-faq h2 {
    text-align: center;
    margin-bottom: 30px;
}

.ffme-faq-item {
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.ffme-faq-question {
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.ffme-faq-answer {
    color: #666;
    line-height: 1.7;
}
