.calculator-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.calculator-entry {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 20px;
    width: calc(30% - 20px); /* Three items per row with spacing */
    min-width: 250px; /* Minimum width */
}

.calculator-entry a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
}

.calculator-entry p {
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .calculator-grid {
        flex-direction: column;
        align-items: center;
    }

    .calculator-entry {
        width: 100%;
        max-width: 400px; /* Further constrain the width */
    }

}