/* Success Stories Grid */
.story-card {
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.story-card:hover {
    /* box-shadow: var(--shadow-lg); */
    transform: translateY(-2px) !important;
    transition: all .25s ease !important;
    border-color: #007bff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}

.story-excerpt {
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#createStoryModal .modal-content {
    padding: 0.5rem;;
}

.pagination .page-link {
  border: 1px solid #dee2e6;
  border-radius: 0;
}
