/* Changelog: update _internal/SITE_CHANGELOG.md (not this file). */

.ee-cos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.ee-cos-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem 1.5rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.ee-cos-card h3 {
    color: var(--green-dark);
    margin-bottom: .5rem;
    font-size: 1.05rem;
}

.ee-cos-card .ee-cos-term {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .65rem;
}

.ee-cos-card p {
    color: var(--body);
    margin-bottom: 0;
    font-size: .98rem;
}

.ee-build-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: .85rem;
}

.ee-build-list li {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.15rem;
}

.ee-build-list strong {
    color: var(--green-dark);
}

.ee-build-list span {
    display: block;
    color: var(--muted);
    font-size: .92rem;
    margin-top: .25rem;
}

.ee-sla-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.ee-sla-stat {
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem 1rem;
    box-shadow: var(--shadow-sm);
}

.ee-sla-stat .ee-sla-value {
    display: block;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1.15;
    margin-bottom: .35rem;
}

.ee-sla-stat .ee-sla-label {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.35;
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    background: var(--surface);
}

.ee-compare {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    min-width: 720px;
}

.ee-compare th,
.ee-compare td {
    padding: .75rem .9rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--border);
}

.ee-compare thead th {
    background: var(--green-soft);
    color: var(--green-dark);
    font-weight: 700;
    font-size: .85rem;
    line-height: 1.35;
}

.ee-compare tbody th {
    background: var(--green-tint);
    color: var(--green-dark);
    font-weight: 700;
    width: 16%;
    white-space: nowrap;
}

.ee-compare tbody tr:last-child th,
.ee-compare tbody tr:last-child td {
    border-bottom: none;
}

.ee-compare td {
    color: var(--body);
    width: 28%;
}

.ee-note {
    margin-top: 1rem;
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .ee-sla-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .ee-cos-grid { grid-template-columns: 1fr; }
}
