/* Calculators Listing Page */

.calc-listing {
    padding-top: 24px;
}
.calc-category {
    margin-bottom: 32px;
}
.calc-category-title {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text, #3D2F50);
    margin: 0 0 14px 0;
    padding: 0 0 0 14px;
    border: none;
    border-left: 3px solid var(--accent, #7BC8B8);
}
.calc-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.calc-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 1.5px solid rgba(139,123,184,0.10);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s;
}
.calc-card:hover {
    border-color: rgba(139,123,184,0.22);
    box-shadow: 0 4px 16px rgba(61,47,80,0.07);
    transform: translateY(-2px);
    text-decoration: none;
}
.calc-card-icon {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg, #FAF8FF);
    border-radius: 10px;
}
.calc-card-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.calc-card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text, #3D2F50);
    line-height: 1.3;
}
.calc-card-desc {
    font-size: 16px;
    color: var(--text-muted, #695A80);
    line-height: 1.4;
}

@media (max-width: 600px) {
    .calc-cards {
        grid-template-columns: 1fr;
    }
}
