/* Standard Text Typography */
.prose {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px 60px 20px;
    color: #524f51;
}

.prose h1 {
    color: #6c2d16;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.prose h2 {
    color: #1d3557;
    margin: 30px 0 15px;
    font-size: 1.8rem;
}

.prose p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.prose a {
    color: #e63946;
    text-decoration: none;
    font-weight: bold;
}

.prose a:hover {
    text-decoration: underline;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 30px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 0.9rem;
    min-width: 600px;
}

.comparison-table th, .comparison-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.comparison-table th:first-child, .comparison-table td:first-child {
    text-align: left;
    font-weight: bold;
    color: #1d3557;
    width: 200px;
    max-width: 200px;
    white-space: normal;
    word-wrap: break-word;
    position: sticky;
    left: 0;
    z-index: 2;
    background-color: #f8f9fa;
    border-right: 1px solid rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .comparison-table {
        min-width: 400px;
    }
    .comparison-table th:first-child, .comparison-table td:first-child {
        width: 140px;
        min-width: 140px;
        max-width: 140px;
        font-size: 0.85rem;
        padding: 10px;
    }
}

.comparison-table th:first-child {
    background-color: #e8eef3;
    z-index: 3;
}

.comparison-table th {
    background-color: rgba(151, 180, 208, 0.2);
    color: #1d3557;
    font-weight: bold;
}

.comparison-table th.highlight {
    background-color: rgba(230, 57, 70, 0.1);
    color: #e63946;
}

.comparison-table td.highlight {
    background-color: rgba(230, 57, 70, 0.05);
}

.comparison-table td svg {
    display: block;
    margin: 0 auto;
}
